:root{
    --e-table-raw-one-green:#2ABB9C;
}
.e-table-raw-one table,.e-table-raw-one table th,.e-table-raw-one table td {
    border: 1px solid #D7E4EE;
    border-collapse: collapse;
}
.e-table-raw-one {
    border: 1px solid #D7E4EE;
    border-radius: 10px !important;
    overflow: hidden;
}
.e-table-raw-one table {
    width: 100%;
    border: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;

}
.e-table-raw-one table thead {
    background: #F8F9FC;
}
.e-table-raw-one table thead tr th {
    font-size: 18px;
    padding: 5px 10px 5px 10px ;
    font-weight: 600;
    text-align: center;
}
.e-table-raw-one table thead tr th:first-child {
    text-align: left ;
}
.e-table-raw-one table tbody td {
    font-size: 18px;
    padding: 5px 10px 5px 10px;
    font-weight: 300;
    text-align: center;
    height: 30px;
}
.e-table-raw-one table tbody tr td:first-child{
    text-align: left;
}
.e-table-raw-one table tbody tr td:last-child{
    width: 40%;
    position: relative;
}

/* Responsive Style */
@media only screen and (max-width: 768px) {
    .e-table-raw-one table thead tr th{
        padding: 10px 5px;
        font-size: 14px;
    }

    .e-table-raw-one table tbody tr td{
        padding: 10px 5px;
        font-size: 14px;
    }
}



/* RTL */
[dir="rtl"] .e-table-raw-one table thead tr th:first-child {
    text-align: right;
}
[dir="rtl"] .e-table-raw-one table tbody tr td:first-child{
    text-align: right;
}
