

/* #region content-editor */
.content-editor {
    position: relative;

}
.content-editor:before {
    content: '';
    position: absolute;
    /* left: var(--border-view-distance); */
    width: 80%;
    top: -35px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-700-753bbd) 0%, var(--secondary-green-700-00cfb4) 49%, #F6F6F600 100%);
    border-radius: 5px 0px 0 5px;
}

.content-editor p span{
    font: var(--body-m);
    color: var(--grey-700)!important;

}
.content-editor strong {
    color: var(--grey-700);
    font: var(--body-m-bold);

}

.content-editor a,
.content-editor a span {
  color: var(--primary-700-753bbd)!important;
    font: var(--link);
border-bottom: 1px solid var(--primary-700-753bbd);
text-decoration: none;
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--primary-700-753bbd);
}

.content-editor a:hover{
  border-bottom: 3px solid var(--primary-700-753bbd);
}
/* #endregion content-editor */