.html_editor {
    font-weight: 400;
    line-height: 20px;
    font-size: 14px;
    line-height: 20px;
    padding:30px 0px;
}
.html_editor p {
    display: block;
    margin-top:0px;
    margin-bottom:0px;
}
.html_editor table {
    border-collapse: collapse;
}
.html_editor table td {
    padding:5px;
    border:1px solid #eee;
}
.html_editor table caption {
    font-weight: 600;
    font-size: 14px;
    padding:10px 0px;
}

.html_editor a.blue_link {
    color:#1e73be;
    background: none !important;
}
.html_editor a.blue_link:hover {
    text-decoration: underline;
}
.html_editor .img_cont {
    display: flex;
    background: none !important;
    justify-content: space-between;
}

.html_editor .head1 {
    font-size: 16px;
    font-weight: 500;
    padding:10px 0px;
    background: none !important;
}

.html_editor .head2 {
    font-size: 18px;
    font-weight: 600;
    padding:15px 0px;
    background: none !important;
}

.html_editor .head3 {
    background: none !important;
    font-size: 22px;
    font-weight: 500;
    padding:15px 0px;
}

.html_editor .faq_question {
    display: flex;
    position: relative;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
    padding-left: 30px;
    background: none !important;
    color:#000;
    font-weight: 600;
    font-size: 15px;
}
.html_editor .faq_question:hover {
    color: #cc8e49;
}
.html_editor .faq_question:before {
    content: "";
    background: url(/img/ico_down.svg);
    background-size: contain;
    position: absolute;
    top:0px;
    left: 0px;
    width: 20px;
    height: 20px;
}
.html_editor .faq_question.open:before {
    transform: rotate(180deg);
}

.html_editor .faq_answer {
    background: none !important;
    padding-bottom: 30px;
    display: none;
    font-weight: 400;
}
.html_editor ul {
    margin: 0px;
    padding-left:15px;
    list-style: none;
}

.html_editor ul li::before {
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #1e73be; /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
}

@media screen and (max-width: 700px) {

}