:root
{
  --thor-yellow-1: #FFD043;
  --thor-yellow-2: #FFB300;
  --thor-yellow-3: #f39e00;
  --thor-blue-1: #0561e3;
  --thor-blue-2: #0073FD;
  --thor-black-1: #241F21;
  --thor-grey-1: #acacac;
  --thor-grey-2: #dedede;
  --thor-grey-3: #eeeeee;
  --thor-green-1: #198754;
  
  --thor-complete: var(--thor-yellow-1);
  --thor-in-progress: var(--thor-blue-1);
  --thor-not-started: var(--thor-grey-1);
}

@font-face {
    font-family: 'SuisseIntl';
    src: local(SuisseIntl), url("../fonts/SuisseIntl-Regular.fb4819667af3.ttf") format('truetype');
}

@font-face {
    font-family: 'SuisseIntl-Semibold';
    src: local(SuisseIntl-Bold), url("../fonts/SuisseIntl-Semibold.2ab64620d4b0.ttf") format('truetype');
}

body {
    font-family: 'SuisseIntl', sans-serif;
    
    overflow-x: hidden;
}

.navbar {
    display: flex;
    align-items: center;
    background-color: var(--thor-blue-2);
    position: relative;
    width: 100%;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to navbar */
}

.navbar img#logo
{
    width: 80px;
    max-width: 80px;
    height: auto;
    margin-left: 40px;
    margin-right: 0px;
}

.main-nav-btn
{
    padding-top: 10px;
    padding-bottom: 10px;
}

.main-content {
    margin-bottom: 100px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to main content */
}

.navbar-content
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to navbar content */
}

.navbar-right
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    margin-left: 0px;
}

.navbar a, .navbar span {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to navbar links */
    
    &.dropdown-item
    {
        color: #000;
    }
}

.navbar a:hover, .navbar span:hover {
    text-decoration: underline;
}

.global-breadcrumbs
{
    margin-top: 60px;
}

.user-display {
    margin-left: auto;
    font-size: 0.7rem;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to user display */
}

.footer {
    text-align: center;
    padding: 10px;
    background-color: #241F21;
    color: #fff;
    border-top: 1px solid #e7e7e7;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: 0.8rem;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to footer */
}

.footer a {
    color: #fff;
}

.dropdown {
    display: flex;
    align-items: center;
    position: relative;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to dropdown */
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% - 10px);
    left: 0;
    z-index: 1000;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
    font-family: 'SuisseIntl', sans-serif; /* Apply font to dropdown menu */
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #000;
    z-index: -1;
}

.navbar img + .navbar-content::before {
    left: auto;
    right: 0;
}
.form-section {
    margin-bottom: 10px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to form section */
}

.table-wrapper table {
    font-size: 0.8rem;
    overflow-x: auto;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to table */
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to table */
}

.table th, .table td {
    white-space: nowrap; /* Prevent text from wrapping */
    font-family: 'SuisseIntl', sans-serif; /* Apply font to table cells */
}

/* Allow wrapping in asset/liability tables */
.asset-list-container table th,
.asset-list-container table td,
.liability-list-container table th,
.liability-list-container table td {
    white-space: normal;
    overflow-wrap: break-word;
}

.btn-primary {
    background-color: #0073FD;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    color: white;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to primary button */
}

.form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    box-shadow: none;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to form control */
}

.form-control:focus {
    border-bottom: 1px solid #007bff;
    box-shadow: none;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to focused form control */
}

.rounded-edges {
    border-radius: 20px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to rounded edges */
}

.loading-circle {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #0073FD;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'SuisseIntl', sans-serif; /* Apply font to loading circle */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to form row */
}

.form-group {
    flex: 1;
    margin-right: 10px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to form group */
}

.form-group:last-child {
    margin-right: 0;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to last form group */
}

.toggle-container {
    width: 100%;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to toggle container */
}

.partner-switch {
    margin-left: auto;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to partner switch */
}

.main-container {
    display: flex;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to main container */
}

.sidebar {
    background-color: rgb(255, 255, 255);
    padding: 20px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to sidebar */
}

.content {
    padding: 20px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to content */
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to sidebar content */
}

.sidebar-content a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: #000;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to sidebar links */
}

.sidebar-content a.current {
    font-weight: bold;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to current sidebar link */
}

.sidebar-content a:hover {
    text-decoration: underline;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to hovered sidebar link */
}

.btn.custom-link {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: left;
    user-select: none;
    background-color: transparent;
    border: none;
    padding: 0;
    font-size: 0.875rem; /* Smaller font size */
    line-height: 1.25; /* Smaller line height */
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to custom link button */
}

.btn.custom-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.custom-link.current {
    font-weight: bold;
    background-color: #007bff;
    color: #fff;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to current custom link */
}

.custom-link:focus, .custom-link:active {
    outline: none;
    color: #000;
}

.custom-link:visited {
    color: #000;
}

.btn.custom-btn {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #007bff;
    border: none;
    padding: 0.25rem 0.5rem; /* Smaller padding */
    font-size: 0.875rem; /* Smaller font size */
    line-height: 1.25; /* Smaller line height */
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to custom button */
}

.btn.custom-btn:hover {
    background-color: #0056b3;
    text-decoration: none;
}

.custom-btn.current {
    font-weight: bold;
    background-color: #0056b3;
    color: #fff;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to current custom button */
}

.custom-btn:focus, .custom-btn:active {
    outline: none;
    background-color: #004085;
}

.custom-btn:visited {
    color: #fff;
}

.asset-list-container, .liability-list-container {
    font-size: 0.6em;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to asset and liability list containers */
}

.asset-item, .liability-item {
    margin-bottom: 10px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to asset and liability items */
}

.asset-details, .liability-details {
    margin-bottom: 5px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to asset and liability details */
}

.asset-delete-form, .liability-delete-form {
    display: inline-block;
    margin-right: 5px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to asset and liability delete forms */
}

.asset-form, .liability-form {
    font-size: 0.9em;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to asset and liability forms */
}

.asset-progress-box, .liability-progress-box {
    padding: 10px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to asset and liability progress boxes */
}

.asset-heading, .liability-heading {
    font-size: 1.2em;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to asset and liability headings */
}

.asset-form-content, .liability-form-content {
    margin-bottom: 10px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to asset and liability form content */
}

.asset-form .btn, .liability-form .btn {
    font-size: 0.8em;
    padding: 5px 10px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to asset and liability form buttons */
}

.insurance-list-container {
    font-size: 0.6em;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to insurance list container */
}

.insurance-item {
    margin-bottom: 10px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to insurance item */
}

.insurance-details {
    margin-bottom: 5px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to insurance details */
}

.insurance-delete-form {
    display: inline-block;
    margin-right: 5px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to insurance delete form */
}

.insurance-form {
    font-size: 0.9em;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to insurance form */
}

.insurance-progress-box {
    padding: 10px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to insurance progress box */
}

.insurance-heading {
    font-size: 1.2em;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to insurance heading */
}

.insurance-form-content {
    margin-bottom: 10px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to insurance form content */
}

.insurance-form .btn {
    font-size: 0.8em;
    padding: 5px 10px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to insurance form buttons */
}

.fund-list-container {
    font-size: 0.6em;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to fund list container */
}

.fund-item {
    margin-bottom: 10px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to fund item */
}

.fund-details {
    margin-bottom: 5px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to fund details */
}

.fund-delete-form {
    display: inline-block;
    margin-right: 5px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to fund delete form */
}

.fund-form {
    font-size: 0.9em;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to fund form */
}

.fund-progress-box {
    padding: 10px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to fund progress box */
}

.fund-heading {
    font-size: 1.2em;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to fund heading */
}

.fund-form-content {
    margin-bottom: 10px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to fund form content */
}

.fund-form .btn {
    font-size: 0.8em;
    padding: 5px 10px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to fund form buttons */
}

.btn-big {
    font-size: 1.5em !important; /* Make the buttons bigger */
    border-radius: 30px !important; /* Rounded corners */
    padding: 10px 50px !important; /* Increase horizontal padding */
    margin-bottom: 10px !important; /* Add space between buttons */
    background-color: #0073FD !important; /* Set background color */
    color: white !important; /* Set text color */
    border: none !important; /* Remove border */
    font-family: 'SuisseIntl', sans-serif; /* Apply font to big button */
}

.btn-setup-client {
    font-size: 1.5em !important; /* Make the buttons bigger */
    border-radius: 30px !important; /* Rounded corners */
    padding: 10px 50px !important; /* Increase horizontal padding */
    margin-bottom: 10px !important; /* Add space between buttons */
    background-color: #241F21 !important; /* Set background color */
    color: white !important; /* Set text color */
    border: none !important; /* Remove border */
    font-family: 'SuisseIntl', sans-serif; /* Apply font to setup client button */
}

.info-table {
    border: none !important;
    border-collapse: collapse !important; /* Ensure no gaps between borders */
    font-family: 'SuisseIntl', sans-serif; /* Apply font to info table */
}

.info-table th,
.info-table td {
    border: none !important;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to info table cells */
}

.page-header h1 {
    font-size: 4em; /* Adjust the size as needed */
    font-family: 'SuisseIntl', sans-serif; /* Apply font to page header */
}

/* Make long plan titles wrap instead of stretching the layout */
.plan-title {
    display: block;
    max-width: 600px;      /* adjust value if needed */
    white-space: normal;
    overflow-wrap: break-word;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns, each taking up half the screen */
    padding-left: 0px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to container */
}

.column {
    padding: 20px;
    padding-left: 0px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to column */
}

.column-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to column bottom */
}

.image-button-container {
    text-align: center;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to image button container */
}

.small-image {
    width: 50px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    font-family: 'SuisseIntl', sans-serif; /* Apply font to small image */
}

.btn-grey {
    background-color: grey;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    color: white;
    text-align: center;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to grey button */
}

.completion-image {
    position: relative;
    display: inline-block;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to completion image */
}

.completion-image[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%; /* Position above the element */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 1;
    opacity: 0.8;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to tooltip */
}

.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to flex container */
}

.flex-container select {
    flex: 1;
    margin-right: 10px; /* Adjust the margin as needed */
    font-family: 'SuisseIntl', sans-serif; /* Apply font to flex container select */
}

.flex-container button {
    flex: 1;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to flex container button */
}

.btn-fact-find {
    font-size: 1em !important; /* Make the buttons bigger */
    border-radius: 30px !important; /* Rounded corners */
    padding: 10px 30px !important; /* Increase horizontal padding */
    margin-bottom: 10px !important; /* Add space between buttons */
    background-color: #0073FD !important; /* Set background color */
    color: white !important; /* Set text color */
    border: none !important; /* Remove border */
    font-family: 'SuisseIntl', sans-serif; /* Apply font to fact find button */
}

.custom-select {
    border: none;
    font-size: 1.2em; /* Adjust the font size as needed */
    padding: 5px; /* Optional: Add some padding for better appearance */
    background-color: transparent; /* Optional: Make the background transparent */
    outline: none; /* Remove the outline on focus */
    font-family: 'SuisseIntl', sans-serif; /* Apply font to custom select */
}

.text-link {
    color: black;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to text link */
}

.text-link img.link-icon {
    margin-right: 8px; /* Adjust the margin as needed */
    width: 75px; /* Set a fixed width */
    height: 75px; /* Set a fixed height */
    font-family: 'SuisseIntl', sans-serif; /* Apply font to link icon */
    border-radius: 100%;
}

.text-link img.link-icon-small {
    margin-right: 12px; /* Adjust the margin as needed */
    width: 50px; /* Set a fixed width */
    height: 50px; /* Set a fixed height */
    font-family: 'SuisseIntl', sans-serif; /* Apply font to link icon */
    border-radius: 100%;
}

.text-link:hover {
    text-decoration: underline;
    color: black;
    font-family: 'SuisseIntl', sans-serif; 
}

.info-list {
    list-style: none;
    padding: 0;
    font-family: 'SuisseIntl', sans-serif;
}

.info-list li {
    margin-bottom: 10px;
    font-family: 'SuisseIntl', sans-serif;
}

/* Allow long sidebar text to wrap naturally so it doesn’t break or shift the layout */
.info-list a {
    white-space: normal;
    overflow-wrap: break-word;
}

.info-list .d-flex {
    flex-wrap: wrap;
}

.circle-link, .circle-link-grey, .active-link {
    color: black;
    text-decoration: none;
    position: relative;
    padding-left: 30px;
    font-size: 25px;
    font-family: 'SuisseIntl', sans-serif; 
}

.circle-link::before, .circle-link-grey::before, .active-link::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'SuisseIntl', sans-serif;
}

.circle-link::before {
    background-color: #0073FD;
}

.circle-link-grey::before {
    background-color: rgb(189, 189, 189);
}

.circle-link:hover, .circle-link-grey:hover, .active-link:hover {
    text-decoration: underline;
    color: black;
    font-family: 'SuisseIntl', sans-serif;
}

.active-link {
    color: blue;
    text-decoration: none;
}

.asset-form {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}


.processing-table input,
.processing-table select,
.processing-table textarea {
    font-size: 0.8rem;
}

.processing-table table th:first-child,
.processing-table table td:first-child {
    width: 18%;
}

.client-detail-progress
{
    border-top: 2px solid #241F21;
    border-bottom: 1px solid #acacac;
    
    padding-top: 20px;
    padding-bottom: 20px;
    
    margin-bottom: 20px;
    margin-top: 20px;
}

.client-detail-btns
{
    display: flex;
    flex-direction: row;
    
    justify-content: space-between;
    
    margin-bottom: 50px;
    
    .client-detail-btn
    {
        margin-right: 10px;
    }
    
    .client-detail-btn:last-child
    {
        margin-right: 0px;
    }
}

.avatar-row
{
    display: flex;
    flex-direction: row;
    align-items: center;
    
    .avatar
    {
        margin-bottom: 0px;
        margin-left: -4px;
    }
    
    .avatar:first-child
    {
        margin-left: 0px;
    }
}

.avatar
{
    position: relative;
    
    display: block;
    
    width: 34px;
    height: 34px;
    
    min-width: 34px; /* Prevent shrinking horizontally */
    
    background-color: white;
    color: black;
    border-radius: 100%;
    border: 2px solid #eeeeee;
    
    margin-bottom: 0px;
    
    font-size: 14px;
    
    &a
    {
        cursor: pointer;
        text-decoration: none;
    }
    
    span
    {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        
        user-select: none;
    }
    
    img
    {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        
        width: 80%;
        height: 80%;
        
        user-select: none;
    }
}

.new-cust-staff-assignments-section
{
    /* background-color: #acacac; */
    /* height: 200px; */
}

/* Use in addition to btn and btn-primary */
.btn-black
{
    background-color: #000;
    color: #FFF;
    border-radius: 30px;
    padding-left: 12px;
    padding-right: 12px;
    
    box-shadow: 2px 2px 2px rgba(100, 100, 100, 0.5);
    
    &:hover
    {
        background-color: #575757;
    }
    
    &:focus
    {
        background-color: #575757;
        border-color: #e7e7e7;
        
        box-shadow: 0 0 0 .25rem #acacac !important;
    }
}

/* Use in addition to btn and btn-primary */
.btn-blue 
{
    background-color: #0561e3;
    
    border-radius: 30px;
    padding-left: 12px;
    padding-right: 12px;
    
    box-shadow: 2px 2px 2px rgba(100, 100, 100, 0.5);
    
    &:disabled
    {
        background-color: #acacac !important;
        cursor: none !important;
    }
}

.btn-yellow
{
    border-radius: 30px;
    padding-left: 12px;
    padding-right: 12px;
    
    box-shadow: 2px 2px 2px rgba(100, 100, 100, 0.5);
    
    background-color: #FFD043;
    color: #000;
    
    &:hover
    {
        background-color: #ffb300;
    }
}

.btn-grey-1
{
    border-radius: 30px;
    padding-left: 12px;
    padding-right: 12px;
    
    box-shadow: 2px 2px 2px rgba(100, 100, 100, 0.5);
    
    background-color: #acacac;
    color: #fff;
    
    border: 2px solid transparent !important;
    
    &:hover
    {
        background-color: #dedede;
        color: #000;
        border: 2px solid transparent !important;
    }
    
    &:active
    {
        border: 2px solid #fff !important;
        box-sizing: border-box;
        background-color: #acacac !important;
        color: #fff;
    }
    
    &.set-active
    {
        background-color: #acacac !important;
        color: #fff;
    }
}

.btn-grey-2
{
    border-radius: 30px;
    padding-left: 12px;
    padding-right: 12px;
    
    box-shadow: 2px 2px 2px rgba(100, 100, 100, 0.5);
    
    background-color: #dedede;
    color: #000;
    
    border: 2px solid transparent;
    
    &:hover
    {
        background-color: #acacac;
        color: #fff;
        border: 2px solid transparent;
    }
    
    &:active
    {
        border: 2px solid #fff !important;
        box-sizing: border-box;
        background-color: #acacac !important;
        color: #fff;
    }
}

.btn-greyed
{
    border-radius: 30px;
    padding-left: 12px;
    padding-right: 12px;
    
    box-shadow: 2px 2px 2px rgba(100, 100, 100, 0.5);
    
    background-color: #bebebe;
}

.btn-simple
{
    width: 100%;
    
    padding: 6px;
    padding-left: 12px;
    padding-right: 12px;
    
    text-align: center;
    
    /* margin-left: 6px;
    margin-right: 6px; */
}

.btn-choice
{
    margin-right: 20px;
    border-radius: 30px !important;
    
    background-color: #bebebe;
    color: white;
    
    min-width: 100px;
    
    /* &.active
    {
        background-color: #000;
    } */
}

.btn-wide-1
{
    min-width: 130px;
}

.btn-small-1
{
    font-size: 12px;
}

/* .btn-check:checked + .btn
{
    background-color: #000;
    
    &.btn-check:hover
    {
        background-color: #5f2b2b;
    }
}

.btn-check:active + .btn
{
    background-color: #000;
} */

/* .btn-check:hover + .btn
{
    background-color: #acacac;
} */

.btn-check
{
    &:checked + .btn
    {
        background-color: #000 !important;
        /* color: white !important; */
    }
    
    &:not(:checked) + .btn
    {
        background-color: #ACACAC !important;
        /* color: white !important; */
    }
    
    &:hover + .btn
    {
        background-color: #393939 !important;
        color: white !important;
    }
}

.selected-slider
{
    min-width: 80px !important;
    min-height: 30px !important;
    margin: 0px !important;
    cursor: pointer;
}

.select-choice-btn
{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.file-name-display
{
    min-width: 200px;
    max-width: 400px;
    white-space: normal;
}

.discrete-section
{
    padding: 10px;
    
    box-shadow: 2px 3px 3px rgba(100, 100, 100, 0.5);
    border-left: 1px solid rgba(100, 100, 100, 0.25);
    border-top: 1px solid rgba(100, 100, 100, 0.25);
    border-radius: 20px;
    
    padding: 14px;
    
    background: #fff;
    
    border-left: 4px solid #0062ff;
    
    table
    {
        tr
        {
            &:last-child
            {
                border-bottom: 0px solid transparent;
            }
        }
        
        th
        {
            padding: 0px;
            padding-top: 6px;
            padding-bottom: 6px;
            
            text-align: center;
            
            .table-header-cell
            {
                font-size: 12px;
                
                /* border-right: 1px solid black; */
            }
            
            &:not(:last-child)
            {
                .table-header-cell
                {
                    border-right: 1px solid black;
                }
            }
            
        }
        
        .table-body-cell
        {
            font-size: 12px;
            
            padding-top: 4px;
            padding-bottom: 4px;
            
            padding-left: 10px;
            padding-right: 10px;
        }
        
        margin-bottom: 0px;
    }
}

.discrete-sub-section
{
    border-radius: 20px;
    padding: 14px;
    
    background-color: #f7f9fc;
    
    .mb-3
    {
        margin-bottom: 0 !important;
    }

    &.form-select
    {
        padding: 10px 14px;
    }

    &.form-control, &.form-select
    {
        resize: none;
        border: 1px solid transparent;
        background-color: #fff;
        border-radius: 20px;
        box-shadow: 2px 2px 4px 2px rgba(100, 100, 100, 0.3);
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

        &:focus
        {
            border: 1px solid #0073FD;
        }

        &:disabled
        {
            background-color: #f3f3f3;
        }
    }
}

.discrete-sub-section-2
{
    padding: 10px;
    
    border-radius: 20px;
    
    padding: 20px;
    
    background: #f7f9fc;
    
    border: 2px solid #000;
    
    .mb-3
    {
        margin-bottom: 0 !important;
    }
    
    &[data-active='true']
    {
        border: 2px solid var(--thor-blue-1);
    }
}

.rounded-input-section
{
    .form-select
    {
        padding: 10px 14px !important;
    }
    
    .form-control, .form-select
    {
        resize: none;
        border: 1px solid transparent;
        background-color: #fff;
        border-radius: 20px !important;
        box-shadow: 2px 2px 4px 2px rgba(100, 100, 100, 0.3);
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

        &:focus
        {
            border: 1px solid #0073FD;
        }

        &:disabled
        {
            background-color: #f3f3f3;
        }
    }
}

.asset-section, .existing-asset-section
{
    margin-bottom: 20px;
    
    &:last-child
    {
        margin-bottom: 0px;
    }
    
    label:not(.form-check-label)
    {
        margin-bottom: 8px;
    }
}

.lozenge-existing
{
    background-color: var(--thor-blue-1);
    color: white;
    border-radius: 100vmax;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
    font-size: 12px;
}

.lozenge-new
{
    background-color: var(--thor-green-1);
    color: white;
    border-radius: 100vmax;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
    font-size: 12px;
}

@media (max-width: 1100px)
{
    .discrete-sub-section, .discrete-sub-section-2
    {
        textarea, input[type="text"], select, p, &.form-control, &.form-select
        {
            font-size: 12px !important;
        }
    }
}

.btn-group-toggle input[type="radio"]
{
    /* position: absolute; */
    /* opacity: 0; */
    /* pointer-events: none; */
}

.btn-check:checked + .btn {
    /* background-color: transparent !important; */
    /* border-color: black !important;
    color: black !important; */
}

.input-disabled
{
    color: #acacac;
    pointer-events: none;
    accent-color: red;
}

.costs-delete-btn
{
    background-color: red;
    min-width: 90px;
    font-size: 14px;
    
    &:hover, &:active
    {
        background-color: rgb(193, 0, 0);
    }
}

.costs-text-input
{
    width: 100%;
    height: 100%;
    box-sizing: border-box; /* include padding/border in width/height */
    display: block; /* ensures it fills the cell horizontally */
    
    border: 1px solid #eeeeee;
}

.border-btm-row-1
{
    border-bottom: 1px solid #acacac;
    &:last-child
    {
        border-bottom: 0px solid transparent;
    }
}

.border-btm-row-2
{
    border-bottom: 1px solid #dedede;
    &:last-child
    {
        border-bottom: 0px solid transparent;
    }
}

.border-btm-row-3
{
    border-bottom: 1px solid #eeeeee;
    &:last-child
    {
        border-bottom: 0px solid transparent;
    }
}

.highlight-border-1
{
    outline: 3px solid red !important;
    outline-offset: 4px;
}

#add-file-note-btn {
    position: fixed;
    bottom: 64px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;

    &:hover {
        transform: scale(1.1);
    }

    img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }
}

/* Limit the width of notification items and add truncation */
.notification-item
{
    max-width: 300px; /* Adjust as needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes pulse {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.fact-find-dot
{
    width: 16px;
    height: 16px;
    border-radius: 100%;
    
    background-color: #acacac;
    &.fact-find-dot-blue
    {
        background-color: #0561e3;
    }
}

.clickable-link
{
    cursor: pointer;
    &:hover
    {
        text-decoration: underline;
    }
}

.fact-find-sections-table
{
    table-layout: fixed;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 20px;
    padding-left: 20px;
    
    tr
    {
        width: 100%;
    }
}

.hover-bubble-elem
{
    &.hovered
    {
        background-color: #dedede;
    }
}

.hover-bubble
{
    position: absolute;
    top: 90%;
    left: 0%;
    
    min-width: 250px;
    
    background-color: white;
    
    display: none;
    
    z-index: 100;
    
    cursor: default;
    
    padding: 4px;
    
    border-radius: 10px;
    border: 2px solid #ffb300;
}

.modal-open .select2-container
{
    z-index: 9999;
}

.goals-section-heading
{
    position: absolute;
    
    top: -50px;
}

.doc_pro_section_heading {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.submit-btn.select-choice-btn
{
    background-color: #d8d8d8;
    border-radius: 30px;
    border: none;
    padding: 5px 12px;
    width: 100%;
    box-shadow: 2px 2px 2px rgba(100, 100, 100, 0.5);
    transition: background-color 0.2s, color 0.2s;

    &:focus
    {
        background-color: #0073FD;
        color: #fff;
    }
}

button.final-submit {
    &:disabled {
        background-color: gray;
        box-shadow: none;
    }
}

.section-value[data-active='true'] .submit-btn.select-choice-btn {
        background-color: #0561e3;
        color: #ffffff;
    }

.view-doc-btn {
        border-radius: 20px;
        background-color: #000;
        color: #fff;
        text-decoration: underline;
        padding: 6px 12px;
        font-size: 0.8rem;
        text-align: center;
        width: 100%;
        display: block;
    }
    .view-doc-btn:hover {
        background-color: #333;
        color: #fff;
    }

.doc-proc-progress-table-container
{
    margin-bottom: 50px;
    
    .doc-proc-progress-table
    {
        width: 100%;
        border-collapse: collapse;
        
        table-layout: fixed;
        
        tr
        {
            height: 50px;
            
            td
            {
                border-right: 1px solid #fff;
                background-color: #dedede;
                
                height: 50px;
                
                overflow: hidden;
                
                &:first-child
                {
                    border-top-left-radius: 25px;
                    border-bottom-left-radius: 25px;
                }
                
                &:last-child
                {
                    border-top-right-radius: 25px;
                    border-bottom-right-radius: 25px;
                    
                    border-right: none;
                }
                
                &:hover
                {
                    background: #acacac;
                    transition: background 0.3s ease;
                }
                
                &.active
                {
                    background: #0073FD;
                    color: #fff;
                    
                    &:hover
                    {
                        background: #0055bc;
                        transition: background 0.3s ease;
                    }
                }
                
                .doc-proc-section
                {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    overflow: hidden;
                    
                    cursor: pointer;
                    
                    width: 100%;
                    height: 100%;
                    
                    border-bottom: 2px solid transparent;
                    
                    box-sizing: border-box;
                    
                    position: relative;
                    
                    a
                    {
                        color: inherit;
                        text-decoration: none;
                        text-align: center;
                        
                        font-size: 15px;
                    }
                    
                    &.smaller-text
                    {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        
                        a
                        {
                            font-size: 12px;
                        }
                    }
                    
                    &.doc-proc-section-pending
                    {
                        border-bottom: 2px solid var(--thor-grey-1);
                    }
                    
                    &.doc-proc-section-started
                    {
                        border-bottom: 2px solid var(--thor-blue-1);
                    }
                    
                    &.doc-proc-section-success
                    {
                        border-bottom: 2px solid var(--thor-yellow-1);
                    }
                    
                    .doc-proc-section-status-display
                    {
                        position: absolute;
                        bottom: 2px;
                        left: 2px;
                        
                        width: 10px;
                        height: 10px;
                        
                        color: white;
                        
                        margin-bottom: 0px;
                        font-size: 8px;
                        
                        text-align: center;
                        
                        &.has-info
                        {
                            background-color: rgba(50, 200, 50, 0.5);
                            border-radius: 100%;
                        }
                    }
                }
                
                &:first-child
                {
                    .doc-proc-section
                    {
                        .doc-proc-section-status-display
                        {
                            left: 12px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1100px)
{
    .doc-proc-section
    {
        a
        {
            font-size: 12px !important;
        }
    }
}

.filter-btn-active
{
    background-color: #FFD043;
    color: #000;
    
    &:hover
    {
        background-color: #ffb300;
    }
    
    transition: background-color 0.3s ease;
}

.flowing-overlay
{
    position: relative;
    overflow: hidden;
}

.flowing-overlay::after
{
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    
    animation: flow 3s infinite;
}

@keyframes flow
{
    0% { left: -150%; }
    50% { left: 100%; }
    100% { left: 100%; }
}