.text_editor {
    margin: 60px 0;
}
.text_editor .p-size-20 p {
    font-size: 20px;
    line-height: 1.4;
}
.text_editor .p-size-18 p {
    font-size: 18px;
    line-height: 1.4;
}
.text_editor .p-size-16 p {
    font-size: 16px;
    line-height: 1.4;
}

/* TABLE */
.text_editor table {
    margin: 30px 0 50px;
}
.text_editor table, .text_editor table th, .text_editor table tr, .text_editor table td {
    border: 0;
    border-spacing: 0;
}
.text_editor thead {
    background-color: var(--alt-gray);
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 700;
}
.text_editor table tr, .text_editor table td, .text_editor table th {
    padding: 5px;
}
.text_editor table th, .text_editor table td {
    min-width: 130px;
    text-align: left;
}
.text_editor table tbody tr:nth-child(odd) {
    background-color: var(--light-beige);
}

@media screen and (max-width: 767px) {
    .text_editor {
        margin: 30px 0 30px;
    }
    .text_editor table th, .text_editor table td {
        min-width: unset;
        text-align: left;
    }
}