.cpt-table {
    padding: 48px 0;
    background: #fbfbfb;
}

.cpt-table .block__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    margin: 0 0 4px 0;
}

.cpt-table .block__title {
    color: #454c55;
    font-size: 16px;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    line-height: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.cpt-table .block__counter {
    color: #454c55;
    font-size: 13px;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.cpt-table .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}


.cpt-table .container .block__column:nth-child(1) {
    width: 275px;
}

.cpt-table .container .block__column:nth-child(2) {
    width: calc(100% - 275px - 16px);
}


.products-list__header {
    background: #252e38;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.products-list__header .products-list__column {
    padding: 8px 24px;
}

.products-list__header .products-list__column:nth-child(1) {
    padding-left: 24px;
    width: 125px;
}

.products-list__header .products-list__column:nth-child(2) {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    width: calc(100% - 325px);
}

.products-list__header .products-list__column:nth-child(3) {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    width: 200px;
}

.products-list__header .products-list__header__title {
    color: #fff;
    font-family: Inter, sans-serif;
    font-optical-sizing: auto;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0;
    line-height: normal;
}

.cpt-table .loader,
.cpt-table .empty {
    width: 100%;
    text-align: center;
    padding: 16px 0;
}

.cpt-table .block-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
}

.block-list.is-loading {
    position: relative;
}

/* ===== Responsive ===== */
@media all and (max-width: 1080px) {
    .cpt-table .container {
        flex-direction: column;
    }

    .cpt-table .container .block__column:nth-child(1) {
        width: 100%;
    }

    .cpt-table .container .block__column:nth-child(2) {
        width: 100%;
        margin: 24px 0 0 0;
    }
}

@media all and (max-width: 700px) {
    .products-list__header {
        display: none;
    }
}

