/* // Styling By Daniel R. Obiekwe ( https://madebyraymond.herokuapp.com ) */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

body,html{
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 16px;
    background-color: #F3F5F5;
    color: #102E32;
}
/* Variables */
body{
    --primary-color:#267155;
    --primary-color-hover: #1D5943;
    --light-text-color: #606B75;
    --danger-color:#EB5757;
    --danger-color-hover: #b13a3a;
}

@media (min-width: 1400px){
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1140px;
    }
}

.site-breadcrumb{
    font-size: 13px;
    line-height: 130%;
    /* identical to box height */


    /* Primary Action/Text NSITF Light Theme */

    color: var(--primary-color);

    text-align: right;

}
.h-0{
    height: 0;
}

/* Links */
a, .link{
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s;
}
a:hover,
.link:hover{
    color: var(--primary-color-hover);
    text-decoration: none;
}



/* Typography */
.text-primary{
    color: var(--primary-color)!important;
}
.text-danger{
    color: var(--danger-color)!important;
}
.text-light{
    color: var(--light-text-color)!important;
}


/* Backgrounds */
.bg-grey-variant-1{
    background-color: #F9F9F9!important;
}



/* Buttons */
.btn{
    font-weight: 600;
    font-size: 14px;
    border-radius: 3px;
    transition: 0.3s;
    outline: 0;
    box-shadow: none;
    padding: 18px 20px;
    line-height: 0;

    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;

    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-sm{
    font-size: 12px;
    padding: 12px 10px;
}

/* Primary Button */
.btn-primary {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    color: #fff;
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    box-shadow: 0 0 0 0.25rem rgba(29, 89, 67, 0.5);
}
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(29, 89, 67, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Primary Outline Button */
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: #fff;
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(29, 89, 67, 0.5);
}
.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
    color: #fff;
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
}
.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
    box-shadow: 0 0 0 0.25rem rgba(29, 89, 67, 0.5);
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
    color: var(--primary-color-hover);
    background-color: #fff;
}


/* Danger Button */
.btn-danger {
    color: #fff;
    background-color: var(--danger-color);
    border-color: var(--danger-color);
}
.btn-danger:hover {
    color: #fff;
    background-color: var(--danger-color-hover);
    border-color: var(--danger-color-hover);
}
.btn-check:focus + .btn-danger, .btn-danger:focus {
    color: #fff;
    background-color: var(--danger-color-hover);
    border-color: var(--danger-color-hover);
    box-shadow: 0 0 0 0.25rem rgba(177, 58, 58, 0.5);
}
.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: var(--danger-color-hover);
    border-color: var(--danger-color-hover);
}
.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(177, 58, 58, 0.5);
}
.btn-danger:disabled, .btn-danger.disabled {
    color: #fff;
    background-color: var(--danger-color);
    border-color: var(--danger-color);
}

/* Danger Outline Button */
.btn-outline-danger {
    color: var(--danger-color);
    border-color: var(--danger-color);
    background-color: #fff;
}
.btn-outline-danger:hover {
    color: #fff;
    background-color: var(--danger-color-hover);
    border-color: var(--danger-color-hover);
}
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
    box-shadow: 0 0 0 0.25rem rgba(177, 58, 58, 0.5);
}
.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
    color: #fff;
    background-color: var(--danger-color-hover);
    border-color: var(--danger-color-hover);
}
.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
    box-shadow: 0 0 0 0.25rem rgba(177, 58, 58, 0.5);
}
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
    color: var(--danger-color-hover);
    background-color: #fff;
}


/* Secondary Button */
.btn-secondary {
    color: #000000;
    background-color: #E8EBEE;
    border-color: #E8EBEE;
}
.btn-secondary:hover {
    color: #000000;
    background-color: #d2dae0;
    border-color: #d2dae0;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
    color: #000000;
    background-color: #d2dae0;
    border-color: #d2dae0;
    box-shadow: 0 0 0 0.25rem rgba(210, 218, 224, 0.5);
}
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
    color: #000000;
    background-color: #d2dae0;
    border-color: #d2dae0;
}
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(210, 218, 224, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
    color: #000000;
    background-color: #E8EBEE;
    border-color: #E8EBEE;
}






/************ Site Header *************/
/* ********************************** */
.site-header{
    box-shadow: 0px 0.8px 9.6px rgba(0, 0, 0, 0.12);
}
.site-header .top-header{
    background: #fff;
    padding: .5rem 0;
}
.site-header .menu-header{
    background: #102E32;
}
.site-header .logo{
    width: 197px;
    height: auto;
}
.site-header .btn{
    font-weight: 600;
    font-size: 12px;
    border-radius: 3px;
    transition: 0.3s;
    outline: 0;
    box-shadow: none;
    padding: 8px 15px;
    line-height: 0;

    display: inline-flex;
    align-items: center;
}
.site-header .btn.btn-outline{
    background: #FFFFFF;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.site-header .btn.btn-outline:hover{
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
}
.site-header .btn.btn-fill{
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
}
.site-header .btn.btn-fill:hover{
    background: var(--primary-color-hover);
    border: 1px solid var(--primary-color-hover);
    color: #fff;
}
.site-header .nav{}
.site-header .nav-item{
}
.site-header .nav-item .nav-item-link{
    display: block;
    border-left: 1px solid #AAF1EA;

    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 100%;

    text-transform: uppercase;

    color: #FFFFFF;
    padding: 15px 26px;
    transition: 0.3s;
}
.site-header .nav-item .nav-item-link:hover{
    color: #D3D4D6;
}
.site-header .nav-item:first-child .nav-item-link{
    padding-left: 20px;
    border-left: 0;
}
.site-header{}
.site-header{}



/* *************** Site Footer ************** */
/* ****************************************** */
.site-footer{
    background: #102E32;
    color: #AAF1EA;
}
.site-footer hr{
    border: 0;
    height: 1px;
    background-color: #267155;
    border-top: 1px solid #267155;
}





/**************** Cards **************/
/* ********************************* */
/* General Cards */
.card{
    background: #FFFFFF;
    border-radius: 0;
    border: 0;
}
.card.card-bordered{
    border: 1px solid rgba(16, 46, 50, 0.11);
}
.card.card-rounded{
    border-radius: 6px;
}
.card.card-rounded-lg{
    border-radius: 14px;
}
.card.card-shadowed{
    box-shadow: 0px 1px 12px rgba(0, 0, 0, 0.1);
}

.card-header{
    margin: 10px 30px 0;
    padding: 10px 0;
    background: #fff;

    display: flex;
    align-items: center;
}
.card-header .card-title{
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    /* identical to box height */

    margin: 0;
}
.card-body{
    padding: 20px 30px 30px;
}
.card-title{
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    /* identical to box height */


    color: #102E32;
}

/* Form Help Card */
.form-help-card{
    background: #FAF8EC;
    border: 1px solid #FAEEA3;
    border-radius: 5px;
    padding: 1rem 1rem;
}
.form-help-card .title-txt{
    font-weight: bold;
    font-size: 14px;
    line-height: 100%;

    color: rgba(0, 0, 0, 0.8);
}
.form-help-card .content-txt{
    font-weight: normal;
    font-size: 12px;
    line-height: 180%;
    /* or 200% */

    color: rgba(0, 0, 0, 0.8);
}

/* Help Suppot Card */
.help-support-card{
    background: url(../img/help-support-card-bg.svg) center right no-repeat #102E32;
    background-size: contain;
    color: #FFFFFF;
    --help-support-card-height: 172px;
    min-height: var(--help-support-card-height);
}
.help-support-card .title-txt{
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
}
.help-support-card .content-txt{
    font-weight: 400;
    font-size: 11px;
    line-height: 15px;
    max-width: 200px;
}
.help-support-card .content-txt a{
    color: #AAF1EA;
}
.help-support-card-body{
    min-height: calc(var(--help-support-card-height) - 1.5rem - 1.5rem);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.help-support-card{}


/* Modals */
.modal{}
.modal .modal-content{
    background: #FFFFFF;
    border-radius: 0;
    border: 0;
}
.modal .modal-header,
.modal .modal-footer{
    margin: 0 1rem;
    padding: 1rem 0;
}
.modal .modal-body{
    padding: 1rem;
}
.modal .modal-title{
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;

    color: #102E32;
}




/* ********** Tables ************** */
/* ******************************** */
.table{
    border: 1px solid #DDDDDD;
}
.table > :not(:first-child) {
    border-top: 0;
}
.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: #F7F7F7;
}
.table>:not(caption)>*>* {
    border-bottom-width: 0!important;
}
.table tr{
    border-bottom: 1px solid #DDDDDD;
}
.table td,
.table th {
    padding: 0.45rem 0.5rem;
    vertical-align: middle;
    border: 0;
    font-size: 13px;
    line-height: 100%;
    /* identical to box height, or 14px */


    /* Dark text */

    color: #40484F;
}
.table thead td,
.table thead th {
    padding: 0.75rem 0.5rem;
    vertical-align: middle;
    border: 0;
    font-size: 13px;
    line-height: 100%;
    color: #666666;
    background: #E9ECEF;

}
.table-bordered thead td,
.table-bordered thead th,
.table-bordered td,
.table-bordered th{
    border: 1px solid #DDDDDD;
}
.table-hover tbody tr:hover {
    color: #40484F;
    background-color: rgba(16, 112, 183, 0.1);
}
.table input[type="checkbox"],
.table input[type="radio"]{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.table input[type="checkbox"] ~ .checkmark,
.table input[type="radio"] ~ .checkmark {
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 1px solid #D8D8D8;
    border-radius: 4px;
    outline: 0;
    display: block;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}
.table input[type="checkbox"]:checked ~ .checkmark,
.table input[type="radio"]:checked ~ .checkmark {
    background: #1070B7;
}
.table input[type="checkbox"] ~ .checkmark::after,
.table input[type="radio"] ~ .checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg) translate(-110%, -20%);
    -ms-transform: rotate(45deg) translate(-110%, -20%);
    transform: rotate(45deg) translate(-110%, -20%);
}
.table input[type="checkbox"]:checked ~ .checkmark::after,
.table input[type="radio"]:checked ~ .checkmark::after {
    display: block;
}
.table label{
    margin: 0;
}
.table .badge{
    width: 100%;
}





/* ************ Forms ************ */
/* ******************************* */
.form-control-label{
    font-weight: bold;
    font-size: 12px;
    line-height: 16px;
    color: #4F4F4F;
    margin-bottom: 0.25rem;
}
.form-control-label .label-subtext{
    font-weight: normal;
}
.form-control{
    background: #FFFFFF;
    /* Border/High - On Light */

    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    color: rgba(0, 0, 0, 0.9);

    font-weight: normal;
    font-size: 14px;
}
.form-control::placeholder{
    color: rgba(0, 0, 0, 0.5);
}
.input-group-text{
    border: 1px solid rgba(0, 0, 0, 0.3);
    background-color: #fff;
    border-radius: 2px;
}


/* Checkboxes and Radios */
.custom-checkbox input[type="checkbox"],
.custom-checkbox input[type="radio"]{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.custom-checkbox input[type="checkbox"] ~ .checkmark,
.custom-checkbox input[type="radio"] ~ .checkmark {
    width: 17px;
    height: 17px;
    min-width: 17px;
    min-height: 17px;
    background: #ffffff;
    border: 1px solid #D8D8D8;
    border-radius: 4px;
    outline: 0;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}
.custom-checkbox input[type="checkbox"]:checked ~ .checkmark,
.custom-checkbox input[type="radio"]:checked ~ .checkmark {
    background: var(--primary-color);
}
.custom-checkbox input[type="checkbox"] ~ .checkmark::after,
.custom-checkbox input[type="radio"] ~ .checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg) translate(-134%, -25%);
    -ms-transform: rotate(45deg) translate(-134%, -25%);
    transform: rotate(45deg) translate(-134%, -25%);
}
.custom-checkbox input[type="checkbox"]:checked ~ .checkmark::after,
.custom-checkbox input[type="radio"]:checked ~ .checkmark::after {
    display: block;
}
label.custom-checkbox,
.custom-checkbox label{
    margin: 0;
    display: flex;
}
label.custom-checkbox .text,
.custom-checkbox label .text{
    /* display: in; */
    cursor: pointer;
}
.custom-checkbox .text{
    font-size: 14px;
    display: block;
    margin-left: 0.5rem;
}





/* Confirmation Box */
.confirmation-box{
    text-align: center;
    max-width: 525px;
    margin: auto;
}
.confirmation-box .box-title{
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;

    color: #102E32;
}
.confirmation-box .box-message{
    font-size: 12px;
    font-weight: 500;
    line-height: 180%;
    color: #102E32;

    background: #FAF8EC;
    border: 1px solid #267155;
    padding: 20px 20px;
}
.confirmation-box hr{
    margin: 0.75rem;
}






/* Quick Links */
.quick-links{}
.quick-links .q-link{
    display: flex;
    align-items: center;
    justify-content: space-between;

    font-weight: normal;
    font-size: 13px;
    line-height: 18px;
    /* identical to box height */

    /* Dark */

    color: #333333;

    border-bottom: 1px solid #E5E5E5;

    padding: 10px 5px;
}
.quick-links .q-link:hover{
    color: var(--primary-color);
}
.quick-links .q-link:last-child{
    border-bottom: 0;
}



/* Filter Toggle Button */
.filter-toggle-button{
    background: rgba(138, 153, 168, 0.2);
    border-radius: 1px;

    height: 38px;
    padding: 10px;
    font-size: 13px;
}

/* Filters Applied Wrapper */
.filter-applied-wrapper{
    background: #F3F5F5;
    flex-grow: 1;

    display: flex;
    align-items: stretch;
}
.filter-applied-wrapper .label-txt{
    font-weight: normal;
    font-size: 12px;
    line-height: 100%;

    color: #000000;

    border-right: 1.4px solid rgba(0, 0, 0, 0.1);
    padding: 13px 13px;
}
.filter-applied-wrapper .filter-applied{
    font-weight: 500;
    font-size: 12px;
    line-height: 130%;
    /* identical to box height */

    display: flex;
    align-items: center;

    color: rgba(16, 46, 50, 0.69);
    flex-grow: 1;
    padding: 10px 8px;
}

@media (max-width: 991px){
    .filter-applied-wrapper{
        display: block;
        width: 100%;
    }
    .filter-applied-wrapper-sibling{
        width: 100%;
    }

    .filter-applied-wrapper .label-txt{
        border:0;
        border-bottom: 1.4px solid rgba(0, 0, 0, 0.1);
    }
}







/* ***************** Dashboard Styles ********************** */
/* ********************************************************* */
.wc-greeting-text{
    font-weight: 800;
    font-size: 24px;
    line-height: 42px;
    /* identical to box height */

    color: #102E32;
}

.wc-greeting-subtext{
    font-weight: normal;
    font-size: 14px;
    line-height: 150%;
    /* identical to box height */


    color: var(--light-text-color);
}

@media (max-width: 575px) {
    .wc-greeting-text{
        font-size: 21px;
        line-height: 36px;
    }
}



/* Fiscal Year Selector */
.new-fiscal-year-wrapper{
    border: 2px solid #C9D2DB;
    border-radius: 1000px;
    padding: 10px 16px;

    display: flex;
    align-items: center;
    justify-content: center;
}
.new-fiscal-year-wrapper .icon{
    width: 18px;
    height: 18px;
    font-size: 18px;
    color: #909EAB;
}
.new-fiscal-year-wrapper select{
    font-family: inherit;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    /* identical to box height */


    color: #586068;

    background: transparent;
    border: 0;
    outline: 0;
}

.wc-greeting-seperator{
    border: 0;
    border-top: 1px dashed rgb(30 35 66);
    margin: 20px 0px;
    background: transparent;
}



/* Dashboard Stat Card */
.stats-card{
    color: #1E2342;
    background: #FFFFFF;
    border-radius: 21px;
    padding: 24px;

    display: flex;
    align-items: stretch;
}
.stats-card .stat-item{
    display: flex;
    justify-content: center;
    border-right: 1px solid #DDDDDD;
}
.stats-card .stat-item:last-child{
    border: 0!important
}
.stats-card .stat-icon{
    font-size: 28px;
    color: #5AAAA2;
}
.stats-card .stat-title{
    font-weight: normal;
    font-size: 16px;
    line-height: 130%;
}
.stats-card .stat-count{
    font-weight: bold;
    font-size: 30px;
}
@media(max-width: 766px){
    .stats-card .stat-item{
        display: flex;
        justify-content: start;
        border-right: 0;
        border-bottom: 1px solid #DDDDDD;
        padding: 20px 10px;
    }
}
