/**
 * Help Center Module
 * Help content sections and modals
 */

/* ===== HELP CENTER CONTENT ===== */
.help_content {
    display: none;
    padding: 5px 0;
}

.help_content.active {
    display: block;
}

.help_content .blist {
    margin-bottom: 8px;
    padding: 12px 10px;
}

.help_content .text_ssmall {
    font-size: 13px;
    line-height: 1.4;
}

.help_content .text_reg {
    font-size: 15px;
    margin-bottom: 4px;
}

.help_content .text_med {
    font-size: 19px;
    margin-bottom: 18px;
    padding-bottom: 12px;
}

/* ===== HELP CENTER MODAL ===== */
@media (max-width: 768px) {
    .help_center_modal {
        padding: 8px;
        max-height: 85vh;
        overflow-y: auto;
    }
}

