/** Content Styling for Builder and Frontend */

/* Content Styling */
.ulItems {
    display: flex;
    flex-wrap: wrap;
}
ul.ulItems, .ulItems ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
  
}
ul.ulItems li, .ulItems li {
    padding: .2rem .5rem;
    background: #f4f4f4;
    color: #010B19;
    margin: .5rem;
    border-radius: 3px;
}


/* vorteilListe */

.advList, .negList, ul[style="list-style-type: circle;"], ul[style="list-style-type: square;"] {
    list-style: none;
    padding-left: .5rem;
}
.advList li, .negList li, ul[style="list-style-type: circle;"] li, ul[style="list-style-type: square;"] li {
    display: flex;
}

.advList li:before, ul[style="list-style-type: circle;"] li::before {
    color: #1DCC86;
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    margin-right: 1rem;
}
.negList li:before, ul[style="list-style-type: square;"] li::before {
    color: red;
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    margin-right: 1rem;
}


.txtBlock {
    display: inline-block;
    background-color: #1DCC86;
    padding: .5rem 1rem;
    margin-right: 1rem;
    color: #FFF;
    border: 1px solid #1DCC86;
    border-radius: 3px;
}

/* HiText Preview */
.mce-content-body  .hiText {
    font-weight: 700;
    color: red;
    transition: all ease-in .2s;
}