:root {
    --ucspp-navy: #172f53;
    --ucspp-navy-deep: #112747;
    --ucspp-navy-button: #2c5788;
    --ucspp-green: #2fbe83;
    --ucspp-green-dark: #1eab70;
    --ucspp-bg: #f1f5f9;
    --ucspp-card: #fff;
    --ucspp-text: #172d4d;
    --ucspp-muted: #6d7787;
    --ucspp-line: #e5e9ee;
    --ucspp-radius: 14px;
    --ucspp-shadow: 0 8px 28px rgba(22, 45, 80, .045);
}

body.ucspp-portal-page,
body.ucspp-login-page {
    margin: 0;
    color: var(--ucspp-text);
    font-family: "Hind", "Segoe UI", Arial, sans-serif;
}
body.ucspp-portal-page {
    background: var(--ucspp-bg);
}

.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.ucspp-shell *,
.ucspp-login * {
    box-sizing: border-box;
}

.ucspp-shell button,
.ucspp-shell input,
.ucspp-shell select,
.ucspp-shell textarea,
.ucspp-login button,
.ucspp-login input {
    font: inherit;
}

.ucspp-shell a,
.ucspp-login a {
    color: inherit;
    text-decoration: none;
}

.ucspp-icon-sprite {
    display: none;
}

.ucspp-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ucspp-ui-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    flex: 0 0 auto;
    background: currentColor;
    -webkit-mask: var(--ucspp-ui-icon) center / contain no-repeat;
    mask: var(--ucspp-ui-icon) center / contain no-repeat;
}

.ucspp-shell {
    min-height: 100vh;
    background: var(--ucspp-bg);
}

.ucspp-topbar {
    position: fixed;
    z-index: 60;
    top: 0;
    right: 0;
    left: 0;
    height: 84px;
    padding: 0 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #eef0f3;
}

body.admin-bar .ucspp-topbar {
    top: 32px;
}

.ucspp-brand img {
    display: block;
    width: 210px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
}

.ucspp-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 270px;
    padding-left: 26px;
    border-left: 1px solid var(--ucspp-line);
}

.ucspp-profile > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.ucspp-profile strong {
    font-size: 16px;
    font-weight: 600;
}

.ucspp-profile small {
    color: #89909b;
    font-size: 14px;
}

.ucspp-avatar {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #fff;
    background: #d89a24;
    font-size: 22px;
    font-weight: 500;
}

.ucspp-sidebar {
    position: fixed;
    z-index: 50;
    top: 84px;
    bottom: 0;
    left: 0;
    width: 292px;
    display: flex;
    flex-direction: column;
    color: #fff;
    background: linear-gradient(180deg, #1d385f 0%, var(--ucspp-navy-deep) 100%);
}

body.admin-bar .ucspp-sidebar {
    top: 116px;
}

.ucspp-sidebar nav {
    padding-top: 30px;
}

.ucspp-sidebar nav a,
.ucspp-logout {
    min-height: 62px;
    padding: 10px 42px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #f8fbff;
    border-left: 4px solid transparent;
    font-size: 16px;
    line-height: 1.15;
    transition: background .18s, color .18s;
}

.ucspp-sidebar nav a:hover,
.ucspp-sidebar nav a:focus-visible {
    background: rgba(7, 24, 48, .24);
}

.ucspp-sidebar nav a.is-active {
    color: var(--ucspp-green);
    background: rgba(7, 24, 48, .46);
}

.ucspp-logout .ucspp-nav-icon,
.ucspp-sidebar nav .ucspp-nav-icon
 {
    width: 28px;
    height: 28px;
    display: inline-block;
    flex: 0 0 28px;
    background: #8ea0ba;
    -webkit-mask: var(--ucspp-nav-icon) center / contain no-repeat;
    mask: var(--ucspp-nav-icon) center / contain no-repeat;
    transition: background .18s;
}

.ucspp-sidebar nav a.is-active .ucspp-nav-icon {
    background: var(--ucspp-green);
}

.ucspp-logout {
    margin-top: auto;
    margin-bottom: 74px;
    color: #f8fbff;
}

.ucspp-logout:hover .ucspp-nav-icon,
.ucspp-logout:focus-visible .ucspp-nav-icon {
    background: #b6c4d7;
}

.ucspp-sidebar__close,
.ucspp-menu-toggle {
    display: none;
}

.ucspp-content {
    min-height: 100vh;
    margin-left: 292px;
    padding: 124px 78px 70px;
}

.ucspp-page {
    width: 100%;
    max-width: 1312px;
    margin: 0 auto;
}

.ucspp-page-heading {
    margin: 0 0 30px;
}

.ucspp-page-heading--split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.ucspp-page-heading h1 {
    margin: 0;
    color: var(--ucspp-text);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
}

.ucspp-page-heading p {
    margin: 7px 0 0;
    color: #4b5565;
    font-size: 17px;
}

.ucspp-period {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ucspp-period label {
    color: #a3a8b0;
    white-space: nowrap;
}

.ucspp-period select,
.ucspp-filters select,
.ucspp-search input,
.ucspp-qualifier input,
.ucspp-qualifier select,
.ucspp-application input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.ucspp-application select,
.ucspp-application textarea {
    min-height: 42px;
    border: 1px solid var(--ucspp-line);
    border-radius: 9px;
    color: #4d5868;
    background: #fff;
    outline: none;
}

.ucspp-period select {
    width: 245px;
    padding: 0 45px 0 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.ucspp-period__icon {
    position: absolute;
    right: 14px;
    bottom: 11px;
    width: 20px;
    height: 20px;
    color: #9aa2ad;
    pointer-events: none;
}

.ucspp-period select:focus,
.ucspp-filters select:focus,
.ucspp-search input:focus,
.ucspp-qualifier input:focus,
.ucspp-qualifier select:focus,
.ucspp-application input:focus,
.ucspp-application select:focus,
.ucspp-application textarea:focus {
    border-color: var(--ucspp-green);
    box-shadow: 0 0 0 3px rgba(47, 190, 131, .12);
}

.ucspp-filters select,
.ucspp-qualifier select,
.ucspp-application select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../images/ui/chevron-down.png");
    background-position: right 14px center;
    background-repeat: no-repeat;
    background-size: 11px 11px;
}

.ucspp-stat-grid {
    margin-bottom: 58px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ucspp-stat {
    min-height: 196px;
    padding: 30px 34px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--ucspp-radius);
    color: #fff;
}

.ucspp-stat--olive {
    background: #a4b82b;
}

.ucspp-stat--blue {
    background: #6e93c9;
}

.ucspp-stat--cyan {
    background: #43c4d2;
}

.ucspp-stat--green {
    background: #2fc18f;
}

.ucspp-stat > span {
    font-size: 19px;
}

.ucspp-stat > strong {
    margin: 18px 0 10px;
    font-size: 42px;
    line-height: 1;
    font-weight: 600;
}

.ucspp-stat > small {
    padding: 5px 16px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .08);
    font-size: 14px;
}

.ucspp-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
}

.ucspp-dashboard-grid > * {
    min-width: 0;
}

.ucspp-tabs {
    min-height: 46px;
    padding-left: 20px;
    display: flex;
    align-items: flex-start;
    gap: 42px;
}

.ucspp-tabs button {
    padding: 0 0 11px;
    border: 0;
    border-bottom: 2px solid transparent;
    color: #a6aab1;
    background: transparent;
    cursor: pointer;
    font-size: 17px;
}

.ucspp-tabs button.is-active {
    color: var(--ucspp-text);
    border-color: var(--ucspp-green);
}

.ucspp-card {
    border: 1px solid rgba(226, 231, 237, .8);
    border-radius: var(--ucspp-radius);
    background: var(--ucspp-card);
    box-shadow: var(--ucspp-shadow);
}

.ucspp-table-card {
    overflow: hidden;
}

.ucspp-table-scroll {
    width: 100%;
    overflow-x: auto;
}

.ucspp-table {
    width: 100%;
    border-collapse: collapse;
    color: #596474;
    font-size: 15px;
    white-space: nowrap;
}

.ucspp-table th {
    height: 57px;
    padding: 12px 16px;
    color: #9ba2ad;
    border-bottom: 1px solid var(--ucspp-line);
    text-align: left;
    font-size: 13px;
    font-weight: 500;
}

.ucspp-th-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.ucspp-sort-button {
    width: 22px;
    height: 22px;
    min-height: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: inherit;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    line-height: 1;
    text-transform: none;
}

.ucspp-th-label__icon {
    width: 18px;
    height: 18px;
    color: #c6ccd4;
    transition: color .15s ease, opacity .15s ease, transform .15s ease;
}

.ucspp-sort-button:hover,
.ucspp-sort-button:focus {
    color: var(--ucspp-navy);
    background: transparent;
}

.ucspp-sort-button.is-active .ucspp-th-label__icon {
    color: var(--ucspp-green);
    opacity: 1;
}

.ucspp-sort-button.is-desc .ucspp-th-label__icon {
    transform: rotate(180deg);
}

.ucspp-table td {
    height: 58px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--ucspp-line);
    vertical-align: middle;
}

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

.ucspp-table tbody tr:not(.ucspp-no-data):hover {
    background: #fafbfd;
}

.ucspp-table--compact th:first-child,
.ucspp-table--compact td:first-child {
    padding-left: 31px;
}

.ucspp-no-data td {
    height: 170px;
    color: #939aa4;
    text-align: center;
}

.ucspp-status,
.ucspp-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1.3;
}

.ucspp-status--success,
.ucspp-badge--success {
    color: #24ad6e;
    background: #e7f9ef;
}

.ucspp-status--warning,
.ucspp-badge--warning {
    color: #c89a1f;
    background: #fff9e3;
}

.ucspp-status--danger,
.ucspp-badge--danger {
    color: #d4544c;
    background: #fff0ee;
}

.ucspp-status--neutral,
.ucspp-badge {
    color: #99a1ad;
    background: #f1f3f5;
}

#ucspp-partner-portal .ucspp-badge.ucspp-badge--success {
    color: #24ad6e;
    background: #e7f9ef;
}

#ucspp-partner-portal .ucspp-ui-icon {
    display: inline-block;
    flex: 0 0 auto;
    background: currentColor;
    -webkit-mask: var(--ucspp-ui-icon) center / contain no-repeat;
    mask: var(--ucspp-ui-icon) center / contain no-repeat;
}

#ucspp-partner-portal .ucspp-sort-button,
#ucspp-partner-portal .ucspp-sort-button:hover,
#ucspp-partner-portal .ucspp-sort-button:focus {
    width: 22px;
    height: 22px;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font: inherit;
    line-height: inherit;
    text-transform: none;
}

.ucspp-card-footer {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--ucspp-line);
}

.ucspp-pill-button {
    min-height: 32px;
    padding: 5px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    color: #273952;
    background: #f0f3f5;
    font-size: 14px;
}

.ucspp-pill-button .ucspp-icon,
.ucspp-pill-button .ucspp-ui-icon {
    width: 17px;
    height: 17px;
}

.ucspp-pill-button.is-disabled {
    color: #9ba2ab;
    cursor: not-allowed;
}

.ucspp-rep-mini {
    min-height: 365px;
    padding: 31px 34px;
    text-align: center;
}

.ucspp-card-label {
    margin-bottom: 41px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.ucspp-rep-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    object-fit: cover;
}

.ucspp-rep-mini .ucspp-rep-photo {
    width: 92px;
    height: 92px;
    margin: 0 auto 16px;
}

.ucspp-rep-mini h2 {
    margin: 0 0 2px;
    font-size: 21px;
    font-weight: 500;
}

.ucspp-rep-mini p {
    margin: 0 0 35px;
    color: #526071;
}



.ucspp-recent-resources {
    margin-top: 55px;
}

.ucspp-recent-resources > h2 {
    margin: 0 0 25px;
    font-size: 18px;
    font-weight: 500;
}

.ucspp-resource-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.ucspp-resource-grid--compact {
    max-width: 650px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ucspp-resource-card {
    min-height: 298px;
    padding: 31px 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ucspp-resource-card > .ucspp-icon,
.ucspp-resource-card__icon {
    width: 32px;
    height: 32px;
    color: #bac0c8;
}

.ucspp-resource-card h3 {
    margin: 20px 0 10px;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 500;
}

.ucspp-resource-card p {
    margin: 0;
    color: #6d7480;
    font-size: 14px;
}

.ucspp-resource-card .ucspp-pill-button {
    margin-top: auto;
}

.ucspp-search {
    width: min(560px, 42vw);
    height: 48px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 999px;
    background: #fff;
}

.ucspp-search .ucspp-icon,
.ucspp-search .ucspp-ui-icon {
    width: 20px;
    height: 20px;
    color: #c5cbd2;
}

.ucspp-search input {
    width: 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.ucspp-search input:focus {
    box-shadow: none;
}

.ucspp-filters {
    margin: 0 0 31px;
    display: grid;
    grid-template-columns: 220px 180px 175px 175px 175px auto;
    gap: 14px;
    align-items: end;
}

.ucspp-filters label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #a0a6ae;
    font-size: 14px;
}

.ucspp-filters select {
    width: 100%;
    min-height: 42px;
    padding: 0 38px 0 15px;
}

.ucspp-outline-button {
    min-height: 42px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--ucspp-navy);
    border-radius: 999px;
    color: var(--ucspp-navy);
    background: #fff;
    cursor: pointer;
    white-space: nowrap;
}

.ucspp-outline-button .ucspp-icon,
.ucspp-outline-button .ucspp-ui-icon {
    width: 19px;
    height: 19px;
}

.ucspp-action {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ucspp-line);
    border-radius: 50%;
    color: var(--ucspp-navy);
}

.ucspp-action-group {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.ucspp-action .ucspp-icon,
.ucspp-action .ucspp-ui-icon {
    width: 16px;
    height: 16px;
}

.ucspp-action--more .ucspp-ui-icon {
    width: 18px;
    height: 6px;
}

.ucspp-action.is-disabled {
    color: #c2c8d0;
    cursor: not-allowed;
}

.ucspp-table-empty {
    padding: 45px 20px;
    color: #89929f;
    text-align: center;
}

.ucspp-pagination {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: #626d7b;
    font-size: 14px;
}

.ucspp-pagination label,
.ucspp-pagination > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ucspp-pagination select,
.ucspp-pagination button {
    min-height: 40px;
    padding: 6px 17px;
    border: 1px solid var(--ucspp-line);
    border-radius: 999px;
    color: #4e5a69;
    background: #fff;
}

.ucspp-pagination button {
    cursor: pointer;
}

.ucspp-pagination button:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.ucspp-pagination [data-ucspp-page-info] {
    min-width: 55px;
    text-align: center;
}

.ucspp-pagination button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ucspp-pagination__arrow {
    width: 15px;
    height: 15px;
    color: currentColor;
}

.ucspp-pagination__arrow--prev {
    transform: rotate(180deg);
}

.ucspp-earnings-grid {
    margin-bottom: 33px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ucspp-metric {
    min-height: 164px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ucspp-metric .ucspp-icon,
.ucspp-metric__icon {
    width: 31px;
    height: 31px;
    color: #c4c9cf;
}

.ucspp-metric strong {
    margin-top: 22px;
    font-size: 29px;
    line-height: 1;
    font-weight: 500;
}

.ucspp-metric strong.is-accent {
    color: var(--ucspp-green);
}

.ucspp-metric span {
    margin-top: 7px;
    color: #626c79;
}

.ucspp-alert {
    margin: 18px 0;
    padding: 13px 17px;
    border-radius: 9px;
    font-size: 14px;
}

.ucspp-alert--info {
    color: #315d7d;
    border: 1px solid #cfe4f2;
    background: #eff8fd;
}

.ucspp-alert--error {
    color: #a83535;
    border: 1px solid #efc7c7;
    background: #fff2f2;
}

.ucspp-filters--earnings {
    grid-template-columns: 180px 180px 215px 180px minmax(260px, 1fr);
}

.ucspp-filters .ucspp-search--filter {
    width: 100%;
    height: 42px;
    align-self: end;
    flex-direction: row;
}

.ucspp-button {
    min-height: 42px;
    padding: 8px 30px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--ucspp-navy-button);
    cursor: pointer;
    font-weight: 600;
}

.ucspp-button:hover,
.ucspp-button:focus-visible {
    background: #214a78;
}

.ucspp-button--green {
    width: 100%;
    background: var(--ucspp-green);
}

.ucspp-button--green:hover,
.ucspp-button--green:focus-visible {
    background: var(--ucspp-green-dark);
}

.ucspp-empty {
    min-height: 330px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #697484;
    text-align: center;
}

.ucspp-empty > .ucspp-icon,
.ucspp-empty-icon {
    width: 48px;
    height: 48px;
    color: #acb5c1;
}

.ucspp-empty h2 {
    margin: 20px 0 8px;
    color: var(--ucspp-text);
    font-size: 22px;
}

.ucspp-empty p {
    max-width: 640px;
    margin: 0;
}

.ucspp-empty--compact {
    min-height: 215px;
    padding: 20px;
}

.ucspp-resource-empty {
    grid-column: 1 / -1;
}

.ucspp-contact-grid {
    max-width: 940px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 23px;
}

.ucspp-contact-card {
    min-height: 365px;
    padding: 22px 39px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ucspp-contact-card > .ucspp-badge {
    align-self: flex-end;
}

.ucspp-contact-card .ucspp-rep-photo {
    width: 140px;
    height: 140px;
    margin: 4px auto 17px;
    font-size: 44px;
}

.ucspp-contact-card h2 {
    margin: 0;
    font-size: 23px;
    font-weight: 500;
}

.ucspp-contact-card > p {
    margin: 2px 0 22px;
}

.ucspp-contact-card__links {
    width: calc(100% + 78px);
    min-height: 74px;
    margin-top: auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    border-top: 1px solid var(--ucspp-line);
}

.ucspp-contact-card__links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.ucspp-contact-card__links .ucspp-icon,
.ucspp-contact-card__links .ucspp-ui-icon {
    width: 20px;
    height: 20px;
    color: var(--ucspp-green);
}

.ucspp-resource-filters {
    margin: 0 0 40px;
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.ucspp-resource-filters button {
    min-height: 40px;
    padding: 5px 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 0;
    border-radius: 999px;
    color: #6f7885;
    background: #fff;
    cursor: pointer;
}

.ucspp-resource-filters i {
    width: 19px;
    height: 19px;
    border: 1px solid #d3d8df;
    border-radius: 50%;
}

.ucspp-resource-filters button.is-active {
    color: #374457;
}

.ucspp-resource-filters button.is-active i {
    border: 5px solid #fff;
    outline: 1px solid #d3d8df;
    background: var(--ucspp-navy);
}

.ucspp-application {
    width: 100%;
}

.ucspp-application .wpcf7,
.ucspp-application > form {
    padding: 30px;
    border: 1px solid rgba(226, 231, 237, .8);
    border-radius: var(--ucspp-radius);
    background: #fff;
    box-shadow: var(--ucspp-shadow);
}

.ucspp-application .wpcf7 label {
    color: #2d3747;
    font-size: 15px;
}

.ucspp-application input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.ucspp-application select,
.ucspp-application textarea {
    width: 100%;
    padding: 10px 14px;
}

.ucspp-application input[type="submit"],
.ucspp-application button {
    min-height: 42px;
    padding: 8px 30px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--ucspp-navy-button);
}

.ucspp-application .fieldset-cf7mls {
    padding: 10px 0;
    border: 0;
}

.ucspp-application .cf7mls-btns {
    min-height: 74px;
}

.ucspp-application .cf7mls_next.action-button,
.ucspp-application .cf7mls_back.action-button,
.ucspp-application form.cf7mls input.wpcf7-submit {
    min-width: 125px;
    min-height: 42px;
    margin-top: 24px;
    padding: 8px 28px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--ucspp-navy-button);
}

.ucspp-application .cf7mls_back.action-button {
    color: var(--ucspp-navy);
    border: 1px solid var(--ucspp-navy);
    background: #fff;
}

.ucspp-application .cf7mls_progress_bar {
    margin: 0 auto 35px;
}

.ucspp-application .cf7mls_progress_bar li .cf7_mls_steps_item_icon,
.ucspp-application .cf7mls_progress_bar li .cf7_mls_count_step {
    border-radius: 50% !important;
}

.ucspp-application .cf7mls_progress_bar li.active .cf7_mls_steps_item_icon,
.ucspp-application .cf7mls_progress_bar li.current .cf7_mls_steps_item_icon,
.ucspp-application .cf7mls_progress_bar li.active .cf7_mls_count_step {
    background-color: var(--ucspp-green) !important;
}

.ucspp-application .cf7mls_progress_bar li::before {
    background-color: var(--ucspp-green);
}

.ucspp-prequal-layout {
    display: grid;
    grid-template-columns: minmax(0, 795px) minmax(360px, 1fr);
    gap: 22px;
    align-items: start;
}

.ucspp-qualifier {
    min-height: 760px;
    padding: 52px 58px;
}

.ucspp-qual-step {
    position: relative;
    margin: 0;
    padding: 0 0 25px 48px;
    border: 0;
}

.ucspp-qual-step:not(:last-child)::before {
    position: absolute;
    top: 31px;
    bottom: -1px;
    left: 15px;
    width: 3px;
    content: "";
    background: #e8ebef;
}

.ucspp-qual-step.is-active:not(:last-child)::before,
.ucspp-qual-step.is-complete:not(:last-child)::before {
    background: var(--ucspp-green);
}

.ucspp-qual-step legend {
    width: 100%;
    min-height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #21344f;
    font-size: 18px;
    font-weight: 500;
}

.ucspp-qual-step legend small {
    color: #a1a8b2;
    font-size: 13px;
    font-weight: 400;
}

#ucspp-partner-portal .ucspp-qual-step legend > button[data-ucspp-qual-open] {
    margin-left: auto;
    padding: 0;
    display: none;
    align-items: center;
    gap: 5px;
    border: 0;
    color: #b3b8c0;
    background: none;
    box-shadow: none;
    cursor: pointer;
    font-size: 12px;
    line-height: 1.2;
    text-transform: none;
}

#ucspp-partner-portal .ucspp-qual-step.is-complete:not(.is-active) legend > button[data-ucspp-qual-open] {
    display: inline-flex;
}

#ucspp-partner-portal .ucspp-qual-step legend > button[data-ucspp-qual-open] .ucspp-icon,
#ucspp-partner-portal .ucspp-qual-step legend > button[data-ucspp-qual-open] .ucspp-ui-icon {
    width: 15px;
    height: 15px;
    stroke-width: 1.8;
}

.ucspp-step-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: #dbe0e7;
    font-size: 15px;
}

.ucspp-qual-step.is-active .ucspp-step-dot,
.ucspp-qual-step.is-complete .ucspp-step-dot {
    background: var(--ucspp-green);
}

.ucspp-qual-step.is-complete .ucspp-step-dot {
    font-size: 0;
}

.ucspp-qual-step.is-complete .ucspp-step-dot::after {
    width: 15px;
    height: 15px;
    content: "";
    background: currentColor;
    -webkit-mask: url("../images/ui/check.png") center / contain no-repeat;
    mask: url("../images/ui/check.png") center / contain no-repeat;
}

.ucspp-qual-step__body {
    padding-top: 22px;
}

.ucspp-field-grid {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 10px;
}

.ucspp-field-grid label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #344052;
    font-size: 14px;
}

.ucspp-field-grid input,
.ucspp-field-grid select {
    width: 100%;
    padding: 0 16px;
}

.ucspp-field-grid small {
    color: #b0b5bd;
    font-size: 11px;
}

.ucspp-qualifier [aria-invalid="true"] {
    border-color: #d95f58;
}

.ucspp-radio-field {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ucspp-radio-field > span {
    width: 100%;
    margin-bottom: 4px;
    color: #344052;
    font-size: 14px;
}

.ucspp-radio-field label {
    min-height: 42px;
    padding: 8px 13px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--ucspp-line);
    border-radius: 7px;
    color: #657080;
    font-size: 13px;
}

.ucspp-radio-field input {
    accent-color: var(--ucspp-green);
}

.ucspp-asset-head,
.ucspp-asset-row {
    display: grid;
    grid-template-columns: minmax(170px, 1fr) 150px 150px 42px;
    gap: 8px;
}

.ucspp-asset-head {
    margin-bottom: 6px;
    color: #667180;
    font-size: 13px;
}

.ucspp-asset-row {
    margin-bottom: 8px;
}

.ucspp-asset-row input,
.ucspp-asset-row select {
    width: 100%;
    padding: 0 10px;
}

.ucspp-asset-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ucspp-line);
    border-radius: 7px;
    color: #b4bac2;
    background: #fff;
    cursor: pointer;
}

.ucspp-asset-remove::before {
    width: 14px;
    height: 14px;
    display: block;
    margin: auto;
    content: "";
    background: currentColor;
    -webkit-mask: url("../images/ui/x-delete.png") center / contain no-repeat;
    mask: url("../images/ui/x-delete.png") center / contain no-repeat;
}

.ucspp-add-link {
    margin: 5px 0 25px 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 0;
    color: var(--ucspp-green-dark);
    background: none;
    cursor: pointer;
    font-weight: 500;
}

.ucspp-add-link .ucspp-ui-icon {
    width: 14px;
    height: 14px;
}

.ucspp-qual-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ucspp-qual-reset {
    min-height: 42px;
    padding: 8px 26px;
    border: 0;
    border-radius: 999px;
    color: #4a5565;
    background: #eef2f6;
    box-shadow: none;
    cursor: pointer;
    font-weight: 500;
}

.ucspp-qual-reset:hover,
.ucspp-qual-reset:focus-visible {
    color: #24364d;
    background: #e2e8ef;
}

.ucspp-qualification-results {
    min-height: 620px;
}

.ucspp-results-placeholder {
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5cbd2;
    text-align: center;
    font-size: 25px;
    line-height: 1.25;
}

.ucspp-results-placeholder.is-loading {
    gap: 12px;
    font-size: 16px;
}

.ucspp-results-placeholder.is-loading::before {
    width: 18px;
    height: 18px;
    content: "";
    border: 2px solid #d9dee5;
    border-top-color: var(--ucspp-green);
    border-radius: 50%;
    animation: ucspp-spin .8s linear infinite;
}

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

.ucspp-results-summary {
    margin-bottom: 19px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    text-align: center;
}

.ucspp-results-summary h2 {
    grid-column: 1 / -1;
    margin: 0 0 5px;
    font-size: 19px;
}

.ucspp-result-stat {
    min-width: 0;
}

.ucspp-results-summary strong {
    display: block;
    color: var(--ucspp-green-dark);
    font-size: 26px;
    line-height: 1.1;
}

.ucspp-results-summary strong.is-fail {
    color: #c95c54;
}

.ucspp-results-summary span {
    color: #66707f;
    font-size: 12px;
}

.ucspp-results-source {
    margin: 0 0 12px;
    color: #7b8491;
    font-size: 12px;
    text-align: center;
}

.ucspp-product-results {
    max-height: 650px;
    padding-right: 4px;
    overflow-y: auto;
}

.ucspp-results-error {
    min-height: 220px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    border: 1px solid #f0cac7;
    border-radius: 12px;
    color: #9c403a;
    background: #fff4f3;
    text-align: center;
}

.ucspp-results-error span {
    max-width: 420px;
}

.ucspp-product-card {
    margin-bottom: 12px;
    padding: 18px 22px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 0 15px;
    border: 1px solid #e1e6eb;
    border-radius: 10px;
    background: #fff;
}

.ucspp-product-card.is-qualified {
    border-color: var(--ucspp-green);
}

.ucspp-product-card.is-partial {
    border-color: #e6c568;
}

.ucspp-product-card.is-not-qualified {
    background: rgba(255, 255, 255, .72);
}

.ucspp-product-icon {
    width: 52px;
    height: 52px;
    grid-row: 1 / span 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ucspp-product-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.ucspp-product-card.is-partial .ucspp-product-icon img {
    opacity: .82;
}

.ucspp-product-card.is-not-qualified .ucspp-product-icon img {
    opacity: .48;
    filter: grayscale(1);
}

.ucspp-product-head {
    min-width: 0;
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.ucspp-product-head h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.ucspp-product-card > strong {
    margin: 5px 0 8px;
    display: block;
    grid-column: 2;
    color: var(--ucspp-navy-button);
    font-size: 23px;
    line-height: 1.1;
}

.ucspp-product-card > strong span {
    margin-left: 5px;
    color: #a0a7b0;
    font-size: 10px;
    font-weight: 400;
    text-transform: none;
}

.ucspp-product-card ul {
    margin: 0;
    padding: 0;
    grid-column: 2;
    list-style: none;
    color: #76808e;
    font-size: 12px;
}

.ucspp-product-card li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 2px;
}

.ucspp-product-reason-icon {
    width: 11px;
    height: 11px;
    margin-top: 2px;
    flex: 0 0 auto;
    background: currentColor;
}

.ucspp-product-card li.is-pass {
    color: #2aaa73;
}

.ucspp-product-card li.is-pass .ucspp-product-reason-icon {
    -webkit-mask: url("../images/ui/check.png") center / contain no-repeat;
    mask: url("../images/ui/check.png") center / contain no-repeat;
}

.ucspp-product-card li.is-warn {
    color: #c89a1f;
}

.ucspp-product-card li.is-warn .ucspp-product-reason-icon {
    -webkit-mask: url("../images/ui/caution-hint.png") center / contain no-repeat;
    mask: url("../images/ui/caution-hint.png") center / contain no-repeat;
}

.ucspp-product-card li.is-fail {
    color: #c95c54;
}

.ucspp-product-card li.is-fail .ucspp-product-reason-icon {
    -webkit-mask: url("../images/ui/x-delete.png") center / contain no-repeat;
    mask: url("../images/ui/x-delete.png") center / contain no-repeat;
}

.ucspp-legal {
    max-width: 795px;
    margin-top: 25px;
    color: #7d8693;
    font-size: 11px;
    line-height: 1.3;
}

.ucspp-legal p {
    margin: 1px 0 14px;
}

.ucspp-login {
    --wp-top-bar-height: 32px;
    --header-height: 92px;
    --footer-height: 144px;
    position: relative;
    width: 100%;
    background: var(--ucspp-bg);
}

.ucspp-login__body {
    min-height: calc(100vh - var(--wp-top-bar-height) - var(--header-height) - var(--footer-height));
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 130px 25px 80px;
}

.ucspp-login__card {
    width: min(614px, 100%);
    padding: 61px 86px 92px;
    display: flex;
    flex-direction: column;
    border-radius: 13px;
    background: #fff;
    box-shadow: var(--ucspp-shadow);
}

.ucspp-login__card h1 {
    margin: 0 0 30px;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
}

.ucspp-login__card label {
    margin: 0 0 9px;
    text-align: center;
    font-size: 16px;
}

.ucspp-login__card input {
    width: 100%;
    height: 47px;
    margin-bottom: 18px;
    padding: 0 18px;
    border: 1px solid #cfd3d8;
    border-radius: 4px;
    outline: none;
}

.ucspp-login__card input:focus {
    border-color: var(--ucspp-green);
    box-shadow: 0 0 0 3px rgba(47, 190, 131, .12);
}

.ucspp-login__card .ucspp-button {
    margin-top: 17px;
}

/*
 * Elementor style isolation
 *
 * Elementor Kit rules target bare buttons, submit inputs and links. The
 * portal's unique roots make these component rules more specific without
 * leaking overrides into Elementor headers, footers or other page content.
 */
#ucspp-partner-portal button,
#ucspp-partner-portal input,
#ucspp-partner-portal select,
#ucspp-partner-portal textarea,
#ucspp-partner-login button,
#ucspp-partner-login input {
    font-family: "Hind", "Segoe UI", Arial, sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

#ucspp-partner-portal [hidden] {
    display: none !important;
}

#ucspp-partner-portal .ucspp-button,
#ucspp-partner-login .ucspp-button {
    min-height: 42px;
    padding: 8px 30px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--ucspp-navy-button);
    box-shadow: none;
    line-height: normal;
    cursor: pointer;
    font-weight: 600;
}

#ucspp-partner-portal .ucspp-button:hover,
#ucspp-partner-portal .ucspp-button:focus-visible,
#ucspp-partner-login .ucspp-button:hover,
#ucspp-partner-login .ucspp-button:focus-visible {
    border: 0;
    color: #fff;
    background: #214a78;
}

#ucspp-partner-portal .ucspp-button:disabled,
#ucspp-partner-login .ucspp-button:disabled {
    color: #c1c8d0;
    background: #eef2f6;
    cursor: not-allowed;
    opacity: 1;
}

#ucspp-partner-portal .ucspp-button--green,
#ucspp-partner-login .ucspp-button--green {
    width: 100%;
    color: #fff;
    background: var(--ucspp-green);
}

#ucspp-partner-portal .ucspp-button--green:hover,
#ucspp-partner-portal .ucspp-button--green:focus-visible,
#ucspp-partner-login .ucspp-button--green:hover,
#ucspp-partner-login .ucspp-button--green:focus-visible {
    color: #fff;
    background: var(--ucspp-green-dark);
}

#ucspp-partner-portal .ucspp-tabs button {
    padding: 0 0 11px;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    color: #a6aab1;
    background: transparent;
    box-shadow: none;
    line-height: normal;
    text-transform: none;
}

#ucspp-partner-portal .ucspp-tabs button:hover,
#ucspp-partner-portal .ucspp-tabs button:focus,
#ucspp-partner-portal .ucspp-tabs button.is-active {
    color: var(--ucspp-text);
    background: transparent;
    border: 0;
    border-bottom: 2px solid var(--ucspp-green);
}

#ucspp-partner-portal .ucspp-menu-toggle {
    padding: 9px;
    display: none;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--ucspp-navy);
    box-shadow: none;
    line-height: normal;
}

#ucspp-partner-portal .ucspp-sidebar__close {
    padding: 0;
    display: none;
    border: 0;
    border-radius: 0;
    color: #fff;
    background: transparent;
    box-shadow: none;
    line-height: normal;
}

#ucspp-partner-portal .ucspp-outline-button {
    min-height: 42px;
    padding: 0 24px;
    border: 1px solid var(--ucspp-navy);
    border-radius: 999px;
    color: var(--ucspp-navy);
    background: #fff;
    box-shadow: none;
    line-height: normal;
    text-transform: none;
}

#ucspp-partner-portal .ucspp-outline-button:hover,
#ucspp-partner-portal .ucspp-outline-button:focus {
    border: 1px solid var(--ucspp-navy);
    color: #fff;
    background: var(--ucspp-navy);
}

#ucspp-partner-portal .ucspp-pagination button {
    min-height: 40px;
    padding: 6px 17px;
    border: 1px solid var(--ucspp-line);
    border-radius: 999px;
    color: #4e5a69;
    background: #fff;
    box-shadow: none;
    line-height: normal;
    text-transform: none;
}

#ucspp-partner-portal .ucspp-pagination button:hover,
#ucspp-partner-portal .ucspp-pagination button:focus {
    border: 1px solid var(--ucspp-navy);
    color: var(--ucspp-navy);
    background: #fff;
}

#ucspp-partner-portal .ucspp-pagination button:disabled {
    border: 1px solid var(--ucspp-line);
    color: #4e5a69;
    background: #fff;
    opacity: .45;
}

#ucspp-partner-portal .ucspp-resource-filters button {
    min-height: 40px;
    padding: 5px 18px;
    border: 0;
    border-radius: 999px;
    color: #6f7885;
    background: #fff;
    box-shadow: none;
    line-height: normal;
    text-transform: none;
}

#ucspp-partner-portal .ucspp-resource-filters button:hover,
#ucspp-partner-portal .ucspp-resource-filters button:focus,
#ucspp-partner-portal .ucspp-resource-filters button.is-active {
    border: 0;
    color: #374457;
    background: #fff;
}

#ucspp-partner-portal .ucspp-qual-step legend > button,
#ucspp-partner-portal .ucspp-add-link {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    line-height: normal;
    text-transform: none;
}

#ucspp-partner-portal .ucspp-qual-step legend > button {
    color: #b3b8c0;
}

#ucspp-partner-portal .ucspp-add-link,
#ucspp-partner-portal .ucspp-add-link:hover,
#ucspp-partner-portal .ucspp-add-link:focus {
    color: var(--ucspp-green-dark);
    background: transparent;
}

#ucspp-partner-portal .ucspp-qual-reset {
    min-height: 42px;
    padding: 8px 26px;
    border: 0;
    border-radius: 999px;
    color: #4a5565;
    background: #eef2f6;
    box-shadow: none;
    line-height: normal;
    text-transform: none;
}

#ucspp-partner-portal .ucspp-qual-reset:hover,
#ucspp-partner-portal .ucspp-qual-reset:focus {
    border: 0;
    color: #24364d;
    background: #e2e8ef;
}

#ucspp-partner-portal .ucspp-asset-remove {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ucspp-line);
    border-radius: 7px;
    color: #b4bac2;
    background: #fff;
    box-shadow: none;
    line-height: normal;
    text-transform: none;
}

#ucspp-partner-portal .ucspp-application input[type="submit"],
#ucspp-partner-portal .ucspp-application button {
    min-height: 42px;
    padding: 8px 30px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--ucspp-navy-button);
    box-shadow: none;
    line-height: normal;
    text-transform: none;
}

#ucspp-partner-portal .ucspp-application input[type="submit"]:hover,
#ucspp-partner-portal .ucspp-application input[type="submit"]:focus,
#ucspp-partner-portal .ucspp-application button:hover,
#ucspp-partner-portal .ucspp-application button:focus {
    border: 0;
    color: #fff;
    background: #214a78;
}

#ucspp-partner-portal .ucspp-application .cf7mls_back.action-button,
#ucspp-partner-portal .ucspp-application .cf7mls_back.action-button:hover,
#ucspp-partner-portal .ucspp-application .cf7mls_back.action-button:focus {
    color: var(--ucspp-navy);
    border: 1px solid var(--ucspp-navy);
    background: #fff;
}

#ucspp-partner-portal .ucspp-pill-button,
#ucspp-partner-portal a.ucspp-pill-button {
    min-height: 32px;
    padding: 5px 18px;
    border: 0;
    border-radius: 999px;
    color: #273952;
    background: #f0f3f5;
    line-height: normal;
    text-decoration: none;
    text-transform: none;
}

#ucspp-partner-portal .ucspp-pill-button:hover,
#ucspp-partner-portal .ucspp-pill-button:focus,
#ucspp-partner-portal a.ucspp-pill-button:hover,
#ucspp-partner-portal a.ucspp-pill-button:focus {
    color: var(--ucspp-navy);
    background: #e4e9ed;
}

#ucspp-partner-portal a.ucspp-action,
#ucspp-partner-portal .ucspp-action {
    color: var(--ucspp-navy);
    text-decoration: none;
}

#ucspp-partner-portal .ucspp-contact-card__links a {
    color: inherit;
    text-decoration: none;
}

#ucspp-partner-portal .ucspp-sidebar nav a,
#ucspp-partner-portal .ucspp-logout {
    color: #f8fbff;
    text-decoration: none;
}

#ucspp-partner-portal .ucspp-sidebar nav a.is-active {
    color: var(--ucspp-green);
}

#ucspp-partner-portal .ucspp-period select,
#ucspp-partner-portal .ucspp-filters select,
#ucspp-partner-portal .ucspp-search input,
#ucspp-partner-portal .ucspp-qualifier input,
#ucspp-partner-portal .ucspp-qualifier select,
#ucspp-partner-portal .ucspp-application input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
#ucspp-partner-portal .ucspp-application select,
#ucspp-partner-portal .ucspp-application textarea {
    border: 1px solid var(--ucspp-line);
    border-radius: 9px;
    color: #4d5868;
    background-color: #fff;
    box-shadow: none;
    line-height: normal;
}

#ucspp-partner-portal .ucspp-search input,
#ucspp-partner-portal .ucspp-search input:focus {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

#ucspp-partner-login .ucspp-login__card h1 {
    color: var(--ucspp-text);
    font-family: "Hind", "Segoe UI", Arial, sans-serif;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: none;
}

#ucspp-partner-login .ucspp-login__card input {
    width: 100%;
    height: 47px;
    margin-bottom: 18px;
    padding: 0 18px;
    border: 1px solid #cfd3d8;
    border-radius: 4px;
    color: var(--ucspp-text);
    background: #fff;
    box-shadow: none;
    line-height: normal;
}

@media (max-width: 1350px) {
    .ucspp-content {
        padding-right: 40px;
        padding-left: 40px;
    }

    .ucspp-stat {
        padding-right: 24px;
        padding-left: 24px;
    }

    .ucspp-stat > strong {
        font-size: 35px;
    }

    .ucspp-filters {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
    }

    .ucspp-filters .ucspp-outline-button {
        grid-column: 3;
    }
}

@media (max-width: 1100px) {
    .ucspp-sidebar {
        width: 250px;
    }

    .ucspp-content {
        margin-left: 250px;
        padding: 115px 28px 50px;
    }

    .ucspp-sidebar nav a,
    .ucspp-logout {
        padding-right: 25px;
        padding-left: 30px;
    }

    .ucspp-stat-grid,
    .ucspp-earnings-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ucspp-dashboard-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .ucspp-rep-mini {
        min-height: 290px;
    }

    .ucspp-resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ucspp-prequal-layout {
        grid-template-columns: 1fr;
    }

    .ucspp-results-placeholder {
        min-height: 260px;
    }
}

@media (max-width: 780px) {
    .ucspp-topbar {
        height: 72px;
        padding: 0 18px;
    }

    .ucspp-brand img {
        width: 160px;
    }

    .ucspp-profile {
        min-width: auto;
        padding-left: 12px;
        border: 0;
    }

    .ucspp-profile > span:last-child {
        display: none;
    }

    .ucspp-profile .ucspp-avatar {
        width: 42px;
        height: 42px;
    }

    .ucspp-sidebar {
        z-index: 80;
        top: 0;
        width: min(310px, 88vw);
        transform: translateX(-102%);
        transition: transform .2s ease;
    }

    .ucspp-sidebar.is-open {
        transform: translateX(0);
        box-shadow: 20px 0 50px rgba(5, 20, 41, .25);
    }

    .ucspp-sidebar nav {
        padding-top: 65px;
    }

    #ucspp-partner-portal .ucspp-sidebar__close {
        position: absolute;
        top: 15px;
        right: 18px;
        display: block;
        border: 0;
        color: #fff;
        background: transparent;
        font-size: 34px;
    }

    #ucspp-partner-portal .ucspp-menu-toggle {
        position: fixed;
        z-index: 70;
        top: 82px;
        left: 15px;
        width: 44px;
        height: 40px;
        padding: 9px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        border: 0;
        border-radius: 8px;
        background: var(--ucspp-navy);
    }

    body.admin-bar .ucspp-topbar {
        top: 46px;
    }

    body.admin-bar .ucspp-sidebar {
        top: 46px;
    }

    body.admin-bar .ucspp-menu-toggle {
        top: 128px;
    }

    .ucspp-menu-toggle span:not(.screen-reader-text) {
        width: 100%;
        height: 2px;
        background: #fff;
    }

    .ucspp-content {
        margin-left: 0;
        padding: 135px 16px 45px;
    }

    .ucspp-page-heading--split {
        align-items: flex-start;
        flex-direction: column;
    }

    .ucspp-period,
    .ucspp-search {
        width: 100%;
    }

    .ucspp-period select {
        flex: 1;
        width: auto;
    }

    .ucspp-stat-grid,
    .ucspp-earnings-grid {
        margin-bottom: 35px;
        grid-template-columns: 1fr;
    }

    .ucspp-stat {
        min-height: 155px;
    }

    .ucspp-tabs {
        padding-left: 0;
        gap: 20px;
        overflow-x: auto;
    }

    .ucspp-tabs button {
        flex: 0 0 auto;
        font-size: 14px;
    }

    .ucspp-filters,
    .ucspp-filters--earnings {
        grid-template-columns: 1fr 1fr;
    }

    .ucspp-filters .ucspp-outline-button {
        grid-column: auto;
    }

    .ucspp-search--filter {
        grid-column: 1 / -1;
    }

    .ucspp-contact-grid,
    .ucspp-resource-grid,
    .ucspp-resource-grid--compact {
        max-width: none;
        grid-template-columns: 1fr;
    }

    .ucspp-pagination {
        align-items: flex-start;
        flex-direction: column;
    }

    .ucspp-qualifier {
        min-height: 0;
        padding: 30px 22px;
    }

    .ucspp-field-grid {
        grid-template-columns: 1fr;
    }

    .ucspp-asset-head {
        display: none;
    }

    .ucspp-asset-row {
        padding: 12px;
        grid-template-columns: 1fr;
        border: 1px solid var(--ucspp-line);
        border-radius: 9px;
    }

    .ucspp-asset-remove {
        min-height: 38px;
    }

    .ucspp-login__card {
        padding: 42px 25px 55px;
    }

}

@media (max-width: 520px) {
    .ucspp-page-heading h1 {
        font-size: 26px;
    }

    .ucspp-period {
        align-items: flex-start;
        flex-direction: column;
    }

    .ucspp-period select {
        width: 100%;
    }

    .ucspp-filters,
    .ucspp-filters--earnings {
        grid-template-columns: 1fr;
    }

    .ucspp-filter-no-label span {
        display: none;
    }

    .ucspp-contact-card {
        padding-right: 20px;
        padding-left: 20px;
    }

    .ucspp-contact-card__links {
        width: calc(100% + 40px);
        padding: 18px;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .ucspp-results-summary {
        grid-template-columns: 1fr;
    }

    .ucspp-results-summary h2 {
        grid-column: auto;
    }
}
