.table {
    border-collapse: unset;
    border-spacing: 0;
    border: none;
    background: #fff;
    border-radius: 10px;
}

tbody tr {
    background: #fff;
}

.table--sticky thead {
    position: sticky;
    top: 91px;
    z-index: 1;
}

.table thead th {
    background: #482973;
    font-family: "montserrat-400";
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
    color: #fff;
    border: none;
    position: relative;
}

.table thead th:before {
    position: absolute;
    left: -1px;
    bottom: 1px;
    content: "";
    width: 2px;
    background: #482973;
    top: 1px;
}

.table td,
.table th {
    min-width: 333px;
    width: 333px;
    padding: 15px 30px 15px 0;
    text-align: left;
    vertical-align: top;
}

.table th b{
    color: #FF9100;
}

.table th:first-child,
.table tbody th {
    min-width: 200px;
    width: 200px;
    padding-left: 15px;
}

.table th:last-child {
    padding-right: 15px;
}

.table thead th:first-child {
    border-radius: 10px 0 0 0;
}

.table thead th:first-child:before {
    display: none;
}

.table thead th:last-child {
    border-radius: 0 10px 0 0;
}

.table tbody th {
    font-weight: normal;
    color: #482973;
    border-left: 1px solid #DDDDDE;
}

.table tbody th,
.table tbody td {
    background: #fff;
    border-bottom: 1px solid #DDDDDE;
}

.table tbody tr:last-child th:first-child {
    border-radius: 0 0 0 10px;
}

.table tbody tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
}

.table tbody td:last-child {
    border-right: 1px solid #DDDDDE;
}

.table tbody td b {
    color: #482973;
}

@media (min-width: 1024px) {
    .table td,
    .table th {
        min-width: 26%;
        width: 26%;
    }

    .table th:first-child,
    .table tbody th {
        width: 20%;
        min-width: 20%;
    }
}

@media (min-width: 1200px) {
    .table td,
    .table th {
        padding: 20px 30px 20px 0;
    }

    .table th:last-child {
        padding-right: 30px;
    }

    .table th:first-child,
    .table tbody th {
        padding-left: 30px;
    }
}