.table-block .table
{
	border :1px solid #E0E0E0;
}

.table-block .table tr > td {
    padding: 22px 24px;
	background-color: #FFFFFF;
	border :none;
}

.table-block .table tr {
	border :1px solid #E0E0E0;	
}

.table-block .table tr > td:first-child {
    background-color: #F7F9F9;
	 padding: 22px 8px;
	width:30%;
	max-width:30%;
	text-align:center;
	font-weight: 500;
	font-size: 15px;
}

.table-block .table .table_row {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 16px;
    border-bottom: 1px solid var(--wp--preset--color--light-gray);
}
.table-block .table .table_row:last-child {
    border-bottom: unset;
}
.table-block .table .table_row > .table_row--heading{
    width: 30%;
    background-color: #F7F9F9;
    padding: 22px 8px; 
}
.table-block .table .table_row > .table_row--heading > div {
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: center;
}
.table-block .table .table_row > .table_row--content {
    width: 70%;
    padding: 22px 8px;
}
.table-block .table .table_row > .table_row--content > div {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
}
.table-block .table .table_row > .table_row--heading,
.table-block .table .table_row > .table_row--content {
    display: flex;
    align-items: center;
}
.table-block .table .table_row > .table_row--heading{
    justify-content: center;
   
}

.table-block .table .table_row > .table_row--content > div > *:last-child {
    margin-bottom: 0px;
}

@media screen and (max-width: 1023px) {
    
}
@media screen and (max-width: 991px) {
    .table-block .table .table_row {
        flex-wrap: wrap;
        column-gap: 16px;
    }
    .table-block .table .table_row > .table_row--heading{
        display: block;
        width: 100%;
        padding: 12px 15px;
    }
    .table-block .table .table_row > .table_row--heading > div {
        font-size: 14px;
        line-height: 20px;

    }
    .table-block .table .table_row > .table_row--content {
        display: block;
        width: 100%;
        padding: 15px;
    }
    .table-block .table .table_row > .table_row--content > div {
        font-size: 14px;
        line-height: 24px;
    }
}
@media screen and (max-width: 767px) {
	
.table-block .table tr > td, .table-block .table tr, .table-block .table, .table-block .table tbody {
	display:block;
	
}

.table-block .table tr > td {
    padding: 15px 15px;
}

.table-block .table tr > td:first-child
{
	width:unset;
	max-width:unset;
}

}