.product-administrators-section {
    height: 100%;
    margin: 24px;
    display: flex;
    gap: 13px;
}

    .product-administrators-section .product-administrators-card {
        border-radius: 10px;
        background: rgba(0, 21, 34, 0.40);
        box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.03);
    }

    .product-administrators-section .product-administrators-list {
        width: 100%;
        max-height: calc(100vh - 118px);
        padding: 31px 24px;
    }

.product-administrators-list .product-administrators-topbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.product-administrators-topbar .product-administrators-topbar-brand {
    color: #FFF;
    font-family: Ubuntu-Medium;
    font-size: 26px;
    font-weight: 500;
}

.product-administrators-topbar .product-administrators-topbar-actions button {
    width: 259px;
    height: 36px;
    border-radius: 6px;
    background: #074AF8;
    color: #FFF;
    text-align: center;
    font-family: Ubuntu-Medium;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.product-administrators-topbar-actions .product-administrators-filter {
    height: 40px;
    width: 209px;
    margin-right: 20px;
    font-family: Ubuntu-Regular;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    border-radius: 4px;
    border: none;
    padding-left: 15px;
    padding-right: 17px;
    background: rgba(0, 23, 38, 0.70);
}

.product-administrators-filter.select {
    border-right: 17px solid transparent;
}

.product-administrators-filter.search {
    padding-right: 42px;
    background-image: url(/svg/search.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 13px) center;
}

.product-administrators-list .product-administrators-items {
    width: 100%;
    height: 95%;
    overflow: auto;
}

.product-administrators-list .product-administrators-items-empty {
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

    .product-administrators-list .product-administrators-items-empty h3 {
        color: rgba(255, 255, 255, 0.87);
        font-family: Ubuntu-Medium;
        font-size: 30px;
        font-weight: 700;
    }

.product-administrators-table {
    min-width: 70%;
    margin: 0 auto;
    margin-top: 60px;
    border-spacing: 0 3px;
    border-collapse: separate;
}

    .product-administrators-table thead tr th:nth-child(1) {
        width: 250px;
    }

    .product-administrators-table thead tr th:nth-child(2) {
        width: 200px;
    }

    .product-administrators-table thead tr th:nth-child(3) {
        width: 150px;
    }

    .product-administrators-table thead tr th:nth-child(4) {
        width: 300px;
    }

    .product-administrators-table th {
        padding-left: 17px;
    }

    .product-administrators-table td {
        padding: 13px 17px;
    }

        .product-administrators-table td:first-child {
            border-radius: 6px 0 0 6px;
        }

        .product-administrators-table td:last-child {
            border-radius: 0 6px 6px 0;
        }

    .product-administrators-table tbody:before {
        content: 'X';
        display: block;
        line-height: 5px;
        text-indent: -99999px;
    }

    .product-administrators-table thead tr th {
        background: none;
        border: none;
        font-family: Ubuntu-Regular;
        font-size: 13px;
        font-weight: 400;
        line-height: 16px;
        letter-spacing: 0em;
        text-align: left;
        color: #BDBDBD;
    }

    .product-administrators-table tbody tr {
        border-radius: 6px;
        background: #001522;
    }

        .product-administrators-table tbody tr td .products-cell {
            display: flex;
            flex-direction: row;
            gap: 10px;
        }

            .product-administrators-table tbody tr td .products-cell .products-preview {
                max-width: 200px;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
            }

        .product-administrators-table tbody tr td .actions-cell {
            display: flex;
            justify-content: space-between;
            gap: 39px;
        }

.product-administrators-table tbody tr td .status-cell {
    font-family: Ubuntu-Regular;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
}

    .product-administrators-table tbody tr td .status-cell.active {
        color: #FFFFFF;
        background: #219653;
    }

    .product-administrators-table tbody tr td .status-cell.inactive {
        color: #4F4F4F;
        background: #E0E0E0;
    }

.products-dropdown .dropdown-short {
    display: flex;
    align-items: center;
}

.products-dropdown .dropdown-toggle {
    cursor: pointer;
    width: 10px;
    height: 6px;
    margin-left: 6px;
}

    .products-dropdown .dropdown-toggle.active {
        transform: rotate(180deg);
    }

.products-dropdown .dropdown {
    position: absolute;
    display: none;
    background: #001726;
    list-style: none;
}

.products-dropdown ul.dropdown {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

    .products-dropdown ul.dropdown li {
        padding: 14px 17px;
        font-family: Ubuntu-Regular;
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: 0em;
        text-align: left;
        border-bottom: 1px solid #002237;
        max-width: 300px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

        .products-dropdown ul.dropdown li:last-child {
            border-bottom: none;
        }

.product-administrators-table tbody tr td .actions-cell span {
    cursor: pointer;
}

.modal#add-product-administator-modal,
.modal#edit-product-administator-modal {
    height: 750px;
}

    .modal#add-product-administator-modal .modal-form .modal-form-body,
    .modal#edit-product-administator-modal .modal-form .modal-form-body {
        height: 75%;
    }

@media screen and (max-width: 1100px) {
    .product-administrators-filter.select {
        width: 145px;
    }

    .product-administrators-filter.search {
        width: 145px;
    }
}
