.membership-record-panel,
.applicant-modal-dialog {
    font-size: 12px;
}

.membership-filters label,
.membership-table-summary,
.member-expand,
.member-actions a,
.member-actions button,
.member-state,
.card-state {
    font-size: 10px;
}

.membership-filters input,
.membership-filters select,
.member-primary-row td > strong,
.member-identity strong,
.applicant-profile-modal > aside dd,
.profile-info-grid strong,
.profile-document-grid strong {
    font-size: 11px;
}

.member-identity small,
.member-primary-row td > small,
.applicant-profile-modal > aside > p,
.profile-document-grid small,
.profile-info-grid span {
    font-size: 10px;
}

.applicant-profile-content h3 {
    font-size: 16px;
}

.applicant-profile-modal > aside h2 {
    font-size: 23px;
}

.profile-id-card-section .profile-info-grid {
    align-items: center;
}

.profile-card-empty {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
    padding: 14px;
    border: 1px dashed #c9d9dc;
    background: #f7fafa;
}

.profile-card-empty > i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e3f1ef;
    color: var(--admin-teal);
    font-size: 16px;
}

.profile-card-empty strong,
.profile-card-empty span {
    display: block;
}

.profile-card-empty strong {
    color: var(--admin-navy);
    font-size: 12px;
}

.profile-card-empty span {
    margin-top: 3px;
    color: #71858d;
    font-size: 10px;
}

.profile-apply-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 44px;
    padding: 10px 15px;
    border: 0;
    background: var(--admin-teal);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.profile-apply-card.is-loading {
    opacity: .65;
}

.profile-apply-card.is-loading i:before {
    content: "\f110";
}

.profile-apply-card.is-loading i {
    animation: membership-spin .8s linear infinite;
}

@keyframes membership-spin {
    to { transform: rotate(360deg); }
}

.membership-ajax-notice {
    position: fixed;
    z-index: 1200;
    top: 76px;
    right: 22px;
    max-width: 410px;
    padding: 14px 18px;
    border-left: 4px solid #3e9a68;
    background: #fff;
    color: #315848;
    font-size: 12px;
    box-shadow: 0 14px 40px rgba(5, 34, 49, .22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: .2s;
}

.membership-ajax-notice.is-visible {
    opacity: 1;
    transform: none;
}

.membership-ajax-notice.is-error {
    border-color: #b64850;
    color: #8b3238;
}

@media(max-width: 600px) {
    .membership-ajax-notice { right: 12px; left: 12px; }
    .profile-card-empty { min-width: 0; }
}
