.table {

}

@media screen and (max-width: 1250px) {
    .table-scroll {
        max-width: 1400px;
        width: 100%;
        overflow-x: auto;
    }

    .table-scroll__body {
        display: inline-block;
    }
}

.table-actions {
    display: flex;
    align-items: center;
    padding: 32px;
}

.table-actions span {
    display: flex;
    align-items: center;
    margin-right: 30px;
    color: #B1B4B9;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

.table-actions span.active {
    color: #1A0038;
}

.table-actions span img {
    margin-right: 10px;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background: #4316E40F;
    padding: 18px 70px;
    font-weight: 600;
}

.table-header span {
    font-size: 18px;
    color: #1A0038;
}
.table-header span:first-child, .table-body__row span:first-child {
    width: 50px;
}

.table-header span:nth-child(n+2):nth-child(-n+4), .table-body__row span:nth-child(n+2):nth-child(-n+4) {
    width: 120px;
}

.table-header span:nth-child(5), .table-body__row span:nth-child(5) {
    width: 150px;
}

.table-header span:nth-child(6), .table-body__row span:nth-child(6) {
    width: 220px;
}

.table-header span:nth-child(n+7):nth-child(-n+10), .table-body__row span:nth-child(n+7):nth-child(-n+10) {
    width: 110px;
}


.different .table-header span:first-child, .different .table-body__row span:first-child {
    width: 50px;
}

.different .table-header span:nth-child(n+2):nth-child(-n+4), .different .table-body__row span:nth-child(n+2):nth-child(-n+4) {
    width: 150px;
}

.different .table-header span:nth-child(5), .different .table-body__row span:nth-child(5) {
    width: 150px;
}

.different .table-header span:nth-child(6), .different .table-body__row span:nth-child(6) {
    width: 220px;
}

.different .table-header span:nth-child(n+7):nth-child(-n+10), .different .table-body__row span:nth-child(n+7):nth-child(-n+10) {
    width: 150px;
}

.table-body {
    height: 100%;
    max-height: 500px;
    overflow-y: auto;
}

.table-body__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #D8E0ED;
    font-size: 18px;
    padding: 18px 70px;
}
.different .table-body__row:nth-child(2n+1) {
    background: #7f779d0f;
}
.table-body__row span {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #1A0038;
}
.table-body__row-id:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.table-body__row-id.green:before {
    background: #2ECA8C;
}
.table-body__row-id.red:before {
    background: #F94960;
}
.table-body__row-id.blue:before {
    background: #0097F5;
}
.table-body__row-id.purple:before {
    background: #4912ED;
}
.table-body__row span img {
    text-align: center;
    cursor: pointer;

}

.table-body__row span a {

}
