.html_editor {
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
    color:#5f5f5f;
    font-family: "Inter", sans-serif!important;
}
.html_editor img {
    height: auto!important;
}
.html_editor a {
    font-size: 16px;
    text-decoration: underline;
    color:#BBCE00;
}

.html_editor .head1 {
    background: none!important;
    font-size: 20px;
    font-weight: 600;
    color: #2B3447;
}
.html_editor .head2 {
    background: none!important;
    font-size: 16px;
    font-weight: bold;
    color:#2B3447;
}

.html_editor .blue_link {
    background: none!important;
    color:#BBCE00;
    font-size: 16px;
}

.html_editor.light {
}
.html_editor ul, ol {
    padding-left:25px;
    padding-top:5px;
    padding-bottom:0px;
    padding-right:0px;
}
.html_editor ul li {
    list-style-type: none;
    position: relative;
    padding-left: 30px;
}
.html_editor ul li:before {
    position: absolute;
    font-size: 25px;
    color: #BBCE00;
    content: "•";
    left: 5px;
    top:-1px;
}
.html_editor ol {
    counter-reset: list 0;
}

.html_editor ol li {
    list-style-type: none;
    position: relative;
    padding-left: 30px;
}

.html_editor ol li:before {
    counter-increment: list;
    content: counter(list) ". ";
    position: absolute;
    font-size: 14px;

    color: rgb(79, 192, 192);
    left: 5px;
}

.html_editor table {
    border-collapse: collapse;
    border-radius: 30px;
    border-style: hidden; /* hide standard table (collapsed) border */
    box-shadow: 0 0 0 2px #BBCE00; /* this draws the table border  */
}
.html_editor table td {
    border:2px solid #BBCE00;
    padding:10px;
    vertical-align: middle;
}
.html_editor table td.header {
    color:#fff!important;
    font-size: 20px!important;
    font-weight: 600!important;
}
.html_editor table tr:first-child td:first-child {
    border-top-left-radius: 25px;
}
.html_editor table tr:first-child td:last-child {
    border-top-right-radius: 25px;
}
.html_editor table tr:last-child td:first-child {
    border-bottom-left-radius: 25px;
}
.html_editor table tr:last-child td:last-child {
    border-bottom-right-radius: 25px;
}


.html_editor .a_btn {
    font-size:13px!important;
    padding: 18px 30px 17px 30px!important;
    cursor: pointer;
    /*background: #11A8F0!important;*/
    background:#10c0e7 !important;
    border: none;
    color:#fff!important;
    border-radius: 2px;
    box-sizing: border-box;
    text-transform: uppercase;
}
.html_editor .a_btn:hover {
    background-color: #118bc5!important;
}
.html_editor .html_quote {
    background: none!important;
    padding-left:90px;
    font-style:italic;
    position: relative;
}

.html_editor .img_cont {
    background: none!important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}


@media screen and (max-width: 768px) {

    .html_editor .img_cont img {
        width: 100%;
        margin-bottom:20px;
    }

    .html_editor table {
        border-collapse: collapse;
        width: 100%!important;
    }

}

