:root{
    --ct-table-row-br: 6px;
    --ct-table-th-font-size: 13px;
    --ct-table-td-font-size: 12px;
    --ct-table-bg: #E7E7E7;
}

.hr-table-start,
.hr-table-end{
    border-top: 2px solid #000;
    opacity: 1;
    margin-top: 10px;
    margin-bottom: 10px;
}

.table-ct-ms{
    border-collapse: separate;
    border-spacing: 0px 5px;
    font-size: 12px;
}

.table-ct{
    border-collapse: separate;
    border-spacing: 0px 5px;
    font-size: var(--ct-table-td-font-size);
}

.table-ct p{
    font-size: var(--ct-table-td-font-size);
}

.table-ct > thead>tr>th {
    border-bottom: 0px;
}

.table-ct > thead>tr>th {
    border-top: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: var(--ct-table-th-font-size);
    color: var(--ct-text-color-primary);
    font-weight: var(--ct-font-weight-regular);
    background-color: transparent;
}

.table-ct tbody tr{
    background-color: #FFF;
    border: 10px solid #e4e4e4;
    border-radius: var(--ct-table-row-br);
    border-left: 0px;
    border-right: 0px;
}

.table-ct tbody tr td{
    padding-top: 10px;
    padding-bottom: 10px;
    vertical-align: middle;
    font-size: var(--ct-table-td-font-size);
}

.table-ct tbody tr td:first-child{
    border-radius: var(--ct-table-row-br) 0px 0px var(--ct-table-row-br);
}

.table-ct tbody tr td:last-child{
    border-radius: 0px var(--ct-table-row-br) var(--ct-table-row-br) 0px;
}

.table-ct tbody tr td.td-info{
    border-radius: var(--ct-table-row-br) !important;
}

.table-ct tbody tr {
    background: var(--ct-table-bg);
    border-bottom: 0px solid var(--ct-table-bg);
    border-radius: var(--ct-table-row-br);
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
}

.table-ct tbody tr:nth-of-type(odd) {
    /* background: #e1e9e8; */
}

.table-ct-s1{
    font-size: 1rem;
}

.table-ct-s1 p{
    font-size: var(--ct-table-td-font-size);
}

.table-ct-s1 tr th {
    padding: 10px;
    font-size: 1.1rem;
    color: #000;
    font-weight: 700;
    background-color: transparent;
}

.table-ct-s1 tr td{
    padding-top: 10px;
    vertical-align: middle;
    font-size: 1rem;
}

.tbl-result-payment-rc .cth,
.tbl-result-payment-rc .cth strong{
    font-size: 1.1rem;
    color: #000;
    font-weight: 700;
}

.tbl-result-payment-rc .ctd{

}

@media only screen and (max-width: 800px) {
    /* Force table to not be like tables anymore */
    #no-more-tables table, 
    #no-more-tables thead, 
    #no-more-tables tbody, 
    #no-more-tables th, 
    #no-more-tables td, 
    #no-more-tables tr { 
        display: block; 
    }
 
    /* Hide table headers (but not display: none;, for accessibility) */
    #no-more-tables thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
 
    #no-more-tables tr {
        border: 1px solid #ccc;
        margin-bottom: 15px;
    }
 
    #no-more-tables td { 
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee; 
        position: relative;
        padding-left: 50%; 
        white-space: normal;
        text-align:left;
        min-height: 30px;
    }
 
    #no-more-tables td:before { 
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%; 
        padding-right: 10px; 
        white-space: nowrap;
        text-align:left;
        font-weight: bold;
    }
 
    /*
    Label the data
    */
    #no-more-tables td:before { content: attr(data-title); }
}