@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* custom variables for colors */
:root {
    --Title: #252628;
    --Fill-Primary-Default: #007960;
    --Fill-Primary-Default-500: #D1FAF5;
    --Blue-500: #4674C3;
    --Grey-500: #55565A;
    --Grey-300: #F5F5F5;
    --Fill-Error-Darker: #8E1F0C;
    --Red-700: #C72F16;
    --Yellow-800: #B46B1E;
    --Yellow-500: #FEF9C3;
    --Description: #36373A;
    --Body: #36373A;
    --Fill-Error-Subtle: #FCECEB;
    --Link: #4674C3;
    --Inverted: #FFFFFF;

    --Number-Scale-2s-100: 100px;
    --Input-Field-V-Padding: 12px;
    --Input-Field-H-Padding: 20px;
    --Input-Field-Spacing: 8px;
    --Number-Scale-Siziing-6: 6px;

}

body {
    background-color: #F4F5F5 !important;
    font-family: 'Roboto', sans-serif !important;
}

* {
    font-family: 'Roboto', sans-serif !important;
}

/* Icons */
.fa,
.fa-brands,
.fa-classic,
.fa-regular,
.fa-solid,
.fab,
.far,
.fas {
    font-family: "Font Awesome 7 Free" !important;
}

/*heading blue under line class
.heading-with-line {
    position: relative;
    display: inline-block;
}

.heading-with-line::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 20%;
    height: 4px;
    background-color: var(--Fill-Primary-Default);
}
    */

.page_title {
    color: var(--Title);
    font-size: 55px;
    font-style: normal;
    font-weight: 400;
    line-height: 66px;
    /* 120% */
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 20px;
}

.page_title:after {
    content: '';
    background-color: var(--Fill-Primary-Default);
    display: block;
    width: 60px;
    height: 5px;
    position: absolute;
    bottom: -5px;
    left: 0px;
}

.page_desc {
    max-width: 91%;
    color: var(--Description);
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 31.2px;
    /* 120% */
}

.headline_regular {
    color: var(--Description);
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 31.2px;
    /* 120% */
}

.welcome_header {
    color: var(--off-black) !important;
    text-align: center !important;
    font-size: 53.494px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: normal !important;
}

.body_regular {
    color: var(--Body);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 140% */
}

.h3_regular {
    color: var(--Link);
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    /* 120% */
}

.h4_regular {
    color: var(--off-black) !important;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
}

.h4_bold {
    color: var(--Title);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    /* 150% */
}

.h5_bold {
    color: var(--Body);
    /*font-family: Inter; */
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.section-title {
    color: var(--Body);
    /*font-family: Inter; */
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 25px;
}

.forgot_password {
    color: var(--Link);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.fcsl_dark_button {
    border-radius: var(--Number-Scale-Siziing-6);
    font-size: 20px;
    font-weight: 600px;
    font-style: normal;
    line-height: 28px;
    background-color: var(--Grey-500);
    color: var(--Inverted);
}

.fcsl_dark_button:hover {
    background-color: var(--Grey-500);
    color: var(--Inverted);
}

/*Home page*/

.home_icon_titles {
    color: var(--Body);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.home_icon_description {
    color: #54565A;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 130% */
}

.home_action_required_label {
    padding: 10px;
    border-radius: var(--Number-Scale-2s-100);
    border: 1px solid var(--Yellow-800);
    background: #FEF8F1;
}

.required_icon {
    color: var(--Yellow-800);
}

.home_warning_badge {
    padding: 10px;
    border-radius: var(--Number-Scale-2s-100);
    border: 1px solid var(--Red-700);
    background: var(--Fill-Error-Subtle);
}

.warning_badge_icon {
    color: var(--Red-700);
}

.cursor-pointer:hover {
    cursor: pointer;
}

/* Applications and Forms page */

.Salesperson_or_agent {
    display: flex;
    height: 28px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.Arrow_description {
    display: flex;
    width: 972px;
    padding: 2px 0;
    align-items: center;
    gap: 10px;
}

.apply_and_renew_buttons_layout {
    display: flex;
    padding: var(--Input-Field-V-Padding) var(--Input-Field-H-Padding);
    justify-content: center;
    align-items: center;
    gap: var(--Input-Field-Spacing);
}

.apply_button {
    border-radius: var(--Number-Scale-Siziing-6);
    color: white;
    background: var(--Blue-500);
}

.apply_button:hover {
    border-radius: var(--Number-Scale-Siziing-6);
    color: white;
    background: var(--Blue-500);
}

.renew_license_button {
    border-radius: var(--Number-Scale-Siziing-6);
    color: white;
    background: var(--Grey-500);
}

.renew_license_button:hover:hover {
    border-radius: var(--Number-Scale-Siziing-6);
    color: white;
    background: var(--Grey-500);
}



.breadcrumb a {
    text-decoration: none !important;
}

.breadcrumb {
    margin: 0px !important;
}

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

.rotate-icon {
    transition: transform 0.3s ease;
}

.btn[aria-expanded="true"] .rotate-icon {
    transform: rotate(180deg);
}

.alert-readonly {
    background-color: #f5f5f5;
    color: #41464b;
    border-color: #d3d6d8;
}

/*real estate agent sole propriotr*/
.table thead {
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    font-weight: bold;
    font-size: 1.2rem;
    align-items: center;
    margin-bottom: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table td {
    padding: 10px 0;
}

.table tr {
    border-bottom: 1px solid #ccc;
}

/*whats next partnership */
/* payment success notification */
.successfull-payment-notification {
    background-color: #E6F9F2;
    color: #2E9D8B;
    padding: 12px 20px;
    border-radius: 6px;
    border: 2 solid #B2E5D6;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 140% */
}


.License-expires-label {
    background-color: var(--Fill-Error-Subtle);
    color: var(--Red-700);
    margin-bottom: 0px;
    padding: 5px 10px !important;
    border: 1px solid var(--Red-700);
    border-radius: var(--Number-Scale-2s-100);
    display: inline-flex;
    align-items: center;
}

.license-renew-button {
    color: white;
    border-radius: var(--Number-Scale-Siziing-6);
    background: var(--Fill-Error-Darker);
}

.license-renew-button:hover {
    color: white;
    border-radius: var(--Number-Scale-Siziing-6);
    background: var(--Fill-Error-Darker);
}

.download_certificate_button {
    color: white;
    border-radius: var(--Number-Scale-Siziing-6);
    background: var(--Fill-Primary-Default);
}

.download_certificate_button:hover {
    color: white;
    border-radius: var(--Number-Scale-Siziing-6);
    background: var(--Fill-Primary-Default);
}

.fcsl_print_button {
    color: white;
    border-radius: var(--Number-Scale-Siziing-6);
    background: var(--Fill-Primary-Default);
}

.fcsl_print_button:hover {
    color: white;
    border-radius: var(--Number-Scale-Siziing-6);
    background: var(--Fill-Primary-Default);
}

.license-certificate-container {
    padding: 20px;
}

.license-certificate-table {
    width: 100%;
    border-collapse: collapse;
}

.license-certificate-table td {
    padding: 10px 0;
}

.license-certificate-table tr {
    border-bottom: 1px solid #ccc;
}

/* receipt */
.receipt-container {
    margin: 50px auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
}

.receipt-header {
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.receipt-table {
    width: 100%;
    border-collapse: collapse;
}

.receipt-table td {
    padding: 10px 0;
}

.receipt-table tr {
    border-bottom: 1px solid #ccc;
}

.receipt-table tr:last-child {
    border-bottom: none;
}

@media print {
    #printBtn {
        display: none;
    }

    body {
        background: #fff !important;
    }
}

/*whats next partnership end*/


/*profile page style*/
.profile-info img {
    display: none !important;
}

a.list-group-item[title="Profile"] {
    display: none !important;
}

a.list-group-item[title="Manage external authentication"] {
    display: none !important;
}

.card {
    border: none;
    border-radius: 8px;
}

a {
    text-decoration: none !important;
}


footer {
    background: #fff;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

h3.welcome_subheader {
    max-width: 490px;
    margin: 0 auto;
    line-height: 44px;
}

.attachmentsDiv {
    background: #f5f5f5 !important;
}

.form-control,
.input-group-text {
    background: #f5f5f5 !important;
    border-radius: 0px;
    border: 0px !important;
    border-bottom: 2px solid #cdcdcd !important;
    min-height: 45px;
}

.form-control:focus {
    background-color: var(--portalThemeColor7) !important;
    border: 0px;
    box-shadow: 0px 0px 0px;
    border-bottom: 2px solid #000 !important;
}

button[type="submit"] {
    min-height: 45px;
    background: var(--Grey-500);
    border: 0;
    border-radius: 0px;
}

.footer_links {
    gap: 25px;
    align-items: center;
}

.footer_links a {
    color: #000;
}

footer p {
    margin: 0;
}

.top_bar {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 18px;
}

.main_content {
    min-height: 82vh;
}



.tle_icon {
    max-width: 50px;
    margin-right: 15px;
}

img {
    max-width: 100%;
}



.card_icon {
    display: inline-block;
    min-width: 100px;
    height: 100px;
    vertical-align: middle;
    background-color: #f4f6f5;
    border-radius: 50%;
    max-width: 100px;
    text-align: center;
    align-content: center;
}

.accordion-header {
    margin-top: 0 !important;
    /* space between items */
}

.accordion_img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    vertical-align: middle;
}

.tab {
    cursor: pointer;
    padding-bottom: 4px;
    margin-right: 20px;
    display: inline-block;
}

.tab.active {
    border-bottom: 3px solid var(--Fill-Primary-Default);
    font-weight: 600;
    color: var(--Fill-Primary-Default);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.license_number_and_column_headers {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    /* width: 30%; */
}

.field_values {
    color: #000;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    width: 70%;
}

/*
.tab_containers {
    display: flex;
    padding: 20px;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 10px;
    flex-wrap: wrap;
}*/

.card_wrap {
    gap: 10px;
    padding: 10px;
}

.badge-rounded {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid;  
}

.badge-pill {
    padding: 10px 10px;
    border: 1px solid;
    border-radius: 30px;
}

.badge-red {
    background-color: var(--Fill-Error-Subtle);
    color: var(--Red-700);
    border-color: var(--Red-700);
}

.badge-warning {
    background-color: var(--Yellow-500);
    color: var(--Yellow-800);
    border-color: var(--Yellow-800);
}

.badge-Primary {
    background-color: var(--Fill-Primary-Default-500);
    color: var(--Fill-Primary-Default);
    border-color: var(--Fill-Primary-Default);
}

.badge-grey {
    background-color: var(--Grey-300);
    color: var(--Grey-500);
    border-color: var(--Grey-500);
}

.badge {
    background-color: transparent !important;
    padding: 10px 10px;
    border: 1px solid;
    border-radius: 15px;
}

span.badge.bg-warning {
    background-color: #ffc107 !important;
    border-color: #efe0cb;
    color: #fff;
}

span.badge.bg-danger {
    background-color: #dc3545 !important;
    border-color: #f2dada;
    color: #fff;
}

ul.breadcrumb {
    background-color: #fff;
    display: flex;
    align-items: center;
}

ul.breadcrumb img {
    max-width: 25px;
    margin-right: 5px;
}

ul.breadcrumb li {
    display: flex;
    align-items: center;
}

ul.breadcrumb li.breadcrumb_item:before {
    content: "\f054";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    margin: 0 15px;
    font-size: 12px;
}

.tle_card_wrap {
    padding: 0px;
}

.tle_card_wrap .card_icon {
    min-width: 65px;
    height: 65px;
    text-align: center;
    line-height: 75px;
}

.tle_card_wrap .card_icon i {
    font-size: 28px;
}

.tle_card_wrap p {
    margin: 0;
}

.text-primary {
    color: #537ac5 !important;
}

.bg-primary {
    background-color: #537ac5 !important;
}

.stepitem .progress {
    height: 25px;
    border-radius: 0px !important;
    margin-top: 10px !important;
    transform: skewX(-30deg);
}

.stepitem .progress .progress-bar {
    border-radius: 0px !important;
}

.step_first .progress {
    clip-path: polygon(0 0,
            /* top left */
            100% 0,
            /* top right */
            95% 100%,
            /* bottom right slanted in */
            0 100%
            /* bottom left */
        );
    transform: skewX(0deg);
}

.step_last .progress {
    clip-path: polygon(4.5% 0,
            /* top left slanted in */
            100% 0,
            /* top right */
            100% 100%,
            /* bottom right */
            0% 100%
            /* bottom left */
        );
    transform: skewX(0deg);
}

.progress {
    background: #a8c3f0;
}


.step-item .badge {
    background-color: #d3d4d6 !important;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    margin-right: 10px;
    position: relative;
    z-index: 9;
}

.step_name {
    color: var(--Body);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 140% */
}

.step-item .badge:after {
    content: '';
    position: absolute;
    bottom: -47px;
    left: 20.5px;
    width: 2px;
    height: 45px;
    background-color: #d3d4d6;
    z-index: -9;
}

.step-item:last-child .badge:after {
    display: none;
}

.wizard-steps li.step-item {
    display: flex;
    align-items: center;
}

.wizard-steps li.step-item.done .badge {
    background-color: #517dba !important;
}

.wizard-steps li.step-item.done .badge:after {
    background-color: #517dba;
}

.wizard-steps li.step-item.active .badge {
    background-color: #fff !important;
    border: 2px solid #517dba;
    color: #517dba !important;
}

.sidebar_steps {
    background-color: #f5f5f5;
    padding: 40px 20px;
}

.step_content {
    padding: 40px 30px;
    background: #fff;

}

select.form-select.step-content_select {
    width: auto;
    color: #517bc7;
    padding-left: 0px;
}

.form-select:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: 0px 0px 0px;
}

.sponsoring_agent_card_item {
    position: relative;
}

.sponsoring_agent_card_item button.btn-close.float-end {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
}

.custom-textarea::placeholder {
    color: #6c757d;
    padding-top: 10px;
}

.custom-textarea {
    resize: none;
    height: 120px !important;
}

.bg-light-primary {
    background-color: #aac3ee !important;
}

.bg-current {
    background-color: #f5b05b !important;
}

.text-current {
    color: #f5b05b !important;
}

div span {
    white-space: normal;
    /* allow wrapping */
    word-wrap: break-word;
    /* break long words */
    overflow-wrap: break-word;
    /* modern alternative */
}

.next-step {
    background-color: #507bc9 !important;
    border: 0;
    color: floralwhite;
}

.next-step:hover {
    background-color: #436ebd !important;
    color: floralwhite;
}

.next-step:active {
    color: white;
}

.prev-step,
.exit-step {
    background-color: #edebec;
    border: 0;
    color: #507ac4;
}

.prev-step:hover {
    background-color: #d9d6d8;
    color: #507ac4;
}

.prev-step:active {
    color: white;
}

.exit-step:hover {
    background-color: #d9d6d8;
    color: #507ac4;
}

.exit-step:active {
    color: #507ac4;
}

.btn-payment {
    background-color: #507bc9 !important;
    border: 0;
    color: floralwhite;
}

.btn-payment:hover {
    background-color: #436ebd !important;
    color: floralwhite;
}

.btn-payment:active {
    color: white;
}

.text-green {
    color: var(--Fill-Primary-Default);
}

.btn-blue {
    background-color: #507ac4;
    color: white;
}

.thick_border {
    border-width: 2px;
}

.warning-title {
    color: #ce802e;
}

.warning-icon i {
    color: #ce802e;
    font-size: 25px;
}

.warning-box {
    display: flex;
    gap: 20px;
}

.warning-icon {
    margin-top: 8px;
}

.file-upload-btn {
    background-color: #555;
    /* dark gray like image */
    border: none;
    color: #fff;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.file-upload-btn i {
    font-size: 14px;
}

.file-upload-btn:hover {
    background-color: #444;
}

label+hr {
    margin: 0.5rem 0;
}

.wizard-steps .step-item.done .badge {
    font-size: 0px;
}

.wizard-steps .step-item.done .badge::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    position: relative;
    left: -1px;
}

#legalDifferenceDropdown::after {
    display: none !important;
}

@media screen and (max-width: 991px) {
    .card_wrap {
        flex-direction: column;
    }

    .card_content {
        text-align: center;
    }

}

@media screen and (max-width: 767px) {

    .top_bar .row .d-flex,
    footer .row .d-flex {
        justify-content: center !important;
        text-align: center;
    }

    .form_col {
        position: absolute;
        height: 100%;
        background-color: #0000005e;
    }

    .form_col p {
        color: #fff;
    }

    .wizard-steps {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .wizard-steps li.step-item {
        width: 50%;
        background-color: #f5f5f5;
    }

    .step-item .badge:after {
        display: none;
    }

    .application-item {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }
}

@media screen and (max-width: 375px) {

    .main_logo {
        max-width: 100px;
        width: 222px !important;
        height: 222px !important;
    }

}

/* notification dialog */
.notification-dialog {
    width: 200px;
    position: fixed;
    top: 80px;
    right: 40px;
    background-color: var(--portalThemeColor8);
    color: var(--portalThemeColor7);
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1000;
}

.notification-dialog.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Search */
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

.search-icon {
    position: absolute;
    left: 12px;
    color: #888;
    pointer-events: none;
    font-size: 16px;
}

#lookup-input {
    padding: 8px 12px 8px 36px;
    /* left padding for icon space */
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.hidden {
    display: none;
}

#lookup-list {
    color: #517bc7;
    width: 100%;
    max-width: 400px;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0;
}

#lookup-list li {
    padding: 8px;
    cursor: pointer;
}

#lookup-list li:hover {
    background-color: #f0f0f0;
}

.validation-error-highlight {
    border: 1px solid #cb0a0a !important;
}

.validation-error-highlight-file {
    border: 1px solid #cb0a0a !important;
    color: #cb0a0a !important;
}

.validation-error-message {
    color: #cb0a0a;
    font-size: 9px;
    display: block;
}