
.lexxy-editor ul,
.lexxy-editor ol {
  margin: 0 0 1em 1.3em;
  padding-left: 1.1em;
  list-style-position: outside;
}

.lexxy-editor {
  [dir=center] {
    text-align: center;
  }
  [dir=right] {
    text-align: right;
  }
  [dir=justify] {
    text-align: justify;
  }
  [dir=auto] {
    text-align: left;
  }
}

.lexxy-editor li {
  margin: 0.25em 0;
  line-height: 1.4;
}

.lexxy-editor ul li {
  list-style-type: disc;
}

.lexxy-editor ul ul li {
  list-style-type: circle;
}

.lexxy-editor ul ul ul li {
  list-style-type: square;
}

.lexxy-editor ol {
  counter-reset: ordered-list;
}

.lexxy-editor ol li {
  list-style-type: decimal;
}

.lexxy-editor ol li::marker {
  font-weight: 600;
}

.lexxy-editor ul ul,
.lexxy-editor ul ol,
.lexxy-editor ol ul,
.lexxy-editor ol ol {
  margin-top: 0.2em;
  margin-bottom: 0.2em;
}

/* Remove focus ring from contenteditable div */
.lexxy-editor [contenteditable="true"]:focus {
  outline: none;
  box-shadow: none;
}

.lexxy-editor [contenteditable="true"] {
  outline: none;
}