﻿:root {
    /*Main Theme Colors*/
    --MainThemeColor: #1E0DAD;
    --MainThemeAccentColor: #1E90FF;
    --MainThemeGreenColor: #50AD0D;
    --MainThemePurpleColor: #6a12af;
    --MainThemeRedColor: red;
    --ActiveStageColor: blue;
    --CompleteStageColor: green;
    /*Hover Pipeline Highlight*/
    --ColorTransparentMain: 0, 49, 184;
    /*Text Color Options*/
    --BlackText: #000000;
    --WhiteText: #ffffff;
    --StatusBar: 4em;
    --statusTabs: 9;
    --tabsHoverREM: 29rem;
    --lastTab: 0;
    --FontFamily: Arial;
    --FontFamilySecondary: Arial;
    --FontSize: 12px;
    --FontSmall: 10px;
    --FontMedium: 15px;
    --FontLarge: 20px;
    --Nav-Height: 5em;
    --Side-Nav-Width: 100px
}

/*=========================BODY==========================*/

h1, h2, h3, h4 {
    font-family: var(--FontFamily);
}

h5, h6, p {
    font-family: var(--FontFamilySecondary);
}

/*body > form {
    width: 100%;
    padding-top: 140px;
    font-family: var(--FontFamily);
}*/


/*#bodyLayout {
    width: calc(91vw + 15px);
    height: auto;
    margin: auto;
    padding: 1rem;
    margin-top:8em;
    margin-left:100px
}*/

#bodyLayout {
    margin-top: var(--Nav-Height);
    margin-left: var(--Side-Nav-Width);
    padding: 2em;
}

.RenderBody {
    position: absolute;
    width: calc(100vw - var(--Side-Nav-Width));
    padding: 0;
    right: 0;
    /*bottom: 12rem;*/
    /*top: var(--Nav-Height);*/
}

/*=========================END BODY==========================*/

/*=========================START NEW UNIVERSAL==========================*/


.copyrightFooter {
    position: inherit;
    bottom: 0px;
    margin: auto;
    text-align: center;
    color: lightgray;
    font-family: sans-serif;
    font-size: 12px !important;
}

.bg-c-blue {
    background: linear-gradient(45deg,#1e0dad,#73b4ff);
    color: white
}

.bg-c-green {
    background: linear-gradient(45deg,var(--MainThemeGreenColor),#59e0c5);
    color: white
}

.bg-c-yellow {
    background: linear-gradient(45deg,var(--MainThemeYellowColor),#ffcb80);
    color: white
}

.bg-c-pink {
    background: linear-gradient(45deg,var(--MainThemeRedColor),#ff869a);
    color: white
}

.bg-c-orange {
    background: linear-gradient(45deg,#de9f18,#ffcd61);
    color: white
}

.card {
    transition: all 0.3s ease-in-out;
    border: none;
    margin-bottom: 24px;
    box-shadow: 0 0 4px 0 rgb(19 19 20 / 48%) !important;
    /*border-radius: 0.75rem;*/
}

select option:checked {
    background-color: rgb(206, 206, 206) !important;
    color: rgb(16, 16, 16) !important;
}
/*=========================END UNIVERSAL==========================*/

/*======================BUTTONS=======================*/
div .btn-dngr {
    background-color: var(--MainThemeRedColor);
    color: var(--color-bg);
    border-color: var(--MainThemeRedColor);
}

    div .btn-dngr:hover {
        background-color: var(--color-bg);
        color: var(--MainThemeRedColor);
        border-color: var(--MainThemeRedColor);
    }

div .btn-outline-dngr {
    color: var(--MainThemeRedColor);
    background-color: var(--foreground);
    border-color: var(--MainThemeRedColor);
}

    div .btn-outline-dngr:hover {
        background-color: var(--MainThemeRedColor);
        color: var(--color-bg);
        border-color: var(--MainThemeRedColor);
    }

/*div .btn-outline-primary {
    background-color: var(--foreground);
    color: var(--primary);
    border-color: var(--primary);
    border: 1px solid var(--primary);
}

    div .btn-outline-primary:hover {
        background-color: var(--primary);
        color: white;
        border-color: var(--primary);
    }
*/

div .btn-tertiary {
    background-color: var(--MainThemePurpleColor);
    color: var(--WhiteText);
    border-color: var(--WhiteText);
}

    div .btn-tertiary:hover {
        color: var(--MainThemePurpleColor);
        background-color: var(--foreground);
        border-color: var(--MainThemePurpleColor);
    }

div .btn-outline-secondary {
    color: var(--MainThemeAccentColor);
    background-color: var(--WhiteText);
    border-color: var(--MainThemeAccentColor);
}

    div .btn-outline-secondary:hover {
        color: var(--WhiteText);
        border-color: var(--MainThemeAccentColor);
        background-color: var(--MainThemeAccentColor);
    }

/*div .btn-secondary {
    background-color: var(--MainThemeAccentColor);
    color: var(--WhiteText);
    border-color: var(--MainThemeAccentColor);
}

    div .btn-secondary:hover {
        background-color: var(--WhiteText);
        color: var(--MainThemeAccentColor);
        border-color: var(--MainThemeAccentColor);
    }
*/
/*#buttonMenu .btn {
    height: 155px;
}*/

/*    #buttonMenu .btn:hover {
        font-size: .75rem;
    }*/
/*#endregion*/
/*======================TOOLTIPS======================*/
.tooltipNova {
    display: inline;
    position: relative;
}

    .tooltipNova:hover {
        text-decoration: none;
    }

        .tooltipNova:hover:after {
            background: #111;
            background: rgba(0, 0, 0, .8);
            border-radius: .5em;
            bottom: 1.35em;
            color: #fff;
            content: attr(data-title);
            display: block;
            left: 1em;
            padding: .3em 1em;
            position: absolute;
            text-shadow: 0 1px 0 #000;
            white-space: nowrap;
            z-index: 98;
        }

        .tooltipNova:hover:before {
            border: solid;
            border-color: #111 transparent;
            border-color: rgba(0, 0, 0, .8) transparent;
            border-width: .4em .4em 0 .4em;
            bottom: 1em;
            content: "";
            display: block;
            left: 2em;
            position: absolute;
            z-index: 99;
        }

    .tooltipNova[data-title]:hover::after {
        font-size: 12px;
    }
/* new style tooltip */
.tooltip-top:before {
    content: attr(data-text);
    position: absolute;
    transform: translate(-4em, 2em);
    width: 15em;
    padding: 1em;
    border-radius: .25em;
    background: #000;
    color: #fff;
    text-align: center;
    display: none;
    cursor: default;
    z-index: 999;
}
.tooltip-top:hover:before {
    display: block;
}
/*======================END TOOLTIPS======================*/

/*======================Bootstrap Multiselect Plugin======================*/
.multiselect {
    margin-bottom: .5em !important;
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px !important;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: none;
}

    .multiselect:active,
    multiselect:focus,
    .multiselect:hover {
        background: white !important;
    }

    .multiselect:focus {
        border-color: #66afe9;
        box-shadow: 0 0px 5px #66afe9;
        outline: 0;
    }

/*======================END Bootstrap Multiselect Plugin======================*/


/*======================Checkbox into Pill switch======================*/
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }
/*======================END Checkbox into Pill switch======================*/

/*======================TOOL HOVER BOTTOM RIGHT======================*/
/*======================TIPS HOVER BOTTOM RIGHT======================*/
.sideTips {
    position: fixed;
    bottom: 2em;
    right: 1em;
    z-index: 99;
}

#tipsDiv {
    color: black;
    padding: 1em;
    right: 67px;
    border: 5px solid #f7cc54;
    width: 425px;
    height: auto;
    z-index: 99;
    margin-top: 2em;
    position: absolute;
    background: white;
    padding: 1em;
    bottom: 2em;
    line-height: 1.5;
    box-shadow: 0px 0px 7px 0px #00000059;
}

.sideTips i {
    margin: 2em;
    float: right;
    background-color: #f7cc54;
    padding: 1em;
    border-radius: 5px;
    box-shadow: 0px 0px 7px 0px #00000059;
    cursor: pointer;
}

.sideTips h5 {
    text-align: center;
    /* font-style: italic; */
    font-weight: bold;
}

#LoanTable th {
    font-size: 12px
}

.bottom {
    padding-bottom: 4em
}

/*======================END TIPS HOVER BOTTOM RIGHT======================*/


/*#region ~~~~~ Tile/Card CSS ~~~~~*/
#contacts .card {
    width: 350px;
    max-height: 360px;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    margin-right: 1em;
    max-height: unset;
}

#contacts .card-header-text {
    display: inline-block;
    width: 62%;
}

.card-header-text strong {
    padding-right: 60px;
    overflow-wrap: normal;
    color: var(--MainThemeAccentColor);
}

.card-header-buttons {
    float: right;
}

.card-body {
    margin-bottom: 1.65em;
}

/*.card-title strong {
    color: var(--MainThemeColor);
}
*/
.card-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.card-title::-webkit-scrollbar,
.card-content::-webkit-scrollbar {
    width: .3rem;
    height: auto;
    background-color: darkgrey;
    border-radius: 12px;
}

.card-title::-webkit-scrollbar-thumb,
.card-content::-webkit-scrollbar-thumb {
    background-color: var(--MainThemeAccentColor);
}

/*Notes Card/Tile*/
.col-centered h3 {
    text-align: center;
    margin: 1rem 0;
}

.notesCards {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    word-wrap: break-word;
    background-clip: border-box;
    max-height: fit-content;
    font-size: 12px;
    box-shadow: 0 0 11px 0px #00000070;
}


#note .card-body {
    background-color: #fefdba; /*yellow color*/
}

/* Text */
@keyframes open {
    from {
        line-clamp: 3;
        -webkit-line-clamp: 3;
    }

    to {
        line-clamp: initial;
        -webkit-line-clamp: initial;
    }
}

@keyframes close {
    from {
        line-clamp: initial;
        -webkit-line-clamp: initial;
    }

    to {
        line-clamp: 3;
        -webkit-line-clamp: 3;
    }
}

/* note card-content */
.card-content {
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

    .card-content.open {
        max-height: 100rem;
        transition: max-height 0.3s cubic-bezier(0.9, 0, 0.8, 0.2);
    }

/* Text */
@keyframes open {
    from {
        line-clamp: 3;
        -webkit-line-clamp: 3;
    }

    to {
        line-clamp: initial;
        -webkit-line-clamp: initial;
    }
}

@keyframes close {
    from {
        line-clamp: initial;
        -webkit-line-clamp: initial;
    }

    to {
        line-clamp: 3;
        -webkit-line-clamp: 3;
    }
}

.noteText {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 12px 0;
    animation: close 0.1s linear 0.1s forwards;
    display: -webkit-box;
    /* max-width: 614px; */
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: pointer
}

.openNote {
    animation: open 0.4s linear 0s forwards;
    font-size: 14px;
    font-weight: bold;
    overflow: auto;
    height: auto
}

.closeNote {
    animation: close 0.1s linear 0s forwards;
}


.notesHeaders {
    text-align: center;
    padding: 1em;
}


#TopBtnGroup {
    width: 100%
}

    #TopBtnGroup button {
        width: 100%
    }

#viewNote hr {
    border-color: lightgrey;
}

#email .card-body {
    background-color: #ffdbbb; /*orange color*/
}

#note .card-body,
#email .card-body {
    height: 17rem;
    height: auto
}

#note .card-title, #note .card-content,
#email .card-title, #email .card-content {
    /* overflow: auto;*/
}

#note .card-title,
#email .card-title {
    max-height: 2.5rem;
    margin-bottom: 1rem;
}

#note .card-content,
#email .card-content {
    min-height: 7rem;
}

#note .card-subject {
    margin-bottom: 0;
}

#email .card-subject {
    text-align: center;
}

.visOpt .col-md-2:first-child {
    padding-left: 0;
}

#noteBtns .btn {
    margin-bottom: .5rem;
}

#noteBtns {
    text-align: center;
    padding: 0;
}
/*For the Clipboard Icon*/
.headerAlignCopyBtn {
    float: right;
    margin-left: 20px;
}

    .headerAlignCopyBtn:hover {
        cursor: pointer;
    }

/*===============FORM INPUT-GROUPS and FORM-CONTROL=======================*/
/*.form-control {
    min-height: 2.5em;
    border-radius: .5em;
    background-color: var(--background);
    transition: ease-in .2s;*/
    /*    color: black;*/
    /*   font-size: 1.25rem;*/
    /*margin-bottom: .5em;
}*/

/*===============DEALS OPTIONS HEADER and ICONS=======================*/

.topTabs:hover {
}

.topTabs .statusBar {
    padding: 0 3rem;
    height: 100%;
    margin: 0px !important;
    vertical-align: middle;
    line-height: 55px;
    text-align: center;
    border-bottom: 3px solid lightgray;
    display: inline !important;
}

.statusBar .active {
    border-bottom: 3px solid #6a12af;
}


.statusBar {
    width: 100%;
    min-width: 940px;
    height: var(--StatusBar);
    background: var(--foreground);
    color: gray;
    z-index: 49;
}

.statusTabs {
    width: calc(100% / var(--statusTabs));
    height: 100%;
    line-height: 55px !important;
    text-align: center;
    border-bottom: 3px solid var(--secondary) !important;
    float: left;
    font-family: var(--FontFamily);
}

    .statusTabs:hover {
        background-color: var(--secondary) !important;
        color: var(--WhiteText) !important;
        box-shadow: inset 0px 0px 16px 0px lightgrey;
    }

.activeTopTabs {
    color: var(--WhiteText) !important;
    background-color: var(--primary);
    box-shadow: inset 0px 0px 16px 0px lightgrey;
}

.statusBar a:after {
    display: block;
    content: '';
    height: 105%;
    width: 1px;
    position: relative;
    top: -55px;
    left: -2px;
    font-family: var(--FontFamily);
}

.ToggleContainer .btn {
    margin-bottom: 1px;
    margin: 0;
    padding: .5em;
    vertical-align: middle;
    text-align: center;
}

#buttonMenu button {
    /*  width: 84px;*/
    /*  padding:1em;*/
    border: none;
    box-shadow: none;
}

#buttonMenu > .btn > i {
    display: block;
    padding-bottom: 10px;
}

/*===============LOAN INFO=======================*/
.loanInfo {
    font-size: 13px;
    margin: 0;
    /*width: 40%;*/
    /*margin-left: 1vw;*/
    padding: 10px;
}

/*===============PIPELINE NOTES in NOTES=======================*/
.filterBtns .active {
    color: var(--MainThemeAccentColor)
}

.filterBtns button {
    font-size: 12px
}

.firstBttn .active {
    color: red;
    font-weight: bold
}

.filterBtns .allBttn .active {
    color: var(--MainThemeColor);
}

.filterBtns .allBttn {
    font-weight: bold
}

.commentContacted {
    border-bottom: 6px solid orange;
    border-radius: 0px 0px 15px 15px;
}

.commentFirst {
    border-bottom: 6px solid green;
    border-radius: 0px 0px 15px 15px;
}

.commentSecond {
    border-bottom: 6px solid yellow;
    border-radius: 0px 0px 15px 15px;
}

.commentThird {
    border-bottom: 6px solid red;
    border-radius: 0px 0px 15px 15px;
}

.commentBad {
    border-bottom: 6px solid black;
    border-radius: 0px 0px 15px 15px;
}

.commentEmail {
    border-bottom: 6px solid purple;
    border-radius: 0px 0px 15px 15px;
}

/*~~~~~ Add Loan Note ~~~~~*/
#subject:not(.form-check-input) {
    margin: 1rem auto;
}

.col-centered #addNote .noteAddContent .mce-container {
    background-color: lightpink;
}
/*#endregion*/

/*#region Modals*/
.modal-header {
    padding-bottom: 0;
    border-bottom: none;
}

.modal-content .modal-header .close {
    color: red;
    opacity: 100%;
    font-size: xx-large;
    padding: 0.9rem 1.5rem 1rem 1rem;
    box-shadow: none;
}

    .modal-content .modal-header .close:hover {
        opacity: 100%;
    }

.modal-content .modal-body div > p {
    margin: 0;
}

.modal-content .modal-body .author {
    margin-bottom: 0;
    font-weight: 600;
    color: darkblue;
}

.modal-body .postDate {
    font-style: italic;
    font-size: .8rem;
    color: #49A7D3;
}

.modal-body .form-check-input {
    position: initial;
    margin-left: 0;
}

.modal-body .col-4 {
    padding-left: 2rem;
}

.modal-body .addSig {
    padding-left: 0;
}

.modal-body .makeNote {
    font-weight: 500;
}

#SingleLineItem > div:nth-child(4) > div:nth-child(3) {
    margin-top: 0;
}

.modal-body label > span {
    color: black;
    font-weight: 500;
}
/*#endregion*/

/*#region =============YES NO CHECKBOX========*/
.yesNoCheck {
    display: flex;
}

.legalYesNo {
    float: right;
    margin-top: 2em;
}

.onoff, .oldnew {
    /* margin-left: -27px; */
    vertical-align: middle;
    zoom: 1;
    position: relative;
    cursor: pointer;
    width: 55px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: block;
}

.oldnew {
    width: 123px;
    height: 100%;
}

    .onoff label, .oldnew label {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        cursor: pointer;
        background: var(--MainThemeColor);
        border-radius: 5px;
        font-weight: bold;
        color: white;
        -webkit-transition: background 0.3s, text-indent 0.3s;
        -moz-transition: background 0.3s, text-indent 0.3s;
        -o-transition: background 0.3s, text-indent 0.3s;
        transition: background 0.3s, text-indent 0.3s;
        text-indent: 27px;
        -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4) inset;
        -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4) inset;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4) inset;
    }

        .onoff label:after {
            content: 'NO';
            display: block;
            position: absolute;
            top: 0px;
            left: 0px;
            width: 100%;
            font-size: 12px;
            background-color: var(--MainThemeRedColor);
            color: white;
            text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.35);
            z-index: 1;
        }

        .onoff label:before {
            content: '';
            width: 15px;
            height: 24px;
            border-radius: 3px;
            background: #FFF;
            position: absolute;
            z-index: 2;
            top: 3px;
            left: 3px;
            display: block;
            -webkit-transition: left 0.3s;
            -moz-transition: left 0.3s;
            -o-transition: left 0.3s;
            transition: left 0.3s;
            -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
            -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
            box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
        }

.onoff input:checked + label {
    text-indent: 8px;
}

    .onoff input:checked + label:after {
        content: 'YES';
        background-color: var(--MainThemeGreenColor);
        color: white;
    }

    .onoff input:checked + label:before {
        left: 37px;
    }

.oldnew label:after {
    content: '1003 V3.2 (fnm)';
    display: block;
    position: absolute;
    top: 4px;
    left: 0px;
    width: 100%;
    font-size: 12px;
    color: white;
    text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.35);
    z-index: 1;
}

.oldnew label:before {
    content: '';
    width: 15px;
    height: 31px;
    border-radius: 3px;
    background: #FFF;
    position: absolute;
    z-index: 2;
    top: 4px;
    left: 3px;
    display: block;
    -webkit-transition: left 0.3s;
    -moz-transition: left 0.3s;
    -o-transition: left 0.3s;
    transition: left 0.3s;
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
}

.oldnew input:checked + label {
    background: var(--MainThemeAccentColor);
    text-indent: 8px;
}

    .oldnew input:checked + label:after {
        content: '1003 V3.4 (xml)';
        color: white;
    }

    .oldnew input:checked + label:before {
        left: 105px;
    }
/*=============END YES NO CHECKBOX========*/

/*==================NEEDS START====================*/
/*======ICON NEEDS KEY GUIDE POPUP======*/
/* The Overlay (background) */
.keyGuideOverlay {
    height: 100%;
    width: 500px;
    position: fixed;
    z-index: 100;
    left: var(--Side-Nav-Width);
    top: calc(var(--Nav-Height) + var(--Sub-Nav));
    background-color: rgb(0,0,0);
    background-color: rgb(239 234 234);
    overflow-x: hidden;
    transition: 0.5s;
    display: none
}



/* Position the content inside the overlay */
.keyGuideContent {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 90px;
    height: 76em;
    padding: 1em;
}

/* The navigation links inside the overlay */
.keyGuideOverlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
}

    /* When you mouse over the navigation links, change their color */
    .keyGuideOverlay a:hover, .keyGuideOverlay a:focus {
        color: #f1f1f1;
    }

/* Position the close button (top right corner) */
.keyGuideOverlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

.keyGuideContent .needsKey {
    padding-top: 1em;
    border: none;
    height: fit-content;
    width: 95%;
    display: block;
    margin: auto;
}

.needsKey .AddCommentNeedNote .fa-plus {
    position: relative;
    color: white;
    z-index: 10;
    font-size: .65em;
    bottom: .125em;
    left: -1.75em;
}

.keyGuideContent .needsKey p {
    font-weight: bold
}

.iconNeedsKeyGuideIcon {
    cursor: pointer;
    float: right;
}


/*=======================NEEDS END=============================*/

/*#region Tri-state Toggle Switch*/
.tss {
    width: 50%;
    height: 40px;
    padding: 5px;
    background-color: var(--MainThemeAccentColor);
    /*font-size: 0;*/
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    display: inline-block;
}

    .tss input[type="radio"] {
        display: none;
    }

    .tss label {
        position: relative;
        z-index: 1;
        float: left;
        font-size: 16px;
        font-weight: bold;
        width: 33%;
        color: #222;
        line-height: 30px;
        text-align: center;
        cursor: pointer;
        margin: 0;
    }

    .tss input[type="radio"]:not(:checked) + label {
        color: white !important;
    }

    .tss span {
        position: absolute;
        top: 5px;
        width: 30%;
        height: 30px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        background-color: #fff;
        transform: translate(0);
    }


    .tss input[id$="-no"]:checked ~ span {
        transform: translate(0);
        left: 5px;
    }

    .tss input[id$="-null"]:checked ~ span {
        transform: translateX(116%);
        left: 0px;
    }

    .tss input[id$="-yes"]:checked ~ span {
        transform: translateX(231%);
        left: -5px;
    }
/*#endregion Tri-state Toggle Switch*/

/*#region Two-state Toggle Switch*/
.twss {
    width: 50%;
    height: 40px;
    padding: 5px;
    background-color: var(--MainThemeAccentColor);
    /*font-size: 0;*/
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    display: inline-block;
}

    .twss input[type="radio"] {
        display: none;
    }

    .twss label {
        position: relative;
        z-index: 1;
        float: left;
        font-size: 16px;
        font-weight: bold;
        width: 50%;
        color: #222;
        line-height: 30px;
        text-align: center;
        cursor: pointer;
        margin: 0;
    }

    .twss input[type="radio"]:not(:checked) + label {
        color: white !important;
    }

    .twss span {
        position: absolute;
        top: 5px;
        width: 50%;
        height: 30px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        background-color: #fff;
        transform: translate(0);
    }


    .twss input[id$="-no"]:checked ~ span {
        transform: translate(0);
        left: 5px;
    }

    .twss input[id$="-yes"]:checked ~ span {
        transform: translateX(100%);
        left: -5px;
    }
/*#endregion Two-state Toggle Switch*/

/*~~~~~ Tools And Workflow ~~~~~*/
#manAl a,
.tableDel {
    color: red;
    text-decoration: none;
}


/*.fa-check-circle, .fa-times-circle {
    margin: 0.25rem;
    font-size: 1.2rem;
}*/

.editableField input[type="checkbox"] {
    width: 25%;
}

.editableField {
    display: flex;
}

    .editableField > div {
        display: inline-flex;
        flex-direction: column;
    }

    .editableField input,
    .editableField select,
    .editableField form {
        margin-top: .65rem;
    }
/*#endregion*/

/*~~~~~Rate & Points~~~~~*/
.tableIn table {
    width: 100%;
}

/*#region Ham Menu*/
/*#topNav {
    display: none;
    text-align: center;
}
*/
.topnav {
    overflow: hidden;
    /*background-color: #333;*/
    position: relative;
    text-align: center;
    box-shadow: 0px 3px 11px #00000061;
    background-color: #efeded;
    z-index: 26;
    display: none;
}

    /*    .topnav #myLinks {
        display: none;
    }*/

    /*.mobile-container .topnav a {
    padding: 14px 16px 25px;
    text-decoration: none;
    font-size: 17px;
    display: block;
    border-top: 2px solid var(--MainThemeAccentColor);
    color: var(--WhiteText);
}
*/
    .topnav a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }

.mobile-container .topnav a:hover {
    color: var(--MainThemeAccentColor);
    background-color: var(--WhiteText);
}

/*.topnav a .fa-bars {
    color: var(--MainThemeAccentColor);
    font-size: 1.5rem;
}*/
/*#endregion*/

/*#region ~~~~~Stonly Widget~~~~~*/
.single-button-wrap .cbzEir {
    color: green;
}

    .single-button-wrap .cbzEir:hover {
        color: white;
        background-color: green;
    }
/*#endregion*/

.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}


*:focus {
    outline: 0;
}


label.toggle.toggle-yes {
    background-color: transparent;
}

body {
    margin: 0px 0px !important;
    height: 100%;
    /*overflow-y: overlay;this only works in webkit browsers*/
    font-family: var(--FontFamily);
}

#usrNmAndMssgContainer {
    font-size: 16.32px;
}

div#AssetStepControllerContainer {
    position: relative;
    height: 100%;
    width: auto;
    background-color: white;
}

.nestedCollapsible {
    background: rgba(150, 150, 150, .3);
    color: var(--MainThemeColor);
    border-bottom: 1px solid grey !important;
}
/*#region*/
/***************************************Start Asset Management Input/form elements Styling***************************************/
/*****Default unThemed input*****/


/*****Themed input*****/
input[type=text].themedInput:focus, input[type=password].themedInput:focus, input[type=date].themedInput:focus, input[type=number].themedInput:focus, input[type=tel].themedInput:focus {
    border-color: var(--MainThemeColor);
}
/*****Default unThemed textarea*****/
textarea {
    background-color: transparent;
    border: none;
    border-bottom: solid 1px black;
    transition: ease-in .2s;
    color: gray;
}

    textarea:focus {
        border: none;
        border-bottom: solid 1px black;
        color: gray;
    }
    /*****Themed textarea*****/
    textarea.themedInput:focus {
        border-color: var(--MainThemeColor);
    }

/*****Default unThemed select*****/
#bodyLayout select.default {
    background-color: transparent;
    border: none;
    border-bottom: solid 1px black;
    transition: ease-in .2s;
    color: gray;
    margin: 0px 5px;
}

    #bodyLayout select.default:hover, #bodyLayout select.default:focus {
        transform: scale(1.08);
        border: none;
        border-bottom: solid 1px black;
    }
    /*****Themed select*****/
    #bodyLayout select.default.themed:hover, #bodyLayout select.default.themed:focus {
        border-color: var(--MainThemeColor);
        color: black;
    }


/*****:placeholder-shown does not work in edge or ie*****/
input[type=text]:placeholder-shown, input[type=password]:placeholder-shown, input[type=date]:placeholder-shown, input[type=number]:placeholder-shown, input[type=tel]:placeholder-shown, textarea:placeholder-shown {
    padding-left: 5px;
    color: black;
}

input::-webkit-datetime-edit-fields-wrapper {
    color: gray;
}

::-webkit-input-placeholder {
    color: gray;
}

:-moz-placeholder { /* Firefox 18- */
    color: gray;
}

::-moz-placeholder { /* Firefox 19+ */
    color: gray;
}

:-ms-input-placeholder {
    color: gray;
}

/*****Custom Radio Buttons*****/
.radioButtonContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .radioButtonContainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

.radioButtonCheckmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
    border: 1px solid #9a9a9a;
    border-radius: 50%;
    box-shadow: 1px 1px 1px 1px rgba(128, 128, 128, .5);
}

.radioButtonContainer:hover input ~ .radioButtonCheckmark {
    background-color: #ccc;
    border-color: #ccc;
}

.radioButtonContainer input:checked ~ .radioButtonCheckmark {
    background-color: #808080;
}

    .radioButtonContainer input:checked ~ .radioButtonCheckmark.radioGreen {
        background-color: green;
        border-color: green;
    }

    .radioButtonContainer input:checked ~ .radioButtonCheckmark.radioBlue {
        background-color: blue;
        border-color: blue;
    }

    .radioButtonContainer input:checked ~ .radioButtonCheckmark.radioRed {
        background-color: red;
        border-color: red;
    }

    .radioButtonContainer input:checked ~ .radioButtonCheckmark.radioThemed {
        background-color: var(--MainThemeColor);
        border-color: var(--MainThemeColor);
    }

.radioButtonCheckmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radioButtonContainer input:checked ~ .radioButtonCheckmark:after {
    display: block;
}

.radioButtonContainer .radioButtonCheckmark:after {
    top: 2px;
    left: 2px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: white;
}

/*****Custom Checkbox*****/
.checkboxContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .checkboxContainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

.checkboxCheckmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
    border: 1px solid #9a9a9a;
    border-radius: 2px;
    box-shadow: 1px 2px 1px rgba(128, 128, 128, .5);
}

.checkboxContainer:hover input ~ .checkboxCheckmark {
    background-color: #ccc;
}

.checkboxContainer input:checked ~ .checkboxCheckmark {
    background-color: gray;
    border-color: gray;
}

    .checkboxContainer input:checked ~ .checkboxCheckmark.checkboxGreen {
        background-color: green;
        border-color: green;
    }

    .checkboxContainer input:checked ~ .checkboxCheckmark.checkboxBlue {
        background-color: blue;
        border-color: blue;
    }

    .checkboxContainer input:checked ~ .checkboxCheckmark.checkboxRed {
        background-color: red;
        border-color: red;
    }

    .checkboxContainer input:checked ~ .checkboxCheckmark.checkboxThemed {
        background-color: var(--MainThemeColor);
        border-color: var(--MainThemeColor);
    }

.checkboxCheckmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkboxContainer input:checked ~ .checkboxCheckmark:after {
    display: block;
}

.checkboxContainer .checkboxCheckmark:after {
    left: 4px;
    top: 0px;
    width: 5px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*****Custom input buttons*****/
input[type=submit].btnUnThemed, input[type=reset].btnUnThemed, input[type=button].btnUnThemed {
    background-color: lightgray;
    padding: 5px;
    font-weight: bold;
    border: solid 1px lightgray;
    box-shadow: 2px 4px 4px rgba(0, 0, 0, .5);
}

    input[type=submit].btnUnThemed:hover, input[type=reset].btnUnThemed:hover, input[type=button].btnUnThemed:hover {
        background-color: #333;
        border-color: #333;
        color: white;
        box-shadow: none;
    }

input[type=submit].btnThemed, input[type=reset].btnThemed, input[type=button].btnThemed {
    background-color: var(--MainThemeColor);
    padding: 5px;
    font-weight: bold;
    border: solid 1px var(--MainThemeColor);
    box-shadow: 2px 4px 4px rgba(0, 0, 0, .5);
    color: white;
}

    input[type=submit].btnThemed:hover, input[type=reset].btnThemed:hover, input[type=button].btnThemed:hover {
        box-shadow: none;
        background-color: white;
        color: var(--MainThemeColor);
    }

/*****Custom two way toggle button*****/
.TwoWayRadio-toggle {
    background-color: transparent;
    display: inline-block;
    padding-right: 7px;
    border-radius: 20px;
    position: relative;
    border: 1px solid #808080;
    box-shadow: 1px 2px 1px rgba(128, 128, 128, .5);
}

    .TwoWayRadio-toggle:hover {
        background-color: lightgray;
    }

    .TwoWayRadio-toggle label {
        text-align: center;
        font-family: sans-serif;
        display: inline-block;
        color: #9a9a9a;
        position: relative;
        left: 1px;
        z-index: 2;
        margin: 0;
        text-align: center;
        padding: 1px 2px;
        font-size: 14px;
    }

    .TwoWayRadio-toggle input {
        position: absolute;
        z-index: 3;
        opacity: 0;
        cursor: pointer;
    }

    .TwoWayRadio-toggle span {
        height: 20px;
        width: 20px;
        line-height: 21px;
        border-radius: 50%;
        background: #fff;
        display: block;
        position: absolute;
        left: 21px;
        top: 1px;
        transition: all 0.3s ease-in-out;
    }

    .TwoWayRadio-toggle input[value="true"]:checked ~ span {
        background: green;
        left: 2px;
        color: #fff;
    }

    .TwoWayRadio-toggle input[value="false"]:checked ~ span {
        background: red;
        left: 21px;
    }

    .TwoWayRadio-toggle input[value="false"]:checked + label, .tw-toggle input[value="true"]:checked + label {
        color: gray;
    }

/*****Custom three way toggle button*****/
.tw-toggle {
    background-color: transparent;
    display: inline-block;
    padding-right: 7px;
    border-radius: 20px;
    position: relative;
    border: 1px solid #808080;
    box-shadow: 1px 2px 1px rgba(128, 128, 128, .5);
}

    .tw-toggle:hover {
        background-color: lightgray;
    }

    .tw-toggle label {
        text-align: center;
        font-family: sans-serif;
        display: inline-block;
        color: #9a9a9a;
        position: relative;
        left: 1px;
        z-index: 2;
        margin: 0;
        text-align: center;
        padding: 1px 2px;
        font-size: 14px;
    }

    .tw-toggle input {
        position: absolute;
        z-index: 3;
        opacity: 0;
        cursor: pointer;
    }

    .tw-toggle span {
        height: 20px;
        width: 20px;
        line-height: 21px;
        border-radius: 50%;
        background: #fff;
        display: block;
        position: absolute;
        left: 21px;
        top: 1px;
        transition: all 0.3s ease-in-out;
    }

    .tw-toggle input[value="true"]:checked ~ span {
        background: green;
        left: 2px;
        color: #fff;
    }

    .tw-toggle input[value="false"]:checked ~ span {
        background: red;
        left: 21px;
    }

    .tw-toggle input[value=""]:checked ~ span {
        background: #ef9708;
        left: 38px;
    }

    .tw-toggle input[value="false"]:checked + label, .tw-toggle input[value="true"]:checked + label, .tw-toggle input[value=""]:checked + label {
        color: gray;
    }
/***************************************End Asset Management Input/form elements Styling***************************************/

/*#endregion*/

/*#region Maintenance css*/
label[data-required-field]::before {
    content: "*";
    color: red;
    padding-right: 4px;
}

#showJobList {
    background-color: lightgray;
}

    #showJobList h3 {
        padding-left: 5px;
    }

div#showMoreInfoHead p {
    display: inline-block;
    font-size: 1.5em;
    padding-bottom: 20px;
}

span#closeShowMoreInformation,
span#createNewJobNote {
    display: inline-block;
    height: 30px;
    width: 30px;
    float: right;
}

    span#closeShowMoreInformation:hover,
    span#createNewJobNote:hover {
        background-color: lightgray;
    }

    span#closeShowMoreInformation i {
        font-size: 1.45em;
        margin-top: 5px;
        margin-left: 7px;
    }

    span#closeShowMoreInformation:hover i {
        color: red;
    }

    span#createNewJobNote i {
        font-size: 1.45em;
        margin-top: 5px;
        margin-left: 7px;
    }

    span#createNewJobNote:hover i {
        color: green;
    }

#VendorNoteScrollBox {
    overflow-y: scroll;
    max-height: 650px;
    border: 1px solid lightgray;
}

div#VendorNoteScrollBox::-webkit-scrollbar-track {
    background-color: #F5F5F5;
    border-left: 1px solid lightgray;
}

div#VendorNoteScrollBox::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    background-color: black;
}

div#VendorNoteScrollBox::-webkit-scrollbar-thumb {
    background-color: gray;
}

#NoteContainer {
    margin: 0;
}

.NoteContainerInner {
    margin: 5px 20px;
    border: 1px solid gray;
    border-radius: 2px;
    padding: 5px 15px;
}

#vendorUploadBtn {
    display: inline-block;
    margin-top: 15px;
}

#jobCardContainer {
    padding: 20px 13px;
}

.noPadding {
    padding: 0px;
}

#jobCardContainerInner {
    padding: 10px;
    border: 1px solid lightgray;
    border-radius: 2px;
}

div#partial {
    max-height: 100px;
    min-height: 100px;
    border: 1px solid transparent;
    min-width: 100%;
}

div#full {
    max-height: 100px;
    min-height: 100px;
    overflow-y: scroll;
    border: 1px solid lightgray;
    min-width: 100%;
}

    div#full::-webkit-scrollbar-track {
        background-color: #F5F5F5;
        border-left: 1px solid lightgray;
    }

    div#full::-webkit-scrollbar {
        width: 12px;
        height: 12px;
        background-color: black;
    }

    div#full::-webkit-scrollbar-thumb {
        background-color: gray;
    }

#fullToggle {
    float: right;
}

#fullTogglecbx {
    margin-left: 5px;
    vertical-align: text-bottom;
}

.wait-cursor {
    cursor: wait !important;
}
/*#endregion Maintenance css*/



.divider-left {
    border-left: 1px solid var(--primary);
}
@media (max-width: 768px) {
    .divider-left {
        border-left: 0;
        margin-top: .5em;
    }
}


.alert-hover {
    position: absolute;
    z-index: 999;
    display: flex; /* Use flex to align icon and details */
    align-items: center; /* Align items vertically */
    padding: 0.75rem 1.25rem; /* Bootstrap default padding for alerts */
    transition: all 0.5s ease; /* Animate changes smoothly */
}

    .alert-hover .fa-info-circle {
        margin-right: 10px; /* Space between icon and text */
    }

.alert-details {
    max-width: 0; /* Start with a max-width of 0 */
    transition: max-width 0.5s ease-in-out; /* Animate the max-width property */
    overflow: hidden; /* Hide the overflow */
    white-space: nowrap; /* Prevent wrapping to a new line */
}

.alert-hover:hover .alert-details {
    max-width: 100vw; /* Set a max-width that can contain your content on hover */
}

.navigation-icon {
    color: var(--primary);
    display: flex;
    font-size: 2em;
    justify-content: center;
    align-items: center;
    /*width: 2em;*/
}
/*.acctLogMenu {
    transform: none !important;
    top: 4em !important;
    right: 0px !important;
}*/


/* Select2 JS */

.select2.select2-container {
    text-align: center;
}

.select2-selection.select2-selection--single {
    var(--separator);
    min-height: 2.5em;
    background-color: var(--background);
    transition: ease-in .2s;
    margin-bottom: .5em;
    border-color: var(--separator);
    border-radius: var(--border-radius-md);
    padding: 1.1em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px;
}

/* End of Select2 JS */

/* overriding bootstrap.css (currently used on Markeplace view */
.carousel-indicators li {
    width: 1em !important;
    aspect-ratio: 1 / 1 !important;
    height: unset !important;
    border-radius: 50% !important;
    background-color: grey !important;
}

/*
    TbodyID is the id of tbody whose set to text-center in Borrowers History page
*/
#TbodyID td,tr {
    text-align: center;
}

.modal-center {
    position: fixed ;
    top: 50% ;
    left: 50% ;
    transform: translate(-50%, -50%) !important;
    width: 400px;
    height: 400px;
    max-width: 90vw;
    max-height: 90vh;
    margin: 0 auto;
    border-radius: 8px;
}