.table-container{
    overflow: auto;
    position: relative;
    padding-bottom: 14px;
}
.news-single-page__text-content{
    width: 100%;
}
.ps__rail-y{
    display: none !important;
}

/* хром, сафари */
.table-container::-webkit-scrollbar { width: 0; }

/* ie 10+ */
.table-container{ -ms-overflow-style: none; }

/* фф (свойство больше не работает, других способов тоже нет)*/
.table-container { overflow: -moz-scrollbars-none; }
table {
    border-spacing:0px;
    overflow: hidden;
    background: transparent;
    min-width: 1200px;
    position: relative;
    overflow: auto;
}

.table{
    overflow: auto;
    width: 100%;
}

h2{
    font-weight: 500;
    font-size: 36px;
    line-height: 120%;
    margin-bottom: 8px;
}

figure{
    margin: 0;
}

.table-wrapper{
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    height: calc(100% + 86px);
}
thead{
    overflow: hidden;
    border-radius: 20px;
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

tbody {
    color:rgba(13, 13, 13, 1);
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}

thead th{
    padding: 16px 20px;
    background: rgba(10, 153, 113, 1);
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0%;
    font-size: 18px;
    box-sizing: border-box;
}

figcaption{
    margin-top: 8px;
}

thead th:first-child{
    text-align: start;
    left: 0;
    position: sticky;
    border: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 260px;
}

.col-5 thead th:first-child{
    width: calc(100% / 5);
}

.col-4 thead th:first-child{
    width: calc(100% / 4);
}

td:first-child{
    left: 0;
    position: sticky;
    min-width: 260px;
    background: inherit;
}

.col-5 thead th:not(:first-child){
    width: calc(100% / 5);
}

.col-5 thead td:not(:first-child){
    width: calc(100% / 5);
}

.col-4 thead th:not(:first-child){
    width: calc(100% / 4);
}

.col-4 thead td:not(:first-child){
    width: calc(100% / 4);
}

tr{

}
tbody tr:nth-child(2n - 1){
    background: rgba(247, 250, 250, 1);
}

tbody tr:nth-child(2n ){
    background: rgb(243, 245, 244, 1)
}

th:not(:last-child){
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

td:not(:last-child){
    border-right: 1px solid rgba(13, 13, 13, 0.1);
}

tbody td{
    padding: 12px 20px;
}

tbody tr td:not(:first-child){
    text-align: center;
}

tr:last-child{
    border-radius: 20px;
    overflow: hidden;
}


tr:last-child td:first-child{
    border-bottom-left-radius: 20px;
}
tr:last-child td:last-child{
    border-bottom-right-radius: 20px;
}

.table__description{
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: rgba(13, 13, 13, 0.8);
}
@media(max-width:1205px){
    .ps__rail-x{
        top: auto !important;
        height: 6px !important;
        background: rgba(13, 13, 13, 0.1) !important;
        position: absolute;
        bottom: 0 !important;
    }

    .ps__thumb-x{
        max-width: 100px;
        height: 100%;
        border-radius: 100px;
        overflow: hidden;
        height: 6px;
        background: black !important;
        position: absolute;
    }
}
.dsm-card__wrapper {
    display: grid;
    grid-template-columns: repeat(4, calc(100% / 4 - 16px));    grid-template-rows: 1fr;
    grid-auto-flow: row;    width: 100%;
    gap: 20px;
}
@media(max-width:1500px){
    .dsm-card__wrapper {
        grid-template-columns: repeat(3, calc(100% / 3 - 16px));
    }
}
@media (max-width: 600px) {
    .dsm-card__wrapper {
        grid-template-columns: repeat(1, 100%);

    }
}