.do-users-list-container {
    display: flex;
    max-width: 712px;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    border: 1px solid #eee;
    border-radius: 6px;
}

.do-users-list-container>.header {
    display: flex;
    padding: 16px;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    border-bottom: 1px solid var(--grey-400, #DEE4E4);
}

.do-users-list-container>.header>.title {
    color: var(--grey-900, #020303);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

.do-users-list-container>.header>.user-count {
    display: flex;
    height: 20px;
    padding: 3px 8px;
    align-items: center;
    gap: 6px;
    border-radius: 10px;
    background: var(--grey-300, #F0F4F4);

    color: var(--grey-800, #2D3232);

    /* B5/Medium */
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 150% */
}

.do-users-list-container>.header>.search-bar-container {
    display: flex;
    height: 32px;
    padding: 3px 12px 5px 12px;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid var(--grey-500, #B6BFBF);
    background: var(--grey-000, #FFF);
}

.ms-auto.search-bar-container svg {
    margin-top: 2px;
}

.do-users-list-container>.header .do-users-list-search-input {
    border: none;
    width: 100%;
    background-color: transparent !important;
}

.do-users-list-container>.header .do-users-list-search-input:focus,
.do-users-list-container>.header .do-users-list-search-input:focus-visible {
    border: 0 none;
    outline: 0 none;
}

.do-users-list-container>.header .btn-user-new {
    display: flex;
    padding: 6px 12px;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    background: var(--primary-500, #0B9294);

    /* Shadow/Button */
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.05);
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 150% */
    border: 1px solid #0B9294;
}

.do-users-list-container>.column-header {
    display: flex;
    height: 52px;
    padding: 9px 16px;
    align-items: center;
    gap: 8px;
    align-self: stretch;

    border-bottom: 1px solid var(--grey-400, #DEE4E4);
    background: var(--grey-200, #F8F9FA);

    color: var(--grey-700, #5A6161);

    /* B4/Medium */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.do-users-list-container>.users-list {
    height: 420px;
    overflow-y: auto;
    width: 100%;
}

.do-users-list-container .shared-users-list-item .btn-edit {
    display: flex;
    height: 21px;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    color: var(--primary-500, #0B9294);

    /* B4/Semi-bold */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 142.857% */
    margin-top: 10px;
}

.do-users-list-container .shared-users-list-item .rights-badge {
    padding-top: 10px;
    padding-left: 0;
}

.do-users-list-container .shared-users-list-item {
    border-bottom: 1px solid var(--grey-400, #DEE4E4);
}

.do-users-list-container .domain-name,
.do-users-list-popup .domain-name {
    color: var(--grey-700, #5A6161);
    /* B5/Regular */
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 150% */
}

.do-users-list-container .user-name,
.do-users-list-popup .user-name {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

.do-users-list-container .no-search-result-container {
    display: flex;
    padding: 48px 0px;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
}

.do-users-list-container .no-search-result-container>.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 247px;
}

.do-users-list-container .no-search-result-container>.content .title {
    color: #000;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 142.857% */
}

.do-users-list-container .no-search-result-container>.content .message {
    color: #5A6161;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 150% */
}

.do-users-list-container .no-data-message-container {
    display: flex;
    padding: 48px 0px;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    /* 142.857% */
}

.do-users-list-popup .btn {
    display: flex;
    height: 36px;
    padding: 8px 14px;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.do-users-list-popup .primary-btn {
    background: var(--primary-500, #0B9294);
    border: 1px solid #0B9294;
    color: white;
}

.do-users-list-popup .secondary-btn {
    background: white;
    border: 1px solid #eee;
}

.do-users-list-popup .dx-texteditor-container {
    height: 32px;
    border-radius: 6px;
    border: 1px solid var(--grey-500, #B6BFBF);
}

.do-users-list-popup .dx-texteditor-input-container * {
    padding: 6px 12px;
}

.do-users-list-popup .dx-texteditor-input-container .dx-placeholder:before {
    padding: 0px;
}

.do-users-list-popup .dx-editor-outlined {
    border-radius: 6px;
}

.do-users-list-popup .dx-dropdowneditor-icon {
    border: 0px !important;
}

.do-users-list-popup .modal-title {
    color: var(--grey-900, #020303);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 155.556% */
}

/* .user-rights-column{
    padding-left: 20px;
}
.user-rights-badge{
    font-size: 12px !important;
} */

@media only screen and (max-width: 768px) {
    .do-users-list-container>.header {
        align-items: baseline;
    }
}