.html_editor {
    font-size: 18px;
    line-height: 25px;
    color:#404040;
    font-family: AvenirNextCyr-Regular;
}
.html_editor img {
    height: auto!important;
}
.html_editor a {
    font-size: 18px;
}

.html_editor.light {
    font-family: AvenirNextCyr-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;
    font-family: GothamPro-Medium;
    color: #11a8f0;
    content: "•";
    left: 5px;
}
.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;
    font-family: GothamPro-Medium;
    color: #11a8f0;
    left: 5px;
}

.html_editor table {
    border-collapse: collapse;
}
.html_editor table td {
    border:1px solid #eee;
    padding:10px;
    font-size: 16px;
}

.html_editor .accordion_title {
    background: none!important;
    font-size: 18px!important;
    line-height: 26px!important;
    font-family: GothamPro-Medium;
    color:#000;
    border:1px solid #E2E6EA;
    padding:25px;
    cursor: pointer;
    position: relative;
}
.html_editor .accordion_title::after {
    color:#11A8F0;
    content: "+";
    font-size: 40px;
    position: absolute;
    top: 25px;
    right: 25px;
    font-family: AvenirNextCyr-Light;
}
.html_editor .accordion_title.open::after {
    content: "—";
}

.html_editor .accordion_text {
    margin-top: -20px;
    background: none!important;
    display: none;
    padding:25px;
    border-left:1px solid #E2E6EA;
    border-right:1px solid #E2E6EA;
    border-bottom:1px solid #E2E6EA;
    position: relative;
}
.html_editor .accordion_text:before {
    position: absolute;
    border-top:1px solid #E2E6EA;
    width: 94%;
    height: 1px;
    top:0px;
    content: "";
    padding-bottom: 25px;
}

.html_editor .a_btn {
    font-family: GothamPro-Medium;
    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 .html_quote:before {
    content: '';
    position: absolute;
    left:0px;
    top: 5px;
    width: 70px;
    height: 100%;
    border-right:2px solid #11a8f0;
    background-image: url(/img/quotation.svg);
    background-repeat: no-repeat;
    background-position: center top;
}


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

    .html_editor img:not(.html_icon) {
        display: block!important;
        width: 90%!important;
        height: auto!important;
        max-width: 100%!important;
        margin: 25px auto!important;
        float: none;
    }
    .html_editor {
        font-size: 14px;
        line-height: 22px;
        padding:10px;
    }
    .html_editor table {
        border-collapse: collapse;
        width: 100%!important;
    }

}

