﻿:root {
    --lightest-blue: #F3F6FA;
    --light-blue: #E7EFFA;
    --medium-blue: #C6DFFF;
    --dark-blue: #5F97FC;
    --darkest-blue: #487BE1;
    /*--darkest-blue: #260CFB;*/
    --black: #000000;
    --grey: #808080;
    --radius-1: 5px;
    --radius-2: 10px;
    --radius-3: 15px;
    --radius-3: 20px;
}

/* Colors for the top 4 steps in the wizard. Outer wizard if you want. */
.wizard-4#kt_wizard .wizard-nav .wizard-steps .wizard-step[data-wizard-state=done] .wizard-wrapper .wizard-number {
    color: var(--dark-blue);
    background-color: var(--light-blue);
}

.wizard-4#kt_wizard .wizard-nav .wizard-steps .wizard-step[data-wizard-state=current] .wizard-wrapper .wizard-number {
    color: var(--lightest-blue);
    background-color: var(--dark-blue);
}

.wizard-4#kt_wizard .wizard-nav .wizard-steps .wizard-step[data-wizard-state=pending] .wizard-wrapper .wizard-number {
    color: var(--dark-blue);
    background-color: var(--light-blue);
}

.wizard-4#kt_wizard .wizard-nav .wizard-steps .wizard-step[data-wizard-state=done] .wizard-wrapper .wizard-label .wizard-title {
    color: var(--black);
}

.wizard-4#kt_wizard .wizard-nav .wizard-steps .wizard-step[data-wizard-state=current] .wizard-wrapper .wizard-label .wizard-title {
    color: var(--black);
}

.wizard-4#kt_wizard .wizard-nav .wizard-steps .wizard-step[data-wizard-state=pending] .wizard-wrapper .wizard-label .wizard-title {
    color: var(--black);
}

.wizard-4#kt_wizard .wizard-nav .wizard-steps .wizard-step[data-wizard-state=done] .wizard-wrapper .wizard-label .wizard-desc {
    color: var(--grey);
}

.wizard-4#kt_wizard .wizard-nav .wizard-steps .wizard-step[data-wizard-state=current] .wizard-wrapper .wizard-label .wizard-desc {
    color: var(--grey);
}

.wizard-4#kt_wizard .wizard-nav .wizard-steps .wizard-step[data-wizard-state=pending] .wizard-wrapper .wizard-label .wizard-desc {
    color: var(--grey);
}

.wizard-4#kt_wizard .wizard-nav .wizard-steps .wizard-step[data-wizard-state=done] {
    background-color: var(--lightest-blue);
    border-radius: var(--radius-2);
}

.wizard-4#kt_wizard .wizard-nav .wizard-steps .wizard-step[data-wizard-state=current] {
    background-color: var(--medium-blue);
    border-radius: var(--radius-2);
}

.wizard-4#kt_wizard .wizard-nav .wizard-steps .wizard-step[data-wizard-state=pending] {
    background-color: var(--lightest-blue);
    border-radius: var(--radius-2);
}


/* Colors for the left-side steps in basic screening and funder search wizards. Inner wizards if you want. */


.wizard-steps#div-side-nav-steps .wizard-step[data-wizard-state=current] .wizard-wrapper .wizard-icon {
    color: var(--darkest-blue);
}

.wizard-steps#div-side-nav-steps .wizard-step[data-wizard-state=pending] .wizard-wrapper .wizard-icon {
    color: var(--medium-blue);
}

.wizard-steps#div-side-nav-steps .wizard-step[data-wizard-state=done] .wizard-wrapper .wizard-icon {
    color: var(--medium-blue);
}

.wizard-steps#div-side-nav-steps .wizard-step[data-wizard-state="current"] {
    background-color: var(--medium-blue) !important;
    border-style: solid !important;
    border-width: 1px !important;
    border-color: var(--medium-blue) !important;
    margin-bottom: var(--radius-1);
}

    .wizard-steps#div-side-nav-steps .wizard-step[data-wizard-state="current"]:after {
        border-left-color: var(--medium-blue);
        margin-bottom: var(--radius-1);
        color: var(--medium-blue);
    }

.wizard-steps#div-side-nav-steps .wizard-step[data-wizard-state="pending"] {
    background-color: white !important;
    border-color: var(--medium-blue);
    border-style: solid !important;
    border-width: 1px !important;
    margin-bottom: var(--radius-1);
}

.wizard-steps#div-side-nav-steps .wizard-step[data-wizard-state="done"] {
    background-color: white !important;
    border-color: var(--medium-blue);
    border-style: solid !important;
    border-width: 1px !important;
    margin-bottom: var(--radius-1);
}


.wizard-steps#div-side-nav-steps .wizard-step[data-wizard-state="current"] .wizard-wrapper .wizard-label .wizard-title {
    color: var(--black);
}

.wizard-steps#div-side-nav-steps .wizard-step[data-wizard-state="current"] .wizard-wrapper .wizard-label .wizard-desc {
    color: var(--grey);
}

.wizard-steps#div-side-nav-steps .wizard-step[data-wizard-state="pending"] .wizard-wrapper .wizard-label .wizard-title {
    color: var(--black);
}

.wizard-steps#div-side-nav-steps .wizard-step[data-wizard-state="pending"] .wizard-wrapper .wizard-label .wizard-desc {
    color: var(--grey);
}

.wizard-steps#div-side-nav-steps .wizard-step[data-wizard-state="done"] .wizard-wrapper .wizard-label .wizard-title {
    color: var(--black);
}

.wizard-steps#div-side-nav-steps .wizard-step[data-wizard-state="done"] .wizard-wrapper .wizard-label .wizard-desc {
    color: var(--grey);
}

.radio.radio-outline.radio-primary > input ~ span {
    background-color: transparent;
    border-color: var(--dark-blue) !important;
}

.radio.radio-outline.radio-primary > input:checked ~ span {
    background-color: transparent;
    border-color: var(--dark-blue) !important;
}

    .radio.radio-outline.radio-primary > input:checked ~ span:after {
        background-color: var(--dark-blue) !important;
    }

.radio.radio-outline.radio-primary > input:disabled ~ span {
    background-color: transparent;
    border-color: grey !important;
}

.radio.radio-outline.radio-primary > input[disabled]:checked ~ span:after {
    background-color: grey;
}

/*
input:disabled {
    border-color: transparent !important;
    background-color: lightblue !important;
}
*/
input:enabled {
    border-color: var(--dark-blue) !important;
    background-color: white !important;
    border-style: solid !important;
    border-width: 1px !important;
}

input:hover:enabled {
    border-color: var(--darkest-blue) !important;
    background-color: white !important;
    border-style: solid !important;
    border-width: 1px !important;
}

input:focus:enabled {
    border-color: var(--darkest-blue) !important;
    background-color: white !important;
    border-style: solid !important;
    border-width: 1px !important;
}

/*
select {
    border-color: lightgray !important;
    background-color: white !important;
}

select:focus {
    border-color: var(--blue-8) !important;
    background-color: var(--blue-1) !important;
}

select:disabled {
    border-color: transparent !important;
    background-color: lightgrey !important;
}

select:hover:not(:disabled) {
    border-color: var(--blue-8) !important;
    background-color: white !important;
}
*/

/*
.radio.radio-outline.radio-primary > span {
    background-color: transparent;
    border-color: red !important;
}
*/

.alert.alert-custom.alert-outline-info {
    border-color: var(--dark-blue) !important;
}

.alert.alert-custom.alert-outline-info .alert-icon .flaticon-information {
    color: var(--dark-blue) !important;
}

.alert.alert-custom.alert-outline-info .alert-text {
    color: var(--dark-blue) !important;
}

.checkbox > input:checked ~ span {
    background-color: transparent !important;
}

.checkbox.checkbox-outline.checkbox-primary > input:checked ~ span:after {
    background-color: transparent !important;
    border-color: var(--dark-blue) !important;
}

.flaticon-profile {
    color: var(--dark-blue) !important;
}

/* Right side bar colors */
.navi .navi-item .navi-link .navi-text {
    color: var(--dark-blue);
}

.navi .navi-item .navi-link:hover .navi-text {
    color: var(--dark-blue) !important;
}

.svg-icon.svg-icon-primary svg g [fill] {
    fill: var(--dark-blue) !important;
}

/* , #button-wizard-next, #button-wizard-submit Login, Next, submit buttons normal */
.btn-primary#kt_login_signin_submit, #button-wizard-next, #button-wizard-submit, #register-submit-btn {
    background-color: var(--dark-blue) !important;
    border-color: var(--dark-blue) !important;
    color: white !important;
}

/* , #button-wizard-next, #button-wizard-submit Next button hover */
.btn-primary#kt_login_signin_submit:hover, #button-wizard-next:hover, #button-wizard-submit:hover, #register-submit-btn:hover:not(.btn-text):not(:disabled):not(.disabled) {
    background-color: var(--darkest-blue) !important;
    border-color: var(--darkest-blue) !important;
    color: white !important;
}

/* Prev button normal */
.btn-light-primary {
    background-color: var(--light-blue) !important;
    border-color: var(--light-blue) !important;
    color: var(--dark-blue) !important;
}

/* Prev button hover */
.btn-light-primary:hover:not(.btn-text):not(:disabled):not(.disabled) {
    background-color: var(--dark-blue) !important;
    border-color: var(--dark-blue) !important;
    color: white !important;
}

/* Save, cancel button normal */
.btn-outline-primary#button-wizard-save, #button-wizard-cancel {
    background-color: var(--white) !important;
    border-color: var(--dark-blue) !important;
    color: var(--dark-blue) !important;
}

/* Save cancel button hover */
.btn-outline-primary#button-wizard-save:hover, #button-wizard-cancel:hover:not(.btn-text):not(:disabled):not(.disabled) {
    background-color: var(--light-blue) !important;
    border-color: var(--dark-blue) !important;
    color: var(--dark-blue) !important;
}

/* Verify ID, Verify Mobile ( user and owner ) normal */
/*
.btn-primary#button-user-profile-identity, #button-user-profile-mobile, #button-owner-profile-identity, #button-owner-profile-mobile {
    background-color: var(--dark-blue) !important;
    border-color: var(--dark-blue) !important;
    color: white !important;
}
*/

/* Verify ID, Verify Mobile ( user and owner ) hover */
/*
.btn-primary#button-user-profile-identity:hover, #button-user-profile-mobile:hover, #button-owner-profile-identity:hover, #button-owner-profile-mobile:hover, #button-doc-a:hover:not(.btn-text):not(:disabled):not(.disabled) {
    background-color: var(--dark-blue) !important;
    border-color: var(--dark-blue) !important;
    color: white !important;
}
*/

/* Outline buttons. */
.btn.btn-outline-primary i {
    color: var(--dark-blue) !important;
}

/*
.btn-outline-primary#button-doc-a, #button-doc-b {
    background-color: var(--white) !important;
    border-color: var(--dark-blue) !important;
    color: var(--dark-blue) !important;
}

.btn-outline-primary#button-doc-a:hover, #button-doc-b:hover:not(.btn-text):not(:disabled):not(.disabled) {
    background-color: var(--lighter-blue) !important;
    border-color: var(--dark-blue) !important;
    color: var(--dark-blue) !important;
}
*/

.btn.btn-outline-primary i {
    color: var(--dark-blue) !important;
}

.btn-outline-primary {
    background-color: var(--white) !important;
    border-color: var(--dark-blue) !important;
    color: var(--dark-blue) !important;
}

.btn-outline-primary:hover:not(.btn-text):not(:disabled):not(.disabled) {
    background-color: var(--lightest-blue) !important;
    border-color: var(--dark-blue) !important;
    color: var(--dark-blue) !important;
}

.btn.btn-primary {
    background-color: var(--dark-blue) !important;
    border-color: var(--dark-blue) !important;
    color: var(--white) !important;
}

.btn-primary:hover:not(.btn-text):not(:disabled):not(.disabled) {
    background-color: var(--darkest-blue) !important;
    border-color: var(--darkest-blue) !important;
    color: white !important;
}

/* Sign in with google button NORMAL. */
.btn-light-primary#a-google {
    background-color: var(--lighter-blue) !important;
    border-color: var(--lighter-blue) !important;
    color: var(--dark-blue) !important;
}

/* Sign in with google button HOVER. */
.btn-light-primary#a-google:hover:not(.btn-text):not(:disabled):not(.disabled) {
    background-color: var(--dark-blue) !important;
    border-color: var(--dark-blue) !important;
    color: white !important;
}

/* Eye icon on the right of the password input box. */
.toggle-password-icon {
    color: lightgrey !important;
}


.flaticon-profile {
    color: var(--dark-blue) !important;
}


/*Login icon background*/
.symbol.symbol-40 .symbol-label {
    background-color: var(--lighest-blue);
}

.svg-icon.svg-icon-primary svg g [fill] {
    fill: var(--darker-blue) !important;
}

a.text-primary:focus {
    color: var(--dark-blue) !important;
}

span i {
    color: var(--dark-blue);
}

label a {
    color: var(--dark-blue);
}

a {
    color: var(--dark-blue) !important;
}

a:hover {
    color: var(--darkest-blue) !important;
}

.fa-info-circle {
    color: var(--light-grey);
}

.fa-question-circle {
    color: var(--light-grey);
}

/* Google G icon color on login button. */
i.fab.fa-google {
    color: var(--dark-blue);
}

a.btn-light-primary {
    color: var(--darker-blue) !important;
    background-color: white;
}

a.text-hover-primary, .text-hover-primary {
    color: var(--dark-blue) !important;
}

a.text-hover-primary:hover, .text-hover-primary:hover {
    color: var(--dark-blue) !important;
}

