.ss-app {
    --ss-text: #2d2d35;
    --ss-muted: #7c8190;
    --ss-border: #e7eaf4;
    --ss-soft: #f6f7fb;
    --ss-turquoise: #10c6bd;
    --ss-purple: #6547e8;
    --ss-blue: #2387ff;
    --ss-danger: #d5424d;
    color: var(--ss-text);
    font-family: inherit;
}

.ss-app :is(button, input, select, textarea, a) {
    font-family: inherit !important;
}

.ss-app *,
.ss-app *::before,
.ss-app *::after {
    box-sizing: border-box;
}

.ss-app [hidden] {
    display: none !important;
}

.ss-shell {
    width: min(100%, 560px);
    margin: 0 auto;
    padding: 28px 18px 160px;
    overflow-x: hidden;
}

.ss-progress {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 18px;
    margin: 8px 0 28px;
}

.ss-progress::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 7px;
    left: 7px;
    height: 4px;
    background: var(--ss-purple);
    transform: translateY(-50%);
}

.ss-progress span {
    position: relative;
    z-index: 1;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    border-radius: 50%;
    background: var(--ss-purple);
}

.ss-kicker {
    margin: 0 0 8px;
    color: #4a4f5b;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
}

.ss-wizard .ss-kicker {
    text-align: center;
}

.ss-app h2 {
    margin: 0 0 14px;
    color: var(--ss-text);
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: 0;
}

.ss-app h3 {
    margin: 0 0 14px;
    color: var(--ss-text);
    font-size: 19px;
    line-height: 1.2;
    letter-spacing: 0;
}

.ss-muted,
.ss-empty {
    color: var(--ss-muted);
    font-size: 15px;
    line-height: 1.45;
}

.ss-select .ss-muted {
    max-width: 100%;
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.22;
}

.ss-card {
    margin: 18px 0;
    padding: 0;
    background: transparent;
    border: 0;
}

.ss-selection-form {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.ss-field {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 16px;
}

.ss-name-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    margin: 0 0 16px;
}

.ss-name-row .ss-field {
    margin-bottom: 0;
}

.ss-school-field {
    position: relative;
    z-index: 20;
}

.ss-school-field label {
    display: block;
    margin: 0;
}

.ss-field span,
.ss-segmented legend {
    display: block;
    margin: 0 0 10px;
    color: #555b68;
    font-size: 13px;
    font-weight: 700;
}

.ss-select .ss-field span,
.ss-select .ss-segmented legend {
    color: var(--ss-text);
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    text-transform: none;
}

.ss-field input,
.ss-field select,
.ss-selection-form select {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    padding: 0 14px;
    color: var(--ss-text);
    background: var(--ss-soft);
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    appearance: none;
}

.ss-field select {
    background-image: linear-gradient(45deg, transparent 50%, #8f96a6 50%), linear-gradient(135deg, #8f96a6 50%, transparent 50%);
    background-position: calc(100% - 18px) 52%, calc(100% - 12px) 52%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.ss-selection-form input[type="search"] {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.ss-field input:focus,
.ss-field select:focus {
    border-color: rgba(35, 135, 255, 0.45);
    box-shadow: 0 0 0 3px rgba(35, 135, 255, 0.12);
}

.ss-field select.ss-class-select-unavailable,
.ss-field select.ss-class-select-unavailable:disabled,
.ss-field select.ss-class-select-unavailable option {
    color: #ac0000 !important;
    opacity: 1;
}

.ss-school-results {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    z-index: 40;
    display: grid;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    max-height: 330px;
    margin: 0;
    padding: 8px;
    overflow: auto;
    background: #fff;
    border: 1px solid var(--ss-border);
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(34, 37, 48, 0.14);
}

.ss-school-results button {
    --btn-color: var(--ss-text);
    --btn-color-hover: var(--ss-text);
    --btn-bgcolor: #fff;
    --btn-bgcolor-hover: #fff;
    --btn-brd-color: var(--ss-border);
    --btn-brd-color-hover: var(--ss-border);
    --btn-transform: none;
    --btn-font-weight: 400;
    --btn-font-size: 14px;
    --btn-height: auto;
    --btn-padding: 12px;
    width: 100%;
    padding: 10px;
    min-height: auto;
    color: var(--ss-text);
    text-align: left;
    text-transform: none;
    background: #fff;
    border: 1px solid var(--ss-border);
    border-radius: 8px;
    box-shadow: none;
    cursor: pointer;
}

.ss-school-result-name,
.ss-school-result-address {
    display: block;
    margin: 0!important;
    padding: 0!important;
    font-family: inherit;
    line-height: 1.25;
    text-transform: none;
    font-size: 14px!important;
}

.ss-school-result-name {
    color: var(--ss-text);
    font-size: 14px;
    font-weight: 800!important;
}

.ss-school-result-address {
    margin-top: 3px;
    color: var(--ss-muted)!important;
    font-size: 13px!important;
    font-weight: 500!important;
}

.ss-segmented {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    width: 100%;
    max-width: 100%;
    margin: 8px 0 26px;
    padding: 0;
    border: 0;
}

.ss-segmented legend {
    grid-column: 1 / -1;
}

.ss-segmented label {
    display: block;
}

.ss-segmented input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ss-segmented span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 12px;
    color: #515766;
    background: #fff;
    border: 1px solid var(--ss-border);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.ss-segmented input:checked + span {
    color: #fff;
    background: var(--ss-purple);
    border-color: var(--ss-purple);
}

.ss-primary,
.ss-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.ss-primary {
    --btn-color: #fff;
    --btn-color-hover: #fff;
    --btn-bgcolor: var(--ss-turquoise);
    --btn-bgcolor-hover: var(--ss-turquoise);
    --btn-brd-color: var(--ss-turquoise);
    --btn-brd-color-hover: var(--ss-turquoise);
    --btn-box-shadow: none;
    --btn-box-shadow-hover: none;
    --btn-transform: none;
    width: 100%;
    color: #fff !important;
    background: var(--ss-turquoise) !important;
    border: 1px solid var(--ss-turquoise) !important;
    font-size: 18px;
    text-transform: none !important;
    box-shadow: none;
}

.ss-app .ss-primary:hover,
.ss-app .ss-primary:focus,
.ss-app button.ss-primary:hover,
.ss-app button.ss-primary:focus,
.ss-app a.ss-primary:hover,
.ss-app a.ss-primary:focus {
    color: #fff !important;
    background: var(--ss-turquoise) !important;
    border-color: var(--ss-turquoise) !important;
    box-shadow: none;
    filter: none;
}

.ss-select .ss-primary {
    --btn-bgcolor: var(--ss-purple);
    --btn-bgcolor-hover: var(--ss-purple);
    --btn-brd-color: var(--ss-purple);
    --btn-brd-color-hover: var(--ss-purple);
    min-height: 76px;
    flex-direction: column;
    margin-top: 4px;
    background: var(--ss-purple) !important;
    border-color: var(--ss-purple) !important;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(101, 71, 232, 0.28);
    color: #fff !important;
    font-size: 20px;
    font-weight: 700;
}

.ss-select .ss-primary:hover,
.ss-select .ss-primary:focus,
.ss-select button.ss-primary:hover,
.ss-select button.ss-primary:focus {
    color: #fff !important;
    background: var(--ss-purple) !important;
    border-color: var(--ss-purple) !important;
    box-shadow: 0 5px 10px rgba(101, 71, 232, 0.28);
}

.ss-select .ss-primary small {
    display: block;
    margin-top: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.ss-entry-select {
    --ss-entry-primary: #324263;
}

.ss-entry-select .ss-shell {
    width: min(100%, 360px);
    padding: 14px 14px 16px;
    background: #fbfbfb;
    border-radius: 10px;
    overflow: visible;
}

.ss-entry-select .ss-progress {
    height: 14px;
    margin: 6px 0 14px;
}

.ss-entry-select .ss-progress::before,
.ss-entry-select .ss-progress span {
    background: var(--ss-entry-primary);
}

.ss-entry-select .ss-progress::before {
    height: 3px;
}

.ss-entry-select .ss-progress span {
    width: 11px;
    height: 11px;
    flex-basis: 11px;
}

.ss-entry-select .ss-home-promo {
    margin-bottom: 12px;
    padding: 7px 11px;
    font-size: 12px;
}

.ss-entry-select h2 {
    margin: 0 0 12px;
    color: #20242d;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
}

.ss-entry-select h2 strong {
    font-weight: 700;
}

.ss-entry-select h2 span {
    display: block;
    font-weight: 500;
}

.ss-entry-select .ss-home-benefits {
    gap: 6px;
    margin-bottom: 14px;
    font-size: 13px;
}

.ss-entry-select .ss-home-benefit-icon {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
    font-size: 11px;
}

.ss-entry-select .ss-field {
    margin-bottom: 9px;
}

.ss-entry-select .ss-field span,
.ss-entry-select .ss-segmented legend {
    margin-bottom: 5px;
    color: #101820;
    font-size: 13px;
    font-weight: 500;
}

.ss-entry-select .ss-field input,
.ss-entry-select .ss-field select,
.ss-entry-select .ss-selection-form select {
    min-height: 38px;
    padding: 0 12px;
    background: #f3f4f8;
    border: 0;
    border-radius: 10px;
    font-size: 13px;
}

.ss-entry-select .ss-name-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.ss-entry-select .ss-segmented {
    gap: 7px;
    margin: 2px 0 11px;
}

.ss-entry-select .ss-segmented span {
    min-height: 34px;
    color: var(--ss-entry-primary);
    background: #f3f4f8;
    border: 1px solid rgba(50, 66, 99, 0.26);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}

.ss-entry-select .ss-segmented input:checked + span {
    color: #fff;
    background: var(--ss-entry-primary);
    border-color: var(--ss-entry-primary);
}

.ss-entry-select .ss-primary {
    min-height: 48px;
    background: var(--ss-entry-primary) !important;
    border-color: var(--ss-entry-primary) !important;
    border-radius: 10px;
    box-shadow: 0 8px 14px rgba(50, 66, 99, 0.3);
    font-size: 15px;
}

.ss-entry-select .ss-primary:hover,
.ss-entry-select .ss-primary:focus {
    background: var(--ss-entry-primary) !important;
    border-color: var(--ss-entry-primary) !important;
    box-shadow: 0 8px 14px rgba(50, 66, 99, 0.3);
}

.ss-entry-select .ss-primary small {
    margin-top: 2px;
    font-size: 11px;
    font-weight: 400;
}

.ss-entry-select .ss-home-trust {
    margin-top: 12px;
}

.ss-entry-select .ss-home-trust div {
    font-size: 18px;
}

.ss-entry-select .ss-home-trust p {
    font-size: 12px;
}

.ss-home-select {
    --ss-home-soft: #FFE8AC;
    --ss-home-primary: #324263;
    width: 100%;
}

body:has(.ss-entry-select) .wd-page-title,
body:has(.ss-home-select) .wd-page-title,
body:has(.ss-wizard) .wd-page-title {
    display: none;
}

.wd-content-layout:has(.ss-home-select) {
    padding-block: 0;
}

.ss-app.ss-home-select .ss-shell {
    width: min(100%, 430px);
    padding: 18px 18px 20px;
    background: var(--ss-home-soft);
    border-radius: 12px;
    overflow: visible;
}

.ss-home-promo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin: 0 0 16px;
    padding: 8px 14px;
    color: #b0000f;
    background: #fff1f1;
    border: 2px solid #bb1a25;
    border-radius: 999px;
    font-size: 13px;
    font-style: italic;
    line-height: 1.22;
}

.ss-home-promo span {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    background: #c40012;
    border-radius: 50%;
    animation: ss-home-pulse 1.7s ease-in-out infinite;
}

.ss-home-promo strong {
    font-weight: 700;
}

.ss-app.ss-home-select h2 {
    margin: 0 0 16px;
    color: #20242d;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.12;
}

.ss-app.ss-home-select h2 strong {
    font-weight: 700;
}

.ss-app.ss-home-select h2 span {
    display: block;
    font-weight: 500;
}

.ss-home-benefits {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    color: #252a33;
    font-size: 16px;
    line-height: 1.2;
}

.ss-home-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    min-width: 0;
}

.ss-home-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 0;
    color: #fff;
    background: #12b829;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.ss-home-benefit-copy {
    min-width: 0;
}

.ss-home-benefits strong {
    font-weight: 700;
}

.ss-home-select .ss-card {
    margin: 0;
}

.ss-home-select .ss-field {
    margin-bottom: 12px;
}

.ss-home-select .ss-name-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
}

.ss-home-select .ss-field span,
.ss-app.ss-home-select .ss-segmented legend {
    margin-bottom: 6px;
    color: #101820;
    font-size: 16px;
    font-weight: 500;
}

.ss-home-select .ss-field input,
.ss-home-select .ss-field select,
.ss-home-select .ss-selection-form select {
    min-height: 46px;
    padding: 0 14px;
    background-color: #f6f7fb;
    border: 0;
    border-radius: 10px;
    font-size: 16px;
}

.ss-home-select .ss-segmented {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 4px 0 14px;
}

.ss-home-select .ss-segmented span {
    min-height: 40px;
    justify-content: center;
    padding: 0 10px;
    color: var(--ss-home-primary);
    background: #f6f7fb;
    border: 1px solid rgba(50, 66, 99, 0.28);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
}

.ss-home-select .ss-segmented input:checked + span {
    color: #fff;
    background: var(--ss-home-primary);
    border-color: var(--ss-home-primary);
}

.ss-home-select .ss-primary {
    min-height: 56px;
    background: var(--ss-home-primary) !important;
    border-color: var(--ss-home-primary) !important;
    border-radius: 10px;
    box-shadow: 0 8px 14px rgba(50, 66, 99, 0.34);
    font-size: 18px;
}

.ss-home-select .ss-primary:hover,
.ss-home-select .ss-primary:focus {
    background: var(--ss-home-primary) !important;
    border-color: var(--ss-home-primary) !important;
    box-shadow: 0 8px 14px rgba(50, 66, 99, 0.34);
}

.ss-home-select .ss-primary small {
    margin-top: 3px;
    font-size: 13px;
    font-weight: 400;
}

.ss-home-select .ss-school-results {
    border-radius: 14px;
}

.ss-app.ss-home-select-compact .ss-shell {
    width: min(100%, 860px);
    padding: 30px 36px 34px;
}

.ss-home-select-compact .ss-home-promo {
    margin-bottom: 26px;
}

.ss-home-select-compact .ss-field {
    margin-bottom: 20px;
}

.ss-home-select-compact .ss-field span,
.ss-app.ss-home-select-compact .ss-segmented legend {
    margin-bottom: 12px;
    text-align: center;
}

.ss-home-select-compact .ss-name-row {
    gap: 16px;
    margin-bottom: 22px;
}

.ss-home-select-compact .ss-field input,
.ss-home-select-compact .ss-field select,
.ss-home-select-compact .ss-selection-form select {
    min-height: 58px;
    padding: 0 20px;
    font-size: 20px;
}

.ss-home-select-compact .ss-segmented {
    gap: 16px;
    margin: 0 0 24px;
}

.ss-home-select-compact .ss-segmented span {
    min-height: 58px;
    font-size: 20px;
}

.ss-home-select-compact .ss-primary {
    min-height: 76px;
    font-size: 28px;
}

.ss-home-select-compact .ss-primary small {
    margin-top: 8px;
    font-size: 18px;
}

.ss-home-trust {
    margin-top: 18px;
    color: #151923;
    text-align: center;
}

.ss-home-trust div {
    margin-bottom: 2px;
    color: #ffbf25;
    font-size: 22px;
    letter-spacing: 2px;
    text-shadow: 0 2px 3px rgba(91, 68, 0, 0.24);
}

.ss-home-trust p {
    margin: 0;
    font-size: 14px;
    font-style: italic;
    line-height: 1.25;
}

@keyframes ss-home-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(0.78);
    }
}

.ss-app fieldset.ss-segmented legend,
.ss-app .ss-segmented legend {
    float: none;
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
    color: var(--ss-text);
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    line-height: 1.2;
    text-transform: none;
}

.ss-outline {
    color: var(--ss-blue);
    background: #fff;
    border: 1px solid var(--ss-blue);
}

.ss-wide {
    min-height: 66px;
    font-size: 20px;
}

.ss-info-submission .ss-info-content {
    display: grid;
    gap: 12px;
}

.ss-info-submission .ss-submission-open {
    justify-self: start;
    border-radius: 8px;
}

.ss-submission-success {
    margin-top: 2px;
    padding: 12px 14px;
    color: #10746f;
    background: #e9fbfa;
    border: 1px solid rgba(16, 198, 189, .35);
    border-radius: 10px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
}

.ss-form-message,
.ss-alert {
    margin: 12px 0 0;
    color: var(--ss-danger);
    font-size: 14px;
}

.ss-alert {
    padding: 12px 14px;
    background: #fff1f2;
    border: 1px solid #ffd7dc;
    border-radius: 8px;
}

.ss-alert[data-type="success"] {
    color: #087a4f;
    background: #ecfff7;
    border-color: #b9f0d8;
}

.ss-info {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 14px;
    align-items: start;
    margin: 24px 0 30px;
    align-items: center;
}

.ss-info-content {
    margin: 2px 0 0;
    color: #6f737d;
    font-size: 15px;
    line-height: 1.55;
}

.ss-info-content > :first-child {
    margin-top: 0;
}

.ss-info-content > :last-child {
    margin-bottom: 0;
}

.ss-info-content p {
    margin: 0 0 8px;
}

.ss-info-content a {
    color: var(--ss-blue);
    font-weight: 700;
}

.ss-info-books {
    margin: 12px 0 18px;
}

.ss-wizard .ss-info {
    padding: 10px;
    color: #b18408;
    background-color: #fefcf7;
    border: solid 1px #fbe9a1;
    border-radius: 10px;
}

.ss-wizard .ss-info-content {
    color: inherit;
}

.ss-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    padding: 10px;
    color: #fc0;
    background: #f5f6fa;
    border-radius: 50%;
}

.ss-info-icon svg {
    width: 24px;
    height: 24px;
}

.ss-info-icon svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ss-info-submission {
    margin: 32px 0 0;
    padding: 15px;
    background-color: #fffbee;
    border: solid 1px #fbe9a1;
    border-radius: 10px;
}

.ss-spinner {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border: 2px solid rgba(16, 198, 189, 0.22);
    border-top-color: var(--ss-turquoise);
    border-radius: 50%;
    animation: ss-spin 0.75s linear infinite;
}

.ss-busy-shield {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(2px);
}

.ss-busy-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    max-width: min(420px, 100%);
    padding: 16px 18px;
    color: var(--ss-text);
    background: #fff;
    border: 1px solid var(--ss-border);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(34, 37, 48, 0.16);
}

.ss-busy-card strong {
    font-size: 15px;
    line-height: 1.25;
}

.ss-app.is-busy :is(button, input, select, textarea, a) {
    cursor: wait;
}

.ss-app.is-busy .ss-busy-shield {
    cursor: wait;
}

.ss-app button:disabled {
    opacity: 0.78;
    cursor: wait;
}

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

.ss-section {
    margin: 28px 0 36px;
}

.ss-section > h3 {
    margin-bottom: 14px;
    font-size: 18px;
}

.ss-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.ss-section-head h3 {
    margin: 0;
    font-size: 18px;
}

.ss-section-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.ss-section-action,
.ss-extra-action,
.ss-submission-open {
    --btn-color: #007aff;
    --btn-color-hover: #007aff;
    --btn-bgcolor: #f3f9ff;
    --btn-bgcolor-hover: #f3f9ff;
    --btn-brd-color: #007aff;
    --btn-brd-color-hover: #007aff;
    --btn-height: 36px;
    --btn-padding: 5px 12px;
    --btn-transform: none;
    min-height: 36px;
    padding: 5px 12px;
    color: #007aff !important;
    background: #f3f9ff !important;
    border: 1px solid #007aff !important;
    border-radius: 8px !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.28px;
    text-transform: none !important;
}

.ss-section-action:hover,
.ss-section-action:focus,
.ss-extra-action:hover,
.ss-extra-action:focus,
.ss-submission-open:hover,
.ss-submission-open:focus {
    color: #007aff !important;
    background: #f3f9ff !important;
    border-color: #007aff !important;
    box-shadow: none;
}

.ss-app .ss-bulk-remove {
    --btn-color: #000;
    --btn-color-hover: #000;
    --btn-bgcolor: #fff;
    --btn-bgcolor-hover: #fff;
    --btn-brd-color: #cfcfcf;
    --btn-brd-color-hover: #cfcfcf;
    --btn-box-shadow: none;
    --btn-box-shadow-hover: none;
    --btn-height: 36px;
    --btn-padding: 8px 14px;
    --btn-transform: none;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 36px !important;
    padding: 8px 14px !important;
    color: #000 !important;
    background: #fff !important;
    border: 1px solid #cfcfcf !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-align: center;
    text-transform: none !important;
    cursor: pointer;
}

.ss-app .ss-bulk-remove:hover,
.ss-app .ss-bulk-remove:focus {
    color: #000 !important;
    background: #fff !important;
    border-color: #cfcfcf !important;
    box-shadow: none !important;
}

.ss-app .ss-bulk-remove svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
}

.ss-app .ss-bulk-remove svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ss-pupil-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 10px;
}

.ss-pupil-header > div:first-child {
    flex: 1 1 260px;
    min-width: 0;
}

.ss-pupil-header > div > span {
    color: var(--ss-muted);
    font-size: 13px;
}

.ss-pupil-header h3 {
    margin-bottom: 0;
}

.ss-pupil-meta {
    margin: 4px 0 0;
    color: var(--ss-muted);
    font-size: 14px;
    line-height: 1.35;
}

.ss-pupil-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.ss-pupil-update {
    --btn-color: #fff;
    --btn-color-hover: #fff;
    --btn-bgcolor: var(--ss-turquoise);
    --btn-bgcolor-hover: var(--ss-turquoise);
    --btn-brd-color: var(--ss-turquoise);
    --btn-brd-color-hover: var(--ss-turquoise);
    --btn-height: 34px;
    --btn-padding: 0 12px;
    --btn-transform: none;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 34px !important;
    padding: 0 12px !important;
    color: #fff !important;
    background: var(--ss-turquoise) !important;
    border: 1px solid var(--ss-turquoise) !important;
    border-radius: 8px;
    box-shadow: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-transform: none !important;
    cursor: pointer;
}

.ss-pupil-update:hover,
.ss-pupil-update:focus {
    color: #fff !important;
    background: var(--ss-turquoise) !important;
    border-color: var(--ss-turquoise) !important;
    box-shadow: none !important;
}

.ss-app .ss-pupil-delete {
    min-height: 34px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.ss-app .ss-pupil-delete span {
    color: #000 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.ss-product-card {
    position: relative;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 10px;
    min-height: 142px;
    margin: 8px 0;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--ss-border);
    border-radius: 8px;
}

.ss-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    overflow: hidden;
    background: #fafbff;
    border: 1px solid var(--ss-border);
    border-radius: 8px;
}

.ss-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ss-product-image-link {
    color: inherit !important;
    text-decoration: none !important;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.ss-product-image-link:hover,
.ss-product-image-link:focus {
    color: inherit !important;
    border-color: rgba(0, 122, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.08);
    outline: none;
}

.ss-product-body {
    min-width: 0;
    padding-right: 26px;
}

.ss-product-title {
    display: block;
    width: max-content;
    max-width: 100%;
    color: #30323a !important;
    text-decoration: none !important;
}

.ss-product-body strong {
    display: block;
    color: #30323a;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
}

.ss-product-comment {
    margin: 5px 34px 8px 0;
    color: var(--ss-muted);
    font-size: 13px;
    line-height: 1.35;
}

.ss-product-title:hover,
.ss-product-title:focus,
.ss-product-title:hover strong,
.ss-product-title:focus strong {
    color: #007aff !important;
    text-decoration: none !important;
    outline: none;
}

.ss-product-price {
    margin: 0;
    color: #343844;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.08;
}

.ss-product-price del,
.ss-product-price .original-price {
    color: #8f959e !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

.ss-product-price .custom-price-container {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.ss-product-price .custom-price-container .original-price {
    order: 1;
    margin: 0 !important;
    line-height: 1.05;
}

.ss-product-price .custom-price-container .original-price,
.ss-product-price .custom-price-container .original-price * {
    color: #8f959e !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: line-through !important;
}

.ss-product-price .custom-price-container .final-price {
    order: 2;
    line-height: 1.05;
}

.ss-product-price .custom-price-container .final-price,
.ss-product-price .custom-price-container .final-price * {
    color: #2d2d35 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}

.ss-product-price > .woocommerce-Price-amount,
.ss-product-price > .woocommerce-Price-amount * {
    color: #2d2d35 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}

.ss-badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-width: 80px;
    height: 16px;
    margin-bottom: 3px;
    padding: 0 6px;
    color: #99601d;
    background: #ffefc7;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.6px;
    text-transform: none;
}

.ss-trash,
.ss-icon-button {
    --btn-height: 28px;
    --btn-padding: 0;
    --btn-transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #000;
    background: #fff;
    border: 1px solid var(--ss-border);
    border-radius: 50%;
    cursor: pointer;
}

.ss-trash {
    --btn-height: 24px;
    --btn-padding: 5px;
    position: absolute !important;
    top: 11px !important;
    right: 11px !important;
    width: 24px;
    height: 24px;
    min-height: 24px;
    padding: 5px;
    color: #000;
    border-color: #dedede;
    font-size: 0;
    line-height: 1;
}

.ss-app .ss-product-card .ss-product-delete {
    --btn-color: #000;
    --btn-color-hover: #000;
    --btn-bgcolor: #fff;
    --btn-bgcolor-hover: #fff;
    --btn-brd-color: #dedede;
    --btn-brd-color-hover: #dedede;
    --btn-height: 24px;
    --btn-padding: 5px;
    --btn-transform: none;
    position: absolute !important;
    top: 11px !important;
    right: 11px !important;
    z-index: 2;
    display: inline-flex !important;
    width: 24px !important;
    min-width: 24px !important;
    height: 24px !important;
    min-height: 24px !important;
    margin: 0 !important;
    padding: 5px !important;
    color: #000 !important;
    background: #fff !important;
    border: 1px solid #dedede !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    font-size: 0 !important;
    line-height: 1 !important;
    transform: none !important;
}

.ss-trash:hover,
.ss-trash:focus {
    color: #000;
    background: #fff;
    border-color: #dedede;
    box-shadow: none;
}

.ss-app .ss-product-card .ss-product-delete:hover,
.ss-app .ss-product-card .ss-product-delete:focus {
    color: #000 !important;
    background: #fff !important;
    border-color: #dedede !important;
    box-shadow: none !important;
}

.ss-trash svg {
    width: 14px;
    height: 14px;
}

.ss-trash svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ss-product-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.ss-product-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin-top: 8px;
}

.ss-qty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ss-qty button {
    --btn-height: 34px;
    --btn-padding: 0;
    --btn-transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-height: 34px;
    color: #9aa1af;
    background: #fff;
    border: 1px solid var(--ss-border);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

.ss-qty span {
    min-width: 18px;
    text-align: center;
    font-weight: 800;
}

.ss-outline {
    min-height: 36px;
    padding-inline: 14px;
    font-size: 14px;
}

.ss-product-actions .ss-outline {
    --btn-color: #007aff;
    --btn-color-hover: #007aff;
    --btn-bgcolor: #f3f9ff;
    --btn-bgcolor-hover: #f3f9ff;
    --btn-brd-color: #007aff;
    --btn-brd-color-hover: #007aff;
    --btn-height: 36px;
    --btn-padding: 5px 8px;
    --btn-transform: none;
    width: 146px;
    min-height: 36px;
    padding: 5px 8px;
    color: #007aff !important;
    background: #f3f9ff !important;
    border: 1px solid #007aff !important;
    border-radius: 8px !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.86;
    letter-spacing: 0.28px;
    text-transform: none !important;
}

.ss-subject-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 138px;
    min-height: 27px;
    padding: 2px 3px;
    color: #b38812;
    background: #fefcf7;
    border: 1px solid #fbe9a1;
    border-radius: 22px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.28px;
    text-align: center;
}

.ss-product-actions .ss-outline:hover,
.ss-product-actions .ss-outline:focus {
    color: #007aff !important;
    background: #f3f9ff !important;
    border-color: #007aff !important;
    box-shadow: none;
}

.ss-unavailable {
    color: var(--ss-danger);
    font-size: 12px;
}

.ss-extra {
    margin: 44px 0;
}

.ss-extra h3 {
    font-size: 24px;
    line-height: 1.12;
}

.ss-extra .ss-extra-action {
    width: 100%;
}

.ss-sticky-summary {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: grid;
    gap: 14px;
    padding: 16px 18px 20px;
    background: #f6f7fb;
    box-shadow: 0 -8px 22px rgba(34, 37, 48, 0.08);
}

.ss-sticky-summary > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ss-text);
    font-weight: 800;
}

.ss-sticky-summary strong {
    color: var(--ss-text);
    font-size: 18px;
    font-weight: 900;
}

.ss-checkout {
    --btn-bgcolor: var(--ss-purple);
    --btn-bgcolor-hover: var(--ss-purple);
    --btn-brd-color: var(--ss-purple);
    --btn-brd-color-hover: var(--ss-purple);
    min-height: 66px;
    flex-direction: column;
    background: var(--ss-purple) !important;
    border-color: var(--ss-purple) !important;
    box-shadow: 0 5px 10px rgba(101, 71, 232, 0.28);
}

.ss-checkout:hover,
.ss-checkout:focus {
    background: var(--ss-purple) !important;
    border-color: var(--ss-purple) !important;
    box-shadow: 0 5px 10px rgba(101, 71, 232, 0.28);
}

.ss-checkout small {
    margin-top: 3px;
    font-size: 13px;
    font-weight: 500;
}

body.ss-modal-open {
    overflow: hidden;
}

.ss-modal[hidden] {
    display: none;
}

.ss-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
}

.ss-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(29, 32, 44, 0.48);
}

.ss-modal-panel {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    max-height: 86vh;
    overflow: auto;
    overflow-x: hidden;
    padding: 22px 18px 28px;
    background: #fff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -18px 44px rgba(34, 37, 48, 0.18);
}

.ss-modal.is-confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.ss-modal.is-confirm .ss-modal-panel {
    position: relative;
    inset: auto;
    width: min(430px, 100%);
    max-height: none;
    padding: 24px 20px 20px;
    overflow: visible;
    border-radius: 14px;
    box-shadow: 0 22px 60px rgba(34, 37, 48, 0.22);
}

.ss-modal.is-confirm .ss-modal-panel h3 {
    font-size: 21px;
}

.ss-modal.is-compact .ss-modal-panel {
    max-height: none;
}

.ss-modal-close {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    font-size: 20px;
}

.ss-app .ss-modal-panel .ss-modal-close {
    --btn-color: #8f959e;
    --btn-color-hover: #8f959e;
    --btn-bgcolor: #fff;
    --btn-bgcolor-hover: #fff;
    --btn-brd-color: #dedede;
    --btn-brd-color-hover: #dedede;
    --btn-height: 32px;
    --btn-padding: 0;
    --btn-transform: none;
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    left: auto !important;
    z-index: 2;
    display: inline-flex !important;
    width: 32px !important;
    min-width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #8f959e !important;
    background: #fff !important;
    border: 1px solid #dedede !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    text-transform: none !important;
    transform: none !important;
}

.ss-app .ss-modal-panel .ss-modal-close:hover,
.ss-app .ss-modal-panel .ss-modal-close:focus {
    color: #8f959e !important;
    background: #fff !important;
    border-color: #dedede !important;
    box-shadow: none !important;
}

.ss-modal-panel h3 {
    margin: 0;
    padding-right: 46px;
    font-size: 22px;
    line-height: 1.18;
}

.ss-modal-controls {
    display: grid;
    gap: 10px;
    margin: 18px 0;
    min-width: 0;
}

.ss-modal-controls .ss-field {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    overflow: hidden;
}

.ss-modal-controls input,
.ss-modal-controls select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.ss-app .ss-modal-controls .ss-modal-search-input,
.ss-app .ss-modal-controls .ss-modal-select {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

.ss-app .ss-modal-controls .ss-modal-search-input {
    appearance: none;
}

.ss-update-pupil-form {
    min-width: 0;
}

.ss-submission-form {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.ss-submission-form .ss-field {
    margin: 0;
}

.ss-submission-form .ss-field span {
    display: block;
    margin: 0 0 8px;
    color: var(--ss-text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.ss-submission-form textarea {
    width: 100%;
    min-height: 104px;
    resize: vertical;
}

.ss-submission-form input[type="file"] {
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1px dashed #cfd6e6;
    border-radius: 10px;
}

.ss-submission-file small {
    display: block;
    margin-top: 7px;
    color: var(--ss-muted);
    font-size: 13px;
    line-height: 1.35;
}

.ss-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.ss-modal-controls .ss-update-pupil-form > .ss-field {
    margin: 0 0 14px;
}

.ss-modal-controls .ss-update-pupil-form > .ss-field:last-of-type {
    margin-bottom: 20px;
}

.ss-modal-controls .ss-update-pupil-form .ss-school-field {
    overflow: visible;
}

.ss-update-pupil-form .ss-field span,
.ss-update-pupil-form .ss-segmented legend {
    display: block;
    margin: 0 0 10px;
    padding: 0;
    color: var(--ss-text);
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
}

.ss-app .ss-update-pupil-form fieldset.ss-segmented legend {
    float: none;
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
}

.ss-update-pupil-form .ss-segmented {
    margin: 4px 0 14px;
}

.ss-modal-results {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.ss-modal-message {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0;
    padding: 12px 14px;
    background: var(--ss-soft);
    border: 1px solid var(--ss-border);
    border-radius: 10px;
}

.ss-modal-item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    grid-template-areas:
        "image body"
        "image action";
    gap: 10px 12px;
    align-items: start;
    min-width: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--ss-border);
    border-radius: 10px;
}

.ss-modal-item .ss-product-image {
    grid-area: image;
    width: 74px;
    height: 74px;
}

.ss-modal-item-body {
    grid-area: body;
    min-width: 0;
}

.ss-modal-item strong,
.ss-modal-item-meta {
    display: block;
}

.ss-modal-item strong {
    color: #30323a;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}

.ss-modal-item-meta {
    margin-top: 4px;
    color: var(--ss-muted);
    font-size: 12px;
    line-height: 1.25;
}

.ss-modal-item .ss-product-price {
    margin-top: 8px;
}

.ss-modal-item .ss-outline {
    --btn-color: #fff;
    --btn-color-hover: #fff;
    --btn-bgcolor: var(--ss-turquoise);
    --btn-bgcolor-hover: var(--ss-turquoise);
    --btn-brd-color: var(--ss-turquoise);
    --btn-brd-color-hover: var(--ss-turquoise);
    --btn-height: 36px;
    --btn-padding: 6px 14px;
    --btn-transform: none;
    grid-area: action;
    justify-self: start;
    min-width: 112px;
    min-height: 36px;
    padding: 6px 14px;
    color: #fff !important;
    background: var(--ss-turquoise) !important;
    border: 1px solid var(--ss-turquoise) !important;
    border-radius: 8px !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: none !important;
    box-shadow: none;
}

.ss-modal-item .ss-outline:hover,
.ss-modal-item .ss-outline:focus {
    color: #fff !important;
    background: var(--ss-turquoise) !important;
    border-color: var(--ss-turquoise) !important;
    box-shadow: none;
}

.ss-modal-item button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.ss-confirm {
    display: grid;
    gap: 18px;
}

.ss-confirm p {
    margin: 0;
    color: var(--ss-text);
    font-size: 16px;
    line-height: 1.45;
}

.ss-confirm-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.ss-confirm-cancel {
    --btn-color: #d5424d;
    --btn-color-hover: #d5424d;
    --btn-bgcolor: #fff;
    --btn-bgcolor-hover: #fff5f6;
    --btn-brd-color: #d5424d;
    --btn-brd-color-hover: #d5424d;
    --btn-height: 36px;
    --btn-padding: 8px 14px;
    --btn-transform: none;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 36px !important;
    padding: 8px 14px !important;
    color: #d5424d !important;
    background: #fff !important;
    border: 1px solid #d5424d !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-transform: none !important;
    cursor: pointer;
}

.ss-confirm-cancel:hover,
.ss-confirm-cancel:focus {
    color: #d5424d !important;
    background: #fff5f6 !important;
    border-color: #d5424d !important;
    box-shadow: none !important;
    transform: translateY(-1px);
}

.ss-app :is(.ss-primary, .ss-checkout, .ss-pupil-update, .ss-modal-item .ss-outline):hover,
.ss-app :is(.ss-primary, .ss-checkout, .ss-pupil-update, .ss-modal-item .ss-outline):focus {
    filter: brightness(0.94);
    transform: translateY(-1px);
}

.ss-app :is(.ss-section-action, .ss-extra-action, .ss-product-actions .ss-outline):hover,
.ss-app :is(.ss-section-action, .ss-extra-action, .ss-product-actions .ss-outline):focus {
    color: #007aff !important;
    background: #f3f9ff !important;
    border-color: #007aff !important;
    box-shadow: none !important;
    transform: translateY(-1px);
}

.ss-app .ss-bulk-remove:hover,
.ss-app .ss-bulk-remove:focus {
    color: #000 !important;
    background: #fff !important;
    border-color: #cfcfcf !important;
    box-shadow: none !important;
    transform: translateY(-1px);
}

.ss-app :is(.ss-trash, .ss-icon-button):hover,
.ss-app :is(.ss-trash, .ss-icon-button):focus {
    color: #000 !important;
    background: #fff !important;
    border-color: #cfd3dc !important;
    box-shadow: none !important;
}

.ss-segmented span:hover {
    border-color: rgba(101, 71, 232, 0.45);
    box-shadow: 0 0 0 3px rgba(101, 71, 232, 0.08);
}

@media (max-width: 520px) {
    .ss-section-head,
    .ss-pupil-header {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
    }

    .ss-pupil-header > div:first-child,
    .ss-pupil-actions {
        width: 100%;
        flex-basis: auto;
    }

    .ss-section-actions,
    .ss-pupil-actions,
    .ss-section-action,
    .ss-pupil-update,
    .ss-app .ss-bulk-remove,
    .ss-confirm-actions > button {
        width: 100%;
    }
}

@media (min-width: 760px) {
    .ss-shell {
        width: min(100%, 980px);
        padding-inline: 24px;
    }

    .ss-select .ss-shell,
    .ss-wizard .ss-shell {
        width: min(100%, 900px);
    }

    .ss-app h2 {
        font-size: 36px;
    }

    .ss-name-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ss-section {
        margin: 34px 0 42px;
    }

    .ss-section > h3 {
        font-size: 20px;
    }

    .ss-section-head h3 {
        font-size: 20px;
    }

    .ss-section-action,
    .ss-extra-action {
        --btn-height: 40px;
        min-height: 40px;
        font-size: 15px;
    }

    .ss-app .ss-bulk-remove {
        --btn-height: 40px;
        min-height: 40px !important;
        font-size: 14px !important;
    }

    .ss-product-card {
        grid-template-columns: 104px 1fr;
        gap: 14px;
        min-height: 154px;
        padding: 14px;
    }

    .ss-school-results button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
    }

    .ss-school-result-name {
        flex: 1 1 auto;
        min-width: 0;
    }

    .ss-school-result-address {
        flex: 0 1 48%;
        margin-top: 0;
        text-align: right;
    }

    .ss-product-image {
        width: 104px;
        height: 104px;
    }

    .ss-product-body {
        padding-right: 44px;
    }

    .ss-product-body strong {
        font-size: 16px;
        line-height: 1.28;
    }

    .ss-product-row {
        gap: 24px;
        margin-top: 10px;
    }

    .ss-product-price .custom-price-container .original-price,
    .ss-product-price .custom-price-container .original-price * {
        font-size: 14px !important;
    }

    .ss-product-price .custom-price-container .final-price,
    .ss-product-price .custom-price-container .final-price *,
    .ss-product-price > .woocommerce-Price-amount,
    .ss-product-price > .woocommerce-Price-amount * {
        font-size: 16px !important;
    }

    .ss-qty {
        gap: 10px;
    }

    .ss-qty button {
        --btn-height: 38px;
        width: 38px;
        height: 38px;
        min-height: 38px;
        font-size: 20px;
    }

    .ss-qty span {
        min-width: 22px;
        font-size: 16px;
    }

    .ss-app .ss-product-card .ss-product-delete {
        --btn-height: 28px;
        top: 14px !important;
        right: 14px !important;
        width: 28px !important;
        min-width: 28px !important;
        height: 28px !important;
        min-height: 28px !important;
        padding: 6px !important;
    }

    .ss-trash svg {
        width: 15px;
        height: 15px;
    }

    .ss-product-actions {
        margin-top: 10px;
    }

    .ss-product-actions .ss-outline {
        --btn-height: 40px;
        width: 162px;
        min-height: 40px;
        font-size: 15px;
    }

    .ss-sticky-summary {
        right: 50%;
        left: 50%;
        width: min(900px, calc(100% - 32px));
        transform: translateX(-50%);
        border-radius: 16px 16px 0 0;
    }

    .ss-modal-panel {
        top: max(124px, calc(var(--wp-admin--admin-bar--height, 0px) + 104px));
        right: auto;
        bottom: 28px;
        left: 50%;
        width: min(820px, calc(100% - 40px));
        max-height: none;
        padding: 26px 24px 28px;
        border-radius: 14px;
        transform: translateX(-50%);
        box-shadow: 0 22px 60px rgba(34, 37, 48, 0.22);
    }

    .ss-modal.is-confirm .ss-modal-panel {
        top: auto;
        bottom: auto;
        left: auto;
        width: min(460px, calc(100% - 40px));
        transform: none;
    }

    .ss-modal.is-compact .ss-modal-panel {
        top: 50%;
        bottom: auto;
        width: min(480px, calc(100% - 40px));
        max-height: calc(100vh - 48px);
        transform: translate(-50%, -50%);
    }

    .ss-modal-panel h3 {
        font-size: 24px;
    }

    .ss-modal-controls {
        margin: 20px 0;
    }

    .ss-modal-item {
        grid-template-columns: 96px minmax(0, 1fr) 132px;
        grid-template-areas: "image body action";
        align-items: center;
        gap: 14px;
        padding: 12px;
    }

    .ss-modal-item .ss-product-image {
        width: 96px;
        height: 96px;
    }

    .ss-modal-item strong {
        font-size: 15px;
        line-height: 1.28;
    }

    .ss-modal-item-meta {
        font-size: 13px;
    }

    .ss-modal-item .ss-outline {
        justify-self: end;
        width: 124px;
        min-height: 40px;
        font-size: 15px;
    }
}

@media (max-width: 760px) {
    .ss-entry-select .ss-shell {
        padding: 16px 14px 18px;
    }

    .ss-entry-select .ss-home-promo {
        font-size: 12px;
    }

    .ss-entry-select h2 {
        font-size: 20px;
    }

    .ss-entry-select .ss-home-benefits {
        font-size: 13px;
    }

    .ss-entry-select .ss-home-benefit-icon {
        width: 15px;
        height: 15px;
        flex-basis: 15px;
        font-size: 11px;
    }

    .ss-entry-select .ss-field span,
    .ss-entry-select .ss-segmented legend {
        font-size: 13px;
    }

    .ss-entry-select .ss-field input,
    .ss-entry-select .ss-field select,
    .ss-entry-select .ss-selection-form select {
        min-height: 38px;
        padding: 0 12px;
        font-size: 13px;
    }

    .ss-entry-select .ss-segmented span {
        min-height: 34px;
        font-size: 12px;
    }

    .ss-entry-select .ss-primary {
        min-height: 48px;
        font-size: 15px;
    }

    .ss-entry-select .ss-primary small {
        font-size: 11px;
    }

    .ss-entry-select .ss-home-trust div {
        font-size: 18px;
    }

    .ss-entry-select .ss-home-trust p {
        font-size: 12px;
    }

    .ss-app.ss-home-select .ss-shell {
        padding: 22px 18px 24px;
        border-radius: 12px;
    }

    .ss-home-promo {
        gap: 10px;
        margin-bottom: 14px;
        padding: 8px 12px;
        font-size: 13px;
    }

    .ss-app.ss-home-select h2 {
        font-size: 24px;
    }

    .ss-home-benefits {
        font-size: 16px;
    }

    .ss-home-benefits li {
        gap: 10px;
    }

    .ss-home-select .ss-field span,
    .ss-app.ss-home-select .ss-segmented legend {
        font-size: 16px;
    }

    .ss-home-select .ss-field input,
    .ss-home-select .ss-field select,
    .ss-home-select .ss-selection-form select {
        min-height: 50px;
        font-size: 16px;
    }

    .ss-home-select .ss-segmented span {
        min-height: 42px;
        font-size: 14px;
    }

    .ss-home-select .ss-primary {
        min-height: 58px;
        font-size: 19px;
    }

    .ss-app.ss-home-select-compact .ss-shell {
        width: min(100%, 560px);
        padding: 22px 18px 24px;
    }

    .ss-home-select-compact .ss-home-promo {
        margin-bottom: 18px;
    }

    .ss-home-select-compact .ss-field {
        margin-bottom: 14px;
    }

    .ss-home-select-compact .ss-field span,
    .ss-app.ss-home-select-compact .ss-segmented legend {
        margin-bottom: 8px;
        font-size: 16px;
    }

    .ss-home-select-compact .ss-field input,
    .ss-home-select-compact .ss-field select,
    .ss-home-select-compact .ss-selection-form select {
        min-height: 50px;
        padding: 0 14px;
        font-size: 16px;
    }

    .ss-home-select-compact .ss-name-row {
        gap: 8px;
        margin-bottom: 14px;
    }

    .ss-home-select-compact .ss-segmented {
        gap: 8px;
        margin-bottom: 16px;
    }

    .ss-home-select-compact .ss-segmented span {
        min-height: 42px;
        font-size: 14px;
    }

    .ss-home-select-compact .ss-primary {
        min-height: 58px;
        font-size: 19px;
    }

    .ss-home-select-compact .ss-primary small {
        margin-top: 3px;
        font-size: 13px;
    }
}

@media (max-width: 520px) {
    .ss-entry-select .ss-shell {
        padding: 14px 12px 16px;
    }

    .ss-entry-select .ss-progress {
        margin-bottom: 14px;
    }

    .ss-entry-select .ss-home-promo {
        padding: 7px 10px;
        font-size: 11px;
    }

    .ss-entry-select h2 {
        font-size: 19px;
    }

    .ss-entry-select .ss-home-benefits {
        gap: 6px;
        font-size: 12px;
    }

    .ss-entry-select .ss-home-benefit-icon {
        width: 14px;
        height: 14px;
        flex-basis: 14px;
        font-size: 10px;
    }

    .ss-entry-select .ss-field {
        margin-bottom: 9px;
    }

    .ss-entry-select .ss-field span,
    .ss-entry-select .ss-segmented legend {
        font-size: 13px;
    }

    .ss-entry-select .ss-field input,
    .ss-entry-select .ss-field select,
    .ss-entry-select .ss-selection-form select {
        min-height: 38px;
        border-radius: 10px;
        font-size: 13px;
    }

    .ss-entry-select .ss-name-row,
    .ss-entry-select .ss-segmented {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ss-entry-select .ss-segmented {
        gap: 8px;
        margin-bottom: 20px;
    }

    .ss-entry-select .ss-segmented span {
        min-height: 34px;
        font-size: 12px;
    }

    .ss-entry-select .ss-primary {
        min-height: 48px;
        font-size: 15px;
    }

    .ss-entry-select .ss-primary small {
        font-size: 11px;
    }

    .ss-app.ss-home-select .ss-shell {
        padding: 22px 16px 24px;
    }

    .ss-home-promo {
        padding: 8px 12px;
        font-size: 13px;
    }

    .ss-home-promo span {
        width: 14px;
        height: 14px;
        flex-basis: 14px;
    }

    .ss-app.ss-home-select h2 {
        font-size: 23px;
    }

    .ss-home-benefits {
        gap: 8px;
        font-size: 15px;
    }

    .ss-home-benefit-icon {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
        font-size: 17px;
    }

    .ss-home-select .ss-field {
        margin-bottom: 14px;
    }

    .ss-home-select .ss-name-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 14px;
    }

    .ss-home-select .ss-field span,
    .ss-app.ss-home-select .ss-segmented legend {
        font-size: 16px;
    }

    .ss-home-select .ss-field input,
    .ss-home-select .ss-field select,
    .ss-home-select .ss-selection-form select {
        min-height: 46px;
        padding: 0 18px;
        border-radius: 12px;
        font-size: 15px;
    }

    .ss-home-select .ss-segmented {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .ss-home-select .ss-segmented span {
        min-height: 40px;
        padding: 0 8px;
        font-size: 14px;
    }

    .ss-home-select .ss-primary {
        min-height: 56px;
        font-size: 18px;
    }

    .ss-home-select .ss-primary small {
        font-size: 13px;
    }

    .ss-home-trust {
        margin-top: 28px;
    }

    .ss-home-trust div {
        font-size: 30px;
    }

    .ss-home-trust p {
        font-size: 18px;
    }

    .ss-app.ss-home-select-compact .ss-shell {
        padding: 20px 14px 22px;
    }

    .ss-home-select-compact .ss-home-promo {
        margin-bottom: 16px;
        font-size: 13px;
    }

    .ss-home-select-compact .ss-field span,
    .ss-app.ss-home-select-compact .ss-segmented legend {
        font-size: 16px;
    }

    .ss-home-select-compact .ss-name-row,
    .ss-home-select-compact .ss-segmented {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ss-home-select-compact .ss-field input,
    .ss-home-select-compact .ss-field select,
    .ss-home-select-compact .ss-selection-form select {
        min-height: 50px;
        font-size: 16px;
    }

    .ss-home-select-compact .ss-primary {
        min-height: 58px;
        font-size: 19px;
    }

    .ss-home-select-compact .ss-primary small {
        font-size: 13px;
    }
}
