.table-module > div{
    width:auto;
    max-width:100%;
    padding-left:20px;
    padding-right:20px;
    margin:0 auto;
}
.table-wrapper{
    text-align: center;
    overflow-x: auto;
    padding-bottom: 40px;
    margin: 40px 0 60px 0;
}

.table-el {


    table-layout: fixed;
    width: auto;
    border-spacing: 0;
    border-collapse: separate;
    margin:0 auto;
    color: var(--neutral-k10);
    border-radius: 16px;
    overflow: hidden;
    text-align: left;


}
.table-el thead th,
.table-el tbody td {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    word-wrap: break-word;
}



.table-el thead th {
    background-color: transparent;
    vertical-align: middle;
    text-align: left;
    padding:18px 10px;


}
.table-el thead th:first-of-type,
.table-el td:first-of-type{
    padding-left:32px;

}
.table-el tbody tr:first-of-type td:first-of-type{
    border-top-left-radius:  16px;

}
.table-el tbody tr:first-of-type td:last-of-type{
    border-top-right-radius:  16px;

}

.table-el thead th:last-of-type,
.table-el td:last-of-type{
    padding-right:32px;
}
.table-el thead th p {
    font-weight: 600;


    font-weight: bold;
    font-size:20px;
}
.table-el tbody tr td:first-child {
    font-weight: 700;
    color: #ffffff;
    width: 180px;
}

.table-el td {

    background-color:  var(--neutral-k1);
    vertical-align: middle;
    padding:16px 10px;
    border-bottom:8px solid #121212;

}





.table-el tbody tr:last-child td {
    border-bottom: none;
}



.table-el a:hover {
    text-decoration: none;
}

@media screen and (min-width:1024px){
    .table-wrapper{

        margin:  60px 0;
    }
}

@media screen and (max-width:1024px){
    .table-el thead th:first-of-type, .table-el td:first-of-type {
        padding-left: 24px;
    }
    .table-el td,
    .table-el thead th{

        padding: 12px 8px;

    }
    .table-el thead th:last-of-type, .table-el td:last-of-type {
    padding-right: 24px;
}
}