.payment-timeframes table, .payment-card-choice table {
    width: 100%;
    border-collapse: collapse;
}
    /* Zebra striping
	tr:nth-of-type(odd) { 
		background: #eee; 
	} */
    .payment-timeframes table th, .payment-card-choice table th {
        background: #DAEBF5;
    }

    .payment-timeframes table td, th, .payment-card-choice table td, th {
        padding: 6px !important;
        /*border: 1px solid #ccc; */
        text-align: left;
    }

.payment-timeframes h4, .payment-card-choice h4 {
    font-size: 14px;
    margin-top: 15px;
}

.payment-timeframes fieldset {
    border: 1px solid #dddddd;
    border-radius: 3px;
    padding: 1.25rem 1.25rem 0 1.25rem;
    margin: 1.125rem 0;
}

@media only screen and (max-width: 641px) {
    .payment-timeframes table tr td {
        font-size: 13px !important;
    }
}

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {

    .payment-timeframes table,
		.payment-timeframes thead,
		.payment-timeframes tbody,
		.payment-timeframes th,
		.payment-timeframes td,
		.payment-timeframes tr { 
			display: block; 
			
		}

    .payment-timeframes table thead tr, .payment-card-choice table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .payment-timeframes table tr, .payment-card-choice table tr {
        border: 1px solid #ccc;
    }

    .payment-timeframes table td, .payment-card-choice table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 60% !important;
    }

        .payment-timeframes table td:before, .payment-card-choice table td:before {
            /* Now like a table header */
            position: absolute;
            /* Top/left values mimic padding */
            top: 6px;
            left: 6px;
            width: 45%;
            padding-right: 10px !important;
            white-space: nowrap;
        }

        .payment-timeframes table td:nth-of-type(1):before {
            content: "Submitted: ";
        }

        .payment-timeframes table td:nth-of-type(2):before {
            content: "Effective Payment Date: ";
        }

        .payment-card-choice table td:nth-of-type(1):before {
            content: "Card Type: ";
        }

        .payment-card-choice table td:nth-of-type(2):before {
            content: "Card Nickname: ";
        }

        .payment-card-choice table td:nth-of-type(3):before {
            content: "Card Ending In: ";
        }

        .payment-card-choice table td:nth-of-type(4):before {
            content: "Total Express Payment: ";
        }
}

p.payment-posting-header {
    margin-top: 2rem;
    line-height: 1.2;
    margin-bottom: .4rem !important;
}


