.schema-table h2 {
    margin: 0 0 15px;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    padding: 0 10px;
}

.card-table {
    width: 100%;
}

.card-table tbody tr {
    height: 56px;
}

.card-table tbody tr:first-child {
    border-top: 5px solid #E4E8EE;
}

.card-table tbody tr td {
    width: 50%;
    padding: 0 10px 0 0;
    border: none;
    border-bottom: 1px solid #E4E8EE;
    vertical-align: middle;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #5C6570;
}

.card-table tbody tr td:first-child {
    font-weight: 700;
    color: #1B1D20;
    padding: 0 0 0 10px;
}

.card-table tbody tr td.red {
    color: #ec0a0a;
}

.card-table tbody tr td.green {
    color: #219b21;
}

.card-table tbody tr td span {
    padding: 4px;
    border-radius: 3px;
}

.schema-manual-table-text ul {
    padding-left: 1rem;
    padding-top: 1rem;
}

html[dir="rtl"] .card-table tbody tr td {
    padding: 0 0 0 10px;
}

html[dir="rtl"] .card-table tbody tr td:first-child {
    padding: 0 10px 0 0;
}

@media (max-width: 768px) {
    .schema-table h2 {
        font-size: 22px;
    }

    table.card-table {
        display: inline-table;
    }

    .card-table tbody tr {
        height: 37px;
    }

    .card-table tbody tr td {
        font-size: 14px;
    }
}

.fadeoutbg {
    animation: fadeoutbg 3s;
}

@keyframes fadeoutbg {
    from { background-color: yellow; }
    to { background-color: white; }
}