/* _content/EstateView/Pages/IntakeForm/IntakeForm.razor.rz.scp.css */
[b-ngjny2v0hl] .nav-tabs .nav-link {
    border: 1px solid lightgray;
}

    [b-ngjny2v0hl] .nav-tabs .nav-link:hover {
        background-color: rgba(11, 94, 215, 0.5) !important;
        color: white;
    }

    [b-ngjny2v0hl] .customized-input-number input {
        width: 100%;
        margin-left: 2px;
        margin-right: 2px;
        border-radius: 0.25rem;
        border: 1px solid #ced4da;
        text-align: center;
    }

    [b-ngjny2v0hl] .customized-input-number .spinner {
        border-radius: 0.25rem;
    }

@keyframes dropDown-b-ngjny2v0hl {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

    [b-ngjny2v0hl] .dropdown-animate {
        animation: dropDown-b-ngjny2v0hl 0.4s ease-out forwards;
        animation-delay: 0.1s; /* Adds a 0.5s delay before the animation starts */
        opacity: 0; /* Ensure it's hidden until the animation starts */
    }

        [b-ngjny2v0hl] .top-toolbar .btn {
            background-color: #0b5ed7;
            transition: all 0.1s linear;
            background-image: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.1), transparent);
            box-shadow: 2px 2px 4px -1px black;
        }

            [b-ngjny2v0hl] .top-toolbar .btn:hover {
                background-color: #084BAC;
                transform: translate(1px, 1px);
                box-shadow: 0px 0px 4px -1px black;
                box-shadow: none;
            }
.blurred-background[b-ngjny2v0hl] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    animation: fadeIn-b-ngjny2v0hl 0.3s forwards;
}

/* Modal Box */
.modal-box[b-ngjny2v0hl] {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 3px solid #dc3545; /* Red border */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.welcome-content[b-ngjny2v0hl] {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    height: auto;
}

[b-ngjny2v0hl] .btn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

.btn-grid2[b-ngjny2v0hl] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
}

[b-ngjny2v0hl] .btn-check:checked + .btn {
    /*background-color: #007bff;*/
    color: white;
    /*border-color: #0056b3;*/
}

[b-ngjny2v0hl] .btn-outline-primary {
    /*border: 2px solid #007bff;*/
    color: #007bff;
    /*font-weight: bold;*/
    /*padding: 10px;*/
    width: 100%;
    text-align: center;
}

    [b-ngjny2v0hl] .btn-outline-primary:hover {
        /*background-color: #007bff;*/
        color: white;
    }

.get-started-btn[b-ngjny2v0hl] {
    background: gray;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: not-allowed;
    font-size: 16px;
    width: 100%;
    margin-top: 0;
    position: relative;
    top: 10px; /* Move it down */
}

    .get-started-btn:enabled[b-ngjny2v0hl] {
        background: #007bff;
        cursor: pointer;
    }

.modal-box[b-ngjny2v0hl] {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 3px solid #dc3545;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.divider[b-ngjny2v0hl] {
    height: 5px;
    background-color: #dc3545;
    width: 100%;
    margin: 15px 0;
}

[b-ngjny2v0hl] .btn-group {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
}

.get-started-btn:hover:enabled[b-ngjny2v0hl] {
    background: #0056b3;
}

.floating-label-box[b-ngjny2v0hl] {
    position: absolute;
    top: -23px; 
    left: 10px; 
    z-index: 50;
    font-size: 18px;
    background-color: white;
    padding: 0px 5px;
    border-top: 2px solid #ddd;
    border-radius: 5px 5px 0px 0px;
    background-image: linear-gradient(to bottom, #f9f9f9, white);
    user-select: none;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
}

    .floating-label-box[b-ngjny2v0hl]::before,
    .floating-label-box[b-ngjny2v0hl]::after {
        content: '';
        position: absolute;
        width: 1px;
        background-color: #ddd;
        height: 75%;
        top: 2px;
        z-index: -1;
    }

    .floating-label-box[b-ngjny2v0hl]::before {
        left: 0;
    }

    .floating-label-box[b-ngjny2v0hl]::after {
        right: 0;
    }

@media (max-width: 768px)
{
    .floating-label-box[b-ngjny2v0hl] {
        display: none !important;
    }
}

/*
.dont-show {
    margin-top: 15px;
    font-size: 14px;
}*/

[b-ngjny2v0hl] .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: red;
}

.white-background-box[b-ngjny2v0hl] {
    position: fixed;
    left: 25%;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    z-index: 999; /* Below blurred background (which is 1000) */
}

.collapse-toggle[b-ngjny2v0hl] {
    content: "+";
}

    .collapse-toggle[b-ngjny2v0hl]::after {
        content: "–";
        font-size: 1.25rem;
        line-height: 1;
    }

    .collapse-toggle.collapsed[b-ngjny2v0hl]::after {
        content: "+";
    }

@keyframes fadeIn-b-ngjny2v0hl {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(10px);
    }
}

.intake-form .progress[b-ngjny2v0hl] {
    overflow: visible;
    height: 30px;
    margin-top: 20px;
}

.intake-form .progress-bar[b-ngjny2v0hl] {
    font-weight: bold;
}

.intake-form .accordion-button[b-ngjny2v0hl] {
    background-color: #f1f1f1;
    font-weight: bold;
}

.sidebar-menu-btn[b-ngjny2v0hl] {
    width: 9%;
    background-color: #29abe2;
    border-color: #29abe2;
    text-wrap: nowrap;
    height: 50%;
    transform: translateY(50%);
    box-shadow: 2px 2px 4px -1px black;
}

.change-step-btn.change-step-btn[b-ngjny2v0hl] {
    background-color: #0b5ed7;
    background-image: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.1), transparent);
    box-shadow: 2px 2px 4px -1px black;
    transition: all linear 0.1s;
}

    .change-step-btn.change-step-btn:hover[b-ngjny2v0hl] {
        background-color: #084BAC;
        transform: translateY(50%) translate(1px, 1px) !important;
        box-shadow: none;
    }

.segmented-progress[b-ngjny2v0hl] {
    display: flex;
    height: 50px;
    border-radius: 4px;
    background-color: #e9ecef;
    border: 1px solid #ccc;
    color: gray;
}

    .segmented-progress .segment[b-ngjny2v0hl] {
        flex: 1;
        position: relative;
        border-right: 1px dashed #ccc;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        transition: background-color 0.3s linear, color 0.3s linear;
        transition-delay: 0s;
        cursor: pointer;
    }

        .segmented-progress .segment:hover[b-ngjny2v0hl] {
            background-color: #babcbf;
        }

        .segmented-progress .segment:last-child[b-ngjny2v0hl] {
            border-radius: 0 0.25rem 0.25rem 0;
            border-right: none;
        }

        .segmented-progress .segment:first-child[b-ngjny2v0hl] {
            border-radius: 0.25rem 0 0 0.25rem;
            border-left: none;
        }

        .segmented-progress .segment.filled[b-ngjny2v0hl], .segmented-progress .segment.current[b-ngjny2v0hl] {
            background-color: #0a58ca;
            color: white;
        }

            .segmented-progress .segment.filled:hover[b-ngjny2v0hl], .segmented-progress .segment.current[b-ngjny2v0hl] {
                background-color: #0d6efd;
            }

        .segmented-progress .segment.current[b-ngjny2v0hl] {
            border-radius: 3px;
            box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
            z-index: 2;
        }

            .segmented-progress .segment.current:not(:first-child):not(:last-child)[b-ngjny2v0hl] {
                transform: scale(1.3);
                border: 2px solid #fff;
            }

            .segmented-progress .segment.current:hover .segment-tooltip[b-ngjny2v0hl] {
                transform: scale(0.77) translateX(-65%) translateY(-25%);
            }

        .segmented-progress .segment-icon[b-ngjny2v0hl] {
            font-size: 1rem;
            transition: transform 0.2s;
        }

    .segmented-progress .segment:not(.current):hover .segment-icon[b-ngjny2v0hl] {
        transform: scale(1.3);
    }

    .segmented-progress .segment .segment-tooltip[b-ngjny2v0hl] {
        visibility: hidden;
        position: absolute;
        left: 50%;
        top: 110%;
        transform: translateX(-50%);
        background: #e9ecef;
        color: black;
        border: 1px solid lightgray;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        padding: 6px 14px;
        border-radius: 6px;
        white-space: nowrap;
        display: block;
        font-size: 0.95rem;
    }

    .segmented-progress .segment:hover .segment-tooltip[b-ngjny2v0hl] {
        visibility: visible;
    }

    .mobile-progress[b-ngjny2v0hl] {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1050;
    }

@media(min-width: 600px)
{
    .mobile-progress[b-ngjny2v0hl] {
        position: static !important;
        z-index: 900 !important;
    }
}


.sidebar[b-ngjny2v0hl] {
    width: 75vmin !important;
    bottom: inherit !important;
    top: inherit !important;
    margin-bottom: 10%;
}

.left-column[b-ngjny2v0hl], .right-column[b-ngjny2v0hl] {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.right-column[b-ngjny2v0hl] {
    justify-content: center;
    align-items: center;
    margin: auto;
    gap: 15px;
}

    .right-column h2[b-ngjny2v0hl] {
        width: 100%;
        text-align: center;
    }

@media (min-width: 600px) {
    [b-ngjny2v0hl] .video-wrapper iframe {
        width: 95%;
        height: 95%;
    }
    .right-column[b-ngjny2v0hl] {
        padding-right: 30px;
        padding-top: 0px;
    }
    [b-ngjny2v0hl] .btn-group {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .welcome-content[b-ngjny2v0hl] {
        flex-direction: row;
        align-items: center;
    }

    .left-column[b-ngjny2v0hl] {
        border-right: 4px solid darkred; /* Vertical red divider */
    }

    .sidebar[b-ngjny2v0hl] {
        width: 25% !important;
        position: relative !important;
        transform: none !important;
        visibility: visible !important;
    }
    
}


@keyframes popIn-b-ngjny2v0hl {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.custom-tooltip[b-ngjny2v0hl] {
    position: absolute;
    display: none;
    background-color: #e9ecef;
    color: #000;
    padding: 8px 10px;
    border-radius: 5px;
    border: 1px solid #d1d1d1;
    text-wrap: wrap;
    width: 300px;
    transform: translateX(-50%);
    text-align: left;
    z-index: 10;
}

.position-relative:hover .custom-tooltip[b-ngjny2v0hl] {
    display: block;
}

.prev-btn[b-ngjny2v0hl],
.next-btn[b-ngjny2v0hl] {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    width: 100px;
}


    .prev-btn:disabled[b-ngjny2v0hl], .next-btn:disabled[b-ngjny2v0hl] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.prev-btn[b-ngjny2v0hl] {
    background-color: #6c757d;
    color: white;
}

.next-btn[b-ngjny2v0hl] {
    background-color: #007bff;
    color: white;
    height: 40%;
}

.navigation-fixed[b-ngjny2v0hl] {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    gap: 10px;
    margin-top: 10px;
    height: 70px;
}

.central-content[b-ngjny2v0hl] 
{
    display: flex;
    flex-direction: column;
    background-color: aliceblue;
    border: 1px solid blue;
    padding: 1rem;
    border-radius: 1rem;
}

.welcome-box[b-ngjny2v0hl] {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    width: 90vw;
    position: relative;
    transform: scale(0.9);
    opacity: 0;
    animation: popIn-b-ngjny2v0hl 0.3s forwards 0.1s;
    border: 3px solid #007bff;
    font-size: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .welcome-box[b-ngjny2v0hl] {
        width: 60vw;
    }
}

.video-wrapper[b-ngjny2v0hl] {
    position: relative;
    width: 90%;

    margin: 0 auto;
    padding-bottom: 51%;
    overflow: hidden;
    border-radius: 8px;
}

    .video-wrapper iframe[b-ngjny2v0hl] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

.slide-row[b-ngjny2v0hl] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 1rem 0;
    box-sizing: border-box;
    overflow: hidden;
    gap: 1rem;
}


.slide-image-container[b-ngjny2v0hl] {
    width: 825px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    overflow: hidden;
}

.slide-image[b-ngjny2v0hl] {
    width: 825px;
    height: 500px;
    object-fit: contain;
    display: block;
}

.arrow-button.side[b-ngjny2v0hl] {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    border: 1px solid #007bff;
    border-radius: 8px;
    font-size: 2.5rem;
    color: #007bff;
    width: 50px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s, transform 0.1s;
    flex-shrink: 0;
}


    .arrow-button.side:hover:not(:disabled)[b-ngjny2v0hl] {
        background-color: rgba(255, 255, 255, 0.7);
        color: blue;
        border-color: blue;
    }

    .arrow-button.side.left[b-ngjny2v0hl] {
        position: absolute;
        left: 1px;
        top: 50%;
        transform: translateY(-50%);
    }

    .arrow-button.side.right[b-ngjny2v0hl] {
        position: absolute;
        right: 1px;
        top: 50%;
        transform: translateY(-50%);
    }


.slide-index-fixed[b-ngjny2v0hl] {
    margin: auto;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 1rem;
    font-size: 1rem;
    color: #007bff;
    z-index: 100;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.arrow-button:disabled[b-ngjny2v0hl] {
    opacity: 0.4;
    cursor: default;
    box-shadow: none;
}

.note-label[b-ngjny2v0hl] {
    background-color: #bcd9e8;
    padding: 10px 14px;
    border-radius: 5px;
    font-size: 0.95rem;
    color: #003b63;
    text-align: center;
    width: 600px;
}

.floating-note[b-ngjny2v0hl] {
    white-space: normal;
    z-index: 5;
    width: auto;
    margin-bottom: 0px;
}

.dont-show-container[b-ngjny2v0hl] {
    position: absolute;
    bottom: 70px;
    right: 40px;
    z-index: 1000;
    font-size: 14px;
    background-color: white;

    border-radius: 5px;
    user-select: none;
    cursor: pointer;
}

.dont-show-label[b-ngjny2v0hl] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.sidenav[b-ngjny2v0hl] {
    top: auto !important;
    margin-top: auto !important;
}

@media(min-width: 768px) {
    [b-ngjny2v0hl] .dw-60 {
        width: 60%;
    }

    [b-ngjny2v0hl] .dw-65 {
        width: 65%;
    }

    [b-ngjny2v0hl] .dw-75 {
        width: 75%;
    }
}
/* _content/EstateView/Pages/IntakeForm/SubComponents/AssetCard.razor.rz.scp.css */
[b-o3ndqr2z3k] .btn-header .btn {
    min-width: 20%;
    margin-left: auto;
}

.btn[b-o3ndqr2z3k] {
    transition: width 0.2s ease;
}

/* If card first loads opened: */
.collapse-toggle.collapsed[b-o3ndqr2z3k] {
    content: "\F279";
    font-family: bootstrap-icons !important;
    font-size: 1.25rem;
    line-height: 1;
}

.collapse-toggle[b-o3ndqr2z3k]::after {
    content: "\F27C";
    font-family: bootstrap-icons !important;
    font-size: 1.25rem;
    line-height: 1;
}

.collapse-toggle.collapsed[b-o3ndqr2z3k]::after {
    content: "\F279";
    font-family: bootstrap-icons !important;
    font-size: 1.25rem;
    line-height: 1;
}

/* If card first loads collapsed: (Overwrites opened case) */
.d-flex .collapse-toggle.collapsed[b-o3ndqr2z3k] {
    content: "Show Details";
    font-family: inherit !important;
    padding: revert;
    font-size: 0.875rem;
    line-height: normal;
}

.d-flex .collapse-toggle[b-o3ndqr2z3k]::after {
    padding: 0 1.4em 0 1.4em;
}

.d-flex .collapse-toggle.collapsed[b-o3ndqr2z3k]::after {
    content: "Show Details";
    font-family: inherit !important;
    padding: revert;
    font-size: 0.875rem;
    line-height: normal;
}
/* _content/EstateView/Pages/IntakeForm/SubComponents/AssetMulticheck.razor.rz.scp.css */
.asset-form[b-9tga4pepl8] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 5px;
    background-color: #eee;
    border: 8px solid #eee;
    border-radius: 6px;
}

[b-9tga4pepl8] .check-item {
    min-width: 33% !important;
}
/* _content/EstateView/Pages/IntakeForm/SubComponents/CoDriverMulticheck.razor.rz.scp.css */
.asset-form[b-n2bmdlugcj] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 5px;
}

.plus-box[b-n2bmdlugcj] {
    margin: 5px;
    cursor: pointer;
    transition: transform 0.05s;
    border: 1px solid #bbb;
    border-radius: 0.25rem;
}

    .plus-box:hover[b-n2bmdlugcj] {
        transform: scale(1.05);
    }

.plus-label[b-n2bmdlugcj] {
    min-width: 200px;
    margin: 3px 3px;
    border: 1px solid #aaa;
    border-radius: 0.25rem;
}

    .plus-label.set[b-n2bmdlugcj] {
        border: none;
        margin: 5px;
        cursor: pointer;
        position: relative;
        top: -0.1em;
        min-width: fit-content;
    }

.plus-item[b-n2bmdlugcj] {
    margin-right: 5px;
    width: fit-content;
    border: 1px solid #ced4da;
    border-radius: 4px;
    display: flex;
    max-width: 100%;
    transition: transform 0.05s;
    align-items: center;
}

    .plus-item:hover[b-n2bmdlugcj] {
        transform: scale(1.05);
    }
/* _content/EstateView/Pages/IntakeForm/SubComponents/ConfirmRemoveModal.razor.rz.scp.css */
.blurred-background[b-do98cbyu3y] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent */
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center; /* Centers modal vertically */
    justify-content: center; /* Centers modal horizontally */
    z-index: 3000;
}

.modal-box[b-do98cbyu3y] {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 3px solid #dc3545; /* Red border */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.close-btn[b-do98cbyu3y] {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: red;
}

.divider[b-do98cbyu3y] {
    height: 5px;
    background-color: #dc3545; /* Red */
    width: 100%;
    margin: 15px 0;
}
/* _content/EstateView/Pages/IntakeForm/SubComponents/CustomizationModal.razor.rz.scp.css */
/*.modal-body {
    max-height: 85vh;
}*/

.modal-content[b-1vw0l8ow7a] {
    margin: auto;
    max-width: none;
}

.modal-dialog[b-1vw0l8ow7a] {
    max-width: 90vw;
}

.scrollable[b-1vw0l8ow7a] {
    height: 100%;
    overflow-y: scroll;
}

.showcase[b-1vw0l8ow7a] {
    height: 100%;
    position: relative;
}

.content-row[b-1vw0l8ow7a] {
    height: 68vh;
    border: 4px solid #181C32;
    border-radius: 3px;
}

.collapse-toggle.collapsed[b-1vw0l8ow7a] {
    content: "\F279";
    font-family: bootstrap-icons !important;
    font-size: 1.25rem;
    line-height: 1;
}

.collapse-toggle[b-1vw0l8ow7a]::after {
    content: "\F27C";
    font-family: bootstrap-icons !important;
    font-size: 1.25rem;
    line-height: 1;
}

.collapse-toggle.collapsed[b-1vw0l8ow7a]::after {
    content: "\F279";
    font-family: bootstrap-icons !important;
    font-size: 1.25rem;
    line-height: 1;
}

    .scrollable.selection-menu[b-1vw0l8ow7a] {
        background-color: #181C32;
        scrollbar-color: lightgray #181C32;
    }

    .btn-outline-primary[b-1vw0l8ow7a] {
        border: 1px solid #0d6efd !important;
        background-color: #fff;
        color: #0d6efd;
    }

    .btn-check:checked[b-1vw0l8ow7a] {
        color: #fff;
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

[b-1vw0l8ow7a] .showcase {
    cursor: not-allowed !important;
}

[b-1vw0l8ow7a] .showcase .no-click {
    pointer-events: none;
}

.selection-menu .card[b-1vw0l8ow7a] {
    color: #adb5bd;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(11, 94, 215, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

    .selection-menu .card:hover[b-1vw0l8ow7a] {
        color: #fff;
        background-color: rgba(11, 94, 215, 0.05);
    }

        .selection-menu .card:hover:not(.active) .card[b-1vw0l8ow7a] {
            background-color: rgba(11, 94, 215, 0.1);
            background-color: rgba(255, 255, 255, 0.05);
            color: #fff;
        }

    .selection-menu .card.active[b-1vw0l8ow7a], .selection-menu .card.general:hover[b-1vw0l8ow7a] {
        color: white;
        background-color: rgba(11, 94, 215, 0.5);
        cursor: initial;
    }

    .selection-menu .btn-outline-primary[b-1vw0l8ow7a] {
        background-color: darkblue;
        background-color: rgba(255, 255, 255, 0.05);
        border-color: #797E84 !important;
        color: #fff;
        font-weight: 400;
    }

        .selection-menu .btn-outline-primary:hover[b-1vw0l8ow7a] {
            background-color: blue;
            border-color: #0d6efd !important;
        }

    .selection-menu .card .btn-check:checked[b-1vw0l8ow7a] {
        color: #fff;
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

.selection-menu .btn .btn-tooltip[b-1vw0l8ow7a] {
    visibility: hidden;
    position: absolute;
    left: 50%;
    top: 110%;
    transform: translateX(-50%);
    background: #444444;
    color: #fff;
    border: 1px solid lightgray;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 6px 14px;
    border-radius: 6px;
    text-align: left;
    display: block;
    font-size: 0.95rem;
    width: 200px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

    [b-1vw0l8ow7a] .highlight {
        background-color: #ffebbd !important;
        border: 1.5px solid #ffab00 !important;
        box-shadow: 0px 0px 1px 1px #ffab00 !important;
    }

        [b-1vw0l8ow7a] .highlight:not(input) {
            border-radius: 4px;
            box-shadow: 0px 0px 0px 3px #ffebbd;
        }

        [b-1vw0l8ow7a] .highlight:hover {
            box-shadow: 0px 0px 1px 1px #ffab00, 0px 0px 0px 1px #555 !important;
        }

        [b-1vw0l8ow7a] .highlight:focus, .intake-form .highlight:focus-within[b-1vw0l8ow7a] {
            box-shadow: 0px 0px 2px 1px #ffab00, 0 0 0 0.25rem rgb(13 110 253 / 25%) !important;
        }

.selection-menu .btn:hover .btn-tooltip[b-1vw0l8ow7a] {
    visibility: visible;
    opacity: 1;
}

.custom-setting[b-1vw0l8ow7a] {
    border-radius: 4px;
    padding-top: 7px;
    width: 100%;
}

    .custom-setting:hover[b-1vw0l8ow7a] {
        background-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0px 5px 0px 4px rgba(255, 255, 255, 0.1);
    }

    .custom-setting .form-check-label[b-1vw0l8ow7a] {
        max-width: 100%;
        width: 100%;
    }
/*
.form-check.form-switch {
    border-radius: 4px;
    margin-top: 7px;
    width: 100%;
}

.form-check.form-switch label {
    max-width: 100%;
    width: 100%;
}

    .form-check.form-switch:hover {
        background-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0px 2px 0px 4px rgba(255, 255, 255, 0.1);
    }*/

.showcase .watermark[b-1vw0l8ow7a] {
    position: fixed;
    top: 45%;
    left: 65%;
    transform: translate(-50%, -50%);
    text-wrap: nowrap;
    cursor: not-allowed;
    pointer-events: none;
    font-size: 3rem;
    color: rgba(11, 94, 215, 0.5);
    z-index: 10;
}

.presetButton[b-1vw0l8ow7a] {
    width: 38px;
}

    .presetButton div[b-1vw0l8ow7a] {
        font-weight: initial;
        text-indent: initial;
        visibility: hidden;
        position: absolute;
        top: -110%;
        transform: translateX(-50%);
        background-color: #0b6ed7;
        color: white;
        border: 1px solid #0963c1;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        padding: 6px 14px;
        border-radius: 6px;
        white-space: nowrap;
        display: block;
        font-size: 0.95rem;
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .presetButton:hover div[b-1vw0l8ow7a] {
        visibility:visible;
        opacity: 1;
    }

.rename-blurred-background[b-1vw0l8ow7a] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent */
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center; /* Centers modal vertically */
    justify-content: center; /* Centers modal horizontally */
    z-index: 2000001;
}

/* Modal Box */
.rename-modal-box[b-1vw0l8ow7a] {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 3px solid #dc3545; /* Red border */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Close Button */
.rename-modal-close-btn[b-1vw0l8ow7a] {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: red;
}

/* Button Group */
.rename-btn-group[b-1vw0l8ow7a] {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}
/* _content/EstateView/Pages/IntakeForm/SubComponents/ExcelExportSelector.razor.rz.scp.css */
/*.excel-button {
    background-color: green !important;
    border-color: green !important;
}

    .excel-button:hover {
        background-color: darkgreen !important;
        border-color: darkgreen !important;
    }*/

.excel-button:hover[b-c4m6dm7ttg] {
    background-color: #21a366 !important;
}
/* _content/EstateView/Pages/IntakeForm/SubComponents/FamilyTreeGeneration.Razor.rz.scp.css */
.generation[b-praa7g9ywv] {
    border-radius: 0.25rem;
    padding: 0.3rem;
    height: fit-content;
}
/* _content/EstateView/Pages/IntakeForm/SubComponents/FamilyTreePerson.razor.rz.scp.css */
.person[b-4x3pr22r1e] {
    border-radius: 0.25rem;
    padding: 0.2rem;
    width: 10vw;
    min-height: 4vw;
    height: 100%;
    text-align: center;
    box-shadow: 0px 0px 3px 2px rgba(100, 100, 100, 0.2);
}

.stout[b-4x3pr22r1e] {
    min-height: 2.5vw;
    width: 7vw;
}

i[b-4x3pr22r1e] {
    font-size: 2rem;
}
/* _content/EstateView/Pages/IntakeForm/SubComponents/InputSwitch.Razor.rz.scp.css */
.form-control[b-azr2q0g9xl] {
    user-select: none;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 0;
}

@media(max-width: 768px)
{
    .form-control[b-azr2q0g9xl] {
        width: auto !important;
    }
}

    .form-control:hover[b-azr2q0g9xl] {
        box-shadow: 0px 0px 0px 1px #aaa;
    }

span[b-azr2q0g9xl] {
    width: 50%;
    text-align: center;
    border-radius: 3px;
    color: #444;
    padding: 0.375rem 0.75rem;
    transition: all 0.1s linear;
}

.True:hover:has(span:last-child:not(hover))[b-azr2q0g9xl],
.True span:first-child:hover[b-azr2q0g9xl] {
    background-color: #e7e7e7;
}

.False span:first-child[b-azr2q0g9xl] {
    background-color: #888;
    color: #fff;
}

.False:hover:has(span:first-child:not(hover))[b-azr2q0g9xl],
.False span:last-child:hover[b-azr2q0g9xl] {
    background-color: rgb(206, 223, 247);
}

.True span:last-child[b-azr2q0g9xl] {
    background-color: #0b5ed7;
    color: #fff;
}
/* _content/EstateView/Pages/IntakeForm/SubComponents/InputValue.razor.rz.scp.css */
.spinner[b-nde3b4wuof] {
    border: solid 1px lightgrey;
    border-radius: 0.15rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

div[b-nde3b4wuof] {
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.spinner.increment[b-nde3b4wuof] {
    border-bottom-right-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

    .spinner.decrement[b-nde3b4wuof] {
        border-bottom-left-radius: 0.25rem;
        border-top-left-radius: 0.25rem;
    }

    .spinner:hover[b-nde3b4wuof] {
        background-color: lightgray;
    }

input[b-nde3b4wuof] {
    background-color: transparent !important;
    text-align: center;
    border-radius: 0.15rem;
}

    div:focus-within > input:hover:not(:focus-within)[b-nde3b4wuof] {
        box-shadow: none !important;
    }

    input:focus[b-nde3b4wuof] {
        box-shadow: none;
        border-color: #ced4da;
    }

div[b-nde3b4wuof] {
    border-radius: 0.25rem;
    border: 1px solid transparent;
}

    div:hover:not(:focus-within) > input[b-nde3b4wuof] {
        box-shadow: 0px 0px 0px 1px #aaa;
    }

    div:focus-within[b-nde3b4wuof] {
        border-color: #86b7fe;
        box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
    }

        div:focus-within > input[b-nde3b4wuof], div:focus-within > .spinner[b-nde3b4wuof] {
            /*box-shadow: 0px 0px 1px 1px ;*/
        }
/* _content/EstateView/Pages/IntakeForm/SubComponents/InstantPlanFeedbackModal.razor.rz.scp.css */
#feedback[b-t6qjwmrc25] {
    height: 225px;
    width: 80%;
}

.red-warning[b-t6qjwmrc25] {
    color: red;
}
/* _content/EstateView/Pages/IntakeForm/SubComponents/MarketingToolbar.razor.rz.scp.css */
.marketing-toolbar[b-4q7wosxobh] {
    height: 60px;
    border-bottom: blue;
    background-image: linear-gradient(#517791e3, #517791e3), url(/image/marketing-background.png);
    background-size: cover;
    background-position: 0 22%;
}

.marketing-toolbar .row[b-4q7wosxobh] {
    height: 100%;
}

.toolbar-link[b-4q7wosxobh] {
    color: white;
    cursor: pointer;
    transition: all 0.1s linear;
    background-color: rgba(11, 94, 215, 0.8);
    backdrop-filter: blur(4px);
    background-image: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 8px;
    padding: 4px;
    box-shadow: 1px 2px 8px 1px #131C32;
    text-align: center;
    width: 70%;
    border: none;
}

    .toolbar-link:hover[b-4q7wosxobh] {
        transform: scale(1.05);
        background-color: #084bac;
    }

    .marketing-toolbar .top-left-logo[b-4q7wosxobh] {
        backdrop-filter: blur(4px) brightness(0.5) hue-rotate(12deg);
        border-radius: 6px;
        padding: 4px;
        color: white;
        cursor: pointer;
        margin-top: 1px;
        max-height: 58px;
    }

    .marketing-toolbar .fullscreen-btn[b-4q7wosxobh] {
        background-color: transparent;
        border: none;
        font-size: 1.4rem;
        padding: 8px;
        transition: transform 0.05s linear;
        color: white;
    }

    .marketing-toolbar .fullscreen-btn:hover[b-4q7wosxobh] {
        transform: scale(1.1) translateY(-1%);
    }

.blurred-background[b-4q7wosxobh] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent */
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center; /* Centers modal vertically */
    justify-content: center; /* Centers modal horizontally */
    z-index: 1001;
}

.modal-box[b-4q7wosxobh] {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    width: 90vw;
    height: 90vh;
    position: relative;
    border: 3px solid lightgray;
    max-width: none;
    overflow-y: scroll;
    text-align: initial;
    display: initial;
    overflow-x: clip;
}

    .modal-box.exports[b-4q7wosxobh] {
        overflow-y: clip;
    }

.close-btn[b-4q7wosxobh] {
    color: black;
}

    .close-btn:hover[b-4q7wosxobh] {
        color: gray;
    }

    .toolbar-link.export[b-4q7wosxobh] {
        width: 50%;
    }

        .toolbar-link.export.excel[b-4q7wosxobh] {
            background-color: #3CB371;
        }

        .toolbar-link.export.active[b-4q7wosxobh] {
            box-shadow: 1px 2px 8px 1px #131C32, inset 0px -2px 0 #ffebbd;
        }

            .toolbar-link.export.excel:hover[b-4q7wosxobh] {
                background-color: #308f5a;
            }

        .toolbar-link.export.planning-chart[b-4q7wosxobh] {
            background-color: #7B20AC;
        }

            .toolbar-link.export.planning-chart:hover[b-4q7wosxobh] {
                background-color: #621989;
            }

        .toolbar-link.export.disable[b-4q7wosxobh] {
            background-color:gray;
            transform: scale(1);
            cursor: not-allowed;
            width: 80%;
        }

.multi-option-switch[b-4q7wosxobh] {
    display: flex;
    position: relative;
    justify-content: space-between;
    padding: 5px 7px;
    background-color: #f0f0f0;
    border-radius: 6px;
    margin: 10px 0;
}

    .multi-option-switch input[type="radio"][b-4q7wosxobh] {
        display: none;
    }

    .multi-option-switch label[b-4q7wosxobh] {
        display: flex;
        flex: 1;
        justify-content: center;
        white-space: nowrap;
        cursor: pointer;
        text-align: center;
        color: #999;
        transition: background-color 0.4s, transform 0.4s;
        position: relative;
        z-index: 1;
        font-weight: 600;
        border-radius: 6px;
        padding: 2px 8px;
        transform: scale(0.9);
    }

    .multi-option-switch input[type="radio"]:checked + label[b-4q7wosxobh] {
        color: #fff;
        transform: scale(1);
        font-weight: 600;
        background: linear-gradient(99.02deg, rgb(0, 113, 188) 95.38%, rgb(0, 113, 188) 95.38%);
        padding: 2px 8px;
    }

    .multi-option-switch label[b-4q7wosxobh] {
        padding: 4px 12px;
        font-size: 0.9rem;
    }
/* _content/EstateView/Pages/IntakeForm/SubComponents/OwnershipMulticheck.razor.rz.scp.css */
.asset-form[b-sa5ho3qspv] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 5px;
}

.plus-box[b-sa5ho3qspv] {
    margin: 5px;
    cursor: pointer;
    transition: transform 0.05s;
    border: 1px solid #bbb;
    border-radius: 0.25rem;
}

    .plus-box:hover[b-sa5ho3qspv] {
        transform: scale(1.05);
    }

.plus-label[b-sa5ho3qspv] {
    min-width: 200px;
    margin: 3px 3px;
    border: 1px solid #aaa;
    border-radius: 0.25rem;
}

    .plus-label.set[b-sa5ho3qspv] {
        border: none;
        margin: 5px;
        cursor: pointer;
        position: relative;
        top: -0.1em;
        min-width: fit-content;
    }

.plus-item[b-sa5ho3qspv] {
    margin-right: 5px;
    width: fit-content;
    border: 1px solid #ced4da;
    border-radius: 4px;
    display: flex;
    max-width: 100%;
    transition: transform 0.05s;
    align-items: center;
}

    .plus-item:hover[b-sa5ho3qspv] {
        transform: scale(1.05);
    }
/* _content/EstateView/Pages/IntakeForm/SubComponents/PDFMenu.razor.rz.scp.css */
.btn-icon[b-ua0u4n87nf] {
    float:left;
    font-size: 1.5rem;
}

/* Override toolbar buttons */
.modal-box .btn[b-ua0u4n87nf] {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.modal-box .btn-primary[b-ua0u4n87nf] {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
    /* Width not overriden, it just applies to all primary buttons in the modal. */
    width: 90%;
}

    .modal-box .btn-primary:hover[b-ua0u4n87nf] {
        color: #fff;
        background-color: #0b5ed7;
        border-color: #0a58ca;
    }

.modal-box .btn-secondary[b-ua0u4n87nf] {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

    .modal-box .btn-secondary:hover[b-ua0u4n87nf] {
        color: #fff;
        background-color: #5c636a;
        border-color: #565e64;
    }

.modal-box .btn-outline-primary[b-ua0u4n87nf] {
    color: #0d6efd;
    border-color: #0d6efd;
    /* Width not overriden, it just applies to all primary buttons in the modal. */
    width: 90%;
}

    .modal-box .btn-outline-primary:hover[b-ua0u4n87nf] {
        color: white;
        background-color: #0d6efd;
    }

/* End toolbar override */

.modal-box .icon-holder[b-ua0u4n87nf] {
    line-height: 130%;
}

.loading-circle[b-ua0u4n87nf] {
    border-width: 1vh;
    border-style: solid;
    border-color: rgb(52, 152, 219) rgb(243, 243, 243) rgb(243, 243, 243);
    border-image: initial;
    border-radius: 50%;
    width: 20vh;
    height: 20vh;
    display: inline-block;
    animation-name: loadingCircle-b-ua0u4n87nf;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes loadingCircle-b-ua0u4n87nf {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.multi-option-switch[b-ua0u4n87nf] {
    display: flex;
    position: relative;
    justify-content: space-between;
    padding: 5px 7px;
    background-color: #f0f0f0;
    border-radius: 6px;
    margin: 10px 0;
}

    .multi-option-switch input[type="radio"][b-ua0u4n87nf] {
        display: none;
    }

    .multi-option-switch label[b-ua0u4n87nf] {
        display: flex;
        flex: 1;
        justify-content: center;
        white-space: nowrap;
        cursor: pointer;
        text-align: center;
        color: #999;
        transition: background-color 0.4s, transform 0.4s;
        position: relative;
        z-index: 1;
        font-weight: 600;
        border-radius: 6px;
        padding: 2px 8px;
        transform: scale(0.9);
    }

    .multi-option-switch input[type="radio"]:checked + label[b-ua0u4n87nf] {
        color: #fff;
        transform: scale(1);
        font-weight: 600;
        background: linear-gradient(99.02deg, rgb(0, 113, 188) 95.38%, rgb(0, 113, 188) 95.38%);
        padding: 2px 8px;
    }

    .multi-option-switch label[b-ua0u4n87nf] {
        padding: 4px 12px;
        font-size: 0.9rem;
    }

.red-hover:hover[b-ua0u4n87nf] {
    background-color: #ab0f36 !important;
}

.red-always[b-ua0u4n87nf] {
    background-color: #ab0f36 !important;
}

.divider[b-ua0u4n87nf] {
    height: 2px;
    background-color: lightgray;
    width: 100%;
    margin: 15px 0;
}
/* _content/EstateView/Pages/IntakeForm/SubComponents/PlanningChartSelector.razor.rz.scp.css */
.chart-button:hover[b-rtul8b3wuu] {
    background-color: #ab0f89 !important;
    background-color: #7300e6 !important;
}

img[b-rtul8b3wuu] {
    width: initial !important;
}

.btn-outline-primary[b-rtul8b3wuu] {
    color: #007bff;
    border: 2px solid #007bff !important;
    border-radius: 6px !important;
    background-color: initial !important;
}

    .btn-outline-primary:hover[b-rtul8b3wuu] {
        background-color: #007bff;
    }
/*
.blurred-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    max-width: 35vw;
    max-height: 90vh;
    width: 90%;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: red;
}

.divider {
    height: 5px;
    background-color: #dc3545;
    width: 100%;
    margin: 15px 0;
}

.scrollable-group {
    max-height: 75vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}

.image-button {
    background-color: white;
}

    .image-button:hover {
        background-color: blue;
    }*/
/* _content/EstateView/Pages/IntakeForm/SubComponents/Radio.razor.rz.scp.css */
.btn[b-0z8l61xeev] {
    border: 1px solid #ced4da;
    padding: 0.375rem 0.2rem;
}

.highlight *[b-0z8l61xeev] {
    border-color: #ffab00;
}

.btn-group[b-0z8l61xeev] {
    gap: 0;
    max-width: 100%;
}

.btn[b-0z8l61xeev] {
    min-width: fit-content;
    color: #444;
}

.btn-check:checked + .btn-outline-secondary[b-0z8l61xeev] {
    background-color: #0b5ed7;
    color: white;
}

.btn:hover[b-0z8l61xeev] {
    background-color: #0b5ed7;
}
/* _content/EstateView/Pages/IntakeForm/SubComponents/SingleCheckbox.razor.rz.scp.css */
.check-box[b-fldlnsdiiq] {
    margin: 5px 0 5px 5px;
    width: 20px;
    height: 20px;
    pointer-events: none;
    position: relative;
}

.check-label[b-fldlnsdiiq] {
    margin: 5px;
    cursor: pointer;
    position: relative;
    top: -0.1em;
}

.check-item[b-fldlnsdiiq] {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid #ced4da;
    border-radius: 4px;
    cursor: pointer;
    min-width: fit-content;
    max-width: 100%;
    transition: transform 0.05s;
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

    .check-item:hover[b-fldlnsdiiq] {
        transform: scale(1.05);
    }
/* _content/EstateView/Pages/IntakeForm/Tabs/KeyFinancialData.razor.rz.scp.css */
.total-value[b-k8vokiv39b] {
    margin: auto !important;
    text-align: center !important;
    cursor: not-allowed;
}

.investment-label[b-k8vokiv39b] {
    font-weight: 500;
    text-align: center;
}

[b-k8vokiv39b] .investment-field {
    justify-content: center;
    align-content: center;
}

.total-showcase[b-k8vokiv39b] {
    background-color: #deeeff;
    border-radius: 4px;
    border: 1px solid lightgray;
}
/* _content/EstateView/Pages/IntakeForm/Tabs/PersonalDetails.razor.rz.scp.css */
/* _content/EstateView/Pages/IntakeForm/Tabs/ResultTabs/FamilyInfo_ResultsTab.razor.rz.scp.css */
[b-mn94yenl3o] .sibling-group {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    padding: 0.5rem;
    height: fit-content;
    margin: 0 0.5rem;
}

    [b-mn94yenl3o] .sibling-group.Male {
        border-top: 0.5rem solid lightblue;
    }

    [b-mn94yenl3o] .sibling-group.Other {
        border-top: 0.5rem solid wheat;
    }

    [b-mn94yenl3o] .sibling-group.Female {
        border-top: 0.5rem solid lightpink;
    }

    [b-mn94yenl3o] .sibling-group.common {
        border-top: 0.5rem solid lightgreen;
    }



[b-mn94yenl3o] .married {
    background-color: lightgreen;
    border-radius: 0.5rem;
}

[b-mn94yenl3o] .single, [b-mn94yenl3o] .married {
    padding: 0.4rem;
}

    [b-mn94yenl3o] .branch.abs {
        position: absolute;
    }

        [b-mn94yenl3o] .branch.abs.vertical {
            left: calc(50% - 5vw);
        }

    [b-mn94yenl3o] .branch.vertical {
        border-left: 3px solid green;
        width: 10vw;
        transform: translateX(50%);
    }

    [b-mn94yenl3o] .branch.horizontal {
        border-top: 3px solid green;
        height: 10vw;
    }

[b-mn94yenl3o] .branch-row {
    position: relative;
    height: 75px;
}
/* _content/EstateView/Pages/IntakeForm/Tabs/ResultTabs/LIPO_ResultsTab.razor.rz.scp.css */
th[b-hfvwf5mntz] {
    white-space: pre;
}

th:not(:first-child)[b-hfvwf5mntz], td:not(:first-child)[b-hfvwf5mntz] {
    border-left: 1px solid lightgray;
}
/* _content/EstateView/Pages/Toolbar/PageAdditions/InstantPlanToolbar.razor.rz.scp.css */
/*.portal-link {
    transition: all 0.2s linear;
    background-position: right bottom;
    background-image: linear-gradient(to right, #D7840B 50%, transparent 50%);
    background-size: 200% 100%;
}

.portal-link:hover {
    background-position: left bottom; 
}


*/

.portal-link.portal-link[b-cgae5d0bdy] {
    background-color: #e9ecef;
    color: #0b5ed7;
    border: 1px solid #0b5ed7;
    box-shadow: 0px 0px 0px 1px #0b5ed7, 2px 2px 4px -1px black;
    transition: all linear 0.1s;
    transform: scale(0.98);
}

    .portal-link.portal-link:hover[b-cgae5d0bdy] {
        background-color: #084BAC;
        box-shadow: 0px 0px 3px -1px black;
        transform: scale(0.98) translate(1px, 1px);
        color: white;
    }

    .settings.settings:hover[b-cgae5d0bdy] {
        background-color: #2b3259;
    }
    .tools[b-cgae5d0bdy]::after {
        content: "\F279";
        font-family: bootstrap-icons !important;
        border-top: none;
    }

    .tools:hover[b-cgae5d0bdy]::after {
        content: "\F27C";
    }

.dropdown-menu[b-cgae5d0bdy] {
    background-color: #0b5ed7;
}

/*
.dropdown-item {
    color: white;
    cursor: pointer;
}

.dropdown-menu {
    transform: translate3d(0, 31px, 0) !important;
    opacity: 1;
    transition: transform 0.2s ease, opacity 0.2s ease;
    color: white;
}

@starting-style {
    .dropdown-menu {
        transform: translate3d(0, 0, 0) !important;
        opacity: 0;
    }
}*/
