@charset "UTF-8";
textarea.editor {
  visibility: hidden;
}

.editor {
  position: relative;
}
.editor #editorContextMenu {
  position: absolute;
  top: 100%;
  display: block;
  left: 0;
  background: white;
  font-size: 0.8rem;
  padding: 2px;
  margin-top: 7px;
  border: 1px solid #e3e9ef;
  border-radius: 0.3125rem;
  box-shadow: 0 0.25rem 0.5625rem -0.0625rem rgba(0, 0, 0, 0.03), 0 0.275rem 1.25rem -0.0625rem rgba(0, 0, 0, 0.05);
  z-index: 1037;
}
.editor #editorContextMenu:before {
  content: "";
  border-top: 1px solid #e3e9ef;
  border-right: 1px solid #e3e9ef;
  transform: translateX(-50%) rotate(-45deg);
  position: absolute;
  top: -5px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: white;
}
.editor #editorContextMenu .editorContextMenu-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.editor #editorContextMenu > [data-action],
.editor #editorContextMenu .editorContextMenu-buttons > [data-action] {
  padding: 6px;
  display: inline-block;
  cursor: pointer;
}
.editor #editorContextMenu > [data-action] svg,
.editor #editorContextMenu .editorContextMenu-buttons > [data-action] svg {
  min-width: 24px;
  min-height: 24px;
}
.editor #editorContextMenu .divider {
  border-right: 1px solid rgba(0, 0, 0, 0.085);
  margin: 3px;
}
.editor #editorContextMenu .editorContextMenu-form {
  min-width: 400px;
}
.editor #editorContextMenu .editorContextMenu-form .form-control {
  max-width: 350px;
}
.editor .editorToolbar {
  min-height: 37px;
  z-index: 1036;
  white-space: nowrap;
}
.editor .editorToolbar > * {
  margin-right: 3px;
  background-color: white;
}
.editor .editorToolbar .btn-sm {
  padding: 0.2rem;
}
.editor .editorToolbar .active {
  font-weight: bold;
  pointer-events: auto;
}
.editor .editorToolbar svg {
  margin-top: -4px;
  margin-bottom: -4px;
  max-width: initial;
}
.editor .editorToolbar svg + span {
  margin-left: 0.45em;
}
.editor .editorToolbar .ci-add-circle {
  font-size: 1.2rem;
}
.editor .editorToolbar .dropdown .dropdown-menu {
  min-width: 6rem;
}
.editor .editorToolbar .dropdown .dropdown-menu .dropdown-item {
  padding: 0.25rem 2.5rem 0.25rem 1rem;
}
.editor .editorToolbar .dropdown .dropdown-menu .dropdown-item[data-action] {
  padding-right: 1rem;
}
.editor .editorToolbar .dropdown .dropdown-menu .dropdown-item[data-format].active {
  position: relative;
}
.editor .editorToolbar .dropdown .dropdown-menu .dropdown-item[data-format].active:after {
  position: absolute;
  right: 1rem;
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8L7 12L14 5' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background-position: center center;
}
.editor .editorToolbar .dropdown .dropdown-menu.dropdown-matrix .matrix-table .matrix-top,
.editor .editorToolbar .dropdown .dropdown-menu.dropdown-matrix .matrix-table .matrix-bottom {
  text-align: center;
}
.editor .editorToolbar .dropdown .dropdown-menu.dropdown-matrix .matrix-table .matrix-left,
.editor .editorToolbar .dropdown .dropdown-menu.dropdown-matrix .matrix-table .matrix-right {
  width: 1%;
}
.editor .editorToolbar .dropdown .dropdown-menu.dropdown-matrix .matrix-table .dropdown-matrix-top,
.editor .editorToolbar .dropdown .dropdown-menu.dropdown-matrix .matrix-table .dropdown-matrix-bottom {
  display: inline-flex;
}
.editor .editorToolbar .dropdown .dropdown-menu.dropdown-matrix .matrix-table .matrix-0-inner > .dropdown-matrix-inner {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  border: 1px solid grey;
  border-radius: 10px;
  background-color: wheat;
}
.editor .editorToolbar .dropdown .dropdown-menu.dropdown-matrix .matrix-table .dropdown-matrix-inner {
  text-align: center;
}
.editor .editorToolbar .dropdown .dropdown-menu.dropdown-matrix .matrix-table .dropdown-matrix-left,
.editor .editorToolbar .dropdown .dropdown-menu.dropdown-matrix .matrix-table .dropdown-matrix-right {
  display: flex;
  flex-direction: column;
}
.editor .editorToolbar .dropdown .dropdown-menu.dropdown-matrix .dropdown-item {
  padding: 0.25rem 0.8rem;
}
.editor .editorToolbar .dropdown .dropdown-menu.dropdown-matrix .dropdown-item[data-format].active:after {
  content: none;
}
.editor .editorToolbar .dropdown.dropdown-swatch .dropdown-menu.show {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  overflow: hidden;
  width: 120px;
  min-width: 120px;
}
.editor .editorToolbar .dropdown.dropdown-swatch .dropdown-menu .dropdown-item {
  display: inline-block;
  width: 25%;
  padding: 0;
  padding-top: 25%;
  cursor: default;
  position: relative;
}
.editor .editorToolbar .dropdown.dropdown-swatch .dropdown-menu .dropdown-item:after {
  content: none !important;
  transform: none;
}
.editor .editorToolbar .dropdown.dropdown-swatch .dropdown-menu .dropdown-item:hover:after {
  content: "" !important;
  border: 2.5px solid white;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
  transform: none;
  background-image: none;
  width: 100%;
  height: 100%;
}
.editor .editorToolbar .dropdown.dropdown-swatch .dropdown-menu .dropdown-item.no-color:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid var(--bs-red) !important;
  border-radius: 2px;
  background: var(--bs-red);
  width: 90%;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.editor .editorToolbar .dropdown.dropdown-swatch .dropdown-menu .dropdown-item.swatch-image:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M5 15.7l3.3-3.2c.3-.3.7-.3 1 0L12 15l4.1-4c.3-.4.8-.4 1 0l2 1.9V5H5v10.7zM5 18V19h3l2.8-2.9-2-2L5 17.9zm14-3l-2.5-2.4-6.4 6.5H19v-4zM4 3h16c.6 0 1 .4 1 1v16c0 .6-.4 1-1 1H4a1 1 0 01-1-1V4c0-.6.4-1 1-1zm6 8a2 2 0 100-4 2 2 0 000 4z' fill-rule='nonzero'/%3E%3C/svg%3E");
}
.editor .editorToolbar .dropdown.dropdown-swatch .dropdown-menu .swatch-image-background-position {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.editor .editorToolbar .dropdown.dropdown-swatch .dropdown-menu .swatch-image-background-position a {
  width: 33.3333%;
  height: 1rem;
}
.editor .editorToolbar .dropdown.dropdown-swatch .dropdown-menu .swatch-image-background-position a:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translateX(-50%) translateY(-50%);
  background: var(--bs-body-color);
  border-radius: 100%;
}

iframe.editorContent {
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.editorContent {
  outline: none;
  padding: 8px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  display: block;
  padding-bottom: 2rem;
  width: 100%;
}
.editorContent .editorMovingElement {
  opacity: 50%;
}
.editorContent.editorMovingTarget,
.editorContent .editorMovingTarget {
  position: relative;
}
.editorContent.editorMovingTarget:after,
.editorContent .editorMovingTarget:after {
  content: "Move here";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  background-color: purple;
  color: white;
  z-index: 12;
  font-size: 11px;
}
.editorContent.editorMovingTarget[data-movingposition=before]:after,
.editorContent .editorMovingTarget[data-movingposition=before]:after {
  top: 0;
  content: "↑";
}
.editorContent.editorMovingTarget[data-movingposition=after]:after,
.editorContent .editorMovingTarget[data-movingposition=after]:after {
  bottom: 0;
  content: "↓";
}
.editorContent.editorMovingTarget[data-movingposition=inside]:after,
.editorContent .editorMovingTarget[data-movingposition=inside]:after {
  bottom: auto;
  left: 50%;
  right: auto;
  top: 50%;
  padding: 3px 10px;
  transform: translateX(-50%) translateY(-50%);
  content: "Inside";
}
.editorContent .row > .col.editorMovingTarget[data-movingposition=before]:after {
  top: 0;
  bottom: 0;
  left: 0;
  right: 80%;
  content: "←";
}
.editorContent .row > .col.editorMovingTarget[data-movingposition=after]:after {
  top: 0;
  bottom: 0;
  left: 80%;
  right: 0;
  content: "→";
}
.editorContent tabs > tab.editorMovingTarget[data-movingposition=before]:after {
  top: 0;
  bottom: 0;
  left: 0;
  content: "←";
}
.editorContent tabs > tab.editorMovingTarget[data-movingposition=after]:after {
  top: 0;
  bottom: 0;
  right: 0;
  content: "→";
}
.editorContent * {
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  cursor: default;
}
.editorContent [contenteditable=false] {
  caret-color: transparent;
}
.editorContent p,
.editorContent h1,
.editorContent h2,
.editorContent h3,
.editorContent h4,
.editorContent h5,
.editorContent h6,
.editorContent td,
.editorContent th,
.editorContent li {
  -moz-user-select: text;
       user-select: text;
  -webkit-user-select: text;
  cursor: text;
}
.editorContent p *,
.editorContent h1 *,
.editorContent h2 *,
.editorContent h3 *,
.editorContent h4 *,
.editorContent h5 *,
.editorContent h6 *,
.editorContent td *,
.editorContent th *,
.editorContent li * {
  -moz-user-select: text;
       user-select: text;
  -webkit-user-select: text;
  cursor: text;
}
.editorContent widget {
  min-height: 30px;
  display: block;
  white-space: normal;
  clear: both;
  cursor: pointer;
  z-index: 10;
}
.editorContent widget section,
.editorContent widget tabs,
.editorContent widget tab,
.editorContent widget .row,
.editorContent widget .col,
.editorContent widget .table-responsive,
.editorContent widget ol,
.editorContent widget ul,
.editorContent widget p,
.editorContent widget h1,
.editorContent widget h2,
.editorContent widget h3,
.editorContent widget h4,
.editorContent widget h5,
.editorContent widget h6 {
  position: relative;
  border: none;
}
.editorContent widget section:before, .editorContent widget section:after,
.editorContent widget tabs:before,
.editorContent widget tabs:after,
.editorContent widget tab:before,
.editorContent widget tab:after,
.editorContent widget .row:before,
.editorContent widget .row:after,
.editorContent widget .col:before,
.editorContent widget .col:after,
.editorContent widget .table-responsive:before,
.editorContent widget .table-responsive:after,
.editorContent widget ol:before,
.editorContent widget ol:after,
.editorContent widget ul:before,
.editorContent widget ul:after,
.editorContent widget p:before,
.editorContent widget p:after,
.editorContent widget h1:before,
.editorContent widget h1:after,
.editorContent widget h2:before,
.editorContent widget h2:after,
.editorContent widget h3:before,
.editorContent widget h3:after,
.editorContent widget h4:before,
.editorContent widget h4:after,
.editorContent widget h5:before,
.editorContent widget h5:after,
.editorContent widget h6:before,
.editorContent widget h6:after {
  content: none;
}
.editorContent widget > * {
  pointer-events: none;
}
.editorContent section,
.editorContent tabs,
.editorContent tabs > tab,
.editorContent .row,
.editorContent .row > .col,
.editorContent .table-responsive,
.editorContent ol,
.editorContent ul,
.editorContent p,
.editorContent h1,
.editorContent h2,
.editorContent h3,
.editorContent h4,
.editorContent h5,
.editorContent h6,
.editorContent widget {
  position: relative;
}
.editorContent section:before,
.editorContent tabs:before,
.editorContent tabs > tab:before,
.editorContent .row:before,
.editorContent .row > .col:before,
.editorContent .table-responsive:before,
.editorContent ol:before,
.editorContent ul:before,
.editorContent p:before,
.editorContent h1:before,
.editorContent h2:before,
.editorContent h3:before,
.editorContent h4:before,
.editorContent h5:before,
.editorContent h6:before,
.editorContent widget:before {
  position: absolute;
  top: 0;
  line-height: 1;
  color: var(--bs-gray-600);
  background-color: white;
  padding: 1px 1px;
  z-index: 11;
  font-size: 8px;
}
.editorContent section:before {
  content: "SECTION";
  left: 0;
}
.editorContent tabs:before {
  content: "TABS";
  left: 0;
}
.editorContent tab:before {
  content: "TAB";
  left: 0;
}
.editorContent .row:before {
  content: "ROW";
  left: 0;
}
.editorContent .row > div.col:before {
  content: "COLUMN";
  left: 0;
}
.editorContent .table-responsive:before {
  content: "TABLE";
  left: 0;
}
.editorContent ol:before,
.editorContent ul:before {
  content: "LIST";
  left: 0;
}
.editorContent p[data-editorhovered]:before, .editorContent p[data-editoractive]:before {
  content: "PARAGRAPH";
  right: 0;
}
.editorContent h1[data-editorhovered]:before, .editorContent h1[data-editoractive]:before {
  content: "HEADING 1";
  right: 0;
}
.editorContent h2[data-editorhovered]:before, .editorContent h2[data-editoractive]:before {
  content: "HEADING 2";
  right: 0;
}
.editorContent h3[data-editorhovered]:before, .editorContent h3[data-editoractive]:before {
  content: "HEADING 3";
  right: 0;
}
.editorContent h4[data-editorhovered]:before, .editorContent h4[data-editoractive]:before {
  content: "HEADING 4";
  right: 0;
}
.editorContent h5[data-editorhovered]:before, .editorContent h5[data-editoractive]:before {
  content: "HEADING 5";
  right: 0;
}
.editorContent h6[data-editorhovered]:before, .editorContent h6[data-editoractive]:before {
  content: "HEADING 6";
  right: 0;
}
.editorContent widget:before {
  content: "WIDGET";
  right: 0;
}
.editorContent [data-editorhovered]:after,
.editorContent [data-editoractive]:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11;
  pointer-events: none;
  border: 1.3px solid rgba(255, 0, 0, 0);
}
.editorContent [data-editorhovered]:after {
  animation-name: hovered;
  animation-duration: 0.2s;
  animation-timing-function: ease-in;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
}
.editorContent [data-editorhovered]:before,
.editorContent [data-editoractive]:before {
  font-weight: bold;
}
@keyframes hovered {
  0% {
    border-color: rgba(255, 0, 0, 0);
  }
  100% {
    border-color: rgb(255, 0, 0);
  }
}
.editorContent [data-editoractive]:after {
  border: 2px solid red !important;
}
.editorContent tabs,
.editorContent tab {
  display: block;
}
.editorContent section,
.editorContent tabs,
.editorContent tabs > tab,
.editorContent .row,
.editorContent .row > .col {
  border: 0.5px dashed grey;
  padding-top: 10px;
  min-height: 2.6rem;
}/*# sourceMappingURL=editor.css.map */