$container-border: 1px solid var(--gray-400);

.PlaylistPlacements {
    border-bottom: $container-border;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 4px;
    border-left: $container-border;
    border-right: $container-border;
    position: relative;

    /* vendor-redesign overriding */
    /* stylelint-disable selector-no-type, selector-class-pattern */
    .table tbody tr td {
        border-bottom: 1px solid #f2f2f2;
        border-top: none;
        font-size: 13px;
        line-height: 20px / 14px;
        padding: 8px;
    }

    .table thead tr th {
        border: none;
        border-bottom: 1px solid #d9d2d0;
        color: #a1a1a1;
        cursor: default;
        font-size: 12px;
        font-weight: 500;
        padding: 4px 8px;
        text-transform: uppercase;
        vertical-align: middle;
    }

    table {
        margin-bottom: 20px;
        margin-top: 5px;
        max-width: 100%;
        width: 100%;

        tr {
            height: 25px;
        }
    }

    .table > thead:first-child > tr:first-child > th {
        border-top: 1px solid #d9d2d0;
    }

    &-no-pagination {
        .table {
            margin-bottom: 0;
        }

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

    &-more {
        align-items: center;
        background: linear-gradient(to bottom, rgb(255 255 255 / 0%) 0%, white 30%);
        display: flex;
        height: 125px;
        justify-content: center;
        margin-top: -70px;
        position: relative;
    }

    &-unavailable {
        color: var(--gray-500);
        font-weight: 400;
        vertical-align: top;
    }

    /* stylelint-disable max-nesting-depth */
    & .ClickableTable {
        table-layout: fixed;

        &-cell {
            overflow: hidden;
            vertical-align: middle;

            &:nth-child(4),
            &:nth-child(5) {
                font-weight: 500;
            }

            &-capitalize {
                text-transform: capitalize;
            }
        }

        &-column {
            &:nth-child(1) {
                width: 30%;
            }

            &:nth-child(2) {
                width: 14%;
            }

            &:nth-child(3) {
                width: 14%;
            }

            &:nth-child(4) {
                width: 14%;
            }

            &:nth-child(5) {
                width: 14%;
            }
        }

        &-link:hover {
            cursor: pointer;
            text-decoration: underline;
        }
    }

    & .Icons-info {
        height: 12px;
        vertical-align: middle;
        width: 12px;
    }

    & .LoadingIndicator {
        position: absolute;
        top: 47%;
        width: 100%;
    }

    & .NoPlaylistData {
        border-bottom: solid 2px var(--gray-200);
        color: var(--gray-700);
        font-size: 14px;
        padding: 20px 0 40px;
        text-align: center;
        width: 100%;
    }

    & .Pagination {
        margin-right: 10px;

        .pagination {
            margin-bottom: 7px;
            margin-top: 0;
        }
    }

    &-loader-followers {
        border-top: 1px solid var(--gray-800);
        display: inline-block;
        margin: 3px 0;
        width: 15px;
    }

    &-stores {
        color: var(--gray-500);
        font-size: 10px;
        margin-left: 10px;
        padding: 10px 0;
        text-transform: uppercase;
    }
}

.PlaylistPlacementsSas {
    background-color: var(--white);
}
