:root {
    --nt-primary: #0071E3;
    --nt-bg: #F5F5F7;
    --nt-card: #ffffff;
    --nt-border: #E6E6E6;
    --nt-text: #1D1D1F;
    --nt-caption: #6E6E73;
    --nt-accent: #2E0891;
    --nt-accent2: #00AF74;
    --nt-danger: #ff5c5c;
    --nt-success: #3ecf8e;
    --nt-warning: #ffb020;
    --nt-focus: rgba(0, 113, 227, .35);
}

.nt-fields-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.nt-field {
    flex: 1 1 100%;
    min-width: 0;
}

[class^="nt-col-"], [class*=" nt-col-"] {
    max-width: 100%;
}

.nt-col-12 {
    flex: 1 1 100%;
}

.nt-col-6 {
    flex: 1 1 calc(50% - 10px);
}

.nt-col-4 {
    flex: 1 1 calc(33.333% - 13.33px);
}

.nt-col-3 {
    flex: 1 1 calc(25% - 15px);
}

.nt-col-2 {
    flex: 1 1 calc(16.666% - 16.67px);
}

.nt-col-1 {
    flex: 1 1 calc(8.333% - 18.33px);
}

.nt-col-5 {
    flex: 1 1 calc(41.666% - 12px);
}

.nt-col-7 {
    flex: 1 1 calc(58.333% - 8px);
}

.nt-col-8 {
    flex: 1 1 calc(66.666% - 6.67px);
}

.nt-col-9 {
    flex: 1 1 calc(75% - 5px);
}

.nt-col-10 {
    flex: 1 1 calc(83.333% - 3.33px);
}

.nt-col-11 {
    flex: 1 1 calc(91.666% - 1.67px);
}

.nt-wizard-root {
    display: block;
    color: var(--nt-text);
    font-size: 16px;
    line-height: 1.5;
}

.nt-wizard-shell {
    max-width: 860px;
    margin: auto;
    background: var(--nt-bg);
    border: 1px solid var(--nt-border);
    border-radius: 20px;
    overflow: hidden;
}

.nt-wizard-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--nt-border);
    background: linear-gradient(135deg, #E0DBF2 0%, #E6E7F0 30%, #DFF0ED 70%, #D9F2EB 100%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nt-wizard-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
}

.nt-wizard-step-title {
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: var(--nt-accent);
}

.nt-wizard-progress {
    height: 10px;
    background: #ffffffd4;
    border-radius: 999px;
    overflow: hidden;
}

.nt-wizard-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--nt-accent), var(--nt-accent2));
    transition: width .25s ease;
}

.nt-wizard-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    min-height: 220px;
}

.nt-wizard-loading {
    text-align: center;
    color: var(--nt-caption);
}

.nt-wizard-error {
    margin-bottom: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 92, 92, .25);
    background: rgba(255, 92, 92, .08);
    border-radius: 12px;
    color: var(--nt-danger);
}

.nt-wizard-success {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    gap: 15px;
}

.nt-wizard-check {
    margin: auto;
}

.nt-group-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--nt-card);
    border-radius: 17px;
    padding: 20px;
}

.nt-group-title {
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid var(--nt-border);
    padding-bottom: 10px;
    margin: 0 !important;
}

.nt-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nt-field-label {
    display: inline-block;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
}

.nt-required {
    color: var(--nt-danger);
}

.nt-field-control,
.nt-field-options input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--nt-border);
    background: #0f1320;
    color: var(--nt-text);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.nt-field-control:focus {
    border-color: var(--nt-accent);
    box-shadow: 0 0 0 3px var(--nt-focus);
}

.nt-field-help {
    font-size: 15px;
    color: var(--nt-accent2);
    font-weight: 500;
}

.nt-field-error {
    font-size: 13px;
    color: var(--nt-danger);
    min-height: 0;
}

.nt-field-error:empty, .nt-option-helps:empty, .nt-file-meta:empty {
    display: none !important;
}

.nt-field-has-error .nt-field-control {
    border-color: var(--nt-danger);
    box-shadow: 0 0 0 3px rgba(255, 92, 92, .25);
}

.nt-field-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px 15px;
}

.nt-wizard-body input::placeholder, .nt-wizard-body textarea::placeholder {
    color: var(--nt-caption);
    opacity: 0.8;
}

.nt-option-helps {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nt-option-help-active {
    font-size: 14px;
    background: #f8fafc;
    padding: 8px 10px;
    border-radius: 5px;
    color: #374151;
    border: 1px solid var(--nt-border);
    border-left: 3px solid var(--nt-accent);
}

.nt-opt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
    color: var(--nt-caption);
}

.nt-opt input {
    accent-color: var(--nt-accent);
}

.nt-wizard-footer {
    background: linear-gradient(135deg, #E0DBF2 0%, #E6E7F0 30%, #DFF0ED 70%, #D9F2EB 100%);
    padding: 10px 20px;
    border-top: 1px solid var(--nt-border);
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.nt-wizard-footer .button {
    border-radius: 10px;
    padding: 10px 20px;
    border: 0;
    background: #fff;
    color: var(--nt-primary);
    transition: all .25s ease;
    min-width: 150px;
    font-size: 16px;
}

.nt-wizard-footer .button:hover {
    opacity: 0.8;
}

.nt-wizard-footer .button:disabled {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
}

.nt-wizard-footer .button-primary {
    background: var(--nt-primary) !important;
    color: #fff !important;
}

.nt-wizard-footer .button-primary.nt-btn-submit {
    background: var(--nt-accent2) !important;
}

.nt-btn-busy {
    position: relative;
}

.nt-btn-busy::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    translate: 0 -50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: #fff;
    animation: ntspin .7s linear infinite;
}

@keyframes ntspin {
    to {
        transform: rotate(360deg);
    }
}

.nt-wizard-empty {
    text-align: center;
    color: var(--nt-caption);
    padding: 18px 6px;
}


.nt_wizard_box {
    display: flex;
    flex-direction: column;
    background-color: var(--nt-bg);
    padding: 80px;
    border: 1px solid var(--nt-border);
    border-radius: 20px;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.nt_wizard_box h2, .nt-wizard-success h3 {
    margin: 0 !important;
    color: var(--nt-text);
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
}

.nt_wizard_box svg, .nt-wizard-success svg {
    margin-bottom: 15px;
}

.nt_wizard_box span, .nt-wizard-success span {
    color: var(--nt-caption);
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}

.nt-field-heading {
    font-size: 18px;
    font-weight: 700;
}

.nt-file-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

.nt-file-clear {
    border-radius: 10px;
    background-color: var(--nt-accent) !important;
    color: #fff !important;
}

.nt-file-clear:hover {
    opacity: 0.85;
}

.nt-file-dropzone {
    position: relative;
    width: 100%;
    min-height: 120px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    align-items: center;
    background: #fff;
    border: 2px dashed #d0d7de;
    border-radius: 20px;
    cursor: pointer;
    padding: 16px;
    transition: all .25s ease;
    outline: none;
}

.nt-file-dropzone:hover,
.nt-file-dropzone:focus {
    border-color: var(--nt-primary);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, .12);
}

.nt-file-dropzone.is-dragover {
    background: #f0f7ff;
    border-color: var(--nt-primary);
}

.nt-file-illus {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(180deg, #eaf2ff 0%, #dae9ff 100%);
    position: relative;
}

.nt-file-illus::before,
.nt-file-illus::after {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
}

.nt-file-illus::before {
    background-image: url("data:image/svg+xml,%3Csvg fill='%230071E3' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2zM18 20H6V4h7v5h5v11z'/%3E%3C/svg%3E");
}

.nt-file-dropzone.has-file .nt-file-illus::before {

}

.nt-file-texts {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nt-file-title {
    font-weight: 700;
    color: var(--nt-text);
}

.nt-file-hint {
    color: var(--nt-caption);
    font-size: 13px;
}

.nt-file-meta {
    width: 100%;
    background: #f6f8fa;
    border: 1px solid #e6ebf1;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--nt-text);
    word-break: break-word;
}


.nt-file-dropzone.nt-uploading {
    position: relative;
    pointer-events: none;
    opacity: .85;
}

.nt-file-dropzone.nt-uploading::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .6);
    border-radius: inherit;
}

.nt-file-progress {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 5px;
    height: 8px;
    background: #eef2f6;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(16, 24, 40, .06);
}

.nt-file-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--nt-primary), var(--nt-accent));
    border-radius: 999px;
    transition: width .25s ease;
}

.nt-selfie-video-qr img:hover{
    cursor: pointer;
}


@media screen and (max-width: 1024px) {
    .nt_wizard_box h2, .nt-wizard-title, .nt-wizard-success h3 {
        font-size: 35px;
        line-height: 38px;
    }

    .nt_wizard_box {
        padding: 70px 47px;
    }
}

@media screen and (max-width: 768px) {
    .nt-field,
    .nt-col-12, .nt-col-11, .nt-col-10, .nt-col-9,
    .nt-col-8, .nt-col-7, .nt-col-6, .nt-col-5,
    .nt-col-4, .nt-col-3, .nt-col-2, .nt-col-1 {
        flex-basis: 100% !important;
    }

    .nt-wizard-shell {
        margin: 12px;
    }

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

    .nt_wizard_box h2, .nt-wizard-title, .nt-wizard-success h3 {
        font-size: 30px;
        line-height: 36px;
    }

    .nt_wizard_box {
        padding: 60px 15px;
        margin-right: -15px;
        margin-left: -15px;
    }

    .nt-wizard-footer .button{
        min-width: 0;
        flex: 1;
    }
}