/* CSS Document */
@font-face {
    font-family: titleFont;
    src: url(../fonts/Carrois_Gothic_SC/CarroisGothicSC-Regular.ttf);
}

@font-face {
    font-family: headingFont;
    src: url(../fonts/Roboto/Roboto-Regular.ttf);
}

@font-face {
    font-family: myFont;
    src: url(../fonts/segoeui.ttf);
}

@font-face {
    font-family: myFontBold;
    src: url(../fonts/Roboto/Roboto-Bold.ttf)
}

.searchedReport {
    background-color: var(--bs-green);
    color: var(--bs-white);
}

.div_instructions {
    color: var(--finex-blue);
    background-color:var(--bs-info-bg-subtle);
    border-color: var(--bs-info-border-subtle);
    padding: 10px;
}

* {
    padding: 0;
    margin: 0;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    min-width: 1200px;
    min-height: 600px;
    font-family: myFont;
}

a {
    color: var(--bs-black);
    text-decoration: none;
}

a:selected {
    color: var(--bs-black);
}

#mainDiv {
    min-height: 100%;
    position: relative;
    width: 100%;
    font-family: myFont;
    font-weight: 400;
    margin: 0 auto;
    background: var(--bs-white);
    overflow-y: hidden;
}

pre {
    font-family: myFont;
    font-weight: 400;
}

#header {
    position: relative;
    z-index: 1;
    top: 0px;
    left: 0px;
    width: 100%;
    /*  padding-left:1%;
   padding-right:1%; */
    height: 50px;
    background: var(--bs-white);
    border-bottom: 1px solid var(--bs-gray-400);
    /* margin-bottom:25px; */
}

#left_side_bar {
    position: relative;
    width: 15%;
    min-width: 120px;
    height: 50px;
    z-index: 0;
    background: var(--bs-white);
}

#logo {
    color: var(--bs-black);
    position: relative;
    font-size: 36px;
    font-weight: 700;
    font-family: 'titleFont', cursive;
    line-height: 50px;
    display: inline-block;
    text-shadow: -1px 1px 1px var(--bs-gray-500);
    margin-right: 70px;
    padding-left: 20px;
}


/* User detial drop down css */

#navigation {
    position: absolute;
    top: 0px;
    right: 3%;
    height: 50px;
    line-height: 50px;
}

#userNameNav {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding-left: 10px;
    color: var(--finex-dark-blue);
    font-weight: bold;
    text-transform: capitalize;
}

#userDetailDropDown {
    position: absolute;
    top: 50px;
    right: -10px;
    width: 130px;
    min-height: 60px;
    background: var(--bs-white);
    color: var(--bs-black);
    line-height: 35px;
    font-size: 0.8em;
    border: 1px solid var(--bs-gray-400);
    /*z-index:1000; */
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -moz-border-bottom-left-radius: 5px;
    -moz-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    display: none;
}

#userDetailDropDown ul {
    width: 100%;
    position: relative;
    top: 0px;
    left: 0px;
    margin: 0px;
    padding: 0px;
    display: block;
    list-style: none;
    padding-top: 0px;
    text-align: center;
}

#userDetailDropDown ul a {
    color: var(--bs-black);
    width: 100%;
}

#userDetailDropDown ul li:hover {
    background: var(--bs-gray-300);
}

#userDetailDropDown ul li {
    padding-left: 0px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.selected {
    background: var(--bs-gray-400);
}


/* End of user detail  dropdown */

#content {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 40px;
    /* Height of the footer */
    background: var(--bs-white);
}


/* Navigation Css  */

#navigationSection {
    position: relative;
    width: 11%;
    min-height: 100%;
    z-index: 0;
    box-sizing: border-box;
    float: left;
}

#navigationSection .navigationLinks {
    position: relative;
    width: 100%;
    min-height: 325px;
    /*z-index:10; */
}

#navigationSection .navigationLinks .link {
    position: relative;
    width: 100%;
    background: var(--bs-gray-100);
    text-align: left;
    line-height: 18px;
    font-family: myFont;
    font-size: 15px;
    cursor: pointer;
    border-bottom: 1px solid var(--bs-gray-400);
    /*
   background:#eee;
	margin-bottom:10px; 
   z-index:10;
	
	border-radius:5px;
	*/
    padding: 15px;
    color: var(--bs-black);
    box-sizing: border-box;
}

#navigationSection .navigationLinks .link div.icon {
    width: 25%;
    float: left;
    box-sizing: border-box;
}

#navigationSection .navigationLinks .link div.icon i {
    display: inline-block;
    font-size: 18px;
    text-align: center;
    vertical-align: bottom;
}

#navigationSection .navigationLinks .link div.icon_text {
    width: 75%;
    height: 100%;
    float: right;
    text-align: left;
    padding-left: 5px;
    box-sizing: border-box;
}

#navigationSection .navigationLinks .link:hover {
    color: var(--finex-red);
    /*border:1px solid var(--bs-white); */
}

#navigationSection .navigationLinks .selected {
    border-left: 2px solid var(--finex-red);
    background: var(--bs-white);
    padding-left: 13px;
    /*	padding-right:17%; 
	border-bottom:1px solid #aaa;
	border-left:1px solid #aaa;
	border-top:1px solid #aaa;
	border-right:none;
	border-bottom-right-radius:0px;
	border-top-right-radius:0px;
	z-index:1000;
	*/
    color: var(--finex-red);
    box-shadow: none;
}

#navigationSection .navigationLinks .selected:hover {
    /*	border-bottom:1px solid #aaa;
	border-left:1px solid #aaa;
	border-top:1px solid #aaa;
	border-right:none;*/
}


/* End of Navigation Css  */


/* Core Content css */

.coreContent {
    float: right;
    position: relative;
    width: 89%;
    min-height: 1080px;
    border-left: 1px solid var(--bs-gray-400);
    background: var(--bs-white);
    /*	border: 1px solid #aaa;
z-index:5; */
    padding: 0.75%;
    padding-left: 1.5%;
    padding-bottom: 50px;
    overflow-x: visible;
    overflow-y: auto;
    box-sizing: border-box;
}

.insideCoreContent {
    position: relative;
    min-width: 99%;
    width: 99%;
    height: 100%;
    min-height: 500px;
}

#companyTitle {
    position: relative;
    font-size: 24px;
    font-family: myFontBold;
    width: 100%;
    text-align: center;
    display: none;
    font-weight: bold;
}

.print_date_standalone
{
    display: none;
}

.jvp {
    position: relative;
    font-size: 20px;
    font-family: myFont;
    width: 100%;
    text-align: center;
    display: none;
}


/*End of Core Content css */

#footer {
    position: absolute;
    bottom: 0;
    left: 0%;
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
    height: 39px;
    /* Height of the footer */
    background: var(--bs-white);
    font-size: 14px;
    line-height: 39px;
    border-top: 1px solid var(--bs-gray-400);
    /* z-index: 1000; */
}

#footer .footerContact {
    width: 33.33%;
    float: right;
    text-align: right;
}

#footer .footerWeb {
    float: left;
    width: 33.33%;
    text-align: center;
}

#footer .footerProduct {
    width: 33%;
    float: left;
    text-align: left;
}

.clr {
    position: relative;
    width: 100%;
    height: 10px;
    clear: both;
}


/*admin content tABLE */

.adminContentTable {
    position: relative;
    margin-bottom: 10px;
    padding-top: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--bs-gray-800);
    width: 100%;
}

.showColumns {
    position: relative;
    margin-bottom: 25px;
}

.adminContentTable th.heading {
    color: var(--heading-color);
    text-align: left;
    font-weight: bold;
    letter-spacing: 1px;
    background: var(--bs-gray-100);
    border: 1px solid var(--bs-gray-400);
    padding: 5px;
}

.adminContentTable tr {
    border: 1px solid var(--bs-gray-400);
}

.adminContentTable td {
    border: 1px solid var(--bs-gray-400);
}

.adminContentTable tr td:last-child {
    border-right: none;
}

.adminContentTable td {
    padding-left: 10px;
}

.insertTableStyling {
    position: relative;
    margin-left: 0px;
}

.insertTableStyling td {
    vertical-align: top;
}

.firstColumnStyling {
    position: relative;
    padding-right: 10px;
}

.firstTableFinishing {
    position: relative;
    margin-bottom: 25px;
    margin-top: 8px;
}

.center {
    text-align: center;
}

.headingAlignment {
    position: relative;
    color: var(--heading-color);
}

.subheadingAlignment {
    position: relative;
    margin-top: 20px;
    font-size: 15px;
    color: var(--bs-black);
}

.resultRow td {
    padding: 10px;
}

.insertTableStyling tr td {
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
}

.insertCheckBox {
    display: inline-block;
}

.insertCheckBoxLabel {
    display: inline-block;
    position: relative;
    top: 3px;
    padding-right: 20px;
}

.settingsSection {
    position: relative;
    width: 95%;
    padding: 2.5%;
    min-height: 150px;
}

.rowOne {
    position: relative;
    width: 100%;
}

.report_icon,
.settings_icon,
.calculator_icon,
.accounts_icon,
.payroll_icon {
    float: left;
    position: relative;
    font-size: 41px;
    top: 17px;
    left: 17px;
    color: var(--bs-indigo);
}




.calculator_icon {
    left: 19px;
    color: var(--bs-blue);
}

.payroll_icon {
    color:  var(--bs-yellow);
}

.settings_icon {
    color:  var(--bs-red);
}


.accounts_icon {
    color:  var(--bs-green);
}

.package {
    position: relative;
    width: 100px;
    min-height: 150px;
    display: inline-block;
    margin-right: 50px;
}

.squareBox {
    position: relative;
    width: 75px;
    height: 75px;
    border-radius: 5px;
    cursor: pointer;
    background: var(--bs-gray-100);
    border: 1px solid var(--bs-gray-400);
    margin-bottom: 10px;
    margin-left: 12.5px;
}

.imageHolder {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    margin-left: 12.5px;
    margin-top: 12.5px;
    background:  var(--bs-orange);
}

.explanation {
    position: absolute;
    width: 100%;
  /*  height: 40px; */
    font-size: 14px;
    text-align: center;
}

.squareBox:hover {
    background:  var(--bs-gray-200);
    border: 1px solid var(--bs-gray-500);
}

.addContactbtn,
.deleteContactbtn,
.addContactbtnCustomer,
.addContactbtnGuarantor,
.addEMIDurationBtn,
.deleteEMIDurationBtn,
.addEMIDurationBtnAgency,
.deleteEMIDurationBtnAgency {
    position: relative;
    top: -5px;
    margin-left: 5px;
}

#uneven_loan_table {
    display: none;
}

#EMIDurationTR,
#EMIDurationAgencyTR {
    display: none;
}

#addcontactTrGenerated {
    display: none;
}

.editImg {
    width: 17px;
    height: 17px;
}

.editBtn,
.viewBtn,
.delBtn {
    font-family: myFont;
    display: inline;
}

.editBtn span.view,
.viewBtn span.view,
.delBtn span.view,
body span.view {
    color: var(--bs-green);
}

.editBtn span.edit,
.viewBtn span.edit,
.delBtn span.edit,
body span.edit {
    color: var(--bs-orange);
}

.editBtn span.delete,
.viewBtn span.delete,
.delBtn span.delete,
body span.delete {
    color: var(--bs-red);
}

#DetailsTable tr td:first-child,
.detailStylingTable tr td:first-child {
    font-family: myFontBold;
}

#insertTable {
    margin-top: 30px;
}

.addBtn {
    cursor: pointer;
}

body .insertTableStyling input.ErrorField {
    border: none
}

body .insertTableStyling input.ErrorField {
    border: 1px solid var(--bs-red);
}

body .insertTableStyling select.ErrorField {
    border: 1px solid var(--bs-red);
}

body .insertTableStyling textarea.ErrorField {
    border: 1px solid var(--bs-red);
}

body .insertTableStyling span.ValidationErrors,
.customError,
.availError {
    display: inline;
    margin-left: 10px;
    color: var(--bs-red);
}

body .insertTableStyling span.contactNoError,
.customError {
    display: none;
}

.requiredField {
    color: var(--bs-red);
}

.btnCol {
    width: 20px;
}

body .to_print {
    display: none;
    width: 100%;
}

#addcontactTrGeneratedCustomer,
#addcontactTrGeneratedGuarantor,
#customerProofImgTr {
    display: none;
}

.addscanbtn,
.removescanbtn,
.addscanbtnCustomer,
.addscanbtnGuarantor,
.addscanbtnVehicle {
    position: relative;
    left: 250px;
    top: -60px;
}

.scanBtn {
    margin-top: 10px;
}

#customerProofNoTr,
#customerProofTypeTr,
#customerProofImgTr,
#guarantorProofNoTr,
#guarantorProofTypeTr,
#guarantorProofImgTr {
    display: none;
}

#vehicleProofNoTr,
#vehicleProofTypeTr,
#vehicleProofImgTr {
    display: none;
}

.removeProof {
    color: var(--bs-red);
    font-family: myFont;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    vertical-align: text-top;
    height: 100%;
    position: relative;
    top: -15px;
}

div.detailStyling {
    position: relative;
    width: 50%;
    float: left;
    margin-bottom: 20px;
}

body .inTableHr {
    background: var(--bs-gray-800);
}

body .insertTableStyling span.fileError {
    position: relative;
    top: -57px;
    left: 250px;
    display: none;
}

#chequePaymentTable {
    display: none;
}

.dangerRow {
    background: var(--bs-danger-bg-subtle);
}

.shantiRow {
    background: var(--bs-success-bg-subtle);
}

.warningRow {
    background: var(--bs-warning-bg-subtle);
}

.printBtn {
    float: right;
    margin: 10px !important;
}

.printBtnDiv {
    position: relative;
    width: 100%;
    padding: 10px;
    height: 40px;
}

.scanningSpan {
    position: relative;
    left: 5px;
    font-family: myFont;
    color: var(--bs-red);
    line-height: 20px;
    top: 5px;
}


/* billing css */

.rasidCover {
    position: relative;
}

.borderBottom {
    border-bottom: 1px solid var(--bs-black);
    margin-top: 15px;
    margin-bottom: 5px;
    display: none;
}


/* HOme Page Widgets */

.widgetContainer {
    position: relative;
    width: 99%;
    min-height: 525px;
    padding: 0%;
}

.notificationCenter {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 50px;
    font-size: 24px;
    color:  var(--bs-orange);
    text-align: left;
    margin-bottom: 0px;
}

.Column {
    position: relative;
    width: 100%;
    min-height: 300px;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid  var(--finex-blue);
    box-sizing: border-box;
}

.more {
    position: relative;
    float: right;
    bottom: 0px;
    right: 20px;
    font-size: 15px;
    color:  var(--finex-blue);
    font-weight: bold;
}

.widgetTitle {
    text-align: center;
    color:  var(--finex-blue);
    margin-bottom: 25px;
}

.widget {
    position: relative;
    width: 100%;
    text-align: center;
}

.widget thead tr .heading {
    position: relative;
    margin-right: px;
}

.Total {
    position: relative;
    top: 0px;
    display: inline-block;
    padding-bottom: 0px;
    margin-top: 50px;
    clear: both;
}

.addDetailsBtnStyling {
    position: relative;
    padding-bottom: 0px;
}

.rasidCover {
    display: none;
}

.showCB,
.showLabel,
.showFields {
    display: inline;
}

.showLabel {
    margin-left: 4px;
    margin-right: 4px;
}

.showCB,
.showFields {
    position: relative;
    top: -3px;
}

.reportFiltersTable {
    display: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

.reportFiltersTable tr td {
    padding-right: 20px;
}

.custom-combobox {
    position: relative;
    display: inline-block;
    color: var(--bs-black);
}

.custom-combobox-toggle {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-left: -1px;
    padding: 0;
    /* support: IE7 */
    *height: 1.7em;
    *top: 0.1em;
    color: var(--bs-black);
}

.custom-combobox-input {
    margin: 0;
    padding: 0.2em;
    color: var(--bs-black);
    font-weight: 100;
    width: 300px;
}

.showColumns {
    display: none;
}

/* callout */


.bd-callout {
    padding: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--bd-callout-color, inherit);
    background-color: var(--bd-callout-bg, var(--bs-tertiary-bg));
    border-left: 0.25rem solid var(--bd-callout-border, var(--bs-gray-300));
}

.bd-callout h4 {
    margin-bottom: .25rem
}

.bd-callout>:last-child {
    margin-bottom: 0
}

.bd-callout+.bd-callout {
    margin-top: -.25rem
}

.bd-callout .highlight {
    background-color: rgba(0,0,0,0.05)
}

.bd-callout-info {
    --bd-callout-bg: var(--bs-info-bg-subtle);
    --bd-callout-border: var(--bs-info-border-subtle);
}

.bd-callout-warning {
    --bd-callout-bg: var(--bs-warning-bg-subtle);
    --bd-callout-border: var(--bs-warning-border-subtle);
}

.bd-callout-danger {
    --bd-callout-bg: var(--bs-danger-bg-subtle);
    --bd-callout-border: var(--bs-danger-border-subtle);
}

.bd-callout-success {
    --bd-callout-bg: var(--bs-success-bg-subtle);
    --bd-callout-border: var(--bs-success-border-subtle);
}

/* callout ends */

.report_form_div{
    width: 60%;
    float: left;
}
.callout_div
{
    width: 39%; float:right;
}

@media print {
    .callout_div {
        display: none;
    }
}
