:root {
    --bs-body-color: #707070;
    --bs-heading-color: #000000;
    --bs-color-red: #d8262f;
    --bs-danger-rgb: 216, 38, 47;
    --black-color: #000000;
    --white-color: #ffffff;
}

body {
    background-color: #ffffff;
}

.main-form-wrapper {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0 15px;
}

.fieldset-container {
    position: relative;
    width: 100%;
}

body {
    /* font-family: "sofia_proregular", sans-serif; */
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--bs-body-color);
}

img {
    border-style: none;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.card-heading {
    color: var(--bs-heading-color);
    line-height: 36px;
    margin-bottom: 20px;
    font-size: 2rem;
}

.card-sub-heading {
    font-size: 18px;
    line-height: 26px;
    color: #6c6560;
    padding-bottom: 20px;
}

.trt-static-content .feature-item {
    display: flex;
    align-items: center;
    background: #efeeeb;
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.19),
        inset -2px -2px 4px rgba(255, 255, 255, 0.7);
}

.trt-static-content .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #425fff33;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    transform-style: preserve-3d;
    box-shadow:
        3px 3px 3px rgba(0, 0, 0, 0.15),
        -4px -4px 4px rgba(255, 255, 255, 0.8);
}

.trt-static-content .feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: #000;
}

.trt-static-content .feature-text {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.trt-static-content .testimonial-card {
    max-width: 520px;
}

.btn-dark {
    background-color: #000000;
    background: linear-gradient(to bottom, #686868, #000000); /* red gradient */
    border-radius: 23px;
    padding: 12px 40px;
    color: var(--white-color);
    min-width: 150px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    min-height: 56px;
    box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.3);
}

.btn-dark:hover {
    background-color: #0c0c0c !important;
}

.intake-question-holder .card-footer {
    border: 0;
    padding: 0;
    background: none;
    display: flex;
    justify-content: flex-end;
    padding-top: 25px;
    padding-bottom: 12px;
}

.card-signin-box p {
    font-size: 14px;
}

.card-signin-box p a {
    color: #000;
    font-weight: 500;
}

.child-question-container .child-main-text h2,
.imh-question-text {
    color: #000000;
    line-height: 33px;
    margin-bottom: 24px;
    font-size: 26px;
    margin-top: 25px;
}

.radio-card {
    border: 1px solid #cfcdc963;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #efeeeb;
    transition: all 0.35s ease;
    transform-style: preserve-3d;
    box-shadow:
        inset 6px 6px 12px rgba(0, 0, 0, 0.16),
        inset -2px -2px 6px rgba(255, 255, 255, 0.8);
}

.radio-card:hover {
    transform: translateY(-1px);
    box-shadow:
        inset -6px -6px 12px rgba(0, 0, 0, 0.16),
        inset 2px 2px 6px rgba(255, 255, 255, 0.8);
    transform: scale(0.98);
}

.vitality-header {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.radio-card:not(:last-child) {
    margin-bottom: 16px;
}

.radio-card input {
    /* display: none; */
    position: absolute;
    opacity: 0;
}

.radio-card .label-text {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-shadow:
        2px 2px 5px rgba(0, 0, 0, 0.24),
        -2px -2px 3px rgba(255, 255, 255, 0.8);
}

/* Right circle */
.radio-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #cfcdc9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.13);
    background: #fff;
}

/* Checked state */
.radio-card input:checked + .radio-content {
    border-color: #4f6cff;
}

.radio-card input:checked + .radio-content .radio-indicator {
    background: #4f6cff;
    border-color: #4f6cff;
}

.radio-card:has(input:checked) {
    border-color: #4f6cff;
    box-shadow:
        0 4px 3px -3px rgba(3, 11, 42, 0.2),
        0 0 20px rgba(155, 161, 246, 0.52);
}

.radio-card input:checked + .radio-content .radio-indicator::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    color: #fff;
    font-size: 12px;
}

.radio-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px;
    cursor: pointer;
}

.check-card {
    border: 1px solid #cfcdc9;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #efeeeb;
    transition: all 0.35s ease;
    transform-style: preserve-3d;
    box-shadow:
        inset 6px 6px 12px rgba(0, 0, 0, 0.16),
        inset -2px -2px 6px rgba(255, 255, 255, 0.8);
}

.check-card:not(:last-child) {
    margin-bottom: 16px;
}

/* Hide checkbox but keep it accessible */
.check-card input {
    position: absolute;
    opacity: 0;
}

.check-label {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

/* Right check circle */
.check-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #cfcdc9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.13);
    background: #fff;
}

.check-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    box-shadow:
        inset -6px -6px 12px rgba(0, 0, 0, 0.16),
        inset 2px 2px 6px rgba(255, 255, 255, 0.8);
    transform: scale(0.98);
}

/* Checked state */
.check-card input:checked + .check-content .check-indicator {
    background: #4f6cff;
    border-color: #4f6cff;
}

.check-card input:checked + .check-content .check-indicator::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    color: #fff;
    font-size: 12px;
}

/* Card border on check */
.check-card:has(input:checked) {
    border-color: #4f6cff;
    box-shadow:
        0 4px 3px -3px rgba(3, 11, 42, 0.2),
        0 0 20px rgba(155, 161, 246, 0.52);
}

.check-card input:checked + .check-content .check-indicator {
    opacity: 1;
    transform: scale(1);
}

.check-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    cursor: pointer;
}

.imh-bottom-text {
    font-size: 12px;
    padding-top: 15px;
    color: #6c6560;
}

.imh-bottom-text a {
    color: #6c6560;
}

.trt-static-content .headline {
    font-size: 25px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 20px;
}

.trt-static-content .sub-text {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 20px;
}

.trt-static-content .footnote {
    font-size: 13px;
    color: #6f6f6f;
    line-height: 1.4;
}

.trt-static-content .avatar-box {
    width: 192px;
    height: 240px;
    border-radius: 24px;
    background: linear-gradient(180deg, #e3e1dc, #d9d7d1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    margin-bottom: 28px;
}

.trt-static-content .pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.trt-static-content .pill {
    background: #425fff;
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
}

.trt-static-content .sub-text {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #000;
}

.trt-static-content .stat-wrapper {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.trt-static-content .stat-number {
    font-size: 160px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -6px;
}

.trt-static-content .stat-number span:first-child {
    color: #425fff;
}

.trt-static-content .stat-number span:last-child {
    color: #000000;
}

.trt-static-content .stat-text {
    margin-top: 24px;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 400;
    color: #000;
}

.trt-static-content .stat-footnote {
    margin-top: 28px;
    font-size: 13px;
    color: #6f6f6f;
    line-height: 1.4;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.trt_intake_not_alone_card .trt-static-content .headline {
    text-align: center;
    font-size: 50px;
    line-height: 1;
}

.trt_intake_not_alone_card .trt-static-content .subheadline {
    font-size: 20px;
    text-align: center;
}

.trt_intake_not_alone_card .trt-static-content .citation {
    font-size: 12px;
    text-align: center;
}

.trt_intake_state_selection_card .select-state-txt {
    font-size: 30px;
    color: #000;
}

.trt_intake_state_selection_card .form-floating .custom-form-control {
    border: 1px solid #000;
    background-color: #efeeeb;
    border-radius: 16px;
    padding-top: 32px;
    padding-bottom: 20px;
    height: auto;
    padding-left: 16px;
    padding-right: 16px;
    cursor: pointer;
}

.trt_intake_state_selection_card .form-floating .form-label:after {
    background-color: transparent;
}

.trt_intake_date_of_birth_card .ask-dob-txt {
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: #000;
    font-weight: 500;
    margin-bottom: 24px;
}

.trt_intake_date_of_birth_card .form-floating .form-select {
    border: 1px solid #cfcdc9;
    background-color: #efeeeb;
    border-radius: 16px;
    padding-top: 24px;
    padding-bottom: 10px;
    height: auto;
    padding-left: 16px;
    padding-right: 36px;
    cursor: pointer;
}

.trt_intake_date_of_birth_card .form-floating .form-label {
    font-size: 12px;
}

.trt_intake_date_of_birth_card .form-floating .form-label:after {
    background-color: transparent;
}

.login-wrapper-intake {
    padding-top: 20px;
}

.login-wrapper-intake .btn-pill {
    border-radius: 50px;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
}

/* .login-wrapper-intake .btn-google {
    background: #ffffff;
    border: 2px solid #cfcdc9;
    gap: 10px;
} */

/* .login-wrapper-intake .btn-google:hover {
    background: #ffffff;
} */

.login-wrapper-intake .btn-google img {
    width: 20px;
    height: 20px;
}

.login-wrapper-intake .btn-apple {
    background: #000;
    color: #fff;
    gap: 10px;
}

.login-wrapper-intake .btn-apple img {
    width: 20px;
    height: 20px;
}

.login-wrapper-intake .btn-apple:hover {
    background: #111;
    color: #fff;
}

.login-wrapper-intake .divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    color: #888;
}

.login-wrapper-intake .divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.login-wrapper-intake .divider:not(:empty)::before {
    margin-right: 10px;
}

.login-wrapper-intake .divider:not(:empty)::after {
    margin-left: 10px;
}

.login-wrapper-intake .form-control {
    border-radius: 50px;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid #cfcdc9;
    background: #efeeeb;
    color: #000;
}

.login-wrapper-intake .form-control::placeholder {
    color: #6c6c6c;
}

.login-wrapper-intake .btn-email {
    border-radius: 50px;
    padding: 16px;
    font-size: 16px;
    background: #d6d6d6;
    color: #6c6c6c;
    border: none;
}

.login-wrapper-intake .btn-email:hover {
    background-color: #000 !important;
    color: #fff;
}

.login-wrapper-intake .signin-text {
    text-align: center;
    margin-top: 22px;
    font-size: 16px;
    color: #555;
}

.login-wrapper-intake .signin-text a {
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.login-wrapper-intake .secure-box {
    background: #eaeaea;
    border-radius: 16px;
    padding: 16px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.login-wrapper-intake .secure-box img {
    width: 22px;
    height: 22px;
}

.email-notification-box {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center !important;
}

.email-notification-box .custom-form-control {
    width: 3rem;
    height: 3.5rem;
    border-radius: 1rem !important;
    border-width: 2px;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-color: #cfcdc9;
    background-color: #efeeeb;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #000;
}

.email-notification-box .custom-form-control:first-child {
    border-top-left-radius: 22px !important;
    border-bottom-left-radius: 22px !important;
}

.email-notification-box .custom-form-control:last-child {
    border-top-right-radius: 22px !important;
    border-bottom-right-radius: 22px !important;
}

.intake_emailVerification_wrapper .emil-resend-btn,
.intake_emailVerification_wrapper .diff-email-btn {
    font-size: 14px;
    color: #6c6560;
}

.intake_emailVerification_wrapper .emil-resend-btn a {
    font-weight: 500;
    color: #000000;
}

.intake_emailVerification_wrapper .diff-email-btn a {
    color: #6c6560;
}

.trt_intake_height_weight_card .form-floating .form-select {
    border: 1px solid #cfcdc9;
    background-color: #efeeeb;
    border-radius: 16px;
    padding-top: 24px;
    padding-bottom: 10px;
    height: auto;
    padding-left: 16px;
    padding-right: 36px;
    cursor: pointer;
    font-size: 18px;
    color: #000;
    min-height: 60px;
}

.trt_intake_height_weight_card .form-floating .form-label {
    font-size: 12px;
}

.trt_intake_height_weight_card .form-floating .form-label:after {
    background-color: transparent;
}

.trt_intake_bmi .bmi-card {
    border-radius: 24px;
    background-color: #efeeeb;
    padding: 32px;
    text-align: center;
    margin-bottom: 32px;
}

.trt_intake_bmi .bmi-value {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    color: #000;
}

.trt_intake_bmi .bmi-badge {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 16px;
    display: inline-block;
    margin-top: 14px;
    border-radius: 99px;
}

.trt_intake_bmi .bmi-badge.underweight {
    color: #f59f0a;
    background-color: #fef5e7;
}

.trt_intake_bmi .bmi-badge.overweight {
    color: #ef4343;
    background-color: #fee2e2;
}

.trt_intake_bmi .bmi-badge.normal {
    color: #198653;
    background-color: #dbfaec;
}

.trt_intake_current_medical_conditions_card .imh-question-text {
    margin-bottom: 10px;
}

.trt_intake_current_medical_conditions_card .autocomplete-custom-container {
    margin-top: 16px;
}

.trt_intake_current_medical_conditions_card
    .autocomplete-custom-container
    .search-box
    .autocomplete-custom {
    border: 1px solid #cfcdc9;
    background-color: #efeeeb;
    border-radius: 16px;
    padding: 16px 16px 16px 48px;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
}

.trt_intake_current_medical_conditions_card
    .autocomplete-custom-container
    .search-box
    .search-icon {
    top: 50%;
    left: 16px;
    position: absolute;
    transform: translateY(-50%);
}

.trt_intake_current_medical_conditions_card
    .autocomplete-custom-container
    .search-box
    .search-icon
    img {
    width: 22px;
    height: 22px;
}

.trt_intake_current_medical_conditions_card
    .autocomplete-custom-container
    .autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #cfcdc9;
    background-color: #efeeeb;
    border-radius: 16px;
    z-index: 999;
    max-height: 240px;
    margin-top: 8px;
    overflow-y: auto;
}

.trt_intake_current_medical_conditions_card
    .autocomplete-custom-container
    .autocomplete-dropdown
    .autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
}

.trt_intake_current_medical_conditions_card
    .autocomplete-custom-container
    .autocomplete-dropdown
    .autocomplete-item:hover {
    background-color: #f9f8f5;
}

.trt_intake_current_medical_conditions_card
    .autocomplete-custom-container
    .selected-list {
    border: 1px solid #cfcdc9;
    background-color: #efeeeb;
    border-radius: 16px;
    margin-top: 16px;
}

.trt_intake_current_medical_conditions_card
    .autocomplete-custom-container
    .selected-list
    .selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
}

.trt_intake_current_medical_conditions_card
    .autocomplete-custom-container
    .selected-list
    .selected-item:not(:first-child) {
    border-top: 1px solid #cfcdc9;
}

.trt_intake_current_medical_conditions_card
    .autocomplete-custom-container
    .selected-list
    .selected-item
    span {
    color: #000;
}

.trt_intake_current_medical_conditions_card
    .autocomplete-custom-container
    .selected-list
    .selected-item
    .autocomplete-item-remove-btn {
    background: none;
    border: none;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: red;
}

.trt_intake_current_medical_conditions_card
    .autocomplete-custom-container
    .selected-list
    .selected-item
    .autocomplete-item-remove-btn:hover,
.trt_intake_current_medical_conditions_card
    .autocomplete-custom-container
    .selected-list
    .selected-item
    .autocomplete-item-remove-btn:focus {
    background: none;
    text-decoration: underline;
    color: #000;
}

.trt_intake_current_medications_card .imh-question-text,
.trt_intake_current_allergies_card .imh-question-text {
    margin-bottom: 10px;
}

.trt_intake_current_medications_card .autocomplete-custom-container,
.trt_intake_current_allergies_card .autocomplete-custom-container {
    margin-top: 16px;
}

.trt_intake_current_medications_card
    .autocomplete-custom-container
    .search-box
    .autocomplete-custom,
.trt_intake_current_allergies_card
    .autocomplete-custom-container
    .search-box
    .autocomplete-custom {
    border: 1px solid #cfcdc9;
    background-color: #efeeeb;
    border-radius: 16px;
    padding: 16px 16px 16px 48px;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
}

.trt_intake_current_medications_card
    .autocomplete-custom-container
    .search-box
    .search-icon,
.trt_intake_current_allergies_card
    .autocomplete-custom-container
    .search-box
    .search-icon {
    top: 50%;
    left: 16px;
    position: absolute;
    transform: translateY(-50%);
}

.trt_intake_current_medications_card
    .autocomplete-custom-container
    .search-box
    .search-icon
    img,
.trt_intake_current_allergies_card
    .autocomplete-custom-container
    .search-box
    .search-icon
    img {
    width: 22px;
    height: 22px;
}

.trt_intake_current_medications_card
    .autocomplete-custom-container
    .autocomplete-dropdown,
.trt_intake_current_allergies_card
    .autocomplete-custom-container
    .autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #cfcdc9;
    background-color: #efeeeb;
    border-radius: 16px;
    z-index: 999;
    max-height: 240px;
    margin-top: 8px;
    overflow-y: auto;
}

.trt_intake_current_medications_card
    .autocomplete-custom-container
    .autocomplete-dropdown
    .autocomplete-item,
.trt_intake_current_allergies_card
    .autocomplete-custom-container
    .autocomplete-dropdown
    .autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
}

.trt_intake_current_medications_card
    .autocomplete-custom-container
    .autocomplete-dropdown
    .autocomplete-item:hover,
.trt_intake_current_allergies_card
    .autocomplete-custom-container
    .autocomplete-dropdown
    .autocomplete-item:hover {
    background-color: #f9f8f5;
}

.trt_intake_current_medications_card
    .autocomplete-custom-container
    .selected-list,
.trt_intake_current_allergies_card
    .autocomplete-custom-container
    .selected-list {
    border: 1px solid #cfcdc9;
    background-color: #efeeeb;
    border-radius: 16px;
    margin-top: 16px;
}

.trt_intake_current_medications_card
    .autocomplete-custom-container
    .selected-list
    .selected-item,
.trt_intake_current_allergies_card
    .autocomplete-custom-container
    .selected-list
    .selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
}

.trt_intake_current_medications_card
    .autocomplete-custom-container
    .selected-list
    .selected-item:not(:first-child),
.trt_intake_current_allergies_card
    .autocomplete-custom-container
    .selected-list
    .selected-item:not(:first-child) {
    border-top: 1px solid #cfcdc9;
}

.trt_intake_current_medications_card
    .autocomplete-custom-container
    .selected-list
    .selected-item
    span,
.trt_intake_current_allergies_card
    .autocomplete-custom-container
    .selected-list
    .selected-item
    span {
    color: #000;
}

.trt_intake_current_medications_card
    .autocomplete-custom-container
    .selected-list
    .selected-item
    .autocomplete-item-remove-btn,
.trt_intake_current_allergies_card
    .autocomplete-custom-container
    .selected-list
    .selected-item
    .autocomplete-item-remove-btn {
    background: none;
    border: none;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: red;
}

.trt_intake_current_medications_card
    .autocomplete-custom-container
    .selected-list
    .selected-item
    .autocomplete-item-remove-btn:hover,
.trt_intake_current_medications_card
    .autocomplete-custom-container
    .selected-list
    .selected-item
    .autocomplete-item-remove-btn:focus,
.trt_intake_current_allergies_card
    .autocomplete-custom-container
    .selected-list
    .selected-item
    .autocomplete-item-remove-btn:hover,
.trt_intake_current_allergies_card
    .autocomplete-custom-container
    .selected-list
    .selected-item
    .autocomplete-item-remove-btn:focus {
    background: none;
    text-decoration: underline;
    color: #000;
}

.goback-static-content {
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
}

.goback-static-content .heart {
    font-size: 3.75rem;
    line-height: 1;
    margin-bottom: 20px;
}

.goback-static-content h1 {
    font-size: 22px;
}

.goback-static-content .description {
    max-width: 384px;
    margin-inline: auto;
    margin-bottom: 30px;
}

.goback-static-content .back-btn {
    padding: 12px 24px;
    font-weight: 500;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #cfcdc9;
    border-radius: 99px;
    background-color: transparent;
}

.goback-static-content .back-btn:hover,
.goback-static-content .back-btn:focus {
    border: 2px solid #000000;
}

.goback-static-content .support-box {
    max-width: 320px;
    margin: 30px auto 0;
    border-radius: 16px;
    background: #efeeeb;
    padding: 20px;
    text-align: left;
}

.goback-static-content .support-box h3 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.goback-static-content .support-box p {
    color: #6c6560;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 20px;
}

.goback-static-content .support-box p a {
    color: #6c6560;
}

.check-card input[type="checkbox"]:disabled {
    opacity: 0 !important;
}

.trt_intake_current_additional_info .imh-question-text {
    margin-bottom: 10px;
}

.trt_intake_current_additional_info .form-group textarea.form-control {
    margin-bottom: 16px;
    width: 100%;
    border-radius: 1rem;
    border-width: 2px;
    border-color: #cfcdc9;
    background-color: #efeeeb;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #000000;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.2s;
    animation-duration: 0.2s;
}

.trt_intake_current_additional_info .form-group textarea.form-control:focus {
    border-color: #425fff;
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: none;
}

.trt_intake_current_additional_info .imh-question-label-text {
    padding-bottom: 20px;
}

.trt_intake_trt_fertility_card .imh-question-heading,
.trt_intake_sleep_apnea_info_card .imh-question-heading {
    color: #000000;
    line-height: 33px;
    margin-bottom: 16px;
    font-size: 26px;
    margin-top: 25px;
}

.trt_intake_trt_fertility_card .imh-question-description,
.trt_intake_sleep_apnea_info_card .imh-question-description {
    background-color: #fef5e7;
    padding: 16px;
    font-size: 16px;
    border-radius: 16px;
    line-height: 24px;
    margin-bottom: 24px;
}

.trt_intake_trt_fertility_card .imh-question-description p,
.trt_intake_sleep_apnea_info_card .imh-question-description p {
    margin: 0;
}

.trt_intake_existing_trt_current_treatment_card
    .form-group
    textarea.form-control {
    margin-bottom: 16px;
    width: 100%;
    border-radius: 1rem;
    border-width: 2px;
    border-color: #cfcdc9;
    background-color: #efeeeb;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #000000;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.2s;
    animation-duration: 0.2s;
}

.trt_intake_existing_trt_current_treatment_card
    .form-group
    textarea.form-control:focus {
    border-color: #425fff;
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: none;
}

.trt_intake_existing_trt_dosage_details_card .imh-question-text {
    margin-bottom: 10px;
}

.trt_intake_existing_trt_dosage_details_card .imh-question-label-text {
    margin-bottom: 20px;
}

.trt_intake_existing_trt_dosage_details_card .form-group textarea.form-control {
    margin-bottom: 16px;
    width: 100%;
    border-radius: 1rem;
    border-width: 2px;
    border-color: #cfcdc9;
    background-color: #efeeeb;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #000000;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.2s;
    animation-duration: 0.2s;
}

.trt_intake_existing_trt_dosage_details_card
    .form-group
    textarea.form-control:focus {
    border-color: #425fff;
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: none;
}

.trt_intake_existing_trt_last_dose_card .imh-question-text {
    margin-bottom: 10px;
}

.trt_intake_existing_trt_last_dose_card .imh-question-label-text {
    margin-bottom: 20px;
}

.trt_intake_existing_trt_last_dose_card .form-floating .form-select {
    border: 1px solid #cfcdc9;
    background-color: #efeeeb;
    border-radius: 16px;
    padding-top: 24px;
    padding-bottom: 10px;
    height: auto;
    padding-left: 16px;
    padding-right: 36px;
    cursor: pointer;
}

.trt_intake_existing_trt_last_dose_card .form-floating .form-label {
    font-size: 12px;
}

.trt_intake_existing_trt_last_dose_card .form-floating .form-label:after {
    background-color: transparent;
}

.trt_intake_existing_trt_other_product_details_card
    .form-group
    textarea.form-control,
.trt_intake_existing_trt_experience_card .form-group textarea.form-control {
    margin-bottom: 16px;
    width: 100%;
    border-radius: 1rem;
    border-width: 2px;
    border-color: #cfcdc9;
    background-color: #efeeeb;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #000000;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.2s;
    animation-duration: 0.2s;
}

.trt_intake_existing_trt_other_product_details_card
    .form-group
    textarea.form-control:focus {
    border-color: #425fff;
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: none;
}

.trt_intake_existing_trt_lab_upload_card .image-preview-container {
    border: 1px solid #cfcdc9;
    border-radius: 24px;
    padding: 12px;
    overflow: hidden;
    background: #eeaeca;
    background: linear-gradient(
        90deg,
        rgba(238, 174, 202, 1) 0%,
        rgba(148, 187, 233, 1) 100%
    );
}

.trt_intake_existing_trt_lab_upload_card .image-preview-box {
    border: 1px solid #cfcdc9;
    border-radius: 24px;
    background-color: #efeeeb;
    overflow: hidden;
    background-color: hsl(40 6% 80% / 0.3);
}

.trt_intake_existing_trt_lab_upload_card .upload-box {
    border: 2px dashed #cfcdc9;
    border-radius: 24px;
    padding: 16px;
    background: #fff;
    transition: 0.3s;
    cursor: pointer;
    gap: 16px;
    display: flex;
    align-items: center;
    position: relative;
}

.trt_intake_existing_trt_lab_upload_card .upload-box .upload-box-input {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.trt_intake_existing_trt_lab_upload_card .upload-box:hover {
    background: hsl(40 6% 80% / 0.3);
    border-color: rgba(0, 0, 0, 0.5);
}

.trt_intake_existing_trt_lab_upload_card .upload-box h4 {
    font-size: 16px;
    color: #000;
    margin: 0;
    padding: 0;
    font-weight: 500;
}

.trt_intake_existing_trt_lab_upload_card .upload-box p {
    font-size: 14px;
    color: hsl(27 6% 40%);
    margin: 0;
}

.trt_intake_existing_trt_lab_upload_card .icon-circle {
    width: 48px;
    height: 48px;
    background: hsl(0 0% 0% / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trt_intake_existing_trt_lab_upload_card .icon-circle img {
    width: 24px;
    height: 24px;
}

.trt_intake_existing_trt_lab_upload_card .info-box {
    background-color: rgb(207 205 201 / 30%);
    border-radius: 24px;
    padding: 16px;
    color: #6c6560;
    line-height: 1.8;
    font-size: 14px;
    line-height: 1.625;
}

.trt_intake_existing_trt_lab_upload_card .format-text {
    color: #6c6560;
    font-size: 12px;
}

.trt_intake_name .imh-question-text,
.trt_intake_phone .imh-question-text,
.trt_intake_shipping .form-label {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 6px;
}

.trt_intake_name .form-control,
.trt_intake_phone .form-control,
.trt_intake_shipping .form-control,
.trt_intake_shipping .form-select {
    font-size: 16px;
    line-height: 1.25rem;
    padding-left: 16px;
    padding-right: 16px;
    background-color: #efeeeb;
    border: 1px solid #cfcdc9;
    border-radius: 4px;
    min-height: 56px;
    box-shadow:
        inset 6px 6px 12px rgba(0, 0, 0, 0.16),
        inset -2px -2px 6px rgba(255, 255, 255, 0.8);
}

.trt_intake_shipping .imh-question .row {
    row-gap: 16px;
}

.trt_intake_id_verification .leading-relaxed {
    padding: 16px;
    border-radius: 24px;
    font-size: 14px;
    line-height: 20px;
    margin-bttom: 24px;
    background-color: rgb(207 205 201 / 30%);
    color: #6c6560;
}

.trt_intake_id_verification .text-sm {
    font-size: 14px;
}

.trt_intake_id_verification .text-sm a {
    text-decoration: none;
}

.trt_intake_id_verification .image-preview-container {
    border: none;
    overflow: hidden;
    border-radius: 24px;
    width: 100%;
    min-height: 260px;
    background-color: #e7e6ff;
    padding: 20px;
}

.trt_intake_id_verification .btn-dark {
    background-color: #000000;
    min-width: 200px;
    font-size: 14px;
    border-radius: 30px;
    min-height: auto;
}

.trt_intake_consent_trt_card .select-state-txt {
    color: #000000;
    line-height: 33px;
    margin-bottom: 16px;
    font-size: 30px;
    font-weight: 500;
    margin-top: 25px;
}

.trt_intake_consent_trt_card .whitespace-pre-wrap {
    max-height: 20rem;
    overflow-y: auto;
    border-radius: 1rem;
    border: 1px solid #cfcdc9;
    background-color: #efeeeb;
    padding: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    line-height: 1.625;
    color: #6c6560;
    overflow-x: hidden;
}

.trt_intake_consent_trt_card .form-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.custom-checkbox {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #bdbdbd;
    background: #e5e5e5;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: 0.3s;
}

.trt_intake_consent_trt_card
    .form-group
    input[type="checkbox"]:checked
    + .custom-checkbox {
    background: #000;
    border-color: #000;
}

.custom-checkbox::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 25px;
    border: 3px solid #fff;
    border-top: none;
    border-left: none;
    transform: translate(-50%, -60%) rotate(45deg);
    opacity: 0;
}

/* .trt_intake_consent_trt_card .form-group input[type="checkbox"] {
    opacity: 0;
    position: absolute;
} */
.trt_intake_consent_trt_card
    .form-group
    input[type="checkbox"]:checked
    + .custom-checkbox::after {
    opacity: 1;
}

a.back-btn {
    text-decoration: none;
}

a.back-btn:hover {
    cursor: pointer;
}

a.select-all-apply {
    text-decoration: none;
    color: #868686;
}

a.select-all-apply {
    cursor: pointer;
}

.loading-screen {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "DM Sans", sans-serif;
    text-align: center;
    color: #212529;
    position: relative;
    overflow: hidden;
}

/* Background Circle */
.round-bg-top {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    opacity: 0.08;
    z-index: 0;
}

.round-bg-top svg {
    width: 100%;
    height: 100%;
}

/* Logo Animation */
.logo {
    width: 420px;
    max-width: 80%;
    margin-bottom: 20px;
    animation: pulse 1.6s infinite ease-in-out;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

.form-select {
    transition: all 0.35s ease;
    transform-style: preserve-3d;
    box-shadow:
        inset 6px 6px 12px rgba(0, 0, 0, 0.16),
        inset -2px -2px 6px rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    color: #0c0c0c;
}

.form-control {
    color: #0c0c0c !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.form-control::placeholder {
    text-shadow: none !important;
}

.trt_intake_not_alone_card .card-body {
    justify-content: center;
    display: flex;
    align-items: center;
}
.trt_intake_labs_familiar .card-body,
.trt_intake_labs_help_card .card-body,
.trt_intake_learn_more_card .card-body,
.trt_intake_ready_started .card-body,
.trt_intake_medical_history_intro_card .card-body,
.trt_intake_new_trt_intro_card .card-body {
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
}
.trt_intake_labs_familiar .card-body p,
.trt_intake_labs_help_card .card-body p,
.trt_intake_learn_more_card .card-body p,
.trt_intake_ready_started .card-body p {
    font-size: 20px;
}

/* Typing Text */
.typing-text {
    font-size: 36px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    z-index: 1;
}
.trt_intake_new_trt_another_symptoms_card .form-group textarea.form-control {
    margin-bottom: 16px;
    width: 100%;
    border-radius: 1rem;
    border-width: 2px;
    border-color: #cfcdc9;
    background-color: #efeeeb;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #000000;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.2s;
    animation-duration: 0.2s;
}

.consent-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.consent-checkbox span {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 2px solid #cfcdc9;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    background-color: #efeeeb;
    margin-left: -30px;
}

.consent-checkbox input[type="checkbox"]:checked + label span::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-checkbox input[type="checkbox"]:checked + label span {
    background-color: #000;
    border-color: #000;
}

.consent-checkbox label {
    cursor: pointer;
    user-select: none;
    padding-left: 30px;
}
.static-container {
    animation: fadeSlideUp 1s ease forwards;
    opacity: 0;
}

.static-container h2 {
    animation: fadeSlideUp 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.trt_intake_phone h2 {
    color: var(--bs-heading-color);
    line-height: 36px;
    margin-bottom: 15px;
    font-size: 2rem;
}
.trt_intake_phone p {
    font-size: 16px;
    line-height: 26px;
    color: #6c6560;
    padding-bottom: 0;
}
.trt_intake_phone .form-control {
    border-radius: 50px;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid #cfcdc9;
    background: #efeeeb;
    color: #555;
    min-height: 64px;
    padding-left: 48px;
}
.consent-small .form-check-label {
    font-size: 14px;
    line-height: 1.625;
    color: #6c6560;
}
.text-small {
    font-size: 14px !important;
    line-height: 1.625 !important;
    color: #6c6560 !important;
    margin: 15px 0 0 !important;
}
.text-small a {
    color: #6c6560 !important;
}
.static-container p {
    animation: fadeSlideUp 1s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.intake_mobileVerification_wrapper .email-notification-box {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center !important;
}

.intake_mobileVerification_wrapper .custom-form-control {
    width: 3rem;
    height: 3.5rem;
    border-radius: 1rem !important;
    border-width: 2px;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-color: #cfcdc9;
    background-color: #efeeeb;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #000;
}

.intake_mobileVerification_wrapper .custom-form-control:first-child {
    border-top-left-radius: 22px !important;
    border-bottom-left-radius: 22px !important;
}

.intake_mobileVerification_wrapper .custom-form-control:last-child {
    border-top-right-radius: 22px !important;
    border-bottom-right-radius: 22px !important;
}

.intake_mobileVerification_wrapper .mobile-resend-btn,
.intake_mobileVerification_wrapper .diff-mobile-btn {
    font-size: 14px;
    color: #6c6560;
}

.intake_mobileVerification_wrapper .mobile-resend-btn a {
    font-weight: 500;
    color: #000000;
}

.intake_mobileVerification_wrapper .diff-mobile-btn a {
    color: #6c6560;
}
.intake_mobileVerification_wrapper div#mobile-otp-timer {
    text-align: center;
    font-size: 14px;
}
.trt_intake_phone .input-country-code {
    position: relative;
}
.trt_intake_phone .input-country-code .input-group-text {
    position: absolute;
    background-color: transparent;
    border: 0;
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
    color: #555;
}
.trt_intake_shipping .intake-shiping-card-box {
    background: #efeeeb;
    border: 1px solid #cfcdc9;
    border-radius: 24px;
    overflow: hidden;
    align-items: center;
    display: flex;
    margin-bottom: 2rem;
}
.trt_intake_shipping .intake-shiping-card-box .intake-shiping-card-content {
    padding: 20px;
    flex: 1 1 0%;
}
.trt_intake_shipping .intake-shiping-card-box .intake-shiping-card-content h3 {
    color: #000000;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 0.25rem;
}
.trt_intake_shipping .intake-shiping-card-box .intake-shiping-card-content p {
    color: #6c6560;
    line-height: 1.625;
    font-size: 0.875rem;
    margin-bottom: 0;
}
.trt_intake_shipping .intake-shiping-card-box .intake-shiping-card-img {
    flex-shrink: 0;
    width: 112px;
    height: 112px;
}
.trt_intake_shipping .intake-shiping-card-box .intake-shiping-card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
}
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.consent-checkbox label a {
    color: #000000;
}
.ask-height-weight-txt {
    color: #000000;
    line-height: 33px;
    margin-bottom: 12px;
    font-size: 30px;
    margin-top: 25px;
}
/* Responsive */
@media (max-width: 768px) {
    .logo {
        width: 220px;
    }

    .typing-text {
        font-size: 24px;
    }
    .radio-content {
        gap: 8px;
    }
    .child-question-container .child-main-text h2,
    .imh-question-text,
    .trt_intake_not_alone_card .trt-static-content .headline,
    .trt_intake_state_selection_card .select-state-txt,
    .trt_intake_date_of_birth_card .ask-dob-txt {
        font-size: 24px;
        line-height: 1.25;
    }
    .card-heading,
    .trt-static-content .headline {
        line-height: 1.25;
        font-size: 24px;
    }
    .trt-static-content .sub-text {
        font-size: 20px;
    }
    .trt-static-content .pill {
        padding: 8px 15px;
        font-size: 14px;
    }
    .card-sub-heading br {
        display: none;
    }
    .card-sub-heading p {
        font-size: 16px;
    }
    .trt-static-content .stat-number {
        font-size: 70px;
        font-weight: 500;
        line-height: 1;
        letter-spacing: normal;
    }
    .trt_intake_not_alone_card .trt-static-content .subheadline {
        font-size: 18px;
    }
    .trt_intake_labs_familiar .card-body p,
    .trt_intake_labs_help_card .card-body p,
    .trt_intake_learn_more_card .card-body p,
    .trt_intake_ready_started .card-body p {
        font-size: 18px;
    }
    .trt_intake_date_of_birth_card .question-inner-answer-box .row,
    .trt_intake_existing_trt_last_dose_card .question-inner-answer-box .row {
        margin-left: -5px;
        margin-right: -5px;
    }
    .trt_intake_date_of_birth_card .question-inner-answer-box .row > *,
    .trt_intake_existing_trt_last_dose_card
        .question-inner-answer-box
        .row
        > * {
        padding-left: 5px;
        padding-right: 5px;
    }
    .ask-height-weight-txt {
        line-height: 1.25;
        font-size: 24px;
    }
    .trt_intake_name .col-md-6 {
        margin-bottom: 16px;
    }
    .trt_intake_id_verification .btn-dark {
        min-width: auto;
        padding: 12px 25px;
    }
    .trt_intake_consent_trt_card .select-state-txt {
        line-height: 1.25;
        font-size: 24px;
    }
    .bg-gradient-custom {
        padding: 25px;
    }
    .keen-meds-title {
        font-size: 1.5rem !important;
    }
    .processing-text {
        font-size: 1rem !important;
        color: #a0a0a0;
    }
}
