:root {
    --nx-purple: #6516e8;
    --nx-purple-dark: #5310c9;
    --nx-purple-soft: #f3edff;
    --nx-purple-faint: #faf7ff;

    --nx-text: #18152c;
    --nx-muted: #74778d;
    --nx-placeholder: #9a9db0;

    --nx-border: #e0e2ea;
    --nx-border-strong: #d3d5df;

    --nx-danger: #bd2631;
    --nx-success: #087a58;

    --nx-background: #fbfbfe;
    --nx-white: #ffffff;

    --nx-radius: 12px;
    --nx-shadow:
        0 12px 36px rgba(32, 22, 63, .065);
}

* {
    box-sizing: border-box;
}

html {
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--nx-text);
    background: var(--nx-background);
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(
            circle at 88% 0,
            rgba(101, 22, 232, .035),
            transparent 28%
        ),
        var(--nx-background);
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

svg {
    display: block;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ================================================================ */
/* TOP BAR */
/* ================================================================ */

.nx-topbar {
    min-height: 78px;
    padding: 0 44px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--nx-border);
}

.nx-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: inherit;
    text-decoration: none;
}

.nx-brand-mark {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    color: var(--nx-purple);
}

.nx-brand-mark svg {
    width: 38px;
    height: 38px;
}

.nx-brand-copy {
    display: grid;
}

.nx-brand-copy strong {
    font-size: 19px;
    line-height: 1.1;
}

.nx-brand-copy small {
    margin-top: 4px;

    color: var(--nx-muted);

    font-size: 12px;
}

.nx-top-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nx-help-link,
.nx-sign-in-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 14px;
    font-weight: 750;

    text-decoration: none;
}

.nx-help-link {
    color: var(--nx-text);
}

.nx-sign-in-link {
    min-height: 43px;
    padding: 0 16px;

    color: var(--nx-purple);

    background: #fff;
    border: 1px solid var(--nx-border);
    border-radius: 8px;
}

.nx-help-link svg,
.nx-sign-in-link svg {
    width: 21px;
    height: 21px;
}


/* ================================================================ */
/* PAGE */
/* ================================================================ */

.nx-registration-page {
    width: min(1540px, calc(100% - 76px));
    margin: 32px auto 38px;
}

.nx-registration-heading {
    display: grid;
    grid-template-columns:
        minmax(300px, .72fr)
        minmax(620px, 1.55fr);

    gap: 60px;

    align-items: start;

    margin-bottom: 30px;
}

.nx-registration-heading h1 {
    margin: 0;

    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -.65px;
}

.nx-registration-heading p {
    margin: 10px 0 0;

    color: var(--nx-muted);

    font-size: 16px;
}


/* ================================================================ */
/* PROGRESS */
/* ================================================================ */

.nx-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.nx-progress-step {
    position: relative;

    display: grid;
    justify-items: center;

    gap: 7px;

    color: #7f8193;

    font-size: 13px;
}

.nx-progress-step:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 20px;
    left: calc(50% + 26px);

    width: calc(100% - 52px);
    height: 1px;

    background: #dadce5;
}

.nx-progress-circle {
    position: relative;
    z-index: 2;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 2px solid #dcdee7;
    border-radius: 50%;

    background: #fff;

    font-size: 17px;
    font-weight: 750;
}

.nx-progress-step.active,
.nx-progress-step.complete {
    color: var(--nx-purple);
}

.nx-progress-step.active .nx-progress-circle {
    color: #fff;

    background: var(--nx-purple);
    border-color: var(--nx-purple);
}

.nx-progress-step.complete .nx-progress-circle {
    color: var(--nx-purple);

    background: var(--nx-purple-soft);
    border-color: #cdb3fa;
}

.nx-progress-step.complete::after {
    background: #cab0f8;
}


/* ================================================================ */
/* LAYOUT */
/* ================================================================ */

.nx-registration-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 2.15fr)
        minmax(340px, .93fr);

    gap: 28px;

    align-items: stretch;
}

.nx-main-card,
.nx-aside-card {
    background: var(--nx-white);

    border: 1px solid var(--nx-border);
    border-radius: 13px;
}

.nx-main-card {
    min-height: 598px;

    display: flex;
    flex-direction: column;

    overflow: visible;

    box-shadow: var(--nx-shadow);
}

.nx-step-host {
    flex: 1;
}


/* ================================================================ */
/* STEP */
/* ================================================================ */

.nx-step-panel {
    padding: 26px 27px 0;
}

.nx-step-title {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nx-step-title-icon {
    width: 53px;
    height: 53px;

    flex: 0 0 53px;

    display: grid;
    place-items: center;

    color: var(--nx-purple);

    background:
        linear-gradient(
            145deg,
            #f8f4ff,
            #eee4ff
        );

    border-radius: 50%;
}

.nx-step-title-icon svg {
    width: 28px;
    height: 28px;
}

.nx-step-title h2 {
    margin: 0;

    font-size: 18px;
}

.nx-step-title p {
    margin: 5px 0 0;

    color: var(--nx-muted);

    font-size: 14px;
}

.nx-separator {
    height: 1px;

    margin: 23px 0 24px;

    background: var(--nx-border);
}


/* ================================================================ */
/* PERSONAL */
/* ================================================================ */

.nx-personal-layout {
    display: grid;
    grid-template-columns:
        205px
        minmax(0, 1fr);

    gap: 30px;
}

.nx-photo-box {
    min-height: 270px;
    padding: 24px 16px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 2px dashed #cdb6fa;
    border-radius: 11px;

    text-align: center;
}

.nx-photo-avatar {
    width: 94px;
    height: 94px;

    display: grid;
    place-items: center;

    margin-bottom: 17px;

    color: var(--nx-purple);

    background: var(--nx-purple-soft);

    border-radius: 50%;

    overflow: hidden;
}

.nx-photo-avatar svg {
    width: 47px;
    height: 47px;
}

.nx-photo-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nx-photo-box strong {
    font-size: 14px;
}

.nx-photo-box small {
    margin-top: 6px;

    color: var(--nx-muted);

    font-size: 11px;
}


/* ================================================================ */
/* FORMS */
/* ================================================================ */

.nx-fields {
    display: grid;
    gap: 20px 27px;
}

.nx-fields.two {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}

.nx-field {
    min-width: 0;
}

.nx-field.full {
    grid-column: 1 / -1;
}

.nx-field-label {
    display: block;

    margin-bottom: 9px;

    font-size: 14px;
    font-weight: 750;
}

.nx-required {
    color: #d02a32;
}

.nx-input {
    width: 100%;
    height: 48px;

    padding: 0 14px;

    color: var(--nx-text);
    background: #fff;

    border: 1px solid #dcdfe8;
    border-radius: 8px;

    outline: none;

    font-size: 14px;
}

.nx-input::placeholder {
    color: var(--nx-placeholder);
}

.nx-input:focus {
    border-color: #9d6bf0;

    box-shadow:
        0 0 0 3px
        rgba(101, 22, 232, .075);
}


/* ================================================================ */
/* PASSWORD */
/* ================================================================ */

.nx-password-wrap {
    position: relative;
}

.nx-password-wrap .nx-input {
    padding-right: 50px;
}

.nx-password-toggle {
    position: absolute;

    top: 2px;
    right: 2px;

    width: 45px;
    height: 44px;

    display: grid;
    place-items: center;

    padding: 0;

    color: #777a8c;
    background: transparent;

    border: 0;
    border-radius: 7px;
}

.nx-password-toggle:hover {
    color: var(--nx-purple);

    background: var(--nx-purple-faint);
}

.nx-password-toggle svg {
    width: 20px;
    height: 20px;
}


/* ================================================================ */
/* GOOGLE */
/* ================================================================ */
















/* ================================================================ */
/* AUTH NOTICE */
/* ================================================================ */

.nx-auth-notice {
    margin-bottom: 18px;
    padding: 12px 14px;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #116247;

    background: #eff9f5;

    border: 1px solid #c1e6d8;
    border-radius: 8px;

    font-size: 13px;
    font-weight: 650;
}

.nx-auth-notice svg {
    width: 19px;
    height: 19px;
}


/* ================================================================ */
/* CUSTOM PICKER */
/* ================================================================ */

.nx-picker {
    position: relative;
}

.nx-picker-button {
    width: 100%;
    min-height: 48px;

    padding: 0 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    color: var(--nx-text);
    background: #fff;

    border: 1px solid #dcdfe8;
    border-radius: 8px;

    text-align: left;

    font-size: 14px;
}

.nx-picker-button.placeholder {
    color: var(--nx-placeholder);
}

.nx-picker-button:focus {
    outline: none;

    border-color: #9d6bf0;

    box-shadow:
        0 0 0 3px
        rgba(101, 22, 232, .075);
}

.nx-picker-button svg {
    width: 18px;
    height: 18px;

    flex: 0 0 18px;
}

.nx-picker-menu {
    position: absolute;

    z-index: 500;

    top: calc(100% + 7px);
    left: 0;
    right: 0;

    overflow: hidden;

    background: #fff;

    border: 1px solid #d6d8e2;
    border-radius: 10px;

    box-shadow:
        0 17px 44px
        rgba(28, 19, 54, .17);
}

.nx-picker-menu[hidden] {
    display: none;
}

.nx-picker-search-wrap {
    padding: 10px;

    background: #fff;

    border-bottom: 1px solid var(--nx-border);
}

.nx-picker-search {
    width: 100%;
    height: 44px;

    padding: 0 13px;

    color: var(--nx-text);

    border: 1px solid #d9dbe4;
    border-radius: 8px;

    outline: none;

    font-size: 14px;
}

.nx-picker-search:focus {
    border-color: #9d6bf0;
}

.nx-picker-options {
    max-height: 285px;

    overflow-y: auto;
    overscroll-behavior: contain;
}

.nx-picker-option {
    width: 100%;
    min-height: 48px;

    padding: 9px 13px;

    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--nx-text);
    background: #fff;

    border: 0;

    text-align: left;

    font-size: 14px;
}

.nx-picker-option:hover,
.nx-picker-option.selected {
    background: #f6f1ff;
}

.nx-picker-option-name {
    flex: 1;
}

.nx-country-flag {
    min-width: 27px;

    font-size: 19px;
}

.nx-picker-check {
    width: 18px;
    height: 18px;

    color: var(--nx-purple);
}

.nx-picker-empty {
    padding: 18px;

    color: var(--nx-muted);

    text-align: center;

    font-size: 13px;
}


/* ================================================================ */
/* SERVICES */
/* ================================================================ */

.nx-service-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.nx-service-label-row small {
    color: var(--nx-muted);

    font-size: 11px;
}

.nx-service-chips {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 10px;
}

.nx-service-chip {
    min-height: 34px;

    padding: 6px 8px 6px 12px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--nx-purple-dark);

    background: var(--nx-purple-soft);

    border: 1px solid #d4befa;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
}

.nx-service-chip button {
    width: 21px;
    height: 21px;

    display: grid;
    place-items: center;

    padding: 0;

    color: var(--nx-purple);

    background: #fff;

    border: 0;
    border-radius: 50%;
}

.nx-service-chip svg {
    width: 12px;
    height: 12px;
}


/* ================================================================ */
/* CARD FOOTER */
/* ================================================================ */

.nx-card-footer {
    min-height: 83px;

    margin-top: 28px;
    padding: 18px 27px;

    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 20px;

    border-top: 1px solid var(--nx-border);
}

.nx-button {
    min-height: 46px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 750;
}

.nx-button svg {
    width: 18px;
    height: 18px;
}

.nx-button-secondary {
    color: #777a8b;
    background: #fff;

    border: 1px solid var(--nx-border);
}

.nx-button-secondary:disabled {
    opacity: .48;
    cursor: default;
}

.nx-button-primary {
    min-width: 145px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #7119ee,
            #5c0ed4
        );

    border: 0;

    box-shadow:
        0 6px 16px
        rgba(101, 22, 232, .18);
}

.nx-button-primary:disabled {
    opacity: .62;
    cursor: wait;
}

.nx-registration-message {
    min-width: 0;

    text-align: center;

    font-size: 13px;
    font-weight: 650;
}

.nx-registration-message.error {
    color: var(--nx-danger);
}

.nx-registration-message.success {
    color: var(--nx-success);
}


/* ================================================================ */
/* ASIDE */
/* ================================================================ */

.nx-registration-aside {
    display: grid;
    align-content: start;

    gap: 19px;
}

.nx-aside-card {
    min-height: 270px;

    padding: 22px;
}

.nx-aside-heading {
    display: grid;
    grid-template-columns:
        44px
        minmax(0, 1fr)
        20px;

    align-items: start;

    gap: 13px;
}

.nx-aside-number {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    color: #686b7c;

    background: #f0f1f6;

    border-radius: 50%;

    font-size: 18px;
}

.nx-aside-heading h3 {
    margin: 1px 0 0;

    font-size: 17px;
}

.nx-aside-heading p {
    margin: 4px 0 0;

    color: var(--nx-muted);

    font-size: 12px;
}

.nx-aside-heading > svg {
    width: 17px;
    height: 17px;

    margin-top: 5px;
}

.nx-aside-list {
    margin: 22px 0 0;
    padding: 0;

    display: grid;
    gap: 8px;

    list-style: none;
}

.nx-aside-list li {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #595c70;

    font-size: 12px;
}

.nx-aside-list svg {
    width: 16px;
    height: 16px;

    color: #75798e;
}

.nx-aside-art {
    display: flex;
    justify-content: flex-end;

    margin-top: 11px;

    color: #ded2f8;

    opacity: .72;
}

.nx-aside-art svg {
    width: 130px;
    height: 100px;

    stroke-width: 1.5;
}


/* ================================================================ */
/* PAGE FOOTER */
/* ================================================================ */

.nx-page-footer {
    min-height: 86px;

    padding: 18px 48px;

    display: grid;
    grid-template-columns:
        1fr
        1fr
        1fr;

    align-items: center;

    gap: 25px;

    color: var(--nx-muted);
    background: #fff;

    border-top: 1px solid var(--nx-border);

    font-size: 12px;
}

.nx-page-footer > div {
    display: flex;
    align-items: center;

    gap: 10px;
}

.nx-page-footer > div:nth-child(2) {
    justify-content: center;
}

.nx-page-footer > div:last-child {
    justify-content: flex-end;
}

.nx-page-footer svg {
    width: 20px;
    height: 20px;

    color: var(--nx-purple);
}


/* ================================================================ */
/* RESPONSIVE */
/* ================================================================ */

@media (max-width: 1080px) {

    .nx-registration-page {
        width: min(
            100% - 32px,
            1000px
        );
    }

    .nx-registration-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .nx-registration-layout {
        grid-template-columns: 1fr;
    }

    .nx-registration-aside {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 760px) {

    .nx-topbar {
        min-height: 66px;
        padding: 0 16px;
    }

    .nx-brand-copy small {
        display: none;
    }

    .nx-help-link span {
        display: none;
    }

    .nx-registration-page {
        width: calc(100% - 22px);

        margin-top: 23px;
    }

    .nx-registration-heading h1 {
        font-size: 26px;
    }

    .nx-registration-heading p {
        font-size: 14px;
    }

    .nx-progress-step strong {
        font-size: 10px;
        text-align: center;
    }

    .nx-progress-circle {
        width: 35px;
        height: 35px;

        font-size: 14px;
    }

    .nx-progress-step:not(:last-child)::after {
        top: 17px;
        left: calc(50% + 23px);

        width: calc(100% - 46px);
    }

    .nx-step-panel {
        padding:
            20px
            16px
            0;
    }

    .nx-personal-layout {
        grid-template-columns: 1fr;
    }

    .nx-photo-box {
        min-height: 190px;
    }

    .nx-fields.two {
        grid-template-columns: 1fr;
    }

    .nx-field.full {
        grid-column: auto;
    }

    .nx-card-footer {
        grid-template-columns:
            1fr
            1fr;

        padding: 16px;
    }

    .nx-registration-message {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .nx-button {
        width: 100%;
    }

    .nx-registration-aside {
        grid-template-columns: 1fr;
    }

    .nx-page-footer {
        grid-template-columns: 1fr;

        padding: 22px;
    }

    .nx-page-footer > div:nth-child(2),
    .nx-page-footer > div:last-child {
        justify-content: flex-start;
    }

}


/* ======================================================================
   NEXUS REGISTRATION PROFILE PHOTO
   ====================================================================== */

.nx-photo-box {
    position: relative;
}

.nx-photo-input {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    opacity: 0 !important;

    pointer-events: none !important;
}

.nx-photo-select {
    width: 100%;

    padding: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    color: inherit;
    background: transparent;

    border: 0;

    cursor: pointer;
}

.nx-photo-select:hover .nx-photo-avatar {
    border-color: #8d56ef;

    transform: translateY(-1px);
}

.nx-photo-avatar {
    transition:
        transform .18s ease,
        border-color .18s ease;
}

.nx-photo-avatar img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;
}

.nx-photo-action {
    min-height: 38px;

    margin-top: 15px;
    padding: 0 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--nx-purple);

    background: #fff;

    border: 1px solid #b896f6;
    border-radius: 7px;

    font-size: 12px;
    font-weight: 750;
}

.nx-photo-select:hover .nx-photo-action {
    background: var(--nx-purple-faint);
}

.nx-photo-controls {
    margin-top: 10px;

    display: flex;
    justify-content: center;

    gap: 7px;
}

.nx-photo-controls[hidden] {
    display: none;
}

.nx-photo-mini-button {
    min-height: 31px;

    padding: 0 11px;

    color: var(--nx-purple);

    background: #fff;

    border: 1px solid var(--nx-border);
    border-radius: 6px;

    font-size: 11px;
    font-weight: 700;
}

.nx-photo-mini-button:hover {
    background: var(--nx-purple-faint);
}

.nx-photo-mini-button.danger {
    color: #b4232d;
}



/* ======================================================================
   NEXUS REGISTRATION TOAST SYSTEM V1
   ====================================================================== */

.nx-registration-message-hidden {
    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;
    clip-path: inset(50%) !important;

    white-space: nowrap !important;

    border: 0 !important;
}


.nx-toast-container {
    position: fixed;

    z-index: 999999;

    top: 92px;
    right: 22px;

    width: min(
        390px,
        calc(100vw - 32px)
    );

    display: flex;
    flex-direction: column;

    gap: 11px;

    pointer-events: none;
}


.nx-toast {
    position: relative;

    overflow: hidden;

    color: #171525;
    background:
        rgba(
            255,
            255,
            255,
            .98
        );

    border: 1px solid #e3e4eb;
    border-radius: 11px;

    box-shadow:
        0 18px 46px
        rgba(
            25,
            18,
            47,
            .16
        );

    opacity: 0;

    transform:
        translate3d(
            20px,
            -4px,
            0
        );

    transition:
        opacity .2s ease,
        transform .2s ease;

    pointer-events: auto;
}


.nx-toast-visible {
    opacity: 1;

    transform:
        translate3d(
            0,
            0,
            0
        );
}


.nx-toast-leaving {
    opacity: 0;

    transform:
        translate3d(
            14px,
            0,
            0
        );
}


.nx-toast-main {
    min-height: 77px;

    padding:
        15px
        13px
        14px
        15px;

    display: grid;

    grid-template-columns:
        38px
        minmax(0, 1fr)
        30px;

    align-items: start;

    gap: 11px;
}


.nx-toast-icon {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border-radius: 50%;
}


.nx-toast-icon svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.nx-toast-success .nx-toast-icon {
    color: #087a58;

    background: #e8f8f2;
}


.nx-toast-error .nx-toast-icon {
    color: #c62832;

    background: #fff0f1;
}


.nx-toast-info .nx-toast-icon {
    color: #6516e8;

    background: #f2ecff;
}


.nx-toast-content {
    min-width: 0;

    padding-top: 1px;
}


.nx-toast-title {
    display: block;

    margin: 0 0 3px;

    color: #181526;

    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}


.nx-toast-message {
    color: #696b7d;

    font-size: 12.5px;
    line-height: 1.45;

    overflow-wrap: anywhere;
}


.nx-toast-close {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    padding: 0;

    color: #858797;
    background: transparent;

    border: 0;
    border-radius: 7px;
}


.nx-toast-close:hover {
    color: #272535;

    background: #f4f4f7;
}


.nx-toast-close svg {
    width: 16px;
    height: 16px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}


.nx-toast-progress {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 3px;

    overflow: hidden;

    background: transparent;
}


.nx-toast-progress span {
    width: 100%;
    height: 100%;

    display: block;

    transform: scaleX(1);
    transform-origin: left center;

    transition-property: transform;
    transition-timing-function: linear;
}


.nx-toast-success .nx-toast-progress span {
    background: #13a474;
}


.nx-toast-error .nx-toast-progress span {
    background: #d92d3a;
}


.nx-toast-info .nx-toast-progress span {
    background: #6a1ce8;
}


/* A narrow state bar on the left gives instant visual recognition. */

.nx-toast::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 3px;
    left: 0;

    width: 3px;
}


.nx-toast-success::before {
    background: #13a474;
}


.nx-toast-error::before {
    background: #d92d3a;
}


.nx-toast-info::before {
    background: #6a1ce8;
}


@media (max-width: 680px) {

    .nx-toast-container {
        top: 76px;
        right: 12px;
        left: 12px;

        width: auto;
    }

    .nx-toast-main {
        grid-template-columns:
            35px
            minmax(0, 1fr)
            28px;

        padding:
            13px
            11px
            13px
            13px;
    }

}


/* Registration messages now use the top-right toast system. */

#registrationMessage {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    margin: -1px !important;
    padding: 0 !important;

    overflow: hidden !important;

    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;

    white-space: nowrap !important;

    border: 0 !important;
}



/* ======================================================================
   NEXUS TOAST FAR TOP-RIGHT POSITION
   ====================================================================== */

.nx-toast-container {
    position: fixed !important;

    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    bottom: auto !important;

    z-index: 9999999 !important;

    width: min(
        390px,
        calc(100vw - 24px)
    ) !important;

    pointer-events: none !important;
}


.nx-toast {
    pointer-events: auto !important;
}


/* Mobile: still stay at the upper corner without touching screen edges */

@media (max-width: 680px) {

    .nx-toast-container {
        top: 8px !important;
        right: 8px !important;
        left: 8px !important;

        width: auto !important;
    }

}
