/* ============================================================
   LIFED HEALTHMATE REGISTRATION
   Professional application experience
   ============================================================ */


:root {
    --lfd-hmreg-teal: #00ae9d;
    --lfd-hmreg-teal-dark: #008f82;
    --lfd-hmreg-teal-deep: #08766d;

    --lfd-hmreg-green: #5fbb46;

    --lfd-hmreg-ink: #173d39;
    --lfd-hmreg-text: #334b48;
    --lfd-hmreg-muted: #71817e;
    --lfd-hmreg-subtle: #94a29f;

    --lfd-hmreg-line: rgba(23, 61, 57, 0.1);
    --lfd-hmreg-line-strong: rgba(23, 61, 57, 0.16);

    --lfd-hmreg-soft: #f5faf9;
    --lfd-hmreg-soft-teal: #eef9f7;
    --lfd-hmreg-page-bg: #f7f9f8;

    --lfd-hmreg-danger: #c44747;

    --lfd-hmreg-radius-lg: 28px;
    --lfd-hmreg-radius-md: 20px;
    --lfd-hmreg-radius-sm: 14px;

    --lfd-hmreg-shadow:
        0 24px 60px rgba(25, 67, 61, 0.07),
        0 4px 16px rgba(25, 67, 61, 0.04);
}


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

.lfd-hmreg-page {
    position: relative;

    width: 100%;

    padding:
        0
        0
        80px;

    background:
        radial-gradient(
            circle at 8% 6%,
            rgba(0, 174, 157, 0.055),
            transparent 28%
        ),
        radial-gradient(
            circle at 94% 26%,
            rgba(95, 187, 70, 0.05),
            transparent 24%
        ),
        var(--lfd-hmreg-page-bg);

    color: var(--lfd-hmreg-text);

    font-family:
        "Nunito",
        sans-serif;
}


/* ============================================================
   BREADCRUMB
   ============================================================ */

.lfd-hmreg-breadcrumb {
    padding:
        18px
        0;

    border-top:
        1px solid rgba(23, 61, 57, 0.04);

    border-bottom:
        1px solid var(--lfd-hmreg-line);

    background: #ffffff;
}


.lfd-hmreg-breadcrumb .breadcrumb {
    align-items: center;

    font-size: 0.8rem;
}


.lfd-hmreg-breadcrumb .breadcrumb-item,
.lfd-hmreg-breadcrumb .breadcrumb-item a {
    color: #74847f;

    font-weight: 650;

    text-decoration: none;
}


.lfd-hmreg-breadcrumb .breadcrumb-item a:hover {
    color: var(--lfd-hmreg-teal);
}


.lfd-hmreg-breadcrumb
.breadcrumb-item.active {
    color: var(--lfd-hmreg-ink);

    font-weight: 800;
}


.lfd-hmreg-breadcrumb
.breadcrumb-item + .breadcrumb-item::before {
    color: #a8b5b2;
}


/* ============================================================
   INTRO
   ============================================================ */

.lfd-hmreg-intro {
    padding:
        38px
        0
        28px;
}


.lfd-hmreg-intro-card {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(310px, 0.55fr);

    overflow: hidden;

    min-height: 300px;

    border:
        1px solid
        rgba(23, 61, 57, 0.08);

    border-radius:
        var(--lfd-hmreg-radius-lg);

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7fbfa 67%,
            #eef8f6 100%
        );

    box-shadow:
        var(--lfd-hmreg-shadow);
}


.lfd-hmreg-intro-card::before {
    content: "";

    position: absolute;

    top: -130px;
    left: -110px;

    width: 330px;
    height: 330px;

    /*border:
        1px solid
        rgba(0, 174, 157, 0.09);*/

    border-radius: 50%;

    pointer-events: none;
}


.lfd-hmreg-intro-copy {
    position: relative;

    z-index: 1;

    max-width: 780px;

    padding:
        52px
        56px;
}


.lfd-hmreg-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 17px;

    padding:
        7px
        12px;

    border:
        1px solid
        rgba(0, 174, 157, 0.18);

    border-radius: 999px;

    background:
        rgba(0, 174, 157, 0.07);

    color:
        var(--lfd-hmreg-teal-dark);

    font-size: 0.69rem;
    font-weight: 900;

    letter-spacing: 0.09em;

    line-height: 1;

    text-transform: uppercase;
}


.lfd-hmreg-intro-copy h1 {
    max-width: 700px;

    margin:
        0
        0
        16px;

    color:
        var(--lfd-hmreg-ink);

    font-family:
        "Manrope",
        "Nunito",
        sans-serif;

    font-size:
        clamp(
            2rem,
            3.4vw,
            2.3rem
        );

    font-weight: 800;

    letter-spacing: -0.045em;

    line-height: 1.08;
}


.lfd-hmreg-intro-copy > p {
    max-width: 700px;

    margin: 0;

    color:
        var(--lfd-hmreg-muted);

    font-size: 1rem;
    font-weight: 550;

    line-height: 1.75;
}


.lfd-hmreg-intro-points {
    display: flex;

    flex-wrap: wrap;

    gap:
        12px
        22px;

    margin-top: 27px;
}


.lfd-hmreg-intro-points span {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #506864;

    font-size: 0.82rem;
    font-weight: 750;
}


.lfd-hmreg-intro-points i {
    color:
        var(--lfd-hmreg-teal);

    font-size: 0.84rem;
}


/* ============================================================
   INTRO SIDE
   ============================================================ */

.lfd-hmreg-intro-side {
    position: relative;

    z-index: 1;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding:
        40px
        38px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #008f82,
            #00ae9d
        );

    color: #ffffff;
}


.lfd-hmreg-intro-side::before {
    content: "";

    position: absolute;

    top: -85px;
    right: -85px;

    width: 225px;
    height: 225px;

    /*border:
        1px solid
        rgba(255, 255, 255, 0.15);*/

    border-radius: 50%;
}


.lfd-hmreg-intro-side::after {
    content: "";

    position: absolute;

    right: 25px;
    bottom: 22px;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    /*background:
        rgba(255, 255, 255, 0.06);*/

    filter: blur(2px);
}


.lfd-hmreg-intro-side-icon {
    position: relative;

    z-index: 1;

    width: 58px;
    height: 58px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 27px;

    border:
        1px solid
        rgba(255, 255, 255, 0.24);

    border-radius: 17px;

    background:
        rgba(255, 255, 255, 0.15);

    color: #ffffff;

    font-size: 1.25rem;

    backdrop-filter:
        blur(10px);
}


.lfd-hmreg-intro-side > span {
    position: relative;

    z-index: 1;

    margin-bottom: 7px;

    color:
        rgba(255, 255, 255, 0.75);

    font-size: 0.69rem;
    font-weight: 850;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.lfd-hmreg-intro-side > strong {
    position: relative;

    z-index: 1;

    max-width: 280px;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 1.32rem;
    font-weight: 750;

    line-height: 1.38;
}


/* ============================================================
   APPLICATION SHELL
   ============================================================ */

.lfd-hmreg-application {
    padding-top: 4px;
}


.lfd-hmreg-form {
    width: 100%;

    max-width: 1240px;

    margin-inline: auto;
}


/* ============================================================
   STEPPER
   ============================================================ */

.lfd-hmreg-stepper {
    position: relative;

    display: grid;

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

    align-items: center;

    margin-bottom: 24px;

    padding:
        20px
        24px;

    border:
        1px solid
        var(--lfd-hmreg-line);

    border-radius:
        22px;

    background:
        rgba(
            255,
            255,
            255,
            0.96
        );

    box-shadow:
        0 12px 32px
        rgba(23, 61, 57, 0.05);
}


.lfd-hmreg-step {
    display: grid;

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

    align-items: center;

    gap: 13px;

    min-width: 0;
}


.lfd-hmreg-step-number-wrap {
    display: flex;

    align-items: center;
    justify-content: center;
}


.lfd-hmreg-step-number {
    width: 46px;
    height: 46px;

    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        #dbe5e3;

    border-radius: 15px !important;

    background:
        #f0f4f3 !important;

    color:
        #869592 !important;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 0.88rem;
    font-weight: 850;

    box-shadow: none;
}


.lfd-hmreg-step-number.bg-success {
    border-color:
        var(--lfd-hmreg-teal) !important;

    background:
        var(--lfd-hmreg-teal) !important;

    color:
        #ffffff !important;

    box-shadow:
        0 8px 20px
        rgba(0, 174, 157, 0.19);
}


.lfd-hmreg-step-number.bg-secondary {
    border-color:
        #dce5e3 !important;

    background:
        #f0f4f3 !important;

    color:
        #899794 !important;
}


.lfd-hmreg-step-copy {
    min-width: 0;

    display: flex;

    flex-direction: column;
}


.lfd-hmreg-step-copy small {
    margin-bottom: 2px;

    color:
        var(--lfd-hmreg-subtle);

    font-size: 0.61rem;
    font-weight: 900;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.lfd-hmreg-step-copy strong {
    overflow: hidden;

    color: #526763;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 0.84rem;
    font-weight: 800;

    line-height: 1.3;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.lfd-hmreg-step-copy span {
    overflow: hidden;

    margin-top: 2px;

    color: #909c99;

    font-size: 0.68rem;
    font-weight: 600;

    line-height: 1.3;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.lfd-hmreg-step:has(
    .lfd-hmreg-step-number.bg-success
)
.lfd-hmreg-step-copy strong {
    color:
        var(--lfd-hmreg-ink);
}


.lfd-hmreg-step:has(
    .lfd-hmreg-step-number.bg-success
)
.lfd-hmreg-step-copy small {
    color:
        var(--lfd-hmreg-teal-dark);
}


.lfd-hmreg-step-line {
    height: 1px;

    margin-inline: 8px;

    background:
        linear-gradient(
            90deg,
            #dce6e4,
            #cbd9d6
        );
}


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

.lfd-hmreg-step-panel {
    width: 100%;
}


/* ============================================================
   FORM SECTION
   ============================================================ */

.lfd-hmreg-section {
    position: relative;

    width: 100%;

    margin-bottom: 22px;

    overflow: visible;

    border:
        1px solid
        var(--lfd-hmreg-line);

    border-radius:
        var(--lfd-hmreg-radius-lg);

    background: #ffffff;

    box-shadow:
        0 15px 44px
        rgba(23, 61, 57, 0.055);
}


.lfd-hmreg-section-head {
    min-height: 106px;

    display: flex;

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

    gap: 24px;

    padding:
        25px
        30px;

    border-bottom:
        1px solid
        var(--lfd-hmreg-line);

    border-radius:
        var(--lfd-hmreg-radius-lg)
        var(--lfd-hmreg-radius-lg)
        0
        0;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f8fbfa
        );
}


.lfd-hmreg-section-head-main {
    min-width: 0;

    display: flex;

    align-items: center;

    gap: 17px;
}


.lfd-hmreg-section-icon {
    width: 52px;
    height: 52px;

    flex:
        0
        0
        52px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(0, 174, 157, 0.13);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(0, 174, 157, 0.11),
            rgba(0, 174, 157, 0.045)
        );

    color:
        var(--lfd-hmreg-teal);

    font-size: 1.05rem;
}


.lfd-hmreg-section-kicker {
    display: block;

    margin-bottom: 3px;

    color:
        var(--lfd-hmreg-teal-dark);

    font-size: 0.61rem;
    font-weight: 900;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.lfd-hmreg-section-head h2 {
    margin: 0;

    color:
        var(--lfd-hmreg-ink);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 1.15rem;
    font-weight: 800;

    letter-spacing: -0.025em;
}


.lfd-hmreg-section-head p {
    max-width: 620px;

    margin:
        5px
        0
        0;

    color:
        var(--lfd-hmreg-muted);

    font-size: 0.78rem;
    font-weight: 550;

    line-height: 1.5;
}


.lfd-hmreg-section-body {
    padding:
        30px;
}


/* ============================================================
   SECURE BADGE
   ============================================================ */

.lfd-hmreg-secure-pill {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    flex: 0 0 auto;

    padding:
        7px
        11px;

    border:
        1px solid
        rgba(0, 174, 157, 0.15);

    border-radius: 999px;

    background:
        rgba(0, 174, 157, 0.065);

    color:
        var(--lfd-hmreg-teal-dark);

    font-size: 0.7rem;
    font-weight: 800;
}


/* ============================================================
   FORM FIELDS
   ============================================================ */

.lfd-hmreg-field {
    width: 100%;
}


.lfd-hmreg-field
.form-label {
    display: flex;

    align-items: center;

    gap: 4px;

    margin-bottom: 8px;

    color:
        #36514d;

    font-size: 0.78rem;
    font-weight: 800;

    line-height: 1.35;
}


.lfd-hmreg-field
.form-label > span {
    color:
        var(--lfd-hmreg-teal);

    font-weight: 900;
}


.lfd-hmreg-field
.form-control,
.lfd-hmreg-field
.form-select {
    width: 100%;

    min-height: 52px;

    padding:
        12px
        15px;

    border:
        1px solid
        #d7e2df;

    border-radius:
        13px;

    outline: 0;

    background: #ffffff;

    color:
        #243f3b;

    font-family:
        "Nunito",
        sans-serif;

    font-size: 0.89rem;
    font-weight: 650;

    box-shadow:
        0 2px 5px
        rgba(23, 61, 57, 0.018);

    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease;
}


.lfd-hmreg-field
textarea.form-control {
    min-height: 116px;

    resize: vertical;

    line-height: 1.6;
}


.lfd-hmreg-field
.form-control::placeholder {
    color: #a0ada9;

    font-weight: 550;
}


.lfd-hmreg-field
.form-control:hover,
.lfd-hmreg-field
.form-select:hover {
    border-color:
        #b9ceca;
}


.lfd-hmreg-field
.form-control:focus,
.lfd-hmreg-field
.form-select:focus {
    border-color:
        var(--lfd-hmreg-teal);

    background: #ffffff;

    box-shadow:
        0 0 0 4px
        rgba(0, 174, 157, 0.09);
}


.lfd-hmreg-field
.form-control.is-invalid,
.lfd-hmreg-field
.form-select.is-invalid {
    border-color:
        var(--lfd-hmreg-danger);

    background-image: none;
}


.lfd-hmreg-field
.form-control.is-invalid:focus,
.lfd-hmreg-field
.form-select.is-invalid:focus {
    box-shadow:
        0 0 0 4px
        rgba(196, 71, 71, 0.09);
}


.lfd-hmreg-field-help {
    display: block;

    margin-top: 6px;

    color:
        #8a9995;

    font-size: 0.68rem;
    font-weight: 600;

    line-height: 1.45;
}


/* ============================================================
   VALIDATION
   ============================================================ */

.lfd-hmreg-page
.invalid-feedback {
    margin-top: 6px;

    color:
        var(--lfd-hmreg-danger);

    font-size: 0.72rem;
    font-weight: 650;

    line-height: 1.4;
}


.lfd-hmreg-page
.border-danger {
    border-color:
        var(--lfd-hmreg-danger) !important;
}


/* ============================================================
   PREFIX ICON INPUT
   ============================================================ */

.lfd-hmreg-input-icon {
    position: relative;

    width: 100%;
}


.lfd-hmreg-input-icon > span {
    position: absolute;

    top: 50%;
    left: 15px;

    z-index: 2;

    width: 20px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    color:
        var(--lfd-hmreg-teal);

    transform:
        translateY(-50%);
}


.lfd-hmreg-input-icon
.form-control {
    padding-left:
        47px;
}


/* ============================================================
   EXPERTISE
   ============================================================ */

.lfd-hmreg-expertise-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 11px;

    padding:
        13px;

    border:
        1px solid
        #dce6e4;

    border-radius:
        18px;

    background:
        #f8fbfa;
}


.lfd-hmreg-expertise-option {
    position: relative;

    min-height: 58px;

    display: grid;

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

    align-items: center;

    gap: 10px;

    margin: 0;

    padding:
        10px
        12px;

    border:
        1px solid
        #dce6e4;

    border-radius: 13px;

    background: #ffffff;

    color:
        #36524d;

    cursor: pointer;

    transition:
        border-color 0.17s ease,
        background-color 0.17s ease,
        transform 0.17s ease,
        box-shadow 0.17s ease;
}


.lfd-hmreg-expertise-option:hover {
    border-color:
        rgba(0, 174, 157, 0.35);

    background:
        #f7fcfb;

    transform:
        translateY(-1px);

    box-shadow:
        0 7px 18px
        rgba(23, 61, 57, 0.045);
}


.lfd-hmreg-expertise-option
> input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}


.lfd-hmreg-expertise-check {
    width: 30px;
    height: 30px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        #d7e2df;

    border-radius:
        9px;

    background:
        #f7faf9;

    color: transparent;

    font-size: 0.68rem;

    transition:
        background-color 0.17s ease,
        border-color 0.17s ease,
        color 0.17s ease;
}


.lfd-hmreg-expertise-option:has(
    input:checked
) {
    border-color:
        var(--lfd-hmreg-teal);

    background:
        rgba(0, 174, 157, 0.07);
}


.lfd-hmreg-expertise-option:has(
    input:checked
)
.lfd-hmreg-expertise-check {
    border-color:
        var(--lfd-hmreg-teal);

    background:
        var(--lfd-hmreg-teal);

    color: #ffffff;
}


.lfd-hmreg-expertise-copy {
    min-width: 0;
}


.lfd-hmreg-expertise-copy strong {
    display: block;

    overflow: hidden;

    color:
        #2d4945;

    font-size: 0.78rem;
    font-weight: 800;

    line-height: 1.3;

    text-overflow: ellipsis;
}


.lfd-hmreg-grid-error {
    grid-column:
        1 / -1;

    padding:
        0
        4px;
}


/* ============================================================
   TOM SELECT
   ============================================================ */

.lfd-hmreg-page
.ts-wrapper {
    width: 100%;
}


.lfd-hmreg-page
.ts-wrapper.single
.ts-control {
    min-height: 52px;

    display: flex;

    align-items: center;

    padding:
        11px
        39px
        11px
        15px;

    border:
        1px solid
        #d7e2df;

    border-radius:
        13px;

    background: #ffffff;

    color:
        #243f3b;

    font-family:
        "Nunito",
        sans-serif;

    font-size: 0.89rem;
    font-weight: 650;

    box-shadow: none;
}


.lfd-hmreg-page
.ts-wrapper.single.focus
.ts-control {
    border-color:
        var(--lfd-hmreg-teal);

    box-shadow:
        0 0 0 4px
        rgba(0, 174, 157, 0.09);
}


.lfd-hmreg-page
.ts-wrapper.disabled
.ts-control {
    background:
        #f3f6f5;

    color:
        #9aa7a4;

    opacity: 1;
}


.lfd-hmreg-page
.ts-control > input {
    color:
        #243f3b !important;

    font-size:
        0.89rem !important;
}


.lfd-hmreg-page
.ts-dropdown {
    z-index: 1200;

    margin-top: 7px;

    overflow: hidden;

    border:
        1px solid
        rgba(23, 61, 57, 0.1);

    border-radius: 14px;

    background:
        #ffffff;

    box-shadow:
        0 18px 42px
        rgba(23, 61, 57, 0.14);
}


.lfd-hmreg-page
.ts-dropdown-content {
    max-height: 260px;

    padding: 6px;
}


.lfd-hmreg-page
.ts-dropdown
.option {
    padding:
        10px
        11px;

    border-radius: 9px;

    color:
        #34504c;

    font-size: 0.82rem;
    font-weight: 650;
}


.lfd-hmreg-page
.ts-dropdown
.option.active {
    background:
        var(--lfd-hmreg-soft-teal);

    color:
        var(--lfd-hmreg-teal-dark);
}


/* ============================================================
   UPLOAD SECTION
   ============================================================ */

.lfd-hmreg-upload-block {
    width: 100%;
}


.lfd-hmreg-upload-head {
    display: grid;

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

    align-items: center;

    gap: 14px;

    margin-bottom: 15px;
}


.lfd-hmreg-upload-icon {
    width: 48px;
    height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        var(--lfd-hmreg-soft-teal);

    color:
        var(--lfd-hmreg-teal);

    font-size: 1rem;
}


.lfd-hmreg-upload-head h3,
.lfd-hmreg-document-card h3 {
    margin: 0;

    color:
        var(--lfd-hmreg-ink);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 0.96rem;
    font-weight: 800;
}


.lfd-hmreg-upload-head p {
    max-width: 700px;

    margin:
        4px
        0
        0;

    color:
        var(--lfd-hmreg-muted);

    font-size: 0.73rem;

    line-height: 1.5;
}


.lfd-hmreg-upload-meta {
    align-self: start;

    padding:
        6px
        10px;

    border-radius: 999px;

    background:
        #f1f6f5;

    color:
        #748682;

    font-size: 0.66rem;
    font-weight: 800;
}


/* ============================================================
   DROPZONE
   ============================================================ */

.lfd-hmreg-dropzone {
    position: relative;

    min-height: 250px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding:
        35px
        25px;

    border:
        1.5px dashed
        #b9d6d1;

    border-radius:
        20px;

    background:
        linear-gradient(
            145deg,
            #fbfefd,
            #f3faf8
        );

    text-align: center;

    transition:
        border-color 0.18s ease,
        background-color 0.18s ease,
        box-shadow 0.18s ease;
}


.lfd-hmreg-dropzone.border-success {
    border-color:
        var(--lfd-hmreg-teal) !important;

    background:
        #eefaf7;

    box-shadow:
        inset
        0
        0
        0
        1px
        rgba(0, 174, 157, 0.06);
}


.lfd-hmreg-dropzone-icon {
    width: 58px;
    height: 58px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    border-radius: 17px;

    background:
        rgba(0, 174, 157, 0.09);

    color:
        var(--lfd-hmreg-teal);

    font-size: 1.35rem;
}


.lfd-hmreg-dropzone h4 {
    margin:
        0
        0
        5px;

    color:
        var(--lfd-hmreg-ink);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 1rem;
    font-weight: 800;
}


.lfd-hmreg-dropzone p {
    margin:
        0
        0
        17px;

    color:
        #83938f;

    font-size: 0.73rem;
}


.lfd-hmreg-upload-button,
.lfd-hmreg-document-upload {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 42px;

    padding:
        9px
        15px;

    border:
        1px solid
        rgba(0, 174, 157, 0.25);

    border-radius: 12px;

    background:
        #ffffff;

    color:
        var(--lfd-hmreg-teal-dark);

    font-size: 0.75rem;
    font-weight: 850;

    cursor: pointer;

    transition:
        border-color 0.17s ease,
        background-color 0.17s ease,
        color 0.17s ease,
        transform 0.17s ease;
}


.lfd-hmreg-upload-button:hover,
.lfd-hmreg-document-upload:hover {
    border-color:
        var(--lfd-hmreg-teal);

    background:
        var(--lfd-hmreg-teal);

    color: #ffffff;

    transform:
        translateY(-1px);
}


.lfd-hmreg-file-input {
    position: absolute !important;

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

    overflow: hidden !important;

    opacity: 0 !important;

    pointer-events: none;
}


/* ============================================================
   PHOTO PREVIEW FROM EXISTING JS
   ============================================================ */

.lfd-hmreg-photo-preview
.card {
    height: 100%;

    overflow: hidden;

    border:
        1px solid
        var(--lfd-hmreg-line) !important;

    border-radius:
        15px;

    background:
        #ffffff;

    box-shadow:
        0 7px 20px
        rgba(23, 61, 57, 0.06);
}


.lfd-hmreg-photo-preview
.card img {
    width: 100%;

    height: 150px !important;

    object-fit: cover;
}


.lfd-hmreg-photo-preview
.card-body {
    padding:
        8px !important;
}


.lfd-hmreg-photo-preview
.btn-danger {
    border: 0;

    border-radius: 9px;

    background:
        #fff1f1;

    color:
        #b84545;

    font-size: 0.7rem;
    font-weight: 800;
}


.lfd-hmreg-photo-preview
.btn-danger:hover {
    background:
        #b84545;

    color:
        #ffffff;
}


/* ============================================================
   DOCUMENT CARDS
   ============================================================ */

.lfd-hmreg-document-card {
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    padding:
        25px;

    border:
        1px solid
        var(--lfd-hmreg-line);

    border-radius:
        19px;

    background:
        #fbfdfc;
}


.lfd-hmreg-document-icon {
    width: 48px;
    height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    border-radius: 14px;

    background:
        var(--lfd-hmreg-soft-teal);

    color:
        var(--lfd-hmreg-teal);

    font-size: 1rem;
}


.lfd-hmreg-document-copy {
    flex:
        1
        1
        auto;

    width: 100%;
}


.lfd-hmreg-document-kicker {
    display: block;

    margin-bottom: 4px;

    color:
        var(--lfd-hmreg-teal-dark);

    font-size: 0.59rem;
    font-weight: 900;

    letter-spacing: 0.07em;

    text-transform: uppercase;
}


.lfd-hmreg-document-copy p {
    margin:
        7px
        0
        19px;

    color:
        var(--lfd-hmreg-muted);

    font-size: 0.73rem;

    line-height: 1.55;
}


.lfd-hmreg-file-note {
    display: block;

    margin-top: 8px;

    color: #899895;

    font-size: 0.65rem;
    font-weight: 600;
}


/* ============================================================
   EXISTING FILE PREVIEW ALERTS
   ============================================================ */

#credibilityPreview
.alert,
#idPreview
.alert {
    gap: 15px;

    margin:
        12px
        0
        0;

    padding:
        10px
        12px;

    overflow: hidden;

    border:
        1px solid
        #dce6e4;

    border-radius: 11px;

    background:
        #f5f9f8;

    color:
        #455e5a;

    font-size: 0.72rem;
}


#credibilityPreview
.alert > span,
#idPreview
.alert > span {
    min-width: 0;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


#credibilityPreview
.btn-danger,
#idPreview
.btn-danger {
    flex:
        0
        0
        auto;

    border: 0;

    background:
        #fceeee;

    color:
        #b84949;

    font-size: 0.66rem;
    font-weight: 800;
}


/* ============================================================
   OTP
   ============================================================ */

.lfd-hmreg-otp-card {
    max-width: 760px;

    padding:
        24px;

    border:
        1px solid
        var(--lfd-hmreg-line);

    border-radius:
        18px;

    background:
        #f9fcfb;
}


.lfd-hmreg-otp-main {
    display: grid;

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

    align-items: end;

    gap: 13px;
}


.lfd-hmreg-otp-input {
    letter-spacing: 0.14em;
}


.lfd-hmreg-send-otp {
    width: 100%;
}


.lfd-hmreg-otp-info {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-top: 13px;

    padding:
        10px
        12px;

    border-radius: 11px;

    background:
        #f0f6f5;

    color:
        #778985;

    font-size: 0.69rem;

    line-height: 1.5;
}


.lfd-hmreg-otp-info > i {
    margin-top: 3px;

    color:
        var(--lfd-hmreg-teal);
}


.lfd-hmreg-otp-info small {
    color: inherit;
}


.lfd-hmreg-otp-timer {
    margin-top: 2px;

    color:
        var(--lfd-hmreg-teal-dark);

    font-weight: 800;
}


.lfd-hmreg-otp-actions {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 12px;

    margin-top: 17px;
}


.lfd-hmreg-verified-badge {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        9px
        12px;

    border-radius: 999px;

    background:
        rgba(95, 187, 70, 0.12);

    color:
        #438f33;

    font-size: 0.71rem;
    font-weight: 850;
}


.lfd-hmreg-verified-badge.d-none {
    display: none !important;
}


.lfd-hmreg-otp-message {
    margin-top: 10px;

    font-size: 0.72rem;
    font-weight: 700;
}


/* ============================================================
   TERMS
   ============================================================ */

.lfd-hmreg-terms-card {
    display: grid;

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

    gap: 18px;

    margin-bottom: 22px;

    padding:
        25px
        28px;

    border:
        1px solid
        rgba(0, 174, 157, 0.14);

    border-radius:
        22px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f3faf8
        );

    box-shadow:
        0 12px 32px
        rgba(23, 61, 57, 0.045);
}


.lfd-hmreg-terms-icon {
    width: 54px;
    height: 54px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius:
        16px;

    background:
        var(--lfd-hmreg-teal);

    color:
        #ffffff;

    font-size: 1.05rem;
}


.lfd-hmreg-terms-content h3 {
    margin:
        0
        0
        13px;

    color:
        var(--lfd-hmreg-ink);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 1rem;
    font-weight: 800;
}


.lfd-hmreg-terms-check {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin: 0;

    padding: 0;
}


.lfd-hmreg-terms-check
.form-check-input {
    width: 20px;
    height: 20px;

    flex:
        0
        0
        20px;

    margin:
        1px
        0
        0;

    border:
        1.5px solid
        #b9cbc7;

    border-radius: 5px;

    box-shadow: none;
}


.lfd-hmreg-terms-check
.form-check-input:checked {
    border-color:
        var(--lfd-hmreg-teal);

    background-color:
        var(--lfd-hmreg-teal);
}


.lfd-hmreg-terms-check
.form-check-input:focus {
    border-color:
        var(--lfd-hmreg-teal);

    box-shadow:
        0 0 0 4px
        rgba(0, 174, 157, 0.1);
}


.lfd-hmreg-terms-check
.form-check-label {
    color:
        #526b66;

    font-size: 0.78rem;
    font-weight: 650;

    line-height: 1.55;
}


/* ============================================================
   NAVIGATION
   ============================================================ */

.lfd-hmreg-navigation {
    display: flex;

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

    gap: 20px;

    margin-top: 24px;

    padding:
        20px
        22px;

    border:
        1px solid
        var(--lfd-hmreg-line);

    border-radius:
        19px;

    background:
        rgba(
            255,
            255,
            255,
            0.96
        );

    box-shadow:
        0 10px 28px
        rgba(23, 61, 57, 0.04);
}


.lfd-hmreg-navigation-end {
    justify-content: space-between;
}


.lfd-hmreg-navigation-copy {
    display: flex;

    align-items: center;

    gap: 8px;

    color:
        #84938f;

    font-size: 0.7rem;
    font-weight: 650;
}


.lfd-hmreg-navigation-copy i {
    color:
        var(--lfd-hmreg-teal);
}


/* ============================================================
   BUTTONS
   ============================================================ */

.lfd-hmreg-btn {
    min-height: 46px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding:
        10px
        18px;

    border-radius:
        12px;

    font-family:
        "Nunito",
        sans-serif;

    font-size: 0.78rem;
    font-weight: 850;

    line-height: 1;

    text-decoration: none;

    transition:
        transform 0.17s ease,
        border-color 0.17s ease,
        background-color 0.17s ease,
        color 0.17s ease,
        box-shadow 0.17s ease;
}


.lfd-hmreg-btn:hover:not(:disabled) {
    transform:
        translateY(-1px);
}


.lfd-hmreg-btn-primary {
    border:
        1px solid
        var(--lfd-hmreg-teal);

    background:
        var(--lfd-hmreg-teal);

    color:
        #ffffff;

    box-shadow:
        0 9px 20px
        rgba(0, 174, 157, 0.18);
}


.lfd-hmreg-btn-primary:hover,
.lfd-hmreg-btn-primary:focus {
    border-color:
        var(--lfd-hmreg-teal-dark);

    background:
        var(--lfd-hmreg-teal-dark);

    color:
        #ffffff;
}


.lfd-hmreg-btn-secondary {
    border:
        1px solid
        #d1dfdc;

    background:
        #ffffff;

    color:
        #3b5b56;
}


.lfd-hmreg-btn-secondary:hover,
.lfd-hmreg-btn-secondary:focus {
    border-color:
        var(--lfd-hmreg-teal);

    background:
        var(--lfd-hmreg-soft-teal);

    color:
        var(--lfd-hmreg-teal-dark);
}


.lfd-hmreg-btn-submit {
    border:
        1px solid
        var(--lfd-hmreg-green);

    background:
        var(--lfd-hmreg-green);

    color:
        #ffffff;

    box-shadow:
        0 9px 22px
        rgba(95, 187, 70, 0.18);
}


.lfd-hmreg-btn-submit:hover:not(:disabled) {
    border-color:
        #4ba337;

    background:
        #4ba337;

    color:
        #ffffff;
}


.lfd-hmreg-btn:disabled,
.lfd-hmreg-btn-submit:disabled {
    border-color:
        #dfe5e3;

    background:
        #e9eeec;

    color:
        #99a4a1;

    box-shadow: none;

    cursor: not-allowed;

    opacity: 1;
}


/* ============================================================
   PHONE FIELD
   intl-tel-input READY
   ============================================================ */

.lfd-hmreg-page
.iti {
    width: 100%;
}


.lfd-hmreg-page
.iti
.form-control {
    width: 100%;
}


.lfd-hmreg-page
.iti__selected-country-primary {
    border-radius:
        12px
        0
        0
        12px;

    background:
        #f7faf9;
}


.lfd-hmreg-page
.iti__selected-dial-code {
    color:
        #455f5b;

    font-size: 0.82rem;
    font-weight: 700;
}


.lfd-hmreg-page
.iti__country-list {
    z-index: 2000;

    max-height: 280px;

    margin-top: 7px;

    border:
        1px solid
        rgba(23, 61, 57, 0.1);

    border-radius: 14px;

    background:
        #ffffff;

    box-shadow:
        0 18px 42px
        rgba(23, 61, 57, 0.14);
}


/* ============================================================
   TABLET
   ============================================================ */

@media
    (min-width: 768px)
    and
    (max-width: 1199.98px) {

    .lfd-hmreg-intro-card {
        grid-template-columns:
            minmax(0, 1.4fr)
            minmax(270px, 0.6fr);
    }


    .lfd-hmreg-intro-copy {
        padding:
            42px
            38px;
    }


    .lfd-hmreg-intro-side {
        padding:
            34px
            28px;
    }


    .lfd-hmreg-stepper {
        grid-template-columns:
            minmax(0, 1fr)
            34px
            minmax(0, 1fr)
            34px
            minmax(0, 1fr);

        padding:
            17px
            18px;
    }


    .lfd-hmreg-step {
        grid-template-columns:
            40px
            minmax(0, 1fr);

        gap: 9px;
    }


    .lfd-hmreg-step-number {
        width: 40px;
        height: 40px;
    }


    .lfd-hmreg-step-copy span {
        display: none;
    }


    .lfd-hmreg-section-body {
        padding:
            26px;
    }


    .lfd-hmreg-expertise-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767.98px) {

    .lfd-hmreg-page {
        padding-bottom: 45px;
    }


    .lfd-hmreg-breadcrumb {
        padding:
            13px
            0;
    }


    .lfd-hmreg-breadcrumb
    .breadcrumb {
        font-size: 0.7rem;
    }


    /* --------------------------------------------------------
       INTRO
       -------------------------------------------------------- */

    .lfd-hmreg-intro {
        padding:
            18px
            0
            18px;
    }


    .lfd-hmreg-intro-card {
        display: block;

        min-height: 0;

        border-radius:
            21px;
    }


    .lfd-hmreg-intro-copy {
        padding:
            28px
            22px
            26px;
    }


    .lfd-hmreg-eyebrow {
        margin-bottom: 13px;

        font-size: 0.61rem;
    }


    .lfd-hmreg-intro-copy h1 {
        margin-bottom: 12px;

        font-size:
            clamp(
                1.7rem,
                8vw,
                2.15rem
            );

        line-height: 1.1;
    }


    .lfd-hmreg-intro-copy > p {
        font-size: 0.86rem;

        line-height: 1.65;
    }


    .lfd-hmreg-intro-points {
        display: grid;

        gap: 9px;

        margin-top: 21px;
    }


    .lfd-hmreg-intro-points span {
        font-size: 0.74rem;
    }


    .lfd-hmreg-intro-side {
        min-height: 165px;

        padding:
            26px
            22px;

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


    .lfd-hmreg-intro-side-icon {
        width: 46px;
        height: 46px;

        margin-bottom: 16px;

        border-radius: 13px;
    }


    .lfd-hmreg-intro-side > strong {
        font-size: 1.05rem;
    }


    /* --------------------------------------------------------
       STEPPER
       -------------------------------------------------------- */

    .lfd-hmreg-stepper {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

        gap: 7px;

        padding:
            10px;

        border-radius:
            17px;
    }


    .lfd-hmreg-step-line {
        display: none;
    }


    .lfd-hmreg-step {
        grid-template-columns:
            34px
            minmax(0, 1fr);

        gap: 7px;

        min-height: 54px;

        padding:
            7px;

        border:
            1px solid
            #e3e9e7;

        border-radius: 12px;

        background:
            #fafcfc;
    }


    .lfd-hmreg-step-number {
        width: 34px;
        height: 34px;

        border-radius:
            10px !important;

        font-size: 0.72rem;
    }


    .lfd-hmreg-step-copy small,
    .lfd-hmreg-step-copy span {
        display: none;
    }


    .lfd-hmreg-step-copy strong {
        font-size: 0.67rem;

        white-space: normal;
    }


    /* --------------------------------------------------------
       SECTION
       -------------------------------------------------------- */

    .lfd-hmreg-section {
        margin-bottom: 16px;

        border-radius:
            21px;
    }


    .lfd-hmreg-section-head {
        min-height: 0;

        align-items: flex-start;

        gap: 12px;

        padding:
            20px
            18px;

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


    .lfd-hmreg-section-head-main {
        align-items: flex-start;

        gap: 12px;
    }


    .lfd-hmreg-section-icon {
        width: 44px;
        height: 44px;

        flex-basis: 44px;

        border-radius: 13px;
    }


    .lfd-hmreg-section-head h2 {
        font-size: 1rem;
    }


    .lfd-hmreg-section-head p {
        font-size: 0.71rem;

        line-height: 1.45;
    }


    .lfd-hmreg-section-body {
        padding:
            21px
            18px;
    }


    .lfd-hmreg-secure-pill {
        display: none;
    }


    /* --------------------------------------------------------
       FORM
       -------------------------------------------------------- */

    .lfd-hmreg-field
    .form-control,
    .lfd-hmreg-field
    .form-select,
    .lfd-hmreg-page
    .ts-wrapper.single
    .ts-control {
        min-height: 50px;

        font-size: 0.84rem;
    }


    .lfd-hmreg-field
    textarea.form-control {
        min-height: 115px;
    }


    /* --------------------------------------------------------
       EXPERTISE
       -------------------------------------------------------- */

    .lfd-hmreg-expertise-grid {
        grid-template-columns:
            1fr;

        gap: 8px;

        padding:
            9px;
    }


    .lfd-hmreg-expertise-option {
        min-height: 54px;
    }


    /* --------------------------------------------------------
       UPLOADS
       -------------------------------------------------------- */

    .lfd-hmreg-upload-head {
        grid-template-columns:
            42px
            minmax(0, 1fr);

        gap: 11px;
    }


    .lfd-hmreg-upload-icon {
        width: 42px;
        height: 42px;
    }


    .lfd-hmreg-upload-meta {
        grid-column:
            1 / -1;

        justify-self: start;

        margin-top: -2px;
    }


    .lfd-hmreg-dropzone {
        min-height: 220px;

        padding:
            28px
            18px;
    }


    .lfd-hmreg-document-card {
        padding:
            21px;
    }


    /* --------------------------------------------------------
       OTP
       -------------------------------------------------------- */

    .lfd-hmreg-otp-card {
        padding:
            17px;
    }


    .lfd-hmreg-otp-main {
        grid-template-columns:
            1fr;

        align-items: stretch;
    }


    .lfd-hmreg-send-otp {
        width: 100%;
    }


    .lfd-hmreg-otp-actions {
        align-items: stretch;

        flex-direction: column;
    }


    .lfd-hmreg-otp-actions
    .lfd-hmreg-btn {
        width: 100%;
    }


    .lfd-hmreg-verified-badge {
        justify-content: center;
    }


    /* --------------------------------------------------------
       TERMS
       -------------------------------------------------------- */

    .lfd-hmreg-terms-card {
        grid-template-columns:
            44px
            minmax(0, 1fr);

        gap: 13px;

        padding:
            20px
            17px;

        border-radius:
            18px;
    }


    .lfd-hmreg-terms-icon {
        width: 44px;
        height: 44px;

        border-radius: 13px;
    }


    /* --------------------------------------------------------
       NAVIGATION
       -------------------------------------------------------- */

    .lfd-hmreg-navigation {
        align-items: stretch;

        flex-direction: column;

        gap: 11px;

        margin-top: 17px;

        padding:
            13px;

        border-radius:
            16px;
    }


    .lfd-hmreg-navigation-copy {
        justify-content: center;

        padding:
            3px
            6px;

        text-align: center;
    }


    .lfd-hmreg-navigation
    .lfd-hmreg-btn {
        width: 100%;

        min-height: 50px;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 479.98px) {

    .lfd-hmreg-stepper {
        gap: 5px;

        padding: 8px;
    }


    .lfd-hmreg-step {
        display: flex;

        align-items: center;
        justify-content: center;

        min-height: 48px;

        padding: 6px;
    }


    .lfd-hmreg-step-number {
        width: 32px;
        height: 32px;

        flex:
            0
            0
            32px;
    }


    .lfd-hmreg-step-copy {
        display: none;
    }


    .lfd-hmreg-terms-card {
        grid-template-columns:
            1fr;
    }


    .lfd-hmreg-terms-icon {
        margin-bottom: -2px;
    }

}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .lfd-hmreg-page *,
    .lfd-hmreg-page *::before,
    .lfd-hmreg-page *::after {
        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;
    }

}


/* ============================================================
   INTERNATIONAL PHONE / COUNTRY CODE
============================================================ */

.lfd-hmreg-phone-wrapper {
    width: 100%;
}


.lfd-hmreg-phone-wrapper
.iti {
    width: 100%;
}


/* Input */

.lfd-hmreg-phone-wrapper
.iti
.lfd-hmreg-phone-input {
    width: 100%;

    min-height: 52px;

    border:
        1px solid
        #d7e2df;

    border-radius:
        13px;

    background:
        #ffffff;

    color:
        #243f3b;

    font-family:
        "Nunito",
        sans-serif;

    font-size: 0.89rem;
    font-weight: 650;

    box-shadow: none;
}


.lfd-hmreg-phone-wrapper
.iti
.lfd-hmreg-phone-input:focus {
    border-color:
        var(--lfd-hmreg-teal);

    box-shadow:
        0 0 0 4px
        rgba(0, 174, 157, 0.09);
}


/* Country selector area */

.lfd-hmreg-phone-wrapper
.iti__country-container {
    padding: 0;
}


.lfd-hmreg-phone-wrapper
.iti__selected-country {
    min-width: 102px;

    padding:
        0
        12px;

    border-right:
        1px solid
        #dce5e3;

    border-radius:
        13px
        0
        0
        13px;

    background:
        #f7faf9;

    transition:
        background-color
        0.16s ease;
}


.lfd-hmreg-phone-wrapper
.iti__selected-country:hover {
    background:
        #eef7f5;
}


/* Flag */

.lfd-hmreg-phone-wrapper
.iti__flag {
    flex:
        0
        0
        auto;
}


/* +91 */

.lfd-hmreg-phone-wrapper
.iti__selected-dial-code {
    margin-left: 7px;

    color:
        #35534e;

    font-size: 0.8rem;

    font-weight: 800;
}


/* Dropdown arrow */

.lfd-hmreg-phone-wrapper
.iti__arrow {
    margin-left: 7px;

    border-top-color:
        #7b8b87;
}


/* Country dropdown */

.lfd-hmreg-phone-wrapper
.iti__dropdown-content {
    overflow: hidden;

    margin-top: 7px;

    border:
        1px solid
        rgba(23, 61, 57, 0.1);

    border-radius: 15px;

    background:
        #ffffff;

    box-shadow:
        0 20px 48px
        rgba(23, 61, 57, 0.16);
}


.lfd-hmreg-phone-wrapper
.iti__country-list {
    max-height: 280px;
}


/* Search inside country dropdown */

.lfd-hmreg-phone-wrapper
.iti__search-input {
    min-height: 42px;

    margin: 8px;

    width:
        calc(
            100% - 16px
        );

    padding:
        8px
        11px;

    border:
        1px solid
        #dce5e3;

    border-radius: 10px;

    outline: 0;

    font-size: 0.78rem;
}


.lfd-hmreg-phone-wrapper
.iti__search-input:focus {
    border-color:
        var(--lfd-hmreg-teal);

    box-shadow:
        0 0 0 3px
        rgba(0, 174, 157, 0.08);
}


/* Country item */

.lfd-hmreg-phone-wrapper
.iti__country {
    padding:
        9px
        11px;

    color:
        #36524d;

    font-size: 0.78rem;
}


.lfd-hmreg-phone-wrapper
.iti__country:hover,
.lfd-hmreg-phone-wrapper
.iti__country.iti__highlight {
    background:
        var(--lfd-hmreg-soft-teal);
}


/* Validation */

.lfd-hmreg-phone-wrapper
.iti
.lfd-hmreg-phone-input.is-invalid {
    border-color:
        var(--lfd-hmreg-danger);
}


/* Mobile */

@media (max-width: 767.98px) {

    .lfd-hmreg-phone-wrapper
    .iti
    .lfd-hmreg-phone-input {
        min-height: 50px;

        font-size: 0.84rem;
    }


    .lfd-hmreg-phone-wrapper
    .iti__selected-country {
        min-width: 96px;

        padding:
            0
            10px;
    }


    .lfd-hmreg-phone-wrapper
    .iti__selected-dial-code {
        font-size: 0.76rem;
    }

}

/* ============================================================
   SEARCHABLE PHONE COUNTRY CODE
============================================================ */

.lfd-hmreg-phone-row
.ts-wrapper {
    width: 100%;
}


.lfd-hmreg-phone-row
.ts-control {
    min-height: 52px !important;

    display: flex !important;

    align-items: center !important;

    padding:
        10px
        34px
        10px
        11px !important;

    border:
        1px solid
        #d7e2df !important;

    border-radius:
        13px !important;

    background:
        #f8fbfa !important;

    color:
        #294945 !important;

    font-size:
        0.76rem !important;

    font-weight: 750 !important;

    box-shadow:
        none !important;
}


.lfd-hmreg-phone-row
.ts-wrapper.focus
.ts-control {
    border-color:
        var(--lfd-hmreg-teal) !important;

    box-shadow:
        0 0 0 4px
        rgba(0, 174, 157, 0.09)
        !important;
}


.lfd-hmreg-phone-row
.ts-dropdown {
    min-width: 280px;

    z-index: 9999;
}


.lfd-hmreg-phone-row
.ts-dropdown
.option {
    white-space: nowrap;
}

/* ============================================================
   COUNTRY CODE DROPDOWN SEARCH
============================================================ */

.lfd-hmreg-phone-row
.ts-dropdown {
    min-width: 320px;

    overflow: hidden;

    border:
        1px solid
        rgba(23, 61, 57, 0.10);

    border-radius: 15px;

    background: #ffffff;

    box-shadow:
        0 18px 45px
        rgba(23, 61, 57, 0.15);
}


/* Search container created by dropdown_input */

.lfd-hmreg-phone-row
.ts-dropdown
.dropdown-input-wrap {
    padding: 9px;

    border-bottom:
        1px solid
        #e8efed;

    background:
        #f8fbfa;
}


/* Search field */

.lfd-hmreg-phone-row
.ts-dropdown
.dropdown-input {
    width: 100%;

    min-height: 42px;

    padding:
        9px
        12px;

    border:
        1px solid
        #d6e2df;

    border-radius: 11px;

    outline: none;

    background:
        #ffffff;

    color:
        #284742;

    font-family:
        "Nunito",
        sans-serif;

    font-size: 0.78rem;

    box-shadow: none;
}


.lfd-hmreg-phone-row
.ts-dropdown
.dropdown-input:focus {
    border-color:
        var(--lfd-hmreg-teal);

    box-shadow:
        0 0 0 3px
        rgba(0, 174, 157, 0.08);
}


/* Results */

.lfd-hmreg-phone-row
.ts-dropdown-content {
    max-height: 270px;

    padding: 6px;
}


.lfd-hmreg-phone-row
.ts-dropdown
.option {
    padding:
        10px
        11px;

    border-radius: 9px;

    color:
        #36524d;

    font-size: 0.76rem;

    white-space: nowrap;
}


.lfd-hmreg-phone-row
.ts-dropdown
.option.active {
    background:
        #eef9f7;

    color:
        #008f82;
}