@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto/Roboto-Regular.woff2") format("woff2"),
        url("../fonts/Roboto/Roboto-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto/Roboto-Medium.woff2") format("woff2"),
        url("../fonts/Roboto/Roboto-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto/Roboto-Bold.woff2") format("woff2"),
        url("../fonts/Roboto/Roboto-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --theme-color: #005288;
    --text-color: #747474;
    --link-text-color: #005288;
    --theme-background: linear-gradient(
        180deg,
        #005288 0%,
        rgba(0, 82, 136, 0.9) 99.3%,
        rgba(0, 82, 136, 0.9) 99.31%
    );
    --light-blue: rgba(0, 82, 136, 0.6);
    --green-color: rgba(28, 197, 0, 0.72);

    --roboto-font: "Roboto";
    --font-awesome: "Font Awesome 5 Pro";

    --title-font: 26px;
    --subtitle-font: 20px;
    --regular-font: 16px;

    --title-line-height: 30px;
    --subtitle-line-height: 24px;
    --regular-line-height: 20px;
}

a,
a:hover {
    text-decoration: none !important;
}

body {
    margin: 0;
    font-family: var(--roboto-font) !important;
    background-color: #fafafa !important;
}

input {
    width: 100%;
    box-sizing: border-box;
    outline: none;
    color: var(--text-color);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

button {
    width: 100%;
    background-color: #005288;
    cursor: pointer;
    text-decoration: none;
    color: var(--white);
    border: 0;
    border-radius: 6px !important;
    outline: none !important;
}

.loader-container {
    position: fixed;
    height: 100%;
    width: 100%;
    display: none;
    background: #ffffffe0;
    top: 0;
    z-index: 9999999 !important;
}

.loader {
    position: absolute;
    top: 50%;
    left: 47%;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    /* border-top: 16px solid #3498db; */
    border-top: 16px solid #005288;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    z-index: 9999 !important;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

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

    100% {
        transform: rotate(360deg);
    }
}

.font_italic {
    font-style: italic;
}

.max_content {
    width: 100%;
    /* max-width: 1030px; */
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
}

/* Header Css */
/* header.page_header {
    padding: 0;
} */

.header_section_main {
    background-color: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
}

.Page_title_main {
    padding-top: 100px;
}

.show-page-title-main {
    padding-top: 0px;
}

.header_section_main .header_logo img {
    width: 160px;
    height: auto;
}

.header_section_main .header_section_inner {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_section_main .header_section_inner .account_signout a {
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    color: #005288bf;
    text-decoration: none;
}

.header_section_main .header_section_inner .menu_bar_icon i {
    font-size: 30px;
    line-height: 35px;
    color: #005288bf;
}

.header_section_main .header_section_inner .header_actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header_section_main .header_section_inner .exit_application a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header_section_main .header_section_inner .exit_application i {
    font-size: 16px;
    line-height: 1;
    color: #005288;
    transition: all 0.3s ease;
}

.header_section_main .header_section_inner .exit_application span {
    font-size: 14px;
    font-weight: 500;
    color: #005288;
    transition: all 0.3s ease;
}

.header_section_main .header_section_inner .exit_application a:hover {
    background-color: #005288;
    border-color: #005288;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 82, 136, 0.2);
}

.header_section_main .header_section_inner .exit_application a:hover i,
.header_section_main .header_section_inner .exit_application a:hover span {
    color: #ffffff;
}

/* Responsive exit button for mobile */
@media only screen and (max-width: 768px) {
    .header_section_main .header_section_inner .exit_application a {
        padding: 6px 12px;
        gap: 5px;
    }

    .header_section_main .header_section_inner .exit_application span {
        font-size: 13px;
    }

    .header_section_main .header_section_inner .exit_application i {
        font-size: 14px;
    }
}

/* Page Title Text Css */
.Page_title_main .main_title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 90px;
    background: var(--theme-background);
}

.Page_title_main .main_title h1 {
    color: var(--white);
    font-size: var(--title-font);
    line-height: var(--title-line-height);
    font-weight: 700;
    margin: 0;
}

.page_main {
    padding: 50px;
}

.page_inner {
    min-height: 769px;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    background-color: var(--white);
}

/* Contact Section */
.contact_section .contact_title {
    text-align: center;
}

.contact_section .contact_title h3 {
    font-size: var(--subtitle-font);
    line-height: var(--subtitle-line-height);
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 10px;
}

.contact_section .contact_details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 30px;
}

.contact_section .contact_details span {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-color);
}

.contact_section .contact_details .teliphone span .fa-phone {
    transform: rotate(90deg);
}

/* Card Section */
.card_section .card_block {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
    background: linear-gradient(
        180deg,
        #005288 0%,
        rgba(0, 82, 136, 0.75) 100%
    );
    color: #fff;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
}

.card_section .card_block span {
    font-size: var(--subtitle-font);
    line-height: var(--subtitle-line-height);
    font-weight: 400;
}

/* Sidebar */
.overlay {
    display: none;
    background: #00528878;
    opacity: 0.3;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 3;
    cursor: pointer;
}

.overlay.active {
    display: block;
}

.sidebar {
    width: 300px;
    background: #fff;
    border-right: 1px solid #ccc;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100%;
    transition: 0.3s;
    z-index: 11;
}

.sidebar.active {
    right: 0;
}

.sidebar_action {
    width: 300px;
    text-align: center;
    position: absolute;
    padding: 20px 10px;
    bottom: 0;
    color: var(--light-blue);
}

.sidebar_action a,
.sidebar_action a:hover {
    color: var(--light-blue);
}

.sidebar .menu_bar_icon_close {
    padding: 20px;
}

.sidebar .menu_bar_icon_close i {
    font-size: 30px;
    line-height: 35px;
    color: var(--light-blue);
}

.sidebar .sidebar_title {
    background: var(--theme-background);
    text-align: center;
    color: var(--white);
}

.sidebar .sidebar_title h1 {
    margin: 0;
    font-size: 26px;
    line-height: 30px;
    padding: 15px;
    font-weight: 400;
}

.sidebar ul.nav {
    padding: 20px 0;
}

.sidebar ul.nav li {
    flex: 0 0 100%;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
}

.sidebar ul.nav li a {
    color: var(--theme-color);
    font-size: var(--subtitle-font);
    line-height: var(--subtitle-line-height);
}

.sidebar ul.nav li.active {
    background: var(--theme-background);
}

.sidebar ul.nav li.active a {
    color: var(--white);
}

/* Footer */
.footer_section_main {
    background-color: #fafafa;
    padding: 0 20px 20px;
}

footer.page_footer {
    width: 100%;
    max-width: 2128px;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    background-color: #fff;
    margin: 0 auto;
}

.page_footer .footer_section_inner {
    padding: 20px;
    text-align: center;
    color: var(--text-color);
}

.page_footer .footer_section_inner .footer_tag p {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #747474;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.page_footer .footer_section_inner .footer_tag img {
    width: 100%;
    max-width: 100px;
}

.page_footer .footer_section_inner .footer_address {
    font-size: 16px;
    line-height: 20px;
    color: #747474;
    margin-bottom: 20px;
}

.page_footer .footer_section_inner .footer_address p {
    margin-bottom: 0;
}

.page_footer .footer_section_inner .footer_markers h3 {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}

.page_footer .footer_section_inner .footer_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.page_footer .footer_section_inner .footer_content p {
    max-width: 565px;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
}

.page_footer .footer_section_inner .footer_content img {
    max-width: 70px;
}

@media only screen and (max-width: 1024px) {
    .page_main {
        padding: 20px;
    }
}

@media only screen and (max-width: 767px) {
    /* .contact_section .contact_title h3 {
        font-size: 22px;
        line-height: 28px;
    } */

    .contact_section .contact_details span {
        font-size: 18px;
        line-height: 22px;
    }

    .contact_section .contact_details {
        row-gap: 10px;
    }
}

.custom-file-button input[type="file"] {
    margin-left: -2px !important;
}

.custom-file-button input[type="file"]::-webkit-file-upload-button {
    display: none;
}

.custom-file-button input[type="file"]::file-selector-button {
    display: none;
}

.custom-file-button:hover label {
    background-color: #dde0e3;
    cursor: pointer;
}

.swal2-popup .swal2-actions {
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: center;
    margin: 1.25em auto 0;
    z-index: 1;
}

.isDisabled {
    color: currentColor;
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
}

.tooltip-inner {
    background-color: #005288 !important;
    /* color: #fff ; */
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #005288 !important;
}

/* .bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    border-bottom-color: green !important;
} */
.page_header.max_content {
    padding: 12px 20px;
}

.application_status_inner {
    flex: 1;
    text-align: center;
}

.application_status_inner h1 {
    padding: 10px 0px;
}

.application_status_content {
    padding: 20px 0;
    border-bottom: 1px solid #b5b5b5;
}

.application_status_content_text {
    color: var(--text-color);
}

@media only screen and (max-width: 768px) {
    .page_inner.borrower_inner
        .toggle_content.opportunity_details_content
        .application_status
        .agreement_btn {
        position: unset;
    }

    .application_status_inner h1 {
        text-align: start;
    }

    .application_status_content_text {
        text-align: start;
    }
}

.download_report {
    text-align: center;
}

.Page_title_main .download_btn {
    background-color: #005288;
    border-color: #005288;
    font-weight: 700;
    padding: 10px 30px;
    color: #fff;
    margin: 10px;
}

.download_report .btn.download_btn:hover {
    color: #fff !important;
}

.swal-wide {
    width: 850px !important;
}

.change_opportunity_button {
    padding: 10px 30px;
    line-height: 20px;
    font-weight: 700;
}

.table {
    color: #747474 !important;
}

thead th {
    font-weight: 400;
    border-color: #b5b5b5 !important;
}

tbody tr td {
    font-weight: 700;
    border: 0px;
}

input[type="radio"] {
    border-radius: 20px;
}

input[type="radio"],
.selection_box input[type="checkbox"] {
    width: 17px;
    height: 17px;
    display: grid;
    place-content: center;
    border: 1px solid #909090;
    cursor: pointer;
    -webkit-appearance: none;
    margin: 3px 0;
    overflow: hidden;
}

.selection_box input[type="checkbox"] {
    /* margin: 0 auto; */
    border-radius: 4px;
    width: 20px;
    height: 20px;
    margin: 3px auto;
}

input[type="radio"]:checked::before,
.selection_box input[type="checkbox"]:checked::before {
    transform: scale(1);
}

input[type="radio"]:before {
    border-radius: 20px;
}

.selection_box input[type="checkbox"]::before {
    border-radius: 4px;
}

input[type="radio"]:before,
.selection_box input[type="checkbox"]::before {
    content: "";
    width: 17px;
    height: 17px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 2em #005288;
}

.selection_box input[type="checkbox"]::before {
    width: 20px;
    height: 20px;
}

.disableButton {
    opacity: 0.6;
    pointer-events: none;
}

.table th,
.table td {
    text-align: start;
}

.edit_product_table tbody a {
    color: #005288;
}

.selection_box {
    padding-right: 10px !important;
    padding-left: 0px !important;
}

.reassignLoan .selection_box {
    padding-right: 20px !important;
}

.reassignLoan .selection_box.sorting_1 {
    padding-right: 20px;
}

.reassignLoan.manage_product_main .manage_product_inner {
    max-width: 1000px;
}

.reassignLoan .edit_product_table .form-group {
    position: relative;
}

.reassignLoan .edit_product_table .form-group input {
    padding-left: 40px;
}

.reassignLoan .edit_product_table .form-group .form-group-search {
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 25px;
    color: #747474;
    line-height: 0;
}

@media only screen and (max-width: 768px) {
    .reassignLoan .edit_product_table {
        display: block;
        overflow-x: auto;
    }

    .reassignLoan .dataTables_wrapper .dataTable {
        overflow-x: scroll;
    }
}

.reassignLoan .dataTables_wrapper {
    margin-bottom: 10px;
}

.note-modal button,
.note-editor.note-frame .note-btn-group button {
    width: unset;
}

.note-editor.note-frame .note-btn-group button {
    border-radius: 3px !important;
}

.note-btn-group > .note-btn-group:not(:last-child) > .note-btn,
.note-btn-group > .note-btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.note-btn-group > .note-btn-group:not(:last-child) > .note-btn,
.note-btn-group > .note-btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.note-btn-group > .note-btn-group:not(:first-child) > .note-btn,
.note-btn-group > .note-btn:not(:first-child) {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.note-dropdown-menu .note-color-palette .note-color-row button {
    border-radius: 0px !important;
}

.note-modal-body .checkbox input {
    width: unset;
    margin-right: 5px;
}

.note-modal-footer input {
    width: unset;
}

@media only screen and (min-width: 992px) {
    .application_status_content .application_status_inner .resent_link {
        position: absolute;
        right: 58px;
        top: 50%;
        transform: translateY(-50%);
    }

    .application_status_content_text {
        text-align: center;
    }
}

@media only screen and (max-width: 1024px) {
    .change_opportunity_owner_link p {
        text-align: start !important;
        margin-top: 10px;
    }
}

.edit_system_form .upload-wrapper {
    margin: 0 auto !important;
}
.stage_section_inner .status_true,
.stage_section_inner .status_false {
    border-radius: 50px;
    height: 20px;
    width: 20px;
    font-size: 10px;
    margin: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
span.status_true i {
    transform: translateX(-1px);
}
.status_text {
    font-size: 14px;
}
.stage_section_inner .status_true {
    color: #008000 !important;
    border: 1px solid #008000;
}

.stage_section_inner .status_false {
    color: #ff0000 !important;
    border: 1px solid #ff0000;
    padding: 0 1px 0 0;
}

@media only screen and (min-width: 768px) {
    .system_details .system_details_content .system_details_inner {
        position: relative;
        padding-bottom: 40px;
    }
    .system_details_inner .text-end.edit_contract {
        position: absolute;
        right: 48px;
        bottom: 20px;
    }
}
@media only screen and (max-width: 767px) {
    .system_details
        .system_details_content
        .system_details_inner
        p.edit_contract {
        width: 100%;
        padding: 0px;
    }
}
.show_dealer_fee {
    font-size: 13px;
    margin-right: 10px;
}
.schedule_welcome_letter_width {
    max-width: 297px;
}
.welcome_letter_font {
    color: #005288bf !important;
}
.date_select {
    width: 700px;
}

.select2-selection.select2-selection--single {
    display: flex !important;
    align-items: center;
    min-height: 45px;
}
.select2-selection.select2-selection--single .select2-selection__arrow {
    display: none;
}

.circle-check-btn {
    border-radius: 50%;
    height: 20px;
    width: 20px;
    font-size: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #198754;
    border: 1px solid #198754;
}
.circle-uncheck-btn {
    border-radius: 50%;
    height: 20px;
    width: 20px;
    font-size: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #dc3545;
    border: 1px solid #dc3545;
}
.dataTables_wrapper .showing-text .dataTables_info {
    padding-top: 0px;
    font-size: 16px;
    font-weight: 400;
    text-align: start;
    color: #333;
}

.showing-text {
    padding-top: 0px;
    font-size: 16px;
    font-weight: 400;
    text-align: start;
    color: #333;
}

.funding_text {
    color: #005288;
}

.co-borrower-request {
    margin-top: -28px !important;
}

.save_for_later_disable {
    color: #ccc !important;
}

.amountFormat {
    text-align: left !important;
}
.js_camera {
    width: 130px;
}
.stripe_cam {
    width: 190px;
    font-size: 18px;
    font-weight: 700;
    color: #747474;
    cursor: pointer;
}
.stripe_cam_completed {
    width: 190px;
    font-size: 18px;
    font-weight: 700;
    color: #005288bf;
}

.upload_doc_completed {
    width: 190px;
    font-size: 18px;
    font-weight: 700;
    color: #005288bf;
}

.js_cams_title {
    text-align: center;
}
.stripe_iframe {
    width: 100%;
    height: 1000px;
}
.upload-document label.upload {
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    padding: 5px 15px;
    border-radius: 4px;
    color: #868686;
    overflow: hidden;
    height: 36px;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}
.upload-document {
    position: relative;
    max-width: 58%;
    width: 100%;
}
.upload-document input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    max-width: 100%;
}
.document_text_label {
    color: #747474 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    margin-right: 13px;
}
.upload_doc_validation {
    position: absolute;
    top: 100%;
}
.text-success-stripe {
    color: #3c743c;
}
.borrower-text {
    display: flex;
    justify-content: center;
}
@media only screen and (min-width: 768px) {
    .solar_loan_main .solar_first_form .borrower_title .disclosures-text {
        margin-left: -50px;
        margin-bottom: 30px;
    }
}
.upload_document_model .hic-upload {
    max-width: 900px !important;
}
.hic_upload_btn {
    float: right;
}
.hic_file_validation {
    width: 350px !important;
}
.remove_button {
    background: #e9ecef !important;
    border: 1px solid #ced4da !important;
    color: #aaaaaa !important;
}
.add_more_button {
    position: absolute;
    bottom: 30px;
    left: 70px;
    width: 7%;
}
.add_more_small_form {
    position: absolute;
    bottom: 30px;
    left: 216px;
    width: 7%;
}
.identity-btn {
    border-color: #005288 !important;
    font-size: var(--regular-font);
    padding: 16px !important;
}
.ident-verification-text {
    color: #005288 !important;
}
.verification-completed,
.verification-incompleted {
    padding: 17px 0px;
}
.verification-incomplete {
    font-size: 18px;
    font-weight: 600;
}

/* Span for additional info */
.stage_section_inner ul li span {
    /* font-size: 14px; */
    color: #666;
    margin-left: 5px;
}
.details_title {
    display: block;
    min-height: 20px; /* ensures consistent height */
}

.details_data {
    display: block;
    min-height: 20px; /* keeps space even if empty */
}
