﻿/*Start Credit Application style*/
.credit-application-table h4 {
    font-size: 40px;
    font-weight: 300;
    color: black;
}

.credit-application-table #wizHeader li .prevStep {
    background-color: #ededed;
}

    .credit-application-table #wizHeader li .prevStep:after {
        border-left-color: #ededed !important;
    }

.credit-application-table #wizHeader li .currentStep {
    background-color: #f1f6fc;
}

    .credit-application-table #wizHeader li .currentStep:after {
        border-left-color: #f1f6fc !important;
    }

.credit-application-table #wizHeader li .nextStep {
    background-color: #ededed;
}

    .credit-application-table #wizHeader li .nextStep:after {
        border-left-color: #ededed !important;
    }

.credit-application-table #wizHeader {
    list-style: none;
    overflow: hidden;
    font: 18px Helvetica, Arial, Sans-Serif;
    margin: 0px;
    padding: 0px;
    display: flex;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

    .credit-application-table #wizHeader li .Step-Circle {
        height: 18px;
        width: 18px;
        background-color: #333333;
        border-radius: 50%;
        display: inline-block;
        padding: 1px 5px;
        color: white;
        font-size: small;
        margin-right: 8px;
        vertical-align: middle;
        line-height: 18px;
    }

    .credit-application-table #wizHeader li {
        flex: 1;
    }

        .credit-application-table #wizHeader li a {
            color: #428cba;
            text-decoration: none;
            padding: 14px 0 14px 55px;
            background: brown;
            /* fallback color */
            background: hsla(34, 85%, 35%, 1);
            position: relative;
            display: block;
            float: left;
            width: 100%;
            font-weight: normal;
        }

            .credit-application-table #wizHeader li a:after {
                content: " ";
                display: block;
                width: 0;
                height: 0;
                border-top: 50px solid transparent;
                /* Go big on the size, and let overflow hide */
                border-bottom: 50px solid transparent;
                border-left: 30px solid hsla(34, 85%, 35%, 1);
                position: absolute;
                top: 50%;
                margin-top: -50px;
                left: 100%;
                z-index: 2;
            }

            .credit-application-table #wizHeader li a:before {
                content: " ";
                display: block;
                width: 0;
                height: 0;
                border-top: 50px solid transparent;
                border-bottom: 50px solid transparent;
                border-left: 30px solid #dadada;
                position: absolute;
                top: 50%;
                margin-top: -50px;
                margin-left: 1px;
                left: 100%;
                z-index: 1;
            }

        .credit-application-table #wizHeader li:first-child a {
            padding-left: 20px;
        }

        .credit-application-table #wizHeader li:last-child {
            padding-right: 0px;
        }

        .credit-application-table #wizHeader li a:hover {
            background: #f1f6fc;
        }

        .credit-application-table #wizHeader li:last-child a {
            padding-right: 0;
        }

            .credit-application-table #wizHeader li:last-child a::before,
            #wizHeader li:last-child a::after {
                display: none;
            }

        .credit-application-table #wizHeader li a:hover:after {
            border-left-color: #f1f6fc !important;
        }

.credit-application-table .content {
    height: 150px;
    padding-top: 75px;
    text-align: center;
    background-color: #F9F9F9;
    font-size: 48px;
}


.credit-application-table .step-one-wrp {
    width: 100%;
    float: left;
    padding: 10px;
}

    .credit-application-table .step-one-wrp .your-information {
        float: left;
        width: 68%;
    }


    .credit-application-table .step-one-wrp .right-side-detail {
        float: left;
        width: 32%;
    }

    .credit-application-table .step-one-wrp h6 {
        font-size: 22px;
        margin: 0;
        color: #343131;
    }

    .credit-application-table .step-one-wrp ul li {
        margin-bottom: 15px;
    }

    .credit-application-table .step-one-wrp li .label-field {
        display: inline-block;
        vertical-align: middle;
        margin-right: 15px;
        width: 22%;
        text-align: right;
        color: #343131;
        font-weight: 600;
        font-size: 16px;
    }

    .credit-application-table .step-one-wrp li .input-field {
        display: inline-block;
        vertical-align: middle;
        width: 60%;
        position: relative;
    }

        .credit-application-table .step-one-wrp li .input-field input {
            border-radius: 4px;
            border: 1px solid #ccc;
            width: 100%;
            padding: 8px 15px;
            font-size: 16px;
            color: #343131;
            box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.2);
        }

        .credit-application-table .step-one-wrp li .input-field span {
            position: absolute;
            right: -14px;
            color: #B20002;
            top: 12px;
            font-size: 20px;
            line-height: 12px;
        }

            .credit-application-table .step-one-wrp li .input-field span.ddl-error {
                position: absolute;
                right: -131px;
                color: #991919;
                top: 12px;
                font-size: 12px;
                line-height: 12px;
            }

            .credit-application-table .step-one-wrp li .input-field span.rfv-error {
                position: absolute;
                color: #991919;
                font-size: 12px;
                width: 20%;
                line-height: 16px;
                right: -100px;
                top: 50%;
                transform: translate(0px, -50%);
            }

.credit-application-table .form-detail {
    width: 100%;
    background: #f5f5f5;
    border: 1px solid #e3e3e3;
    padding: 20px;
}

    .credit-application-table .form-detail p {
        margin-bottom: 0;
        text-align: left;
        color: #343131;
    }

    .credit-application-table .form-detail .secure-site-img {
        width: 70px;
        padding: 0px;
        border: 0px;
        margin: 4px -12px;
        height: auto;
    }

    .credit-application-table .form-detail a {
        color: #49AEC4;
    }

        .credit-application-table .form-detail a:hover {
            color: #A1A1A1;
        }

.credit-application-table .btn-next {
    background: #1c394f;
    color: #fff;
    font-size: 16px;
    padding: 8px 14px;
    border: none;
    margin: 10px;
}

.credit-application-table .btn-pre {
    background: #1c394f;
    color: #fff;
    font-size: 16px;
    padding: 8px 14px;
    border: none;
    margin: 10px;
    float: left;
}

.credit-application-table .credit-table {
    border: 1px solid #dfdfdf;
    border-radius: 4px;
    overflow: hidden;
    padding-bottom: 20px;
}

.credit-table table {
    width: 100%;
}

.step-one-wrp li .input-field .input-3column {
    width: 33.33%;
    float: left;
    padding-left: 25px;
}

    .step-one-wrp li .input-field .input-3column:first-child {
        padding-left: 0;
    }

.step-one-wrp li .input-field .drop-3column select {
    width: 33.33%;
    float: left;
    border: 1px solid #ccc;
    padding: 8px 15px;
    font-size: 16px;
    color: #343131;
    box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.2);
}

    .step-one-wrp li .input-field .drop-3column select:first-child {
        border-radius: 4px 0 0 4px;
    }

    .step-one-wrp li .input-field .drop-3column select:last-child {
        border-radius: 0 4px 4px 0;
    }

.step-one-wrp li .input-field select {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 8px 15px;
    font-size: 16px;
    color: #343131;
    box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.2);
}


.step-one-wrp li .label-field.Add-applicant-checkbox {
    width: 100%;
    text-align: left;
}

    .step-one-wrp li .label-field.Add-applicant-checkbox input {
        margin-right: 15px;
    }

    .step-one-wrp li .label-field.Add-applicant-checkbox label {
        font-weight: 400;
    }

.step-one-wrp .your-information .co-app-expand-collapse .co-app-header-expand-collapse {
    padding: 10px 15px;
    background: transparent;
    color: #3397cd;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .step-one-wrp .your-information .co-app-expand-collapse .co-app-header-expand-collapse p {
        font-size: 16px;
        margin: 0 0 15px;
        text-align: justify;
        line-height: 20px;
        width: 100%;
    }

    .step-one-wrp .your-information .co-app-expand-collapse .co-app-header-expand-collapse i {
        width: auto;
    }

.step-one-wrp .your-information .co-app-expand-collapse {
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    margin-bottom: 5px;
    background-color: #fff;
}

.step-one-wrp ul li .income-child {
    color: #343131;
    font-size: 14px;
}

/*Start Expand and Collapse*/

.co-app-expand-collapse div {
    width: 100%;
}

.co-app-expand-collapse .co-app-header-expand-collapse,
.co-app-emp-header-expand-collapse,
.co-app-privacy-header-expand-collapse {
    background-color: #d3d3d3;
    padding: 2px;
    cursor: pointer;
    font-weight: bold;
}

.co-app-expand-collapse .co-app-content-expand-collapse,
.co-app-emp-content-expand-collapse {
    display: none;
    padding: 5px;
}

/*End Expand and Collapse*/

.credit-application-table .step-four .your-information {
    width: 100%;
}

    .credit-application-table .step-four .your-information .co-app-expand-collapse {
        width: 100%;
        border: none;
        border-radius: 0;
    }

        .credit-application-table .step-four .your-information .co-app-expand-collapse .co-app-header-expand-collapse {
            background-color: #1c394f;
            padding: 10px 10px;
            text-align: center;
            color: #fff;
            font-size: 16px;
            font-weight: 400;
        }

.credit-application-table .step-four .co-app-expand-collapse .co-app-privacy-content-expand-collapse table td input {
    display: inline-block;
    margin-right: 20px;
    vertical-align: top;
}

.credit-application-table .step-four .co-app-expand-collapse .co-app-privacy-content-expand-collapse table td label {
    width: calc(100% - 40px);
    color: #343131;
    font-weight: 600;
}

.step-four .co-app-expand-collapse .co-app-privacy-content-expand-collapse table td {
    border-bottom: 1px solid #e3e3e3;
    padding: 10px;
}

.step-four .co-app-expand-collapse .co-app-privacy-content-expand-collapse .app-privacy-detail {
    padding: 10px;
    color: #343131;
    font-weight: 400;
}

.step-four .your-information .app-privacy-footer {
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    padding: 20px;
}

    .step-four .your-information .app-privacy-footer .signature-name {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .step-four .your-information .app-privacy-footer .signature-name span,
        .signature-date span {
            width: 100%;
            padding-right: 10px;
            text-align: right;
            color: #343131;
            font-weight: 400;
            display: inline-block;
            vertical-align: middle;
            margin: 0 auto;
        }

.sign-date {
    display: flex;
    justify-content: center;
    margin: 15px auto;
    align-items: center;
}

.step-four .your-information .app-privacy-footer .signature-name input {
    width: 44%;
    text-align: left;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    padding: 8px;
    color: #999;
    display: inline-block;
    vertical-align: middle;
}

.step-four .your-information h6 {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 600;
}


.credit-table .btn-submit {
    background-color: #1c394f;
    border: none;
    color: #fff;
    padding: 8px 12px;
}

.step-one-wrp li .input-field span.input-error {
    font-size: 12px;
    font-size: 12px;
    right: 8px;
    top: 14px;
}

.step-one-wrp .your-information .required-error span {
    color: #B20002;
}

.app-privacy-footer .signature-date {
    width: 56%;
}

.app-privacy-footer .sign-date .signature-submit-btn {
    width: 44%;
}

@media only screen and (max-width:767px) {

    .credit-application-table #wizHeader li a,
    .credit-application-table .form-detail p {
        font-size: 14px;
    }

    .credit-application-table .step-one-wrp li .label-field {
        font-size: 14px;
        width: 100%;
        text-align: left;
        margin-right: 0;
    }

    .credit-application-table .step-one-wrp li .input-field input {
        font-size: 14px;
    }

    .step-one-wrp li .input-field .input-3column {
        padding-left: 15px;
    }

    .credit-application-table .step-one-wrp li .input-field {
        width: 100%;
    }

    .credit-application-table .step-one-wrp .your-information {
        padding-right: 20px;
    }

    .step-one-wrp li .label-field.Add-applicant-checkbox input {
        margin-right: 10px;
    }

    .credit-application-table h4 {
        font-size: 30px;
    }

    .credit-application-table .step-one-wrp li .input-field span.ddl-error {
        bottom: -15px;
        top: auto;
        right: 0;
    }
}

@media only screen and (max-width:640px) {
    .credit-application-table #wizHeader li a {
        padding: 14px 0 14px 35px;
        text-align: center;
        height: 100%;
    }

    .credit-application-table #wizHeader li .Step-Circle {
        margin: 0 auto 5px;
        display: block;
    }

    .credit-application-table #wizHeader li:first-child a {
        padding-left: 10px;
    }

    .credit-application-table .step-one-wrp .your-information {
        width: 100%;
        padding-right: 0;
    }

    .credit-application-table .step-one-wrp .right-side-detail {
        width: 100%;
    }

    .credit-application-table .step-one-wrp {
        padding: 15px;
    }

    .step-four .your-information .app-privacy-footer .signature-name span,
    .signature-date span {
        text-align: center;
    }

    .app-privacy-footer .signature-date,
    .step-four .your-information .app-privacy-footer .signature-name input,
    .app-privacy-footer .sign-date .signature-submit-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .step-four .your-information .app-privacy-footer .signature-name,
    .sign-date {
        display: block;
    }
}

@media only screen and (max-width:480px) {
    .credit-application-table .step-four .your-information .co-app-expand-collapse .co-app-header-expand-collapse {
        font-size: 14px;
    }

    .signature-block #signature {
        width: 100%;
    }
}

.loadingPanel {
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: white;
}

/*End Credit Application style*/

.credit-app-popup {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1000000;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0 !important;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

    /* Modal Content */
    .credit-app-popup .modal-content {
        background-color: #fefefe;
        margin: auto;
        padding: 20px;
        border: 1px solid #888;
        width: 41%;
        border-radius: 6px;
    }

    /* The Close Button */
    .credit-app-popup .close {
        color: #aaaaaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }

        .credit-app-popup .close:hover,
        .credit-app-popup .close:focus {
            color: #000;
            text-decoration: none;
            cursor: pointer;
        }

#translatepos {
    position: absolute;
    bottom: 5px;
    left: 20px;
    z-index: 2;
}