@media (min-width: 1400px) {
    .container {
        max-width: calc(1400px - 145px);
    }
}

.badge {
    height: 24px;
    border-radius: 12px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 24px;
    margin-left: 5px;
    text-align: center;
}

.secondary-badge {
    background: var(--grey94);
    color: var(--night);
}

.success-badge {
    background: var(--successBg);
    color: var(--successText);
}

.danger-badge {
    background: var(--errorBg);
    color: var(--errorText);
}

.info-badge {
    background: var(--infoBg);
    color: var(--infoText);
}

.light-badge {
    background: var(--lightBg);
    color: var(--night);
}

.warning-badge {
    background: var(--warningBg);
    color: var(--warningText);
}

.invitation-sent {
    background: url("/static/images/check-grey.svg") no-repeat left center;
    height: 10px;
    padding-left: 22px;
    color: var(--grey55);
    font-size: 12px;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    white-space: nowrap;
}

.status-active,
.status-inactive {
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.status-active::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--successIcon);
    border-radius: 100%;
    margin-right: 12px;
    display: inline-block;
}

.status-inactive::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    margin-right: 12px;
    display: inline-block;
    background-color: var(--grey70);
}
