﻿:root {
    /*Colors*/
    --colors-white: #FFFFFF;
    --blue-500: #194E7E;
    --colors-brand-green-500: #448282;
    --green-600: #366868;
    --text-primary-color: #101828;
    --text-light-color-500: #475467;
    --text-light-color-800: #182230;
    --button-secondary-text-color: #344054;
    --border-primary: #D0D5DD;
    --colors-gray-light-mode-100: #F2F4F7;
    --colors-gray-light-mode-50: #F9FAFB;
    --colors-gray-light-mode-25: #FCFCFD;
    --colors-brand-green-800: #1F3B3B;
    --colors-brand-green-400: #699B9B;
    --colors-gray-light-mode-500: #667085;
    --colors-blue-50: #C5D3DF;
    --colors-blue-25: #DCE5EC;
    --colors-blue-800: #002648;
    --colors-gray-light-mode-900: #101828;
    --colors-gray-light-mode-200: #EAECF0;
    --colors-text-text-tertiary-600: #535862;
    --colors-Border-border-primary: #D5D7DA;
    --colors-button-secondary-color-border: #4F779C;
    --colors-button-secondary-color-text: #002F5A;
    --colors-Effects-Shadows-shadow-xs: rgba(10, 13, 18, 0.05);
    --colors-button-tertiary-color-fg: #002F5A;
    --colors-Gradient-skeuemorphic-gradient-border: rgba(255, 255, 255, 0.12);
    --colors-Error-500: #F04438;
    /*Font Sizes*/

    --spacing-8xl: 4.5rem;
    --spacing-7xl: 4rem;
    --spacing-6xl: 3rem;
    --spacing-5xl: 2.5rem;
    --spacing-4xl: 2rem;
    --spacing-3xl: 1.5rem;
    --spacing-xl: 1rem;
    --spacing-lg: 0.75rem;
    --spacing-sm: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-full: 9999px;
    --space-min: 0.75rem; /* mobile minimum (12px) */
    --space-pref: 1vw + 0.5rem; /* fluid growth */
    --space-max: 2rem; /* desktop maximum (32px) */

    --font-size-sm: clamp(0.75rem, 0.8vw + 0.6rem, 0.875rem);
    --font-size-base: clamp(0.875rem, 0.9vw + 0.6rem, 1rem);
    --font-size-lg: clamp(1rem, 1vw + 0.75rem, 1.125rem);
    --font-size-xl: clamp(1.125rem, 1vw + 0.75rem, 1.25rem);
    --font-size-3xl: clamp(1.5rem, 2vw + 1rem, 1.875rem);
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('/fonts/MYRIADPRO-REGULAR.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Bold';
    src: url('/fonts/MYRIADPRO-SEMIBOLD.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}

.body {
    background-color: #FCFCFD;
    font-family: "Myriad Pro", Myriad, "Liberation Sans", "Nimbus Sans L", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--text-light-color-500);
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}

::selection {
    background-color: #4d9090;
    color: var(--colors-white);
}

main {
/*    max-width: 1440px;*/
}

a {
    color: var(--colors-brand-green-500);
    text-decoration: none;
    transition: all 0.1s ease-in-out;
}

a:hover {
    text-decoration: none;
}

h1 {
    font-size: 2.25rem;
    color: var(--colors-text-text-primary-800, 002548);
    text-align: center;
    font-family: "Myriad Pro";
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.72px;
}


/* START CUSTOM STYLING FOR LP2 */
p {
    margin-bottom: 0;
}

/** CUSTOM CLASSES*/

/* Height spacers */
.spacer-h {
    height: var(--spacing-4xl);
}


/*Width spacers*/
.spacer-w {
    width: clamp(0.75rem, 1vw + 0.5rem, 2rem);
}


.text {
    font-family: "Myriad Pro", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: var(--colors-gray-light-mode-600, #FFF);
}

.text-sm {
    font-size: clamp(0.75rem, 0.8vw + 0.6rem, 0.875rem);
    line-height: 1.4;
}

.text-base {
    font-size: clamp(0.875rem, 0.9vw + 0.6rem, 1rem);
    line-height: 1.5;
}

.text-lg {
    color: var(--colors-gray-light-mode-50, #FFF);
    text-align: center;
    font-size: clamp(1rem, 1vw + 0.75rem, 1.125rem);
    line-height: 1.5;
    font-weight: 400;
}

.text-xl {
    color: var(--colors-gray-light-mode-800, #182230);
    font-weight: 600;
    font-size: clamp(1.125rem, 1vw + 0.75rem, 1.25rem);
    line-height: 1.6;
}

.text-3xl {
    color: var(--Colors-Text-text-primary_on-brand, #FFF);
    text-align: center;
    font-weight: 600;
    font-size: clamp(1.5rem, 2vw + 1rem, 1.875rem);
    line-height: 1.3;
}


.text-sm,
.text-base,
.text-lg,
.text-xl,
.text-3xl {
    margin: 0;
}

.header {
    display: flex;
    flex-direction: column;
    background-color: var(--blue-500);
    justify-content: center;
    align-items: center;
    width: 100%;
    color: var(--colors-white);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}
.header-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 294px;
}

.header-left .company-name {
    color: var(--colors-gray-light-mode-50, #F9FAFB);
    text-align: justify;
    font-size: clamp(1rem, 1vw + 0.75rem, 1.125rem);
    line-height: 1.5;
    font-weight: 600;
}

.header-left .product-title {
    font-weight: 400;
    font-size: clamp(0.75rem, 0.8vw + 0.6rem, 0.875rem);
    line-height: 1.4;
}
.header-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.header-right p {
    font-size: 12px;
}

.hero-section-1 {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4xl);
}

.left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4xl);
}
.hero-title {
    padding: var(--spacing-4xl) var(--spacing-4xl) 0 var(--spacing-4xl);
}
.left h1 {
    color: var(--colors-gray-light-mode-900) !important;
}
.left p {
    text-align: center;
    color: var(--colors-text-text-tertiary-600, #475467);
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.hero-section-1 #sponsor {
    display: none;
    color: var(--colors-brand-green-600, #2C7171);
    font-family: "Myriad Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}
.hero-action {
    padding: 0 2rem;
    text-align: center;
}
.hero-action a {
    color: var(--colors-brand-green-500, #378E8E);
    font-family: "Myriad Pro";
    font-size: 20px;
    font-style: normal;
    line-height: 30px;
    text-decoration-line: underline;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.hero-action span {
    color: var(--Gray-neutral-600, var(--Colors-Gray-neutral-600, #4D5761));
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}
.hero-image {
    padding: 0 var(--spacing-4xl);
}
.hero-image-container {
    display: flex;
    padding: var(--spacing-4xl, 32px) var(--spacing-4xl, 32px);
    align-items: flex-start;
    align-self: stretch;
}
.hero-bg-image-mobile {
    background: url(../images/UX_Hero.jpg) lightgray -46.072px 0px / 136.357% 100% no-repeat;
    background-size: cover;
    background-position: center;
    height: 280px;
    width: 100%;
    margin: auto;
    border-radius: var(--radius-xl, 12px);
}

.enroll-form {
    border: 2px solid var(--colors-gray-light-mode-200);
    border-radius: 15px;
    background-color: white;
    padding: 24px var(--spacing-3xl) 2rem var(--spacing-3xl);
}
.enroll-form h1 {
    color: var(--colors-gray-light-mode-800, #182230);
    font-family: "Myriad Pro";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
}
.enroll-form-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--colors-gray-light-mode-500)
}
.enroll-form-secure-text {
    color: var(--colors-gray-light-mode-500);
    font-size: 14px;
    font-weight: 200;
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 24px;
}
.enroll-form button {
    padding: 16px 0;
}
.enroll-form-header a {
    display: none;
}
.enroll-form-header h1 {
    text-align: left;
}
.login-here {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--colors-gray-light-mode-500, #667085);
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.login-here a {
    color: var(--colors-brand-green-500, #378E8E);
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 150% */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.explore-feature, .we-are-here {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4xl);
    padding: var(--spacing-4xl, 32px);
}
.explore-feature-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.plans {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    gap: 16px;
}
.plan {
    display: flex;
    flex: 1 1 100%;
    gap: var(--spacing-xl);
    box-sizing: border-box;
}
.explore-plan-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: var(--blue-500);
    border-radius: 50%;
    border: 3px solid var(--colors-blue-50);
    height: 32px;
    width: 32px;
    flex-shrink: 0;
}

.we-are-here-content {
    background-color: var(--blue-500);
    padding: var(--spacing-5xl) var(--spacing-3xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4xl);
    border-radius: var(--radius-xl, 12px);
}
.we-are-here-title-mobile {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}
.we-are-here-title-mobile  h1 {
    color: var(--Colors-Text-text-primary_on-brand, #FFF);
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
}
.we-are-here-title-mobile div {
    color: var(--colors-gray-light-mode-50, #F9FAFB);
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.we-are-here-title-desktop {
    display: none;
}

.we-are-here-btn-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.we-are-here-btn-group a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    font-weight: 600;
}
#toll-free-number {
    display: none;
}
/* BUTTON STYLES*/
.btn-custom {
    width: 100%;
    border-radius: var(--radius-full, 9999px);
    align-self: stretch;
    padding: var(--spacing-lg, 12px) 18px;
    color: #FFF;
}
.btn-primary-custom {
    background: var(--colors-brand-green-500, #448282);
    border: 1px solid var(--colors-brand-green-400, #699B9B);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.btn-outline-custom {
    border: 1px solid var(--colors-button-secondary-color-border);
    background: #FFF;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    color: var(--colors-button-secondary-color-text);
    font-weight: 600;
}

.btn-custom:hover {
    color: #FFF;
}
#schedule-a-call.btn-custom:hover {
    color: #000;
}
#helpBtn {
    position: fixed;
    bottom: 450px;
    right: -35px;
    z-index: 999;
    outline: none;
    background-color: var(--blue-500);
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease-out;
    border-radius: var(--radius-md, 8px) var(--radius-md, 8px) var(--radius-none, 0) var(--radius-none, 0);
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    transform: rotate(-90deg);
    color: #FFF;
    padding: var(--spacing-sm, 6px) var(--spacing-xl, 16px) var(--spacing-xs, 4px) var(--spacing-xl, 16px);
    gap: var(--spacing-xs, 4px);
}
#helpBtn #phone_in_talk {
    display: none;
}
/* FOOTER STYLES*/
.footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-3xl);
    padding: var(--spacing-7xl) var(--spacing-4xl);
    background: var(--colors-brand-blue-600, #003B70);
    color: #FFF;
}
.footer p {
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}
.footer .copyright-text {
    color: var(--Colors-Base-white, #FFF);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; 
}
.footer .disclosures-text {
    color: var(--Colors-Base-white, #FFF);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin: 0;
}

@media (min-width: 768px) {
    .header {
        padding: var(--spacing-3xl, 24px) var(--spacing-8xl, 80px);
    }
    .hero-section-1 {
        display: flex;
        flex-direction: column;
        padding: var(--spacing-3xl, 24px) var(--spacing-8xl, 80px);
        justify-content: center;
        align-items: center;
        gap: 64px var(--spacing-7xl, 64px);
        flex-wrap: wrap;
        margin-top: 64px;
        padding-bottom: 64px;
    }
    .hero-section-1 #sponsor {
        display: block;
    }
    .hero-section-1-top {
        display: flex;
        justify-content: space-between;
        gap: 64px;
    }
    .left {
        width: 100%;
        text-align: left;
        flex: 0.6;
        display: flex;
        flex-direction: column;
    }
    .right {
        display: flex;
        flex: 0.4;
    }
    .left h3 {
        color: var(--colors-brand-green-600, #2C7171);
        font-family: "Myriad Pro";
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 32px;
    }
    .left h1 {
        color: var(--colors-gray-light-mode-900, #101828);
        font-family: "Myriad Pro";
        font-size: 72px;
        font-style: normal;
        font-weight: 600;
        line-height: 76px;
        letter-spacing: -1.44px;
        text-align: left;
    }

    .left p {
        color: var(--colors-gray-light-mode-600, #475467);
        font-family: "Myriad Pro";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
        text-align: left;
    }
    .hero-title {
        padding: 0;
    }

    .hero-action {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 24px;
        padding: 0;
    }

    .hero-action p {
        color: var(--Gray-neutral-600, var(--Colors-Gray-neutral-600, #4D5761));
        font-family: "Myriad Pro";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px;
        text-align: left;
    }

    .hero-action span {
        color: var(--Gray-neutral-600, var(--Colors-Gray-neutral-600, #4D5761));
        font-family: "Myriad Pro";
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 30px;
    }

    .hero-action a {
        color: var(--colors-brand-green-500, #378E8E);
        font-family: "Myriad Pro";
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 30px;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }
    .hero-bg-image {
        background: url(../images/UX_Hero.jpg) lightgray 0px -201.383px / 100% 168.91% no-repeat;
        background-size: cover;
        background-position: center;
        height: 480px;
        width: 100%;
        margin: auto;
        border-radius: var(--radius-xl, 12px);
    }

    .hero-bg-image-mobile, .hero-image-container {
        display: none;
    }

    .hero-image-inner {
        background-image: url(../images/UX_Hero.jpg);
        background-size: cover;
        background-position: center;
        height: 280px;
        border-radius: 10px;
        margin: auto;
        display: block;
    }
    #hide-on-large-screen, #large-screen-hero-image {
        display: none;
    }
    .header {
        flex-direction: row;
        padding: var(--spacing-3xl) var(--spacing-8xl)
    }
    .header-left {
        justify-content: flex-start;
        align-items: flex-start;
    }
    .hero-section {
        padding: var(--spacing-4xl) 0;
        flex-direction: row;
        gap: var(--spacing-lg);
        max-height: 450px;
    }
    .hero-text {
        flex: 0.60;
    }
    .hero-title h1, .hero-title p {
        text-align: left;
    }
    .hero-title h1 {
        color: var(--colors-gray-light-mode-900, #101828);
        font-family: "Myriad Pro";
        font-size: 72px;
        font-style: normal;
        font-weight: 600;
        font-family: "Myriad Pro";
        line-height: 76px;
        letter-spacing: -1.44px;
    }
    .hero-title p {
        font-family: "Myriad Pro";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px; 
    }
    .hero-title > #sponsor {
        display: block;
    }

    .enroll-form-header {
        display: flex;
        justify-content: space-between;
        width: 100%
    }
    .enroll-form-header h1 {
        font-size: 20px;
    }
    .enroll-form-header a {
        display: block;
    }
    .enroll-form input::placeholder {
        font-size: 12px;
    }
    .enroll-form label {
        font-size: 12px;
    }
    .enroll-form button {
        padding: 10px;
        font-size: 12px;
    }
    .enroll-form button span{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .enroll-form {
        display: flex;
        width: 512px;
        padding: var(--spacing-4xl, 32px) var(--spacing-3xl, 24px);
        flex-direction: column;
        align-items: center;
        gap: 24px;
        height: 100%;
    }

    .enroll-form .form-fields {
        width: 100%;
    }

    .enroll-form .form-fields form {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .enroll-form .form-fields form #form-button-group {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .enroll-form .form-fields form #form-button-group .login-here {
        flex-direction: row;
        gap: 16px;
        color: var(--colors-gray-light-mode-500, #667085);
        font-family: "Myriad Pro";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px;
    }
    .login-here a {
        color: var(--colors-brand-green-500, #378E8E);
        font-family: "Myriad Pro";
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 30px;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }
    #secure-site {
        display: flex;
        font-size: 10px;
    }
    .enroll-form-secure-text {
        display: none;
        padding-top: 0;
    }
    .hero-image {
        display: none;
    }
    #large-screen-hero-image {
        display: block;
    }
    .explore-feature {
        border-bottom: 1px solid var(--colors-gray-light-mode-200, #EAECF0);
        background: var(--colors-gray-light-mode-100, #F2F4F7);
        padding: var(--spacing-3xl, 24px) var(--spacing-8xl, 80px);
    }
    .explore-feature-title h1 {
        color: var(--colors-brand-blue-800, #002548);
        text-align: center;
        font-family: "Myriad Pro";
        font-size: 60px;
        font-style: normal;
        font-weight: 600;
        line-height: 64px;
        letter-spacing: -1.2px;
    }
    .explore-feature-title p {
        color: var(--colors-gray-light-mode-700, #344054);
        text-align: center;
        font-family: "Myriad Pro";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px;
    }
    .plans {
        display: flex;
        flex-wrap: wrap;
        box-sizing: border-box;
        gap: 16px;
    }
    .plan {
        display: flex;
        height: 312px;
        min-width: 320px;
        padding: var(--spacing-4xl, 32px);
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-3xl, 24px);
        flex: 1 1 calc(33.33% - 24px);
        border-radius: var(--radius-xl, 12px);
        border: 1px solid var(--Gradient-skeuemorphic-gradient-border, rgba(255, 255, 255, 0.12));
        background: var(--colors-gray-light-mode-25, #FCFCFD);
        box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
        overflow: hidden;
    }
    .explore-plan-text {
        display: flex;
        flex-direction: column;
        height: 100%;
        flex: 1;
        min-height: 0;
        gap: 8px;
    }
    .explore-plan-text div {
        color: var(--colors-gray-light-mode-800, #182230);
        text-align: center;
        font-family: "Myriad Pro";
        font-size: 30px;
        font-style: normal;
        font-weight: 600;
        line-height: 38px;
    }
    .explore-plan-text .description {
        color: var(--colors-gray-light-mode-600, #475467);
        text-align: center;
        font-family: "Myriad Pro";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }
    .explore-plan-text .footnote {
        color: var(--colors-gray-light-mode-600, #475467);
        font-family: "Myriad Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        margin-top: auto;
        white-space: normal;
        word-break: break-word;
    }
    .we-are-here {
        padding: var(--spacing-3xl, 24px) var(--spacing-8xl, 80px);
    }
    .we-are-here-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: var(--spacing-6xl, 48px) var(--spacing-7xl, 64px);
    }
    .we-are-here-content .we-are-here-title-desktop {
        flex: 0.75;
    }
    .we-are-here-content .we-are-here-btn-group {
        flex: 0.25;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-2xl, 20px);
    }
    .we-are-here-content a {
        padding: var(--spacing-xl, 16px) 22px;
    }
    .we-are-here-content p {
        max-width: 840px;
        align-self: stretch;
        color: var(--colors-gray-light-mode-50, #F9FAFB);
        font-family: "Myriad Pro";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px;
    }
    .we-are-here-title-desktop {
        display: flex;
        flex-direction: column;
        color: #FFF;
    }
    .we-are-here-title-desktop h1, .we-are-here-title-desktop p {
        text-align: left;
    }
    .we-are-here-title-desktop h1 {
        color: var(--Colors-Text-text-primary_on-brand, #FFF);
        font-family: "Myriad Pro";
        font-size: 48px;
        font-style: normal;
        font-weight: 600;
        line-height: 54px;
        letter-spacing: -0.96px;
    }
    .we-are-here-title-mobile {
        display: none;
    }
    #helpBtn {
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 999;
        border: 4px solid #4F779C;
        outline: none;
        background-color: var(--blue-500);
        cursor: pointer;
        text-align: center;
        padding: 15px 0px 0px 0px;
        transition: all 0.2s ease-out;
        width: 104px;
        height: 104px;
        border-radius: 50%;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        transform: rotate(0deg);

        color: var(--Colors-Base-white, #FFF);
        font-family: "Myriad Pro";
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px; 
    }
    #helpBtn #phone_in_talk {
        display: block;
    }
    .footer {
        padding: var(--spacing-3xl, 24px) var(--spacing-8xl, 80px);
    }
}


/* END CUSTOM STYLING FOR LP2 */

#topBtn {
    position: fixed;
    bottom: 165px;
    right:0;
    z-index: 998;
    outline: none;
    background-color: var(--colors-gray-light-mode-25);
    color: #698CAB;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.2s ease-out;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 8px;
    justify-content: center;
    align-items: center;
    display: none;
    border: 2px solid var(--colors-blue-25);
    box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.10), 0px 1px 2px 0px rgba(16, 24, 40, 0.06);
    text-decoration: none;
}

.help-icon {
    display: block;
    width: 28px;
    height: 28px;
}

.parsley-errors-list.filled {
    background: #FADCE0;
    color: #B30032;
    font-size: 90%;
    padding: 5px;
}

.no-state {
    display: none;
}

.parsley-errors-list.filled li {
    font-size: 14px;
    font-weight: 300;
    list-style-type: none;
    margin: 0;
}

input.parsley-error, select.parsley-error, textarea.parsley-error {
    background: var(--colors-white);
    color: #B30032;
}

input.parsley-success, select.parsley-success, textarea.parsley-success {
    background-color: var(--colors-white);
}

label {
    font-weight: 400;
}

.form-control {
    border: 2px solid #dddddd;
    border-radius: 0px;
}

    .form-control:focus {
        border-color: #222d63;
        box-shadow: none;
    }

.form-check-label {
    line-height: 2em;
    margin-bottom: 0;
}

input[type="checkbox"], input[type="radio"] {
    height: 20px;
    width: 20px;
}

.form-check .form-check-input {
    margin-right: 0.5em;
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

.form-check-input:checked {
    background-color: #285476;
    border-color: #285476;
}

.form-check-input:focus {
    border-color: #285476;
    box-shadow: none;
}

.triangle-left {
    width: 0;
    height: 0;
    border-width: 0 0 15px 50px;
    border-color: transparent transparent #448182 transparent;
    border-style: solid;
    transform: rotate(180deg);
}

.triangle-right {
    width: 0;
    height: 0;
    border-width: 15px 0 0 50px;
    border-color: transparent transparent transparent #448182;
    border-style: solid;
    transform: rotate(180deg);
}


.header-tfn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column;
    font-size: 2.2em;
    font-weight: 600;
    flex-flow: column;
    gap: 12px;
}


.tfn-link {
    color: var(--colors-white);
    text-decoration: none;
    font-size: 30px;
    background-color: var(--colors-brand-green-500);
}

    .tfn-link:hover {
        color: var(--colors-white);
        text-decoration: underline;
    }

.tfn-info {
    font-size: 24px;
    margin-left: auto;
    margin-top: 12px;
    line-height: 12px;
    margin-right: auto;
}

.tfn-speack {
    font-weight: 600;
}

.tfn-time {
    font-weight: 200;
}

.main-content {
    position: relative;
    max-width: 1440px;
    background-color: var(--colors-white);
    color: #000;
    margin: auto;
}

.opportunity-content {
    background-color: var(--colors-blue-25);
    width: 100%;
    margin-top: 30px;
}

.opportunity-card {
    border: 1px solid white;
    background-color: white;
    border-radius: 10px;
    text-align: center;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    box-shadow: 2px 2px 4px #999;
}

.opportunity-header {
    font-size: 30px;
    padding: 10px 10px;
    color: var(--text-light-color-800);
    text-align: center;
    font-weight: 600;
}

.opportunity-text {
    color: var(--text-light-color-500);
    font-size: 16px;
    font-weight: 400;
    padding: 15px 25px;
    line-height: 24px;
}

.opportunity-radio {
    color: white;
    background-color: var(--blue-500);
    font-size: 24px;
    border-radius: 50%;
    border: 3px solid var(--colors-blue-50);
    padding: 8px;
    margin: 20px auto
}

.opportunity-body-text {
    font-size: 30px;
    font-weight: 400;
    margin: 60px 20px;
    line-height: 38px;
}

.opportunity-switch {
    background-color: var(--blue-500);
    color: var(--colors-white);
    padding: 40px;
    border-radius: 10px;
    margin: auto;
}

.switch-text {
    color: var(--colors-gray-light-mode-50);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.switch-buttons {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    height: 100%;
}

.help-call-button,
.enroll-button,
.switch-call-button {
    background-color: var(--colors-brand-green-500);
    color: var(--colors-white);
    font-size: 16px;
    margin: 0;
    width: 100%;
    height: 60px;
    font-weight: 600;
    line-height: 28px;
    flex-basis: 234px;
}

.help-call-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.help-call-button:hover,
.enroll-button:hover,
.switch-call-button:hover {
    color: var(--colors-white);
    text-decoration: underline;
}
.help-call-button img {
    width: 20px;
    height: 20px;
}

.help-modal-phone-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.help-modal-or {
    color: var(--colors-gray-light-mode-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    overflow: hidden;
    text-align: center;
    margin: 16px 0;
}

    .help-modal-or::before,
    .help-modal-or::after {
        background-color: var(--border-primary);
        content: "";
        display: inline-block;
        height: 1px;
        position: relative;
        vertical-align: middle;
        width: 50%;
    }

    .help-modal-or::before {
        right: 24px;
        margin-left: -50%;
    }

    .help-modal-or::after {
        left: 24px;
        margin-right: -50%;
    }

.help-modal-time {
    color: var(--text-light-color-500);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}

.help-modal-available-dot {
    margin-right: 8px;
}

.enroll-button {
    width: 50%;
}

.app-button-primary,
.app-button-secondary {
    width: 100%;
}

.help-schedule-button,
.quote-button,
.switch-schedule-button {
    background-color: white;
    border: 1px solid var(--border-primary);
    width: 100%;
    height: 60px;
    font-size: 18px;
    color: var(--button-secondary-text-color);
    font-weight: 600;
    line-height: 28px;
    flex-basis: 234px;
}

.help-schedule-button {
    width: 100%;
}

.quote-button {
    width: 50%;
}

.discount-section {
    margin: auto;
    color: var(--text-light-color-500);
}

.discount-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.discount-text {
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    padding: 50px 0px;
    color: var(--text-light-color-500);
}

.discount-buttons {
    display: flex;
    justify-content: space-evenly;
    gap: 12px;
}

.content-container {
    position: relative;
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
    background-color: var(--colors-white);
}

.vertical-line {
    border-left: 1px solid white;
    height: 120px;
    margin-right: 30px;
}

.hero-main {
    width: 50%;
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    float: left;
    padding: 10px;
}

.underwritten-by {
    font-size: 16px;
    font-weight: 200;
}

.company-name-small {
    margin-top: 0em;
    font-size: 1.2em;
    line-height: 1em;
    font-weight: 600;
}

.company-tiny {
    margin-top: 0em;
    font-size: .75em;
    line-height: 1em;
    font-weight: 700;
}

.company-name-medium {
    margin-top: 0em;
    font-size: 1.6em;
    line-height: 1em;
    font-weight: 700;
}

.hero-content-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1em;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* color: var(--colors-white);*/
    font-size: 0.8em;
    padding-left: 1.5em;
    padding-right: 1.5em;
}

.hero-holder {
}

.hero-link {
    color: #52cbf5;
    text-decoration: underline;
}

    .hero-link:hover {
        color: var(--colors-white);
        text-decoration: none;
    }

.hero-content-main {
/*    width: 100%;
    padding: var(--spacing-4xl) var(--spacing-lg); */
}

.hero-main-heading {
    font-size: 72px;
    line-height: 90px;
    font-weight: 700;
}

.hero-subheading {
    font-size: 24px;
    line-height: 32px;
    font-weight: 200;
}

.checkmark {
    color: #4d9090;
    font-size: 1.5em;
}

.checkmark-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2em;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.change-state-text {
    font-size: 20px;
    font-weight: 200;
    padding-right: 20px;
    line-height: 30px
}

.content-box {
/*    max-width: 1440px;
    padding: 64px 112px;
    margin: auto;*/
}

.start-enroll-button {
    color: var(--colors-white);
    background-color: var(--colors-brand-green-500);
    width: 100%;
    margin-top: 24px;
    font-size: 18px;
    font-weight: 600;
}
.enroll-discount-img {
    background-image: url(../images/ux_discount.jpg);
    background-size: cover;
    background-position: center;
    height: 592px;
    border-radius: 10px;
    max-width: 1160px;
    margin: auto;
    width: 100%;
}

.medical-supp {
    font-size: 24px;
    color: var(--green-600);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-text-field {
    height: 50px;
    margin-bottom: 0px;
    padding: 0.5em 1em;
    border-radius: 8px;
}

.text-span {
    position: relative;
    top: -15px;
    font-size: 0.6em;
    line-height: 0.8em;
    font-weight: 400;
}

.footer-section {
    background-color: #003a70;
    color: var(--colors-white);
    font-size: 0.8em;
}

.footer-container {
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
    padding: 2em;
}

.disclosures-text {
    margin-top: 2em;
    line-height: 1.5em;
}

.lp-header-container {
    display: flex;
    flex-flow: column;
    gap: 8px;
    margin-right: auto;
    justify-content: space-between;
}

.lp-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--blue-500);
    color: var(--colors-white);
    max-width: 1440px;
    padding: 24px 80px;
    margin: 0 auto;
}

.lp-header-tfn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column;
    font-size: 2.2em;
    font-weight: 600;
    flex-flow: column;
    margin-right: 50px
}

.lp-tfn-link {
    color: var(--colors-white);
    text-decoration: none;
    font-size: 30px;
    background-color: var(--colors-brand-green-500);
    font-weight: 600;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 38px;
    padding: 16px 40px;
}

    .lp-tfn-link:hover {
        color: var(--colors-white);
        text-decoration: underline;
    }

    .lp-tfn-link img {
        display: none;
    }

.lp-tfn-info {
    font-size: 24px;
    line-height: 32px;
    margin: 0 24px;
    font-weight: 400;
}

.lp-tfn-time {
    margin: 0;
}

.lp-hero-section {
    margin: auto;
    color: var(--text-light-color-500);
}

.lp-hero-section-content-box {
    padding-top: 32px;
    margin: 0 auto;
}

.lp-hero-section-row {
    display: flex;
    gap: 64px;
    margin-top: 30px;
}

.lp-hero-text-body {
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 100%;
}

.lp-hero-header {
    color: var(--text-primary-color);
    margin-bottom: 20px;
    font-size: 60px;
    font-weight: 600;
    line-height: 64px;
    letter-spacing: -1.2px;
}

.lp-hero-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: var(--colors-gray-light-mode-500);
    margin-bottom: 24px;
}

.lp-free-quote {
    margin-bottom: 48px;
    color: var(--colors-gray-light-mode-500);
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}

.lp-features-section {
    background-color: var(--colors-gray-light-mode-100);
    width: 100%;
    margin: auto;
}

.lp-features-section--grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 32px;
    grid-column-gap: 20px;
}

.lp-features-section--grid-box--card {
    width: 100%;
    padding: 0;
}

.lp-feature-header {
    font-size: 60px;
    font-weight: 600;
    text-align: center;
    color: var(--colors-blue-800);
    line-height: 72px;
    letter-spacing: -1.2px;
}

.lp-feature-text {
    margin: 0 auto;
}

.lp-feature-head {
    text-align: center;
}

.lp-feature-head-text {
    font-weight: 400;
    font-size: 20px;
    color: var(--button-secondary-text-color);
}

.lp-feature-card {
    border: 1px solid white;
    background-color: white;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0px 8px 4px var(--border-primary);
    margin: 0 0 16px;
    padding: 32px;
    height: 100%;
}

.opportunity-header {
    font-size: 30px;
    padding: 0;
    color: var(--text-light-color-800);
    text-align: center;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 12px;
}

.opportunity-text {
    color: var(--text-light-color-500);
    font-size: 16px;
    font-weight: 400;
    padding: 0px;
    line-height: 24px;
}

.opportunity-radio {
    color: white;
    background-color: var(--blue-500);
    font-size: 32px;
    border-radius: 50%;
    border: 3px solid var(--colors-blue-50);
    padding: 18px;
    margin: 0 auto 24px;
    height: 64px;
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.opportunity-body-text {
    font-size: 30px;
    font-weight: 400;
    margin: 60px 20px;
    line-height: 38px;
}

.hero-form-colLtop {
    margin: 30px 0px;
    display: flex;
}

.lp-enroll-section {
    background-color: var(--colors-blue-25);
    margin: auto;
}

.lp-enroll-section-row {
    display: flex;
    gap: 64px;
}

.lp-enroll-text {
    display: flex;
    flex-flow: column;
    justify-content: center;
    font-size: 20px;
}

.lp-enroll-started {
    font-weight: 600;
    color: var(--green-600);
    line-height: 30px;
    margin-bottom: 16px;
}

.lp-enroll-main-heading {
    color: var(--text-primary-color);
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 54px;
    letter-spacing: -0.96px;
    margin-bottom: 24px;
}

.lp-enroll-sub-text {
    color: var(--colors-gray-light-mode-500);
    font-weight: 200;
}

#enrollForm label {
    color: var(--colors-gray-light-mode-500, #667085);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.lp-enroll-login {
    display: flex;
    gap: 16px;
    width: 100%;
}

.login-help-text {
    color: var(--colors-gray-light-mode-500);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

#loginBtn {
    color: var(--colors-brand-green-500);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    text-decoration-line: underline;
}

/*.lp-enroll-card {
    display: flex;
    flex-shrink: 0;
    width: 512px;
    height: 100%;
    padding: var(--spacing-4xl);
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--radius-xl, 12px);
    border: 1px solid var(--colors-gray-light-mode-200);
    background: var(--colors-white);
    box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.10), 0px 1px 2px 0px rgba(16, 24, 40, 0.06);
}*/

.lp-help-section {
    background-color: var(--blue-500);
    color: var(--colors-white);
    padding: 48px;
    border-radius: 12px;
    background-image: url(../images2/help-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 00px auto;
}

.lp-help-section--title {
    color: var(--colors-white);
    font-size: 60px;
    font-weight: 600;
    line-height: 64px;
    letter-spacing: -1.2px;
    padding-bottom: 20px;
}

.lp-help-buttons {
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.change-state-section {
    display: flex;
    justify-content: start;
    align-items: center;
}

.lp-state-text {
    font-size: 20px;
    color: var(--blue-500);
    font-weight: 600;
    line-height: 30px;
}

.change-state-select {
    margin-left: 20px;
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid var(--border-primary);
    width: 250px;
    height: 44px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    appearance: none;
    background-image: url("../images2/arrow-down.png");
    background-position-x: calc(100% - 24px);
    background-position-y: center;
    background-repeat: no-repeat;
}

.change-state-select {
    color: var(--colors-gray-light-mode-500);
}

.lp-plan-section {
    max-width: 100%;
    margin: auto;
    text-align: center;
}

.lp-plan-subtext {
    color: var(--button-secondary-text-color);
    font-size: 20px;
    font-weight: 400;
    padding: 0 32px;
    margin-bottom: 24px;
}

.lp-plan-header {
    line-height: 64px;
    font-size: 60px;
    font-weight: 600;
    color: var(--text-primary-color);
    margin-bottom: 24px;
    padding: 0 32px;
}

.lp-plan-reward {
    font-size: 30px;
    color: var(--green-600);
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 16px;
}

.lp-plan-note {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light-color-800);
    margin-bottom: 40px;
    line-height: 30px;
}

.lp-plan-table {
    display: flex;
    justify-content: space-between;
    gap: 34px;
    margin-bottom: 40px;
}

.lp-plan-main-table {
    width: 100%;
    border: 1px solid var(--border-primary);
    border-radius: 12px;
}

    .lp-plan-main-table > table > thead > tr > td:first-of-type {
        width: 229px;
    }

    .lp-plan-main-table > table > tbody > tr > td:first-of-type {
        color: var(--text-primary-color);
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        padding: 0 20px;
        display: flex;
        align-items: center;
        height: 100%;
        justify-content: space-between;
        gap: 24px;
    }

.lp-plan-2020-table {
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    flex-basis: 180px;
    flex-shrink: 0;
}

    .lp-plan-2020-table > table > thead > tr > td:first-of-type {
        color: var(--colors-white);
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
    }

.lp-plan-table thead {
    height: 70px;
    color: var(--colors-white);
    background-color: #003B70;
    font-size: 20px;
    font-weight: 600;
    vertical-align: middle;
}

.mini-comments {
    font-size: 14px;
}

.lp-plan-table thead tr {
    height: 60px;
}

.lp-plan-text {
    text-align: left;
    color: var(--text-light-color-800);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.lp-benefits {
    text-align: left;
    vertical-align: middle;
    position: relative;
}

.text-copay {
    display: block;
    white-space: nowrap;
    position: absolute;
    left: 50%;
    top: calc(100% - 24px);
    transform: translateX(-50%);
}

.lp-comments-icon {
    display: inline-block;
    float: right;
    cursor: pointer;
}

.lp-tooltip {
    display: none;
    position: absolute;
    background: var(--colors-blue-25);
    bottom: calc(100% - 16px);
    left: calc(100% - 120px - .5rem - 14px);
    min-width: 250px;
    padding: 12px;
    border-radius: 8px;
    gap: 8px;
    color: var(--colors-blue-800);
}

    .lp-tooltip:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 0;
        height: 0;
        bottom: -6px;
        border-top: 6px solid var(--colors-blue-25);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
    }

.lp-benefits-value {
    padding: 0 !important;
    vertical-align: middle;
    color: var(--text-light-color-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    position: relative;
}

    .lp-benefits-value > .fa {
        font-size: 24px;
    }

.lp-plangroup {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary-color);
}

.lp-footer-section {
    background-color: #003B70;
    max-width: 100%;
    margin: auto;
    position: relative;
    bottom: 0px;
}

    .lp-footer-section > p {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }



.lp-footer-text {
    color: var(--colors-white);
}

.lp-group-buttons {
    display: flex;
    justify-content: start;
    gap: 18px;
}

.unavailable-content {
    margin: auto;
    text-align: center;
    font-size: 40px;
    line-height: 45px;
}

.unavailable-content-text {
    font-size: 14px
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

#helpModal .modal-body {
    padding: 32px;
    display: flex;
    gap: 64px;
    width: 100%;
    justify-content: space-between;
}

.modal-body-left {
    flex-grow: 1;
}

    .modal-body-left a {
        color: var(--button-secondary-text-color);
        text-decoration: underline;
    }

.modal-body-right {
    align-self: center;
    flex-basis: 206px;
}

.close, .modal-title {
    background: transparent;
    color: var(--colors-white);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.modal-close {
    color: black;
    background-color: var(--colors-white);
    padding: 4px 6px 3px 6px;
    border-radius: 50%;
    font-size: 14px;
}

.modal-header {
    background-color: var(--blue-500);
    border-radius: 30px 30px 0px 0px !important;
    padding: 12px 24px;
    height: 64px;
}

.gethelp-question {
    color: var(--colors-brand-green-800);
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -0.96px;
}

.helpbackground {
    background-color: var(--colors-gray-light-mode-100);
    padding: 8px 12px;
    border-radius: 10px;
    margin: auto;
    display: flex;
    align-items: center;
}

table {
    margin: 0 !important;
    height: 100%;
    table-layout: fixed;
}

table > thead {
    border-radius: 12px;
}

table > thead > tr {
    border-radius: 12px;
}

table > thead > tr > td:first-of-type {
    border-top-left-radius: 12px;
}

table > thead > tr > td:last-of-type {
    border-top-right-radius: 12px;
}

table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

.lp-plan-main-table table tr td:first-of-type {
    border-right: 1px solid var(--border-primary);
}

table tr:last-of-type {
    border-bottom: transparent;
}

/*Header logo*/
.lp-header-logo {
    font-size: 40px;
    color: var(--colors-white);
    font-weight: 600;
    line-height: 22.851px;
}

.lp-header-logo-image {
    height: 48px;
}

/* Login modal */
.login-modal .modal-dialog {
    max-width: 480px;
}

.login-modal .modal-header {
    height: 60px;
    display: flex;
    align-content: center;
}

.login-modal .modal-title {
    margin: 0;
    display: flex;
    align-content: center;
    color: var(--colors-white, #FFF);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

    .login-modal .modal-title i {
        font-size: 32px;
        padding-right: 10px;
    }

.login-modal .modal-body {
    padding: 32px;
}

.login-modal--heading {
    color: var(--colors-brand-green-800);
    font-size: 30px;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 32px;
}

.login-modal--body {
    color: var(--colors-text-text-tertiary-600);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 32px;
}

.login-modal--error {
    margin-bottom: 32px;
    text-align: center;
    color: var(--colors-Error-500);
    display: none;
}

.login-modal--email label,
.login-modal--password label {
    color: var(--colors-gray-light-mode-500);
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}

.login-modal--email input,
.login-modal--password input {
    border-radius: 8px;
    border: 1px solid var(--colors-Border-border-primary);
    background: var(--colors-white);
    box-shadow: 0px 1px 2px 0px var(--colors-Effects-Shadows-shadow-xs);
}

.login-modal--email {
    margin-bottom: 16px;
}

/*.login-modal--password {
    margin-bottom: 20px;
}*/

.login-modal--forgot-password {
    color: var(--colors-button-tertiary-color-fg);
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
}

.login-modal .modal-footer {
    padding: 24px;
    margin: 0;
}

.login-modal--submit {
    width: 100%;
    margin: 0;
}

    .login-modal--submit button {
        width: 100%;
        display: flex;
        padding: 16px 22px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        flex: 1 0 0;
        color: var(--colors-white);
        font-family: Inter;
        font-size: 18px;
        font-weight: 600;
        line-height: 28px;
        border-radius: 9999px;
        border: 2px solid var(--colors-Gradient-skeuemorphic-gradient-border);
        background: var(--colors-brand-green-500);
        box-shadow: 0px 0px 0px 1px rgba(10, 13, 18, 0.18) inset, 0px -2px 0px 0px rgba(10, 13, 18, 0.05) inset, 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    }

        .login-modal--submit button:hover {
            color: var(--colors-white);
        }

/* Bootstrap overrides */
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
    background-color: var(--colors-gray-light-mode-100);
}

table tbody tr {
    max-height: 64px !important;
    height: 64px !important;
}

.modal-dialog {
    max-width: 660px;
    margin: 40px auto;
    min-height: calc(100% - 80px);
    display: flex;
    align-items: center;
    width: calc(100% - 60px);
}

.modal-content {
    border-radius: 30px !important;
    border: none;
}

/* Global overrrides */
::placeholder {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    flex: 1 0 0;
    overflow: hidden;
    color: var(--colors-gray-light-mode-500);
    text-overflow: ellipsis;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.font-weight-100 {
    font-weight: 100;
}

.font-weight-200 {
    font-weight: 200;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-800 {
    font-weight: 800;
}

.font-weight-900 {
    font-weight: 900;
}


.p-6 {
    padding: 2rem !important;
}
.info-card {
    display: flex;
    height: 312px;
    /*    width: 320px;*/
    padding: var(--spacing-4xl, 32px);
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-3xl, 24px);
    flex: 1 0 0;
    border-radius: var(--radius-xl, 12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
    overflow-y: hidden; /* ✅ prevents overlap, allows internal scroll if needed */
    overflow-x: hidden;
}
.info-card h5 {
    margin-bottom: 0;
    margin-top: 0;
}
.info-card-heading {
    color: #182230;
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    align-self: stretch;
}
.info-card-text {
    color: #475467;
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.info-card-bottom-text {
    color:  #475467;
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    text-align: left;
}
