@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;
    padding: 10px;
    background-color: #ffffff;
    position: relative;
    width: 100%;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to navbar */
}

.navbar img {
    width: 10vw;
    max-width: 150px;
    height: auto;
    margin-right: 20px;
}

.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;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    font-family: 'SuisseIntl', sans-serif; /* Apply font to navbar content */
}

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

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

.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: 8px; /* 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);
}

.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;
}

.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-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;
    }
}

.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: #f7f9fc;
    
    border-left: 4px solid #0073FD;
    
    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;
    }
}

.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;
    }
}