.toastify {
  --color-danger: #B71C1C;
  --color-success: #25A94E;
  border-radius: 4px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.toastify.error {
  background: var(--color-danger);
  color: white;
}
.toastify.success {
  background: var(--color-success);
  color: white;
}

.swal2-container .swal2-modal {
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 1rem;
  box-sizing: border-box;
}
.swal2-container .swal2-icon {
  margin: 0;
  width: 3rem;
  height: 3rem;
}
.swal2-container .swal2-icon-content {
  font-size: 2.2rem;
}
.swal2-container .swal2-title {
  display: block;
  padding: 0;
  font-size: 1.3rem;
  font-weight: 600;
}
.swal2-container .swal2-html-container {
  padding: 0;
  font-size: 1rem;
}

.all:has(#editor):has(#pages) {
  --color-primary: #0173FA;
  --color-primary--hover: #0047b1;
  --color-primary--active: #3871c6;
  --color-primary--light: #dfe9f8;
  --color-secondary: #878787;
  --color-secondary--active: #6f6f6f;
  --color-danger: #B71C1C;
  --color-danger--active: #961717;
  --color-success: #25A94E;
  --color-success--active: #11652B;
  --color-bg: #F5F5F5;
  --color-element-bg: #FFFFFF;
  --color-text: #000000;
  --color-text--light: #373737;
  --color-subheading: #646464;
  --color-text-inverted: #FFFFFF;
  --color-pdf: #E2061B;
  --transition: .2s ease all;
  --box-shadow-section: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.all:has(#editor):has(#pages) {
  width: 100%;
  max-width: 1310px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}
.all:has(#editor):has(#pages) .roof {
  width: 100%;
  box-sizing: border-box;
}
.all:has(#editor):has(#pages) .basis {
  width: 100%;
  box-sizing: border-box;
  background-color: var(--color-bg);
}
.all:has(#editor):has(#pages) h2, .all:has(#editor):has(#pages) h3, .all:has(#editor):has(#pages) .h6 {
  color: var(--color-text);
  margin: 0;
}
.all:has(#editor):has(#pages) h2 {
  font-size: 1.1rem;
  font-weight: 600;
}
.all:has(#editor):has(#pages) h3 {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-subheading);
}
.all:has(#editor):has(#pages) .h6 {
  font-size: 0.8rem;
  width: 100%;
  color: var(--color-subheading);
}
.all:has(#editor):has(#pages) .hidden {
  display: none;
}
.all:has(#editor):has(#pages) .ml-auto {
  margin-left: auto !important;
}
.all:has(#editor):has(#pages) textarea, .all:has(#editor):has(#pages) input[type=text], .all:has(#editor):has(#pages) select {
  background-color: var(--color-bg);
  padding: 0.5rem;
  border-radius: 5px;
  width: 100%;
  border: 1px solid transparent;
  color: var(--color-text);
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}
.all:has(#editor):has(#pages) textarea:hover, .all:has(#editor):has(#pages) input[type=text]:hover, .all:has(#editor):has(#pages) select:hover {
  border-color: var(--color-primary--active);
}
.all:has(#editor):has(#pages) textarea:focus, .all:has(#editor):has(#pages) input[type=text]:focus, .all:has(#editor):has(#pages) select:focus {
  border-color: var(--color-primary);
}
.all:has(#editor):has(#pages) textarea {
  min-height: 30px;
  max-height: 300px;
  resize: vertical;
}
.all:has(#editor):has(#pages) select {
  cursor: pointer;
}
.all:has(#editor):has(#pages) .tooltip-container {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: help;
  background-color: transparent;
  border: none;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding: 0;
  height: -moz-fit-content;
  height: fit-content;
  width: 16px;
  height: 16px;
  margin-left: -0.25rem;
}
.all:has(#editor):has(#pages) .tooltip-container svg {
  width: 100%;
  height: 100%;
  color: var(--color-primary);
}
.all:has(#editor):has(#pages) .tooltip-container:hover .tooltip-content, .all:has(#editor):has(#pages) .tooltip-container:focus-within .tooltip-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.all:has(#editor):has(#pages) .tooltip-container .tooltip-content {
  visibility: hidden;
  opacity: 0;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background-color: #333;
  text-align: left;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.25rem;
  border-radius: 6px;
  font-size: 14px;
  width: -moz-max-content;
  width: max-content;
  max-width: 320px;
  transition: var(--transition);
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.all:has(#editor):has(#pages) .tooltip-container .tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}
.all:has(#editor):has(#pages) .tooltip-container .tooltip-content.top {
  bottom: 100%;
  margin-bottom: 12px;
}
.all:has(#editor):has(#pages) .tooltip-container .tooltip-content.bottom {
  top: 100%;
  margin-top: 12px;
  bottom: auto;
}
.all:has(#editor):has(#pages) .tooltip-container .tooltip-content.left {
  right: 100%;
  left: auto;
  margin-right: 12px;
  transform: translateY(-50%) translateX(-8px);
}
.all:has(#editor):has(#pages) .tooltip-container .tooltip-content.right {
  left: 100%;
  margin-left: 12px;
  transform: translateY(-50%) translateX(8px);
}
.all:has(#editor):has(#pages) .tooltip-container .tooltip-content.center {
  left: 50%;
  transform: translateX(-50%);
}
.all:has(#editor):has(#pages) .tooltip-container .tooltip-content p, .all:has(#editor):has(#pages) .tooltip-container .tooltip-content span {
  margin: 0;
  padding: 0;
  color: var(--color-bg);
}
.all:has(#editor):has(#pages) .nav-head {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.75rem;
  box-sizing: border-box;
  padding: 0;
  width: 100%;
}
.all:has(#editor):has(#pages) .nav-head h3 {
  color: var(--color-text);
  font-weight: 600;
  font-size: 1rem;
}
.all:has(#editor):has(#pages) .nav-head .opt-add {
  margin-left: auto;
  border: none;
  width: 16px;
  height: 16px;
  padding: 0.1rem;
}
.all:has(#editor):has(#pages) > .navigation {
  max-height: 2500px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  width: 100%;
  min-height: 900px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  border-left: none;
  border-right: none;
}
.all:has(#editor):has(#pages) > .navigation ul {
  margin: 0;
  box-sizing: border-box;
  margin-left: 0.3rem;
  padding-left: 0.25rem;
  border-left: 1px dashed #696969;
}
.all:has(#editor):has(#pages) > .navigation .list-item-head {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.05rem;
  position: relative;
  width: 100%;
  padding-left: 0.55rem;
}
.all:has(#editor):has(#pages) > .navigation .toggle-btn {
  position: absolute;
  left: 0;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 12px;
  min-width: 12px;
  height: 12px;
  min-height: 12px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-secondary);
  transition: var(--transition);
}
.all:has(#editor):has(#pages) > .navigation .toggle-btn:hover {
  color: var(--color-primary--active);
  transform: scale(1.2);
}
.all:has(#editor):has(#pages) > .navigation .toggle-btn[is-open=true] {
  transform: rotate(90deg);
}
.all:has(#editor):has(#pages) > .navigation .toggle-btn svg, .all:has(#editor):has(#pages) > .navigation .toggle-btn use {
  width: 100%;
  height: 100%;
}
.all:has(#editor):has(#pages) > .navigation > li > .list-item-head {
  background-color: var(--color-element-bg);
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1;
}
.all:has(#editor):has(#pages) > .navigation > li > .list-item-head:hover {
  z-index: 999;
}
.all:has(#editor):has(#pages) > .navigation li:has(.left-list-title.current) > .list-item-head .left-list-title {
  color: #782355;
}
.all:has(#editor):has(#pages) > .navigation .left-list-title.current {
  font-weight: 600;
  border-radius: 0;
  border: none;
  background-color: inherit !important;
}
.all:has(#editor):has(#pages) .btn {
  background-color: transparent;
  border: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25rem 0.5rem;
  margin: 0;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  font-weight: normal;
}
.all:has(#editor):has(#pages) .btn[disabled] {
  pointer-events: none;
  opacity: 0.5;
}
.all:has(#editor):has(#pages) .btn-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
}
.all:has(#editor):has(#pages) .btn-icon:hover {
  transform: scale(1.3);
}
.all:has(#editor):has(#pages) .btn-icon svg, .all:has(#editor):has(#pages) .btn-icon use {
  width: 100%;
  height: 100%;
}
.all:has(#editor):has(#pages) .pointer-events-none {
  pointer-events: none;
}
.all:has(#editor):has(#pages) .btn-loading {
  opacity: 0.75;
}
.all:has(#editor):has(#pages) .btn-danger {
  background-color: var(--color-danger);
  color: var(--color-text-inverted);
}
.all:has(#editor):has(#pages) .btn-success {
  background-color: var(--color-success);
  color: var(--color-text-inverted);
}
.all:has(#editor):has(#pages) .btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-inverted);
}
.all:has(#editor):has(#pages) .btn-primary:hover {
  background-color: var(--color-primary--hover);
}
.all:has(#editor):has(#pages) .btn-primary:active {
  background-color: var(--color-primary--active);
}
.all:has(#editor):has(#pages) .btn-outline-success {
  border-color: var(--color-success);
  color: var(--color-success);
}
.all:has(#editor):has(#pages) .btn-outline-success:hover {
  background-color: var(--color-success);
  color: var(--color-text-inverted);
}
.all:has(#editor):has(#pages) .btn-outline-success:active {
  background-color: var(--color-success--active);
  border-color: var(--color-success--active);
}
.all:has(#editor):has(#pages) .btn-outline-primary {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.all:has(#editor):has(#pages) .btn-outline-primary:hover {
  background-color: var(--color-primary);
  color: var(--color-text-inverted);
}
.all:has(#editor):has(#pages) .btn-outline-primary:active {
  background-color: var(--color-primary--active);
  border-color: var(--color-primary--active);
}
.all:has(#editor):has(#pages) .btn-outline-danger {
  border-color: var(--color-danger);
  color: var(--color-danger);
}
.all:has(#editor):has(#pages) .btn-outline-danger:hover {
  background-color: var(--color-danger);
  color: var(--color-text-inverted);
}
.all:has(#editor):has(#pages) .btn-outline-danger:active {
  background-color: var(--color-danger--active);
  border-color: var(--color-danger--active);
}
.all:has(#editor):has(#pages) .btn-outline-secondary {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}
.all:has(#editor):has(#pages) .btn-outline-secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-text-inverted);
}
.all:has(#editor):has(#pages) .btn-outline-secondary:active {
  background-color: var(--color-secondary--active);
  border-color: var(--color-secondary--active);
}
.all:has(#editor):has(#pages) .btn-icon-absolute {
  position: absolute;
}
.all:has(#editor):has(#pages) .btn-icon-absolute--left {
  left: 0;
}
.all:has(#editor):has(#pages) .btn-icon-absolute--right {
  right: 0;
}
.all:has(#editor):has(#pages) .btn-icon-absolute--top {
  top: 0;
}
.all:has(#editor):has(#pages) .btn-icon-absolute--bottom {
  bottom: 0;
}
.all:has(#editor):has(#pages) .main-buttons-wrapper {
  margin-top: 0.5rem;
  margin-left: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.all:has(#editor):has(#pages) .current-article-heading {
  margin: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre;
  max-width: 490px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-secondary);
}
.all:has(#editor):has(#pages) .section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
}
.all:has(#editor):has(#pages) .section--mce-editor .section-body {
  gap: 0.75rem;
}
.all:has(#editor):has(#pages) .section-head {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 !important;
  gap: 1rem;
}
.all:has(#editor):has(#pages) .sub-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
}
.all:has(#editor):has(#pages) .sub-section-head {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}
.all:has(#editor):has(#pages) .section-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 1.25rem;
  background-color: var(--color-element-bg);
  box-shadow: var(--box-shadow-section);
  padding: 1rem;
  border-radius: 10px;
}
.all:has(#editor):has(#pages) #pages {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 250px;
  width: 250px;
  gap: 0.5rem;
  background-color: var(--color-element-bg);
  box-shadow: var(--box-shadow-section);
  padding: 1.5rem;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.all:has(#editor):has(#pages) #pages .left-list-title {
  color: var(--color-text);
  font-size: 0.7rem;
  height: -moz-fit-content;
  height: fit-content;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre;
  white-space: nowrap;
  width: 100%;
}
.all:has(#editor):has(#pages) #pages .left-list-title.off2 {
  color: var(--color-secondary);
  opacity: 1;
}
.all:has(#editor):has(#pages) #pages .archived-symbol {
  width: 13px;
  min-width: 13px;
  height: 13px;
  min-height: 13px;
  color: var(--color-secondary);
  margin-left: 5px;
  cursor: help;
}
.all:has(#editor):has(#pages) #pages .archived-symbol svg, .all:has(#editor):has(#pages) #pages .archived-symbol use {
  width: 100%;
  height: 100%;
}
.all:has(#editor):has(#pages) #pages > .navigation {
  max-height: 2500px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  width: 100%;
  min-height: 900px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  border-left: none;
  border-right: none;
}
.all:has(#editor):has(#pages) #pages > .navigation ul {
  margin: 0;
  box-sizing: border-box;
  margin-left: 0.3rem;
  padding-left: 0.25rem;
  border-left: 1px dashed #696969;
}
.all:has(#editor):has(#pages) #pages > .navigation li {
  width: 100%;
}
.all:has(#editor):has(#pages) #pages > .navigation .list-item-head {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.05rem;
  position: relative;
  width: 100%;
  padding-left: 0.55rem;
}
.all:has(#editor):has(#pages) #pages > .navigation .toggle-btn {
  position: absolute;
  left: 0;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 12px;
  min-width: 12px;
  height: 12px;
  min-height: 12px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-secondary);
  transition: var(--transition);
}
.all:has(#editor):has(#pages) #pages > .navigation .toggle-btn:hover {
  color: var(--color-primary--active);
  transform: scale(1.2);
}
.all:has(#editor):has(#pages) #pages > .navigation .toggle-btn[is-open=true] {
  transform: rotate(90deg);
}
.all:has(#editor):has(#pages) #pages > .navigation .toggle-btn svg, .all:has(#editor):has(#pages) #pages > .navigation .toggle-btn use {
  width: 100%;
  height: 100%;
}
.all:has(#editor):has(#pages) #pages > .navigation > li > .list-item-head {
  background-color: var(--color-element-bg);
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1;
}
.all:has(#editor):has(#pages) #pages > .navigation > li > .list-item-head:hover {
  z-index: 999;
}
.all:has(#editor):has(#pages) #pages > .navigation li:has(.left-list-title.current) > .list-item-head .left-list-title {
  color: #782355;
}
.all:has(#editor):has(#pages) #pages > .navigation .left-list-title.current {
  font-weight: 600;
  border-radius: 0;
  border: none;
  background-color: inherit !important;
}
.all:has(#editor):has(#pages) .basis {
  padding: 0;
  margin-top: 5px;
}
.all:has(#editor):has(#pages) .content {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  padding-top: 1rem;
}
.all:has(#editor):has(#pages) .main {
  display: flex;
  flex-direction: row;
}
.all:has(#editor):has(#pages) .footer {
  height: -moz-fit-content;
  height: fit-content;
}

.editor-heading-inner-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
}

.editor-heading-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
}

.editor-heading {
  color: var(--color-text) !important;
  margin: 0;
  font-weight: 600;
  font-size: 1.7rem;
}

.editor * {
  box-sizing: border-box;
  scrollbar-width: thin;
}
.editor textarea.textarea--full-width {
  width: 100%;
}
.editor .page-edit-fields {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
}
.editor .image-items {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.editor .image-items--row {
  flex-direction: row;
}
.editor .image-items--row .image-item {
  width: -moz-fit-content;
  width: fit-content;
}
.editor .file-items {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
}
.editor .file-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0rem;
}
.editor .file-icon {
  width: 16px;
  height: 16px;
  color: var(--color-pdf);
}
.editor .file-icon svg, .editor .file-icon use {
  width: 100%;
  height: 100%;
}
.editor .file-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.25rem;
}
.editor .image-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
}
.editor .image-textarea {
  width: 100%;
  resize: none !important;
  padding: 0.5rem;
}
.editor .drag-image-btn {
  cursor: grab;
}
.editor .image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 136px;
  height: 90px;
  border-radius: 4px;
  overflow: hidden;
  background-color: rgb(245, 245, 245);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.editor .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
.editor .mce-wrapper {
  width: 100%;
}
.editor .mce-wrapper #content_ifr {
  height: 100%;
}
.editor .mce-wrapper.editfield #content_ifr {
  min-height: 486px;
}
.editor .sticky-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  position: sticky;
  width: 100%;
  padding: 0.5rem 0;
  background: rgba(var(--color-element-bg), 0.75);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: 1;
}
.editor .sticky-wrapper--top {
  top: 0;
}
.editor .sticky-wrapper--bottom {
  bottom: 0;
  margin-top: -0.5rem;
}
.editor .editor-tags-service {
  background: transparent;
}
.editor .inputs-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  margin: 0;
}
.editor .inputs-wrapper--cols {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.editor .input-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
}
.editor .input-wrapper--sm {
  width: 31%;
}/*# sourceMappingURL=editor.styles.css.map */