/* CSS Document */
.textEditor ul {
  list-style: none;
  padding-left: 20px;
}

.textEditor ul li {
  position: relative;
  letter-spacing: 0;
}

.textEditor ul li::before {
  content: '';
  position: absolute;
  top: 9px;
  left: -15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #19b6d1;
}

.textEditor ul li + li {
  margin-top: 10px;
}

.textEditor .imgBox {
  margin-top: 50px;
}

.textEditor .imgBox img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 30px;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
