@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Cedarville+Cursive");

:root {
    --mainColor: #0064fb;
    --secondColor: #2e2f46;
    --thirdColor: #ff414b;
    --thirdColorShadow: #ffeced;
    --backgroundColor: #ebebeb;
    --transparentColor: #fcebe5;
    --whiteColor: #ffffff;
    --fix-whiteColor: #ffffff;
    --fix-blackColor: #242424;
    --blackColor: #242424;
    --paragraphColor: #666666;
    --fontSize: 15px;
    --card-title-fontSize: 20px;
    --transition: 0.5s;
    --boxShadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

* {
    margin: 0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    background: #d9d9d929;
}

a {
    text-decoration: none;
}

/* =============================
          Default Css
============================== */
a {
    text-decoration: none;
    outline: 0 !important;
}

a:hover {
    text-decoration: none;
}

:focus {
    outline: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    color: var(--paragraphColor);
    font-size: var(--fontSize);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* p:last-child {
    margin-bottom: 0;
} */

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.ptb-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pt-30 {
    padding-top: 30px;
}

.pl-20 {
    padding-left: 20px;
}

.pr-20 {
    padding-right: 20px;
}

.mt-20 {
    margin-top: 20px;
}
.mt-30 {
    margin-top: 30px;
}
.mt-10 {
    margin-top: 10px !important;
}
.mb-10 {
    margin-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}
.pl-15 {
    padding-left: 15px;
}
.pr-15 {
    padding-right: 15px;
}
.pb-15 {
    padding-bottom: 15px;
}
.mt-15 {
    margin-top: 15px;
}
.ml-15 {
    margin-left: 15px;
}
.mr-15 {
    margin-right: 15px;
}
.mb-15 {
    margin-bottom: 15px;
}

.section-content {
    margin-top: 40px;
}

.sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--whiteColor) !important;
    z-index: 99999;
    padding: 0px;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.bg-f9faff {
    background-color: #f9faff;
}

.bg-mainColor {
    background-color: var(--mainColor);
}

.bg-000000 {
    background-color: #00000d;
}

.rs {
    margin-top: -10px;
}

/*Custom scrollbar*/
body {
    scrollbar-color: #00c08b;
    scrollbar-width: 8px;
}

::-webkit-scrollbar {
    width: 8px;
    transform: translate(5px, 5px);
    padding-right: 10px;
}

::-webkit-scrollbar-track {
    background-color: #c6eee2;
    border-radius: 2px;
}

::-webkit-scrollbar-track:hover {
    border-radius: 2px;
}

::-webkit-scrollbar-thumb {
    background-color: #00c08b;
    border-radius: 2px;
    height: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #c6eee2;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

::-webkit-scrollbar {
    width: 6px;
    height: 8px;
}

.staffmanage_table table::-webkit-scrollbar-thumb {
    height: 1px;
}

/* text selection color */
::-moz-selection {
    /* Code for Firefox */
    color: rgb(255, 255, 255);
    background: #033078;
}

::selection {
    color: rgb(255, 255, 255);
    background: #033078;
}

/* =============================
        Button
================================*/
.btn-primary {
    background-color: #033078;
    border-color: #033078;
    text-transform: uppercase;
}

.btn-effect {
    text-align: center;
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    width: 125px;
    border-radius: 50px;
    overflow: hidden;
}

.btn-effect.btn-effect-arrow {
    transition: all 0.2s linear 0s;
}

.btn-effect.btn-effect-arrow::before {
    content: "\f061";
    font-family: FontAwesome;
    font-size: 15px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0px;
    top: 0px;
    opacity: 0;
    height: 100%;
    width: 40px;
    transition: all 0.2s linear 0s;
}

.btn_dashboard {
    background: linear-gradient(180deg, #0492dc 0%, #033078 100%);
    color: #fff;
    outline: none;
    border: none;
    padding: 10px 35px;
    border-radius: 4px;
    transition: all 0.2s linear 0s;
    border-radius: 10px;
}

.btn_dashboard:hover {
    background: linear-gradient(90deg, #0492dc 0%, #033078 100%);
}

/* =============================
        Preloader
================================*/
#preloader {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 9999;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ripple-effect {
    color: #fff;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgb(0, 192, 139);
    margin: 0 auto;
    -webkit-animation: ripple 0.7s linear infinite;
    animation: ripple 0.7s linear infinite;
}

@-webkit-keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 192, 139, 0.3),
            0 0 0 10px rgba(0, 192, 139, 0.3), 0 0 0 30px rgba(0, 192, 139, 0.3),
            0 0 0 60px rgba(0, 192, 139, 0.3);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0, 192, 139, 0.3),
            0 0 0 30px rgba(0, 192, 139, 0.3), 0 0 0 60px rgba(0, 192, 139, 0.3),
            0 0 0 90px rgba(0, 192, 139, 0.3);
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 192, 139, 0.3),
            0 0 0 10px rgba(0, 192, 139, 0.3), 0 0 0 30px rgba(0, 192, 139, 0.3),
            0 0 0 60px rgba(0, 192, 139, 0.3);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0, 192, 139, 0.3),
            0 0 0 30px rgba(0, 192, 139, 0.3), 0 0 0 60px rgba(0, 192, 139, 0.3),
            0 0 0 90px rgba(0, 192, 139, 0);
    }
}

/*==================================
        Text Color
===================================*/
.text_skyblue {
    color: #0492dc;
}

/*----------------dropdown on hover--------------------*/
.dropdown-action {
    position: relative;
    display: inline-block;
}

.dropdown-action:hover .dropbtn-action {
    background-color: #3e8e4100;
}

.dropdown-action-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 131px;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    z-index: 1;
    right: 19px;
    top: 0px;
}

.dropdown-action-content a {
    color: rgb(0, 0, 0);
    padding: 4px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-action:hover .dropdown-action-content {
    display: block;
}

.dropbtn-action {
    background-color: #04aa6d00;
    color: #020202;
    padding: 0px 0px;
    font-size: 16px;
    border: none;
}
.with-bottom-border{
    border-bottom: 1px solid #c7c7c7;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}
.header-wth-button h3{
    font-weight: 600;
}
.header-wth-button{
    border-bottom: 1px solid #c7c7c7;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.grants_sec thead{
    background: #00c08b38;
}
/*-------------------------- switch box ---------------------------------*/
.switch_cbox {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-check-input:checked {
    background-color: #00c007;
    border-color: #00c007;
}

.form-switch .form-check-input {
    width: 2.7em;
    height: 1.4em;
}

.form-control:focus {
    border-color: #088bcc;
}

/* =============================
        Login Page
================================*/
section.login-sec {
    background-image: url(../images/log-bg.png);
    background-color: #fcfdfc;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

.login-secleft {
    height: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.login-secright {
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.login-rightbox {
    border-radius: 10px;

    padding: 30px;
    width: -webkit-fill-available;
    margin: 0px;
}

.login-rheadlang select {
    border: 1px solid #4199f0;
    border-radius: 10px;
    height: 40px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    color: #505050;
    appearance: auto;
}

.single-login {
    position: relative;
}

.login-rightbox h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    color: #000;
    font-size: 33px;
    line-height: 37px;
    letter-spacing: 0em;
    text-align: left;
}

.single-login label.login-label {
    /* font-family: "Poppins", sans-serif; */
    letter-spacing: 0px;
    color: #000;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    margin-bottom: 10px;
    display: block;
    text-align: left;
}

.single-login .eye-icon {
    position: absolute;
    top: 60%;
    right: 2%;
}

.img-upld-succ {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 10px;
    position: absolute;
    top: 7px;
    right: 7px;
}

.img-upld-succ .fa-eye {
    color: #00c08b;
    font-size: 14px;
    display: flex;
    background-color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid black;
    justify-content: center;
    align-items: center;
}

.img-upld-succ .fa-trash {
    color: #fb0026;
    font-size: 11px;
    background-color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid black;
    justify-content: center;
    align-items: center;
    display: flex;
}

.img-sec-1 {
    position: relative;
}

.single-login input.form-control,
.single-login select.form-control {
    background: #ffffff 0% 0% no-repeat padding-box;
    border: 1px solid #d6e5d4;
    border-radius: 10px;
    padding: 0.775rem 2.1rem 0.775rem 0.75rem;
    height: 50px;
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.signup-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: end;
    margin-top: 20px;
}

.checkbox-inlines {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    cursor: pointer;
    gap: 10px;
}

.checkbox-inlines .check-input {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 14px;
    min-width: 14px;
    cursor: pointer;
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 0px;
    margin-top: 3px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.signup-checkbox .checkbox-inlines .checkbox-label {
    font-size: 14px;
    font-weight: 400;
}

.forgot-btn .forgot-pass {
    transition: all 0.3s;
    font-size: 16px;
    letter-spacing: 0px;
    color: #f16220;
    /* text-decoration: underline; */
}

.checkbox-inlines label {
    font-size: 13px;
    color: #666666;
    text-transform: capitalize;
}

.login-rightfooter {
    color: #033078;
}

.login-secright p {
    color: #033078;
    text-align: center;
    margin: 6px 0;
}

.login-secright p a {
    text-decoration: underline;
    color: #033078;
}

.designby {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-secright p.subtitle {
    color: #000000;
    text-align: left;
    margin: 20px 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

.backtologin {
    margin: 14px 10px 0;
}

.backtologin a {
    color: #0492dc;
    text-decoration: underline;
}

textarea.form-control::-webkit-input-placeholder {
    opacity: 100;
}

/* line after before */
.line-around-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #1779ba;
    width: 70%;
}

.line-around-flex:before,
.line-around-flex:after {
    content: "";
    flex-grow: 1;
    height: 5px;
    background-color: #0492dc;
    border-radius: 10px;
}

.line-around-flex:before {
    margin-right: 10px;
    width: 70%;
}

.line-around-flex:after {
    margin-left: 10px;
    width: 12%;
}

.line-around-flex span {
    width: 7%;
    height: 5px;
    background-color: #0492dc;
    border-radius: 10px;
}

.line-around-sign {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    width: 25%;
    position: absolute;
    right: 15%;
}

.line-around-sign:before,
.line-around-sign:after {
    content: "";
    flex-grow: 1;
    height: 5px;
    background-color: #ffffff;
    border-radius: 10px;
}

.line-around-sign:before {
    margin-right: 10px;
    width: 2%;
}

.line-around-sign:after {
    margin-left: 10px;
    width: 60%;
}

.line-around-sign span {
    width: 7%;
    height: 5px;
    background-color: #ffffff;
    border-radius: 10px;
}

/* line after before/ */
.login-secright h6.subtitle {
    color: #000000;
    text-align: left;
    margin: 20px 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
}

.login-secright h6.subtitle span {
    color: #0492dc;
    font-size: 14px;
}

.login-secright p.resettext {
    color: #9a9a9a;
    text-align: left;
}

.success-icon i {
    color: #0cbc8b;
    font-size: 45px;
}

.success-icon {
    background: #0cbc8b47;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 6px solid #0cbc8b;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-icon i {
    color: #0cbc8b;
    font-size: 35px;
}

.reset-success {
    text-align: center;
}

.login-secright .reset-success h6.subtitle {
    text-align: center;
    font-weight: 400;
}

.login-righthead {
    display: flex;
    justify-content: space-between;
    margin: 25px 0 0;
}

/* =============================
        Dashboard Page
================================*/
.app-footer__inner .designby_dashboard {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    justify-content: space-between;
}

.app-footer__inner .designby_dashboard p {
    margin: 0;
    color: #87999e;
    font-size: 14px;
}

.app-footer__inner .designby_dashboard p a {
    margin: 0;
    color: #87999e;
    font-size: 14px;
}

/* Ensure that the demo table scrolls */
.staffmanage_table table th,
.staffmanage_table table td {
    white-space: nowrap;
}

.staffmanage_table div.dataTables_wrapper {
    width: 990px;
    margin: 0 auto;
}

table.dataTable thead {
    background: #033078;
    color: #fff;
}

.staffmanage_table table.dataTable thead th,
.staffmanage_table table.dataTable tfoot th {
    font-weight: 400;
}

table.dataTable thead tr > .dtfc-fixed-left,
table.dataTable thead tr > .dtfc-fixed-right,
table.dataTable tfoot tr > .dtfc-fixed-left,
table.dataTable tfoot tr > .dtfc-fixed-right {
    background: #033078;
    color: #fff;
    background: #033078 !important;
    color: #fff !important;
}

table.dataTable thead tr th {
    white-space: nowrap;
}

table.dataTable tbody tr td {
    white-space: nowrap;
}

.staffmanage_table .staff_name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.staff_nametext h2 {
    font-size: 15px;
    margin: 0;
}

.staff_nameimg {
    background: #0492dc;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
}

.staff_nameimg h2 {
    font-size: 15px;
    margin: 0;
}

.staff_rolebox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.staffmanage_table table tbody p {
    margin: 0;
    color: #000000;
}

.header_title h2 {
    color: #0492dc;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

.staff_rolebox p {
    background: #d9d9d9;
    padding: 3px 6px;
    border-radius: 5px;
}

.btn_dashboard span {
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 3px 5px;
    font-size: 8px;
}

.card-header.staff_header {
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.25rem;
    border: 0;
}

.cardsub_heading {
    border-bottom: 1px solid rgba(26, 54, 126, 0.125);
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    display: flex;
    width: 100%;
}

.staffmanage_table {
    margin-top: 20px;
}

.stafftable_dropdown .dropdown-toggle::after {
    display: none;
}

.stafftable_dropdown button.btn.btn-secondary.dropdown-toggle {
    background: linear-gradient(180deg, #0492dc 0%, #033078 100%);
    color: #fff;
    outline: none;
    border: none;
    padding: 10px 35px;
    border-radius: 4px;
    transition: all 0.2s linear 0s;
    border-radius: 10px;
}

.stafftable_dropdown button.btn.btn-secondary.dropdown-toggle:hover {
    background: linear-gradient(90deg, #0492dc 0%, #033078 100%);
}

.staff_headerright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

select.form-control,
input.form-control {
    appearance: auto;
    padding: 0.375rem 2.1rem 0.375rem 0.75rem;
    height: 45px;
    border-radius: 10px;
    color: #2c3e50;
}

.action_icon {
    display: flex;
    gap: 12px;
}

.action_icon a {
    color: #033078;
}

.staff_rolecheckbox {
    background: #d9d9d954;
    border-radius: 10px;
    padding: 0 12px;
    margin: 14px 0;
    width: 96%;
}

.staffrolebox_dlt a i {
    font-size: 18px;
}

.staff_checkleft {
    padding: 15px;
}

.staff_checkleft h6 {
    margin: 0;
    font-size: 18px;
    color: #666;
}

.staff_checkright {
    display: flex;
    align-items: center;
    gap: 15px;
}

.staff_checkrbox {
    border-left: 1px solid #d9d9d9;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 6px;
    width: 14%;
    justify-content: center;
}

.staff_checkrbox input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
    height: 20px;
    width: 20px;
}

.staff_checkrbox label {
    margin: 0;
    font-size: 15px;
}

.addstaff_rolebox {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/*---------------Dashboard top bar modification-------------------*/
.widget_langbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.widget_lang select {
    border: 1px solid #4199f0;
    border-radius: 10px;
    height: 40px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    color: #505050;
    appearance: auto;
    width: 175px;
}

.top_toggle {
    border: none;
    background: transparent;
}

.widget_profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.top_notibox {
    position: relative;
}

.top_notibox span.notification_no {
    position: absolute;
    top: -2px;
    right: -2px;
    color: #fff;
    background: #e35268;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.widget_dropbox button.setting_btn i {
    font-size: 22px;
    color: #00c08b;
}

.widget_dropbox .dropdown-toggle::after {
    top: 0;
    color: #00c08b;
    margin-left: 2px;
}

.widget_dropbox.dropdown-action ul.dropdown-action-content {
    list-style: none;
    padding: 0;
}

.widget_dropbox.dropdown-action .dropdown-action-content {
    right: -30px;
    top: 40px;
}

.setting_dropdown {
    width: 28rem;
    padding: 25px;
    height: 270px;
    overflow-y: scroll;
}

.setting_head h6 {
    font-size: 16px;
    font-weight: 500;
    color: #00bc88;
}

.setting_head ul {
    list-style: none;
    padding: 0;
}

.setting_head ul li:before {
    content: "\f101";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
}

.setting_dropdown .dropdown-item {
    padding: 0 1.2rem 0.8rem;
}

.setting_head ul li {
    position: relative;
}

.setting_head ul li {
    position: relative;
    transition: all ease-in-out 1s;
    padding: 6px 20px;
}

.setting_head ul li:hover {
    transform: translateX(2px);
}

.setting_head a.dropdown_item_hier {
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #000;
}

.setting_head ul li:hover a {
    /* font-weight: 700; */
    color: #00c08b;
}

.setting_head ul li:hover::before {
    color: #0492dc;
}

.setting_head li.active {
    color: #00c08b;
    font-weight: 700;
}

.setting_head li.active a {
    color: #00c08b;
}

/*---------------Dashboard side bar modification-------------------*/
.app-sidebar__inner li ul li.sub_active > a {
    color: #3eabe4;
    font-weight: 600;
    opacity: 1;
}

/* =============================================
              Hierarchy Page
=================================================*/
.hierarchy_box .tree,
.hierarchy_box .tree ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hierarchy_box .tree ul {
    margin-left: 0.4em;
    position: relative;
}

.hierarchy_box .tree ul ul {
    margin-left: 0.3em;
}

.hierarchy_box .tree ul:before {
    content: "";
    display: block;
    width: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    border-left: 1px solid #b8b8b8;
}

.hierarchy_box .tree li {
    margin: 0;
    padding: 0 0 0 24px;
    line-height: 3.5em;
    color: #666;
    font-weight: 400;
    position: relative;
    font-size: 18px;
}

.hierarchy_box .tree ul li:before {
    content: "";
    display: block;
    width: 15px;
    height: 0;
    border-top: 1px solid #b8b8b8;
    margin-top: -1px;
    position: absolute;
    top: 30px;
    left: 0;
}

.hierarchy_box .tree ul li:last-child:before {
    background: #fff;
    height: auto;
    /* top: 1.8em; */
    bottom: 0;
}

.hierarchy_box .tree li a {
    text-decoration: none;
    color: #666666;
    font-weight: 500;
    font-size: 20px;
}

.hierarchy_box .tree ul,
.hierarchy_box .tree li {
    cursor: pointer;
}

span.hierar_action .text-success i {
    color: #0cbc8b;
    border: 1px solid #0cbc8b;
    font-weight: 400;
    border-radius: 50%;
    padding: 6px;
    font-size: 12px;
    margin: 6px 0 6px 10px;
}

span.hierar_action .text-primary i {
    color: #0492dc;
    border: 1px solid #0492dc;
    border-radius: 50%;
    padding: 6px;
    font-size: 12px;
    margin: 6px 0 6px 10px;
}

span.hierar_action .text-danger i {
    color: #d80027;
    border: 1px solid #d80027;
    font-weight: 400;
    border-radius: 50%;
    padding: 6px;
    font-size: 12px;
    margin: 6px 0 6px 10px;
}

.hierarchy_box .tree span.form-switch {
    padding-left: 2.5em;
}

.hierarchy_box .tree span.hierar_action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

p.hierarchy_con {
    display: flex;
    background: #f4f4f4;
    align-items: center;
    padding: 5px 30px;
    border-radius: 4px;
    gap: 10px;
    height: 57px;
}

.hierarchy_box .branch p.hierar_super {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 2px;
    gap: 10px;
    margin: 0;
    font-size: 16px;
}

.hierarchy_box .tree > li > p.hierarchy_con {
    background: transparent;
}

.hierarchy_box .tree > li > ul > li > p.hierarchy_con {
    background: transparent;
}

.hierarchy_box i.indicator_hierbox {
    position: absolute;
    left: 32px;
    top: 18px;
}

.hierarchy_box ul.tree > li > ul {
    margin-left: 30px;
}

.hierarchy_box ul.tree > li > ul > li > ul {
    margin-left: 30px;
}

.hierarchy_box ul.tree > li > ul > li > ul > li > ul {
    margin-left: 40px;
}

.hierarchy_box ul.tree > li > ul > li > ul > li > ul > li > ul {
    margin-left: 40px;
}

.hierarchy_box ul.tree > li > ul > li > ul > li > ul > li > ul > li > ul {
    margin-left: 40px;
}

.hierarchy_box .tree li::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 26px;
    width: 7px;
    height: 8px;
    border-top: 1px solid #b8b8b8;
    border-right: 1px solid #b8b8b8;
    transform: rotate(45deg);
}

.hierarchy_box .tree > li::after {
    display: none;
}

.hierarchy_box .hierarchy_con .form-switch .form-check-input {
    width: 3em;
    height: 1.3em;
    position: absolute;
    top: 14px;
}

/* =============================================
              Profile Page
=================================================*/
.profile_leftimg {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-form {
    margin-top: 16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile_bodyright .profile-form label.login-label {
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 0;
}

.profile_bodyright .profile-form .form-control {
    padding: 0.375rem 2.1rem 0.375rem 0.75rem;
    height: 35px;
    font-size: 14px;
    border: 0;
    border-bottom: 1px solid #ced4da;
    border-radius: 0;
    width: 70%;
}

.profile_bodyright .profile-form.profile_name .form-control {
    width: 80%;
}

.profile_bodyright .profile-form.profile_add .form-control {
    width: 88%;
}

.profile-form .edit-icon {
    position: absolute;
    top: 40%;
    right: 0;
    color: #c5cfd6;
}

.profile_sechead {
    margin: 10px 0 20px;
    display: flex;
    gap: 16px;
}

.profile_bodyright {
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 18px;
    min-height: 210px;
}

.profile_bodyleft {
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-height: 210px;
}

.profile_leftbtn {
    background-color: #d9d9d94d;
    border-radius: 10px;
}

.profile_leftbtn a {
    display: inline-block;
    color: #495057;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 10px 20px;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s, background-color 0.15s, border-color 0.15s,
        box-shadow 0.15s;
    background: -webkit-linear-gradient(180deg, #0492dc 0%, #033078 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.profilebtn_arrow {
    position: relative;
}

.profilebtn_arrow:after,
.profilebtn_arrow:before {
    border: solid transparent;
    content: " ";
    display: block;
    height: 0;
    position: absolute;
    pointer-events: none;
    width: 0;
    top: 100%;
}

.profilebtn_arrow:after {
    border-color: rgb(3 79 152 / 0%);
    border-top-color: #033881;
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
}

.profilebtn_arrow:before {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #033179;
    left: 50%;
    margin-left: -14px;
    border-width: 14px;
}

/* =============================
        Registration Page
================================*/
.registration-secleft {
    background: linear-gradient(
        305.56deg,
        #033078 -1%,
        rgba(3, 48, 120, 0.64) 109.49%
    );
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.registration-leftup {
    text-align: right;
    position: relative;
    padding: 30px 45px;
}

/* progressive flow */

#progressbar {
    position: absolute;
    right: 15px;
    overflow: hidden;
    color: #e53935;
}

#progressbar li {
    list-style-type: none;
    font-size: 8px;
    font-weight: 400;
    height: 100px;
}

#progressbar li:nth-child(3) {
    margin-bottom: 88px;
}

#progressbar .steps:before {
    content: "\f111";
    font-family: FontAwesome;
    color: #a3a3a3;
}

#progressbar li:before {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: block;
    font-size: 20px;
    border: 1px solid #a3a3a3;
    border-radius: 50%;
    margin: auto;
    font-size: 9px;
}

#progressbar li:after {
    content: "";
    width: 2px;
    height: 40px;
    background: #a3a3a3;
    position: absolute;
    left: 47px;
    top: 15px;
}

#progressbar li:nth-child(3):after {
    top: 38%;
}

#progressbar li:nth-child(2):after {
    top: 12%;
}

#progressbar li:first-child:after {
    position: absolute;
    top: -81px;
}

#progressbar li.active:after {
    background: #ffffff;
}

#progressbar li.active:before {
    font-family: FontAwesome;
    content: "\f00c";
    color: #fff;
    border: 1px solid #fff;
    font-size: 20px;
}

.tick {
    width: 100px;
    height: 100px;
}

/* otp no */
.single-login input[type="number"],
.single-login input[type="date"] {
    font: 16px/26px "Roboto";
    color: #000;
}

.single-login input.otpinput {
    height: 48px;
    width: 44px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #ced4da;
    text-align: center;
    outline: none;
    font-size: 24px;
}

.single-login .otpbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-rightbox .resend_otp span {
    position: relative;
    padding-right: 20px;
    color: #d9d9d9;
}

.login-rightbox .resend_otp span:after {
    content: "";
    background: #d9d9d9;
    width: 2px;
    height: 18px;
    position: absolute;
    right: 8px;
    top: 0;
}

.login-rightbox a,
.login-secright .login-rightbox p a {
    color: #0492dc;
    text-decoration: none;
}

.sign_upflow h2 {
    color: #fff;
    margin-right: 10%;
}

.sign_upflowbox {
    position: relative;
    margin: 46px 0 0 0;
}

.sign_upboxnames {
    position: absolute;
    right: 10%;
}

.sign_stepsbox h6 {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #9f9f9f;
}

.sign_stepsbox p {
    color: #9f9f9f;
}

.sign_stepsbox.active h6 {
    color: #ffffff;
}

.sign_stepsbox.active p {
    color: #fff;
}

.sign_upboxnames .sign_stepsbox {
    height: 100px;
}

.regi-sucessimg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15%;
}

.closed-sidebar .staffmanage_table div.dataTables_wrapper {
    width: 1156px;
    margin: 0 auto;
}

/* ============================================
              Dashboard Page
===============================================*/
.dashboard_head {
    margin: 20px 0 15px 15px;
}

.dashboard_time {
    display: flex;
    gap: 15px;
}

.dashboard_time p {
    margin: 0;
}

.dashboard_time p i {
    color: #0492dc;
}

.dahboard_activebox {
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #0492dc;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}

.dahboard_activebox:hover {
    transform: translateY(-7px);
}

.dahboard_activebox .dahboard_boxleft p {
    color: #666;
    margin: 0;
    font-weight: 400;
    font-size: 14px;
}

.dahboard_activebox .dahboard_boxleft h6 {
    font-weight: 500;
    font-size: 16px;
    color: #000;
}

.dahboard_activebox .dahboard_boxleft h4 {
    color: #033078;
    font-weight: 600;
}

.dahboard_boxright {
    background: #d9d9d94d;
    padding: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #0492dc;
    font-size: 17px;
}

.dashboard_projectbox {
    margin: 40px 0 15px 15px;
}

.dahproject_head {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.dahproject_head p {
    margin: 0;
}

.dash_recenttable h6 {
    margin: 0;
    color: #000;
    font-weight: 500;
}

.dash_recenttable {
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    padding: 16px;
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 12px;
}

.dash_recenthed {
    border-bottom: 1px solid rgba(26, 54, 126, 0.125);
    padding: 6px;
    margin-bottom: 18px;
}

.recent_status p.status_active {
    color: #0cbc8b;
}

.recent_status p.status_inactive {
    color: #d92550;
}

.recent_status p i {
    font-size: 12px;
    padding-right: 10px;
}

.dahproject_head a {
    font-size: 13px;
    color: #666666;
}

.dahproject_head .form-control {
    font-size: 13px;
}

.recent_protable .staff_name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

button.projectac_drop {
    border: 1px solid rgba(217, 217, 217, 0.5);
    background: #fff;
    padding: 6px 10px;
    width: 140px;
    border-radius: 5px;
    color: #666666;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recent_protable table p {
    margin: 0;
}

.app-page-title .page-title-heading h2.text_skyblue {
    color: #0492dc;
}

/* ============================================
          New Project Management Page
===============================================*/

.file-upload {
    display: none;
}

.p-image {
    position: relative;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 145px;
    cursor: pointer;
}

.p-image i {
    color: #d9d9d9;
    font-size: 30px;
}

.upload_imgbox {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    margin: auto;
    transform: translate(-50%, -50%);
    width: 100%;
}

.upload_imgbox p {
    margin: 0;
    padding-top: 5px;
}

.docs_img {
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 145px;
    position: relative;
    transition: all 0.5s ease-in-out;
}

.docs_img img {
    height: 95px;
}

.docs_imgoverlay {
    position: absolute;
    background: rgb(0 0 0 / 60%);
    height: 40px;
    width: 100%;
    bottom: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    display: none;
}

.docs_img:hover .docs_imgoverlay {
    display: block;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.docs_imgoverlay a {
    color: #fff;
}

.uploaddoc_body .single-login input[type="file"]::-webkit-file-upload-button {
    background: #0492dc;
    border: 2px solid #0492dc;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    outline: none;
    padding: 15px 25px;
    text-transform: uppercase;
    transition: all 1s ease;
}

.uploaddoc_body
    .single-login
    input[type="file"]::-webkit-file-upload-button:hover {
    background: #a7a7a7;
    border: 2px solid #a7a7a7;
    border-radius: 4px;
    color: #000000;
}

.upload_pdf input {
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 10px;
}

.modal-header h5.modal-title {
    color: #0492dc;
    font-weight: 600;
}

.modal-body .check_box {
    padding: 15px 0 0;
    display: flex;
    gap: 10px;
}

.modal-body .check_box label {
    margin: 0;
}

.project_boxhead h4 {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #0492dc;
}

.project_boxhead {
    border-bottom: 1px solid #0492dc;
    margin: 0 0 14px 0;
}

.modal .modal-content button.btn-close {
    background: none;
    opacity: 1;
}

.modal .modal-content button.btn-close:before {
    content: "\f00d";
    font-family: "FontAwesome";
    color: #d80027;
    font-size: 18px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: #fcfcfc;
    z-index: 9;
}

.table .thead-blue th {
    color: #fff;
    background: #033078;
    border-color: #e9ecef;
}

.projectr_boxtable {
    padding: 24px 0;
}

.projectr_box .table thead tr th {
    font-weight: 400;
}

.projectr_box .table tbody tr th,
.projectr_box .table tbody tr td {
    color: #666666;
    font-weight: 400;
}

.addnew_project form .btn.btn-primary {
    height: 45px;
    width: 140px;
}

.addnew_project {
    background: #f2f2f2;
    padding: 0 15px 20px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.modal_search {
    position: relative;
}

button.Fbtn.btn-subscribe {
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
    border: 1px solid #d9d9d9;
    width: 34px;
    height: 38px;
    background: #fff;
    border-bottom-right-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

button.Fbtn.btn-subscribe i {
    background: -webkit-linear-gradient(180deg, #033078 0%, #0492dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
}

.form-control:focus ~ button.Fbtn.btn-subscribe {
    border-color: #088bcc;
}

.modal-header.qualitym_head {
    gap: 35px;
}

.detailsheadbtn .btn_dashboard span {
    border: 0;
}

/* ============================================
          Project Details Page
===============================================*/
.projectd_box {
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 25px;
    min-height: 135px;
    transition: all 0.5s ease-in-out;
}

.projectd_box:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.projectd_txt {
    display: flex;
    gap: 30px;
    align-items: center;
}

.projectd_txt h6 {
    line-height: 1.4;
}

.projectd_txt p span {
    color: #0492dc;
    padding-right: 10px;
}

.projectd_txt p {
    width: 140px;
    color: #666666;
}

.projectd_txt h6 {
    color: #000;
}

.projectd_txt h6 span {
    padding-right: 6px;
}

.projectd_name {
    padding: 15px 25px 0px;
    border-bottom: 1px solid rgba(26, 54, 126, 0.125);
}

.projectd_name .projectd_txt p span {
    font-size: 25px;
}

.projectd_viewbtn a.btn_dashboard {
    width: 24%;
}

.projectd_viewbtn {
    display: flex;
    gap: 14px;
}

.safety_uploadbtn {
    display: flex;
    justify-content: space-between;
}

.safety_uploadbtn .upload_file {
    position: relative;
    background: #d9d9d9;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    width: 70%;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.safety_uploadbtn .upload_file label {
    margin: 0;
}

.safety_uploadbtn .upload_file label span {
    color: #0492dc;
    padding-right: 10px;
}

.safety_uploadbtn .upload_file input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

.safety_uploadbtn button.btn.btn-primary {
    width: 25%;
}

.app-page-title .page-title-heading.projectd_header {
    width: 100%;
}

/*------------------- Multi Select Design ----------------------*/
.stafftable_select .custom-select {
    background: linear-gradient(180deg, #0492dc 0%, #033078 100%);
    color: #fff;
    min-width: 150px;
    border-radius: 10px;
}

/* ============================================
         Project Management Page
===============================================*/
.project_tabs .nav-pills .nav-link {
    background: transparent;
    color: #033078;
    position: relative;
}

.project_tabs .nav-pills .nav-link.active {
    font-weight: 700;
}

.project_tabs .nav-pills .nav-link.active:before {
    content: "";
    width: 100%;
    height: 2px;
    background: #0064fb;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.project_tabs .nav-pills .nav-link.active:hover {
    color: #033078;
}

.projectlist_search {
    position: relative;
}

.documentsup_quality {
    display: flex;
    gap: 10px;
    align-items: center;
}

.docup_qualitydrop .dropdown .dropdown-menu .dropdown-item span {
    padding-right: 10px;
}

.docup_qualityimg img {
    width: 45px;
    height: 36px;
}

.docup_qualitydrop .dropdown .dropdown-item {
    color: rgb(102, 102, 102);
    padding: 4px 8px;
    font-size: 13px;
}

.docup_qualitydrop .dropdown .dropdown-toggle {
    color: #666666;
}

.docup_qualitydrop .dropdown .dropdown-toggle::after {
    display: none;
}

#qualityModal .modal-body.qualitymodal-body {
    padding: 0;
}

.docup_qualitydrop .dropdown {
    text-align: center;
}

.docup_qualitydrop .dropdown ul.dropdown-menu.show {
    display: flex;
    flex-wrap: wrap;
    width: 505px;
}

.documentsup_quality a {
    color: #000000a8;
}

.projectlist_search form input {
    padding: 0.375rem 2.75rem 0.375rem 0.75rem;
}

.quality_teamlist ul {
    display: grid;
    list-style: none;
    padding: 0;
    grid-template-columns: 1fr 1fr;
}

table.dataTable {
    min-height: 65px;
}

.qualitymodal-body .accordion-button:not(.collapsed) {
    color: #666;
    margin: 0;
    background: #fff;
    box-shadow: none;
}

.qualitymodal-body .accordion-button span {
    color: #000000;
    font-weight: 700;
    padding-left: 7px;
}

.qualitymodal-body .accordion-button span.icon_edit {
    color: #0492de;
    font-size: 13px;
    padding-left: 8px;
}

.qualitymodal-body .accordion-body {
    padding: 0;
}

.qualitymodal-body .accordion-body h4 {
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    margin: 0;
}

.qualitymodal-body .accordion-body h4 span {
    color: #000;
    font-weight: 700;
}

.qualitymodal-body .assign_name {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.modalplan_table {
    padding: 0 0.8rem;
}

.qualitymodal-body .table tr td {
    border: 0;
}

.qualitymodal-body .table {
    margin: 0;
}

.qualitymodal-body .table tr td:first-child {
    border-right: 1px solid #d9d9d9;
    width: 30%;
}

#ongoingProject .dataTables_scrollBody {
    overflow: inherit !important;
}

/* ============================================
         Notification Page
===============================================*/
.notfication_sec {
    background: rgba(217, 217, 217, 0.17);
    margin: 20px;
}

.notfication_box {
    display: flex;
}

.notfication_boxleft,
.notfication_boxright {
    overflow-y: scroll;
    max-height: 585px;
}

.notileft_single {
    display: flex;
    gap: 10px;
    background: rgba(233, 136, 98, 0.15);
    border-radius: 10px;
    margin: 15px;
    padding: 10px;
}

.lastweek_box .notileft_single {
    background: rgba(217, 217, 217, 0.15);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.notfication_boxleft {
    width: 30%;
}

.notfication_boxright {
    width: 70%;
}

.notfication_boxhead {
    background: #d9d9d9cc;
    padding: 16px;
}

.notfication_boxhead h6 {
    margin: 0;
}

.notileft_singlecontent h6 span {
    position: relative;
    padding-left: 10px;
    margin-left: 6px;
}

.notileft_singlecontent h6 span:before {
    position: absolute;
    width: 2px;
    height: 100%;
    content: "";
    background: #666666;
    left: 0;
}

.notileft_singlecontent p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
    color: #000;
    font-weight: 500;
    font-size: 14px;
}

.notileft_singleicon i {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e98862;
    font-size: 24px;
}

.notileft_singlecontent h6 {
    color: #666666;
    font-style: italic;
    font-size: 13px;
}

.notiright_single {
    display: flex;
    gap: 10px;
    border-radius: 10px;
    margin: 15px;
    padding: 10px;
}

.notiright_singleicon i {
    width: 50px;
    height: 50px;
    background: rgb(239 239 239);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e98862;
    font-size: 24px;
}

.notiright_singlecontent h6 {
    color: #666666;
    font-style: italic;
    font-size: 13px;
    margin: 0;
}

.notiright_singlecontent {
    border-radius: 10px;
    background: rgb(239 239 239);
    padding: 10px 16px;
}

.notiright_singlecontent:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.notiright_singlecontent h6 span {
    position: relative;
    padding-left: 10px;
    margin-left: 6px;
}

.notiright_singlecontent h6 span:before {
    position: absolute;
    width: 2px;
    height: 100%;
    content: "";
    background: #666666;
    left: 0;
}

.notiright_singlecdate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}

.notiright_singlecontent p {
    margin: 0;
    color: #000;
    font-weight: 500;
    font-size: 14px;
}

.star_noti .fa-solid.fa-star {
    color: #efd700;
}

.projectr_box table {
    white-space: nowrap;
}

.projectr_box .add_row i {
    font-size: 15px;
}

.projectr_box select.form-control {
    min-width: 250px;
    height: 40px;
    border-radius: 5px;
    background: rgba(217, 217, 217, 0.42);
    font-size: 13px;
}

.projectr_box input.form-control {
    border-radius: 5px;
    background: rgba(217, 217, 217, 0.42);
}

.safetytable_img {
    width: 45px;
    margin: auto;
}

/*=========================================
            Project Cost Page
===========================================*/
.projectr_box .table tbody tr td {
    padding: 0;
}

.project_costtable .table tbody tr td {
    min-width: 100px;
}

.projectr_box.project_costtable input.form-control {
    background: rgba(255, 252, 252, 0);
    border: 0;
    /* border-bottom: 1px dashed #ced4da; */
    border-radius: 0;
}

.projectr_box.project_costtable tr.bg_blue {
    background: #e0f3ff;
}

.projectr_box.project_costtable tr.bg_blue th {
    color: #0391db;
    font-weight: 600;
    border-right: 1px solid #a4a4a4;
}

.projectr_box.project_costtable tr.bg_blue th,
.projectr_box.project_costtable tr.bg_blue td {
    border-bottom: 1px solid #a4a4a4;
}

.logout-top-sec a {
    text-align: left;
    letter-spacing: 0px;
    color: #e35268;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-rightbox h6 {
    letter-spacing: 0px;
    color: #55696d;
    font-family: "Poppins", sans-serif;
    margin: 10px 0px 30px 0px;
    font-size: 20px;
    font-weight: 600;
}

.login-form {
    background: #e9f6ff 0% 0% no-repeat padding-box;
    border-radius: 25px;
    width: 100%;
    padding: 40px 60px 10px 60px;
    margin: 15px 0px 0px 0px;
}

.login-form .single-login {
    margin-top: 16px;
    position: relative;
    margin-bottom: 30px;
}

.login-form .btn {
    background: #00c08b 0% 0% no-repeat padding-box;
    border-radius: 50px;
    border: 0px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 60px;
    /* margin: 0; */
    line-height: 20px;
    min-width: 180px;
    font-size: 18px;
    letter-spacing: 3px;
}

.login-form p {
    letter-spacing: 0px;
    color: #55696d;
    display: flex;
    font-size: 15px;
    gap: 10px;
}

.login-form p a {
    color: #e35268 !important;
    text-decoration: none !important;
}

.single-login input.form-control::placeholder {
    color: #d6e5d4;
}

.hamburger {
    color: #00c08b !important;
    background-color: #c6eee2 !important;
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-header .app-header__menu .btn-primary {
    background-color: #00c08b;
    border-color: #00c08b;
    text-transform: uppercase;
}

.hello-dashboard-sec {
    background: url("../images/hello-bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 30px;
    background-position: center;
}

.hello-dashboard-sec h3 {
    letter-spacing: 0px;
    color: #ffffff;
    font-size: 26px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.dash-section {
    position: relative;
    display: block;
    margin: 30px 0px;
}

.creation-sec {
    background: #f0f5ef80 0% 0% no-repeat padding-box;
    border-radius: 20px;
    display: grid;

    padding: 20px;
}

.creation-sec h4 {
    letter-spacing: 0px;
    color: #201430;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}

.creation-sec p {
    letter-spacing: 0px;
    color: #201430;
    text-transform: capitalize;
    line-height: 18px;
    font-size: 14px;
    font-weight: 500;
}

.creation-sec .ad-btn {
    background: #00c08b 0% 0% no-repeat padding-box;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 10px 30px;
    font-size: 14x;
    width: max-content;
    margin: 0px 0px 15px 0px;
    font-weight: 600;
    letter-spacing: 2px;
    min-width: 140px;
}

.notification-dash {
    background: #f0f5ef80 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: 20px;
    display: block;
    position: relative;
}

.heading-ntfcn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.heading-ntfcn h4 {
    letter-spacing: 0px;
    color: #201430;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin: 0px;
}

.heading-ntfcn a {
    letter-spacing: 0px;
    color: #201430;
    text-transform: capitalize;
    line-height: 18px;
    font-size: 14px;
    font-weight: 500;
}

.notification-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff 0% 0% no-repeat padding-box;
    border-radius: 6px;
    margin-top: 18px;
    padding: 9px 10px;
}
.notification-box .n-content {
    width: 93%;
}

.n-content p {
    font: normal normal normal 12px/18px Poppins;
    letter-spacing: 0px;
    color: #748488;
    margin-bottom: 0px;
}

.funding-request-sec {
    background: #f0f5ef80 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: 30px 30px;
    margin: 30px 0px;
}

.rqst-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 5px;
}

.name-bx h6 {
    letter-spacing: 0px;
    color: #201430;
    text-transform: capitalize;
    line-height: 18px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.name-bx p {
    font: normal normal normal 12px/18px Poppins;
    letter-spacing: 0px;
    color: #748488;
    margin-bottom: 0px;
}

.amount-bx p {
    font: normal normal normal 12px/18px Poppins;
    letter-spacing: 0px;
    color: #748488;
    margin-bottom: 0px;
    margin-top: 15px;
}

.rqst-box h5 {
    letter-spacing: 0px;
    color: #354d52;
    font: normal normal normal 16px/18px Poppins;
    margin-top: 5px;
    font-weight: 500;

}
.rqst-box h5 a {
    position: relative;
}

.vw-all a {
    background: #f0f5ef 0% 0% no-repeat padding-box;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #00c08b;
}

.rqst-box .name-bx {
    min-width: 360px;
}

.help-section {
    background: #f0f5ef80 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: 26px 20px;
    display: grid;
}

.help-section h4 {
    letter-spacing: 0px;
    color: #201430;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0px 0px 0px;
}

.help-section h5 {
    font: normal normal normal 15px/22px Poppins;
    letter-spacing: 0.32px;
    color: #27545f;
    margin-top: 3px;
    margin-bottom: 15px;
}

.help-section .ad-btn {
    background: #00c08b 0% 0% no-repeat padding-box;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 12px 25px;
    font-size: 12px;
    width: max-content;
    margin: 9px 0px 0px 0px;
    font-weight: 600;
    letter-spacing: 1px;
}

.profile-right-dash h4 {
    letter-spacing: 0px;
    color: #201430;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin: 0px;
}

.profile-right-dash h5 {
    letter-spacing: 0px;
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-top: 5px;
}

.profile-right-dash h5 span {
    color: #00c08b;
}

.update-Grant-btn a {
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0px;
    color: #354d52;
    font-size: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 12px #00000005;
    border-radius: 15px;
    padding: 15px 10px;
    margin: 0px 0px 5px 0px;
}

.profile-right-dash {
    background: #f0f5ef80 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: 28px 20px;
    display: grid;
    margin-bottom: 30px;
}

.council-box {
    text-align: center;
    margin: 20px 0px;
}

.council-box a {
    font: normal normal normal 14px/21px Poppins;
    letter-spacing: 0px;
    color: #e35268;
}

.council-box h5 {
    font: normal normal normal 16px/25px Poppins;
    letter-spacing: 0px;
    color: #201430;
    margin-bottom: 0px;
    font-weight: 600;
}

.council-img {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 10px 0px 15px 0px;
}

.img-crcl {
    border: 3px solid #00c08b;
    opacity: 1;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.img-crcl img {
    object-fit: cover;
    height: 100%;
}

.img-crcl input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
}

.crcl-1 {
    position: absolute;
    z-index: 9;
    left: 35px;
    top: 65px;
}

.crcl-2 {
    position: absolute;
    z-index: 9;
    left: 60px;
    bottom: 8px;
}

.crcl-3 {
    position: absolute;
    z-index: 9;
    top: 15px;
    left: 73px;
}

.crcl-4 {
    position: absolute;
    z-index: 9;
    right: 40px;
    top: 15px;
}

.crcl-5 {
    position: absolute;
    z-index: 9;
    right: 60px;
    top: 65px;
}

.crcl-6 {
    position: absolute;
    z-index: 9;
    top: -20px;
    right: 70px;
}

.app-theme-white .app-footer .app-footer__inner {
    background: #ffffff !important;
}

.event-list-sec .table-responsive{
    background-color: rgb(0 0 0 / 9%);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}
.event-list-sec .table-responsive thead{
    border-bottom: 1px solid #cfcfcf;
}
.event-list-sec .table-responsive tbody tr{
    border-bottom: 1px solid #cfcfcf;
    background: #ffffff5e;
    font-weight: 600;
    font-size: 15px;
}
.staff-list-sec table tr {
        display: flex;
        background-color: rgba(255, 255, 255, 0.38);
        align-items: center;
        justify-content: space-between;
        border-radius: 8px;
        margin-bottom: 20px;
}

.staff-list-sec table td {
    letter-spacing: 0px;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    padding: 20px 20px;
}

.crrnt-emp {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}
.staff-list-sec table td p.col-primary{
    color: #00C08B;
    font-size: 17px;
    font-weight: 700;
}
.staff-list-sec table td p {
    letter-spacing: 0.28px;
    color: #000;
    opacity: 1;
    font-size: 15px;
    margin-bottom: 11px;
    font-weight: 500;
    /* font: normal normal normal 14px/15px Poppins; */
    margin: 0px 0px 5px 0px;
}

.staff-list-sec table td h6 {
    /* font: normal normal bold 16px/25px Poppins; */
    letter-spacing: 0.32px;
    color: #000000;
    margin: 0px;
    font-size: 14px;
    margin-bottom: 11px;
    font-weight: 600;
}
.sec-dashboard{
    border-radius: 15px;
    padding: 30px;
}
.dashboard-content p{
    color: #000;
    font-weight: 500;
}
.dash2{
    text-align: center;
}
.dashboard-content h3{
    color: #000;
    font-weight: 600;
}
.company-steps ul li{
    list-style-type: none;
    margin-bottom: 6px;
}
.company-steps ul{
    padding: 20px;
    margin: 0;
    margin-bottom: 20px;
    background: rgb(255 255 255 / 37%);
    border-radius: 10px;
    width: max-content;
}
.company-steps ul li.active a{
    color: #00bc88;
    font-weight: 700;
}
.company-steps ul li a{
    color: #000;
    font-weight: 600;
}
.filter .dropdown .dropdown-toggle {
    color: white;
    background-color: #00c08b;
    padding: 10px 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    float: right;
}

.filter .dropdown-toggle::after {
    display: none;
}

.filter .dropdown-menu .dropdown-item {
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    z-index: 6;
    position: relative;
    color: black;
}
.btn-theme{
    background-color: #00bc88 !important;
    color: #fff !important;
}

.header-title-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.header-title-sec h3 {
    color: #000;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    letter-spacing: 0px;
    color: #000000;
    font-size: 26px;
    margin: 0px;
}

.header-title-sec .ad-btn {
    background: #00c08b 0% 0% no-repeat padding-box;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 14px 30px;
    font-size: 14px;
    width: max-content;
    margin: 0px;
    gap: 5px;
    font-weight: 600;
    letter-spacing: 2px;
}

.up-img {
    display: flex;
    width: auto;
    height: auto;
    background-color: transparent;
    border-radius: 0%;
    align-items: center;
    justify-content: center;
    margin: 20px 0px;
    position: relative;
}

/* .up-img input {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    opacity: 0;
    cursor: pointer;
    font-size: 100px;
    min-height: 100%;
} */

.staff-list-sec {
    position: relative;
    /* padding-bottom: 80px; */
    width: -webkit-fill-available;
}

.add-stf-btn-footer a {
    background: #00c08b 0% 0% no-repeat padding-box;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 10px 30px;
    font-size: 14px;
    width: max-content;
    margin: 120px 0px 60px 0px;
    gap: 5px;
    letter-spacing: 4px;
}

.add-stf-btn-footer {
    float: right;
    position: relative;
}

.funding-box {
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 10px #354d521a;
    border-radius: 24px;
    padding: 20px;
    position: relative;
    margin: 0px 0px 30px 0px;
    min-height: 192px;
}

.funding-sec h3 {
    font: normal normal 600 24px/44px Poppins;
    letter-spacing: 0.48px;
    color: #00c08b;
    margin-bottom: 30px;
}

.funding-box h2 {
    font: normal normal bold 25px/30px Poppins;
    letter-spacing: 0px;
    color: #1f393f;
    text-transform: capitalize;
    margin: 30px 0px 15px 0px;
}

.funding-box-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 15px 0px 0px 0px;
    min-height: 60px;
}

.funding-box input[type="checkbox"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: var(--form-background);
    /* Not removed via appearance */
    margin: 0;
    border: 1px solid #00c08b;
    border-radius: 3px;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;

    transform: translateY(-0.075em);

    display: grid;
    place-content: center;
}

.funding-box input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    background-color: #00c08b;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
}

.funding-box input[type="checkbox"]:checked::before {
    transform: scale(1);
}

/* .funding-box.shadowbx {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 10px #0124311A;
  border: 1px solid #00C08B;
  border-radius: 24px;
} */
.shadowbx {
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 10px #0124311a;
    border: 1px solid #00c08b;
    border-radius: 24px;
}

.nxt-btn a {
    background: #00c08b 0% 0% no-repeat padding-box;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 10px 50px;
    font-size: 14px;
    width: max-content;
    margin: 20px 0px 60px 0px;
    gap: 5px;
    letter-spacing: 4px;
}

.nxt-btn {
    display: flex;
    justify-content: end;
}

.funding-check-p input[type="checkbox"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: var(--form-background);
    /* Not removed via appearance */
    margin: 0;
    border: 1px solid #00c08b;
    border-radius: 3px;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;

    transform: translateY(-0.075em);

    display: grid;
    place-content: center;
}

.funding-check-p input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    background-color: #00c08b;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
}

.funding-check-p input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.funding-check-p p {
    display: flex;
    align-items: baseline;
    gap: 10px;
    letter-spacing: 0.32px;
    color: #354d52;
    line-height: 20px;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 20px;
}

.submt-btn-footer {
    display: flex;
    justify-content: end;
}

.submt-btn-footer a {
    background: #00c08b 0% 0% no-repeat padding-box;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 10px 50px;
    font-size: 14px;
    width: max-content;
    margin: 20px 25px 60px 0px;
    gap: 5px;
    letter-spacing: 4px;
}

.list-flx p {
    display: flex;
    align-items: baseline;
    gap: 10px;
    letter-spacing: 0.32px;
    color: #354d52;
    line-height: 20px;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 25px;
    width: fit-content;
    margin-right: 50px;
}

.list-flx {
    display: inline-flex;
    flex-wrap: wrap;
    width: auto;
}

.funding-sub-btn {
    display: flex;
    justify-content: end;
}

.funding-sub-btn a {
    background: #00c08b 0% 0% no-repeat padding-box;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 10px 50px;
    font-size: 14px;
    width: max-content;
    margin: 160px 25px 60px 0px;
    gap: 5px;
    letter-spacing: 4px;
}

.chk-nxt a {
    background: #00c08b 0% 0% no-repeat padding-box;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 10px 50px;
    font-size: 14px;
    width: max-content;
    margin: 120px 0px 60px 0px;
    gap: 5px;
    letter-spacing: 4px;
}

.dropdwn-td .dropbtn {
    background-color: #ffffff00;
    color: #00c08b;
    padding: 3px 6px;
    font-size: 9px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #00c08b;
}

.dropdwn-td .dropdown {
    position: relative;
    display: inline-block;
}

.dropdwn-td .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdwn-td .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdwn-td .dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdwn-td .dropdown:hover .dropdown-content {
    display: block;
}

.dropdwn-td .dropdown:hover .dropbtn {
    background-color: #00c08b;
    color: white;
}

.staff-list-sec .table-responsive {
    display: block;
    width: 100%;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.dropdwn-td .drpdwn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item .nav-link {
    font-weight: 600;
    letter-spacing: 0px;
    color: #1f393f;
    text-transform: capitalize;
    font-size: 18px;
    margin-right: 20px;
}

.nav-tabs .nav-link.active {
    color: #1f393f;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border-color: #00c08b;
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
    border-width: 2px;
}

.nav-tabs .nav-link:hover {
    color: #00c08b !important;
}

.input-group-append {
    cursor: pointer;
    z-index: 9;
}

.datepicker-days .table-condensed {
    width: -webkit-fill-available;
}

#datepicker span.input-group-text {
    position: absolute;
    background-color: transparent;
    border: 0px;
    right: 0px;
    top: 10px;
    color: #00c08b;
}

.single-login
    .input-group:not(.has-validation)
    > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.ck.ck-editor__editable_inline {
    border: 1px solid transparent;
    overflow: auto;
    padding: 0 var(--ck-spacing-standard);
    min-height: 400px;
}

.edtr-box {
    position: relative;
    margin-top: 10px;
}

.edtr-box p {
    font: normal normal normal 16px/54px Poppins;
    letter-spacing: 0px;
    color: #1f393f;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 10px;
}

/* new-dash */
.hello-dashboard-sec {
    background: url("../images/hello-bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 20px;
    background-position: center;
}

.fund-img img {
    width: 240px;
}

.fund-content p {
    text-align: left;
    font: normal normal normal 14px/24px Poppins;
    letter-spacing: 0px;
    color: #ffffff;
    opacity: 0.93;
}

.creation-sec .ad-btn {
    background: #00c08b 0% 0% no-repeat padding-box;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 10px 18px;
    font-size: 13px;
    width: max-content;
    margin: 0px 0px 15px 0px;
    font-weight: 600;
    letter-spacing: 0px;
    min-width: 140px;
}

.notification-dash {
    background: #f0f5ef80 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: 26px 18px;
    display: block;
    position: relative;
}

.profile-right-dash {
    background: #f0f5ef80 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: 15px 20px;
    display: grid;
    margin-bottom: 30px;
}

#heading {
    text-transform: capitalize;
    font: normal normal 600 28px/22px Poppins;
    letter-spacing: 0px;
    color: #1f393f;
}

#msform {
    /* text-align: center; */
    position: relative;
    margin-top: 20px;
}

#msform fieldset {
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 0;
    position: relative;
}

.form-card {
    text-align: left;
}


#msform fieldset:not(:first-of-type) {
    display: none;
}

#msform input,
#msform textarea,
#msform select {
    background: #fff 0% 0% no-repeat padding-box;
    border-radius: 0.375rem;
    padding: 8px 15px 8px 15px;
    height: 100%;
    margin-bottom: 10px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    color: #000;
    font-size: 15px;
}

#msform input:focus,
#msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #673ab7;
    outline-width: 0;
}
.with-next-step{
    text-align: right;
}
.with-next-step2{
    text-align: right;
    width: 90%;
    margin: 0 auto;
}
#msform .action-button,
#impact_form .action-button {
    width: auto;
    min-width: 130px;
    border: 0 none;
    cursor: pointer;
    padding: 15px 15px;
    margin: 10px 0px 10px 5px;
    background: #00c08b 0% 0% no-repeat padding-box;
    border-radius: 70px !important;
    font: normal normal 600 15px/18px Poppins;
    letter-spacing: 4px;
    color: #ffffff;
}

#msform .action-button:hover,
#impact_form .action-button:hover,
#msform .action-button:focus,
#impact_form .action-button:focus {
    background-color: #0adda3;
    transition: all 0.5s;
}

#msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right;
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #000000;
}

.card {
    z-index: 0;
    border: none;
    position: relative;
}

.fs-title {
    font-size: 25px;
    color: #673ab7;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left;
}

.purple-text {
    color: #673ab7;
    font-weight: normal;
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right;
}

.fieldlabels {
    color: gray;
    text-align: left;
}

#progressbar1 {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
}

#progressbar1 .active {
    color: #673ab7;
}

#progressbar1 li.active:before {
    border: 10px solid #00c08b;
}

#progressbar1 li {
    list-style-type: none;
    font-size: 15px;
    width: 25%;
    float: left;
    position: relative;
    font-weight: 400;
    z-index: 1;
}

#progressbar1 li.active:before {
    font-family: FontAwesome;
    content: "";
    color: #00c08b !important;
    font-size: 25px;
}
#progressbar1 li strong{
    position: absolute;
    top: 15px;
    left: 47%;
    color: #000;
}
#progressbar1 li span{
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: block;
    text-align: center;
}
#progressbar1 li.active span{
    color: #00c08b;
}
#progressbar1 li:last-child::after{
    content: none;
}
#progressbar1 li.active strong{
    color: #fff;
}
#progressbar1{
    padding-left: 80px;
}
#progressbar1 #personal:before {
    font-family: FontAwesome;
    content: "\f00c";
    color: #d6e5d4;
    font-size: 25px;
}

#progressbar1 #payment:before {
    font-family: FontAwesome;
    content: "";
    color: #d6e5d4;
    font-size: 25px;
}

#progressbar1 #confirm:before {
    font-family: FontAwesome;
    content: "";
    color: #d6e5d4;
    font-size: 25px;
}
#progressbar1 #subsidy:before {
    font-family: FontAwesome;
    content: "";
    color: #d6e5d4;
    font-size: 25px;
}

#progressbar1 li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #000;
    background: #EDF2F7;
    border-radius: 50%;
    border: none;
    margin: 0 auto 10px auto;
    padding: 2px;
}
#progressbar1 li strong{
    color: #000;
}
.d-flx {
    display: flex;
    align-items: center;
    gap: 10px;
}

#progressbar1 li:after {
    content: "";
    width: 73%;
    height: 5px;
    background: #EDF2F7;
    position: absolute;
    left: 63%;
    border-radius: 50px;
    top: 23px;
    z-index: -1;
}

#progressbar1 li.active:after {
    background: #00c08b;
}

#progressbar1 li.active:before {
    background: #00c08b;
}

.progress {
    height: 20px;
}

.progress-bar {
    background-color: #673ab7;
}

.fit-image {
    width: 100%;
    object-fit: cover;
}

.vrfy-btnn {
    /* background: #00c08b 0% 0% no-repeat padding-box;
    border: 1px solid #00c08b;
    border-radius: 10px;
    font: normal normal 600 15px/18px Poppins;
    letter-spacing: 2px;
    color: #ffffff;
    padding: 15px 35px;
    margin-top: 16px;
    display: block; */
}

.cin-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vrfid-done {
    margin-bottom: 0;
    /* display: flex; */
    align-items: center;
    gap: 10px;
    font: normal normal 600 16px/15px Poppins;
    letter-spacing: 0px;
    color: #13b577;
    margin-bottom: 8px;
}

.title-frm {
    /* font: normal normal 20px/22px Poppins; */
    letter-spacing: 0px;
    color: #ffffff;
    font-weight: 600;
    margin-top: 10px;
}
.upper-form{
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.23);
    border: 4px solid rgba(255, 255, 255, 0.17);
    padding: 20px;
    margin-bottom: 20px;
}
.upper-form h4 {
    padding-bottom: 10px;
    font-size: 23px;
    font-weight: 600;
    border-bottom: 1px solid #dddddd;
}
#msform .form-select {
    background: #ffffff 0% 0% no-repeat padding-box;
    border: 1px solid #d6e5d4;
    border-radius: 10px !important;
    padding: 12px 15px 13px 15px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    color: #d6e5d4;
    font-size: 15px;
    letter-spacing: 1px;
}

.d-flx .form-check-label {
    margin-bottom: 0;
    /* margin-left: 35px; */
}

.d-flx input[type="radio"] {
    margin-bottom: 0px !important;
    /* left: 19px; */
    accent-color: #15a47c;
}

.p-txt-frm {
    font-family: "Poppins", sans-serif;
    letter-spacing: 0px;
    color: #1f393f;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 15px;
}

.plus-btn {
    background: #00c08b 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: 10px 18px;
    color: white;
    font-size: 30px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 60px;
}

.box-delete {
    /* background: #ffffff 0% 0% no-repeat padding-box; */
    /* border: 1px solid #ff2f2f; */
    /* border-radius: 10px; */
    /* padding: 10px 20px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-delete span {
    font: normal normal bold 15px/20px Poppins;
    letter-spacing: 0px;
    color: #1f393f;
}

.box-delete .fa-circle {
    color: #00c08b;
    font-size: 12px;
    margin-right: 8px;
}

.box-delete .fa-trash-can {
    color: #e35268;
}

#exampleModal11 .modal-body h5 {
    font: normal normal 20px/22px Poppins;
    letter-spacing: 0px;
    color: #00c08b;
    font-weight: 600;
    margin-top: 10px;
}

#exampleModal11 .modal-body {
    display: grid;
    justify-content: center;
    justify-items: center;
}

#exampleModal11 .modal-body p {
    font: normal normal 16px/22px Poppins;
    letter-spacing: 0px;
    color: #1f393f;
    font-weight: 600;
    text-align: center;
}

#exampleModal11 .modal-dialog {
    max-width: 425px;
    margin: 1.75rem auto;
}

.aprv-td {
    color: #00c08b !important;
}

.pnding-td {
    color: #f16220 !important;
}

.form-select {
    background: #ffffff 0% 0% no-repeat padding-box;
    border: 1px solid #d6e5d4;
    border-radius: 10px !important;
    padding: 12px 15px 13px 15px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    color: #d6e5d4;
    font-size: 15px;
    letter-spacing: 1px;
}

.squr-upld {
    display: grid;
    width: 140px;
    height: 140px;
    background-color: #e5e9ea;
    border-radius: 5%;
    align-items: center;
    justify-content: center;
    margin: 20px 0px;
    position: relative;
    text-align: center;
}

.squr-upld p {
    position: absolute;
    font: normal normal 12px/10px Poppins;
    letter-spacing: 0.24px;
    color: #354d52;
    font-weight: 600;
    bottom: 15px;
    left: 12px;
}

.suprtv-doc {
    letter-spacing: 0.32px;
    color: #000000;
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 9px;
}
.form-card .form-group{
    margin-bottom: 20px;
}
.form-card{
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.23);
    border: 4px solid rgba(255, 255, 255, 0.17);
    padding: 20px;
}
.upld-img-prelodr .form-control {
    position: relative;
}

.upld-img-prelodr span {
    position: absolute;
    right: 0px;
    top: 30px;
    background: #e5e9ea 0% 0% no-repeat padding-box;
    border: 1px solid #d6e5d4;
    border-radius: 10px;
    padding: 9px 11px;
}

.upld-img-prelodr span input[type="file"] {
    opacity: 0;
    position: absolute;
    right: 0px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 99;
}

#exampleModal22 .modal-header h5.modal-title {
    text-align: left;
    font: normal normal 600 18px/31px Poppins;
    letter-spacing: 0.32px;
    color: #354d52;
    font-weight: 600;
}

.line-container {
    display: flex;
    width: 100%;
    padding: 20px 0px 85px 0px;
    position: relative;
}

.line-container .progress-line {
    position: relative;
    margin: 0 auto;
    border-radius: 10px;
    width: 97%;
    background: #00c08b;
    height: 5px;
    z-index: -1;
    display: flex;
    justify-content: space-between;
}

.line-container .progress-line .progress {
    position: absolute;
    width: 75%;
    height: 100%;
    background: #00c08b;
    transition: width 1s ease-in-out;
}

.line-container .status {
    position: relative;
    top: -5.5px;
}

.line-container .status .dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: white;
    border: 2px solid #00c08b;
    cursor: pointer;
}

.line-container .status .dot.current {
    background: white;
    border: 5px solid orange;
}

.line-container .status .dot.completed {
    position: relative;
    background: orange;
    border: 5px solid orange;
}

.line-container .status .dot.completed::after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    left: calc(50% - 5.5px);
    height: 5px;
    width: 10px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform-origin: center;
    transform: rotate(-45deg);
    z-index: 2;
}

.suprtng-dcmnt h4 {
    font: normal normal 600 16px/25px Poppins;
    letter-spacing: 0.32px;
    color: #354d52;
    margin: 20px 0px;
}

.suprtng-dcmnt img {
    border-radius: 10px;
    margin-bottom: 10px;
}

.suprtng-dcmnt h6 {
    font: normal normal normal 14px/21px Poppins;
    letter-spacing: 0.28px;
    color: #354d52;
    text-align: center;
    font-weight: 500;
}

.aprvd-txt {
    font: normal normal bold 14px/21px Poppins;
    letter-spacing: 0.2px;
    color: #00c08b;
}

.funding-project {
    display: block;
    width: -webkit-fill-available;
    position: relative;
    background-color: #f9fbf9;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 15px 20px;
}

.funding-project p {
    letter-spacing: 0.28px;
    color: #354d52;
    opacity: 1;
    font: normal normal normal 14px/15px Poppins;
    margin: 0px 0px 5px 0px;
}

.funding-project h6 {
    font: normal normal bold 16px/25px Poppins;
    letter-spacing: 0.32px;
    color: #354d52;
    margin: 0px;
}

.line-container .status h6 {
    font: normal normal 14px/15px Poppins;
    letter-spacing: 0px;
    font-weight: 500;
    color: #13b577;
    margin-top: 5px;
    margin-bottom: 2px;
}

.line-container .status p {
    font: normal normal 13px/18px Poppins;
    letter-spacing: 0.24px;
    color: #354d52;
    font-weight: 600;
    margin-top: 5px;
}

.funding-project-bg {
    display: block;
    width: -webkit-fill-available;
    position: relative;
    background-color: #f0f5ef;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;

    margin-bottom: 20px;
}

.line-container::before {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: #f9fbf9;
    z-index: -1;
}

.grant-box {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.23);
    border: 4px solid rgba(255, 255, 255, 0.17);
    padding: 20px;
    display: grid;
}
.grant-btn i{
    font-size: 22px;
}

.grant-box h2 {
    letter-spacing: 0px;
    color: #000000;
    font-size: 26px;
    font-weight: 700;
}

.grant-box h1 {
    color: #00bc88;
    font-size: 31px;
    font-weight: 700;
}

.grant-box a {
    background: #d7f4e7 0% 0% no-repeat padding-box;
    display: flex;
    align-items: center;
    color: #00c08b;
    justify-content: center;

    width: 40px;
    border-radius: 50%;
    height: 40px;
}

.grant-btn {
    display: grid;
    justify-content: end;
}

.blur-section {
    filter: blur(5px);
    pointer-events: none;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}

.form-card input.form-control,
.form-card select {
    font: 14px/16px "Roboto";
    color: #000;
}

.error {
    color: #ff0000;
}

/*=============================================================
                  Grant Management pages by A.D.
===============================================================*/

/*=============================
    Grant Page
============================*/
.app-sidebar__inner ul > li > ul::before {
    display: none;
}

.grants_sec .nav-pills .nav-link.active {
    background: #00c08b;
    color: #ffffff;
}

.grants_sec .nav-pills .nav-link.active:hover {
    color: #ffffff !important;
}

.grants_sec .nav-pills .nav-link:hover {
    color: #1f393f !important;
}

.grants_sec .nav-pills .nav-link span img {
    filter: invert(76%) sepia(98%) saturate(1%) hue-rotate(1deg)
        brightness(103%) contrast(97%);
}

.grants_sec .nav-pills .nav-link.active span img {
    filter: invert(0%) sepia(100%) saturate(0%) hue-rotate(124deg)
        brightness(106%) contrast(99%);
}

.grants_sec .nav-pills .nav-link {
    border: 1px solid #d7f4e7;
    font-size: 14px;
    background: #d7f4e7;
    color: #1f393f;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 210px;
    min-height: 70px;
    margin-right: 35px;
    border-radius: 15px;
}

.grants_sec li.nav-item {
    position: relative;
}

.grants_sec li.nav-item::before {
    position: absolute;
    content: "";
    font-family: "fontawesome";
    left: unset;
    top: 42%;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: #fff;
    right: 14px;
}

.grants_sec li.nav-item:last-child::before {
    display: none;
}

.grant_form .form-control {
    background: #ffffff 0% 0% no-repeat padding-box;
    border: 1px solid #d6e5d4;
    border-radius: 10px;
    padding: 0.775rem 2.1rem 0.775rem 0.75rem;
    height: 50px;
    font-size: 14px;
    color: #000000;
    margin-bottom: 20px;
}

.grantst_head h4 {
    letter-spacing: 0px;
    color: #201430;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 25px 0 15px;
}

.grantst_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.grant_form {
    background: #f0f5ef80 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0 10px;
}

.grantst_head p {
    margin: 0;
    background: #d7f4e7;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 13px;
}

.grantst_head p span {
    font-weight: 600;
}

.grant_form .squr-upld p {
    position: initial;
    margin: 0;
}

.grant_form .up-img {
    width: auto;
    /*
    height: 60px;
    gap: 10px;
    display: flex;
    align-items: center; */
    border-radius: 15px;
    padding: 23px;
}

/* .grant_form .vrfy-btnn:hover {
    color: #fff;
} */

.form_nxtbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.prev-btn {
    background: transparent 0% 0% no-repeat padding-box;
    border: 1px solid #00c08b;
    border-radius: 10px;
    font: normal normal 600 15px/18px Poppins;
    letter-spacing: 2px;
    color: #00c08b;
    padding: 15px 35px;
    margin-top: 16px;
    display: block;
    cursor: pointer;
}

.prev-btn:hover {
    background: #00c08b;
    color: #fff;
}

.addbtn {
    background: #d7f4e7;
    padding: 10px 30px;
    min-width: 335px;
    color: #1f393f;
    font-size: 15px;
}

.radio_check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio_check label {
    margin: 0;
}

.dirctor_box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.primary_box {
    margin-top: -15px;
}

.grantModal .modal-dialog {
    max-width: 700px;
}

.grantModal .grant_form textarea.form-control {
    min-height: 100px;
}

.grantModal .modal-footer {
    border-top: 0;
}

.grantModal .modal-footer button {
    cursor: pointer;
}

.grantModal .modal-header h5.modal-title {
    color: #00c08b;
}

.grantModal.modal .modal-content button.btn-close {
    border: 0;
}

.grantModal.modal .modal-content button.btn-close:before {
    color: #1f393f;
}

.directordetails {
    padding: 10px 16px;
    /* min-width: 335px; */
    color: #333436;
    font-size: 14px;
    border: 1px solid #e2e2e2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

span.primary_txt {
    color: #00c08b;
}

.sdirector_details {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #c7c7c7;
    margin-bottom: 10px;
    padding: 10px;
}

.director_body {
    padding: 1.5rem;
}

.director_primary p {
    color: #00c08b;
}

.directord_single p {
    font-weight: 300;
    font-size: 13px;
}

.directord_single h6 {
    font-weight: 600;
    font-size: 15px;
}

.directords_img {
    display: grid;
    grid-template-columns: repeat(3, 200px);
    gap: 15px;
}

h3.director_text {
    color: #00bc88;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.grantModal .btn-primary {
    background-color: #00c08b;
    border-color: #00c08b;
    text-transform: uppercase;
}

.grantModal .btn-primary:hover {
    background-color: #005e43;
    border-color: #005e43;
}

h3.proja_head {
    letter-spacing: 0px;
    color: #4b4b4b;
    font-family: "Poppins", sans-serif;
    font-size: 21px;
    font-weight: 600;
    margin: 15px 0;
    text-align: center;
}

.activity_box {
    padding: 15px;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 12px;
    margin: 30px 10px 10px;
}

.activity_box p {
    font-weight: 300;
    font-size: 13px;
}

.activity_box h6 {
    color: #1b1b1b;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

.supplierb_right {
    margin-bottom: 6px;
}

.activity_box ul li {
    padding: 8px 22px;
    position: relative;
    list-style: none;
}

.activity_box ul li:first-child {
    padding: 8px 12px;
}

.activity_box ul li::before {
    left: 0;
    content: "";
    position: absolute;
    background: #00c08b;
    top: 18px;
    width: 20px;
    height: 2px;
}

.activity_box ul li::after {
    content: "";
    position: absolute;
    background: #00c08b;
    width: 2px;
    height: 40px;
    left: 0;
    top: 20px;
}

.activity_box ul li:last-child::after {
    display: none;
}

.activity_box ul li:first-child::before {
    width: 10px;
}

.activity_box ul li.text_bold {
    color: #1b1b1b;
    font-weight: 600;
    font-size: 16px;
}

.supplier_box {
    padding: 15px;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 12px;
    margin: 30px 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.supplierb_left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.supplierb_right .dropdown-toggle {
    border: none;
    background: #37cfa5;
    color: #fff;
}

.supplierb_right .dropdown-toggle:hover {
    color: #fff;
}

.prach_left h6 {
    background: #37cfa5;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    word-break: break-all;
}

button.btn.addbtn {
    background: #d7f4e7;
    padding: 10px 30px;
    min-width: 335px;
    color: #1f393f;
    font-size: 15px;
    border: none;
}

.supplierb_right .dropdown-toggle::after {
    display: none;
}

.supplierb_right .dropdown-menu {
    min-width: 4rem;
}

.supplierb_right .dropdown-menu .dropdown-item {
    gap: 15px;
}

.supbl_con h4 {
    color: #1b1b1b;
    font-weight: 600;
    font-size: 16px;
}

.supbl_img {
    width: 30px;
    height: 30px;
    background: #00c08b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.supbl_img h5 {
    font-size: 13px;
    margin: 0;
    font-weight: 600;
}

.director_primary.dprimary_img img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.suppcb_con {
    background: #fff5f5;
    margin-bottom: 10px;
    padding: 10px;
}

.suppcb_con h6 {
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid #c7c7c7;
    margin-bottom: 10px;
    padding: 10px;
}

h5.sipplier_con {
    color: #00c08b;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
}

.prac_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.activity_list {
    display: flex;
    align-items: center;
    gap: 15px;
}

.activity_box .dropdown ul li {
    padding: 0;
    position: relative;
}

.activity_box .dropdown ul li::before {
    display: none;
}

.activity_box .dropdown ul li::after {
    display: none;
}

.check_box {
    display: flex;
    gap: 10px;
}

/*=============================
    Financial Grants Page
============================*/
.financial_head {
    width: 50%;
    margin: 3% auto;
    border: 1px solid #dbdbdb;
    padding: 18px;
    border-radius: 5px;
    box-shadow: rgb(0 0 0 / 15%) 0px 8px 24px;
}

.grant_box .accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #00c08b;
    padding: 10px;
}

.grant_box .accordion-button h6 {
    color: #00c08b;
    font-weight: 600;
}

.grant_box .accordion-button span i {
    color: #00c08b;
}

.grant_box .accordion-body {
    background: #f3f3f3;
}

.grant_box .accordion-item {
    margin-bottom: 25px;
}

.grant_box .accordion-body {
    background: #f4f4f442;
    padding: 10px;
    border: 1px solid #cecece;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.edit_icon {
    text-align: right;
}

.edit_icon p {
    color: #00c08b;
    font-size: 16px;
    font-weight: 600;
}

.edit_icon p span {
    padding-left: 10px;
}

.financial_viewbox .directord_single h6 {
    color: #000;
}

/*=======================================
        Design fixing Council part
=========================================*/
.info .drop_lists .dropdown-menu.show li span.dropdown-item {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.info .drop_lists .dropdown-menu.show li span.dropdown-item::before {
    position: absolute;
    content: "\f111";
    font-family: "fontawesome";
    left: 8px;
    font-size: 8px;
    color: #00c08b;
    top: 10px;
}

.up-img span i {
    color: #00c08b;
    font-size: 28px;
}

.description_text .tox.tox-tinymce {
    height: 300px !important;
}

.opportunityd_box {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.oppordb_left {
    width: 35%;
}

.oppordb_right {
    width: 60%;
}

.opportunityd_box {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
}

.inform_box {
    background: transparent;
    -webkit-backdrop-filter: blur(36px);
    backdrop-filter: blur(36px);
    --webkit-backdrop-filter: blur(36px);
    background-color: rgba(0, 0, 0, 0.185);
}

.opportunityd_box:last-child {
    border: 0;
}

.oppordb_right h6 {
    font-weight: 500;
    font-size: 15px;
}

.input-group.profileimg_up {
    display: flex;
    align-items: center;
}

.imgup_box {
    border: 1px solid #d7f4e7;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    width: 150px !important;
    height: 165px;
    overflow: hidden;
    padding: 0 !important;
}
body {
    font-family: "Quicksand", serif;
    background: url("../images/bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
.imgup_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.opportunityd_box.opportunity_pts {
    position: relative;
}



.opportunityd_box.opportunity_pts h6 {
    margin: 0;
}

.opportunityd_box.opportunity_pts h6 {
    padding: 0 0 0 10px;
    margin: 0;
}

.container-fluid .header-title-sec a.btn-sm {
    font-size: 16px;
    line-height: 25px;
    color: #333;
}

.section-title {
    font-size: 22px;
    font-weight: 400;
}

.custom-file.editstaff_box {
    margin: 9% 0 0;
}

.mt_staffs {
    margin-top: 8%;
}

.vertical-nav-menu li.app_submenu > a {
    position: relative;
}

.vertical-nav-menu li.app_submenu > a::after {
    position: absolute;
    content: "\f078";
    font-family: "fontawesome";
    right: 0;
}

.vertical-nav-menu li.mm-active.app_submenu > a::after {
    transform: rotate(180deg);
}

.app_submenu > ul > li > a {
    font-size: 13px;
}

.app-sidebar__inner .app_submenu > ul {
    padding-top: 0;
}

.app_submenu > ul > li > a > span > img {
    object-fit: cover;
    width: 24px;
    height: 24px;
    margin-left: 16px;
}

.addbtn {
    background: #d7f4e7;
    padding: 10px 30px;
    min-width: 335px;
    color: #1f393f;
    font-size: 15px;
    border: none;
}

.pitch_btn {
    margin-top: 28px;
}

.grants_list .table-dark tr th {
    background: #00c08b;
}

.grantsli_action {
    display: flex;
    gap: 8px;
}

.grantModal .modal-content {
    overflow-y: auto;
    max-height: 600px;
}

.download_grantbtn {
    background-color: #f7faf7;
    margin: 20px 0px;
    padding: 15px;
    position: relative;
    width: auto;
    /* height: 60px; */
    border-radius: 15px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
}
.download_grant_btn {
    background-color: #f7faf7;
    margin: 20px 0px;
    padding: 10px;
    position: relative;
    width: auto;
    border-radius: 15px;
    display: block;
    align-items: center;
    justify-content: center;
}
.fs-14 {
    font-size: 14px !important;
}
.fs-15 {
    font-size: 15px !important;
}

.fs-16 {
    font-size: 16px !important;
}
.fs-18 {
    font-size: 18px !important;
}
.fs-20 {
    font-size: 20px !important;
}
.fs-22 {
    font-size: 22px !important;
}


.fw-600 {
    font-weight: 600 !important;
}
.download_grantbtn a, .download_grant_btn a {
    color: #000;
    font-weight: 600;
        background: #00c08b5c;
    margin-right: 14px;
    padding: 7px;
    display: inline-block;
    margin-bottom: 6px;
    border-radius: 5px;
}

.download_grantbtn a i {
    color: #00c08b;
    font-size: 20px;
}
.download_grant_btn a i {
    color: #00c08b;
    font-size: 20px;
    padding-left: 4px;
}

.img_updown {
    display: flex;
    gap: 10px;
}

.grant_form .img_updown .up-img,
.grant_form .download_grantbtn ,
.grant_form .download_grant_btn{
    width: 100%;
}

.custom_radio {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.custom_radio .primary_box {
    margin: 0;
}

.custom_checkbox {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.label_margin label {
    margin: 0;
}

.financials_details {
    padding: 30px;
    box-shadow: rgb(0 0 0 / 15%) 0px 8px 24px;
    margin: 15px 0 20px;
    background: #ffffff33;
}
.table-set-des {
    background: #ffffff47;
    padding: 30px;
    box-shadow: rgb(0 0 0 / 15%) 0px 8px 24px;
}
.financials_details h3 {
    letter-spacing: 0px;
    color: #201430;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 25px 0 15px;
}

/*=======================================
        Claim Form Design
=========================================*/
.claim_form {
    margin: 0 0 10px;
}

.grantst_head.claim_head h4 {
    margin: 20px 0 10px;
}

.grant_form.claim_form .row.align-item_center {
    align-items: center;
}

.claindocs_add a i {
    font-size: 13px;
}

.claindocs_add {
    display: flex;
    align-items: center;
    gap: 10px;
}

.add_another {
    width: 25px;
    height: 25px;
    background: #d7f4e7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 8px;
}

.grant_form.claim_form textarea.form-control {
    height: auto;
}

.ui-widget-header,
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #00976d;
    background: #17cf9c;
    color: #fff;
}

.grants_list table {
    border: 0px !important;
}

.grants_list {
    padding: 24px 16px;
    background: #f0f5ef;
    border-radius: 15px;
    box-shadow: 0px 0px 2px 3px #fafafa;
}

.grants_list table td,
.grants_list table tr th {
    border: 0px !important;
    background-color: transparent;
    /* font-size: 13px; */
}

.grants_list table thead tr th {
    letter-spacing: 0.28px;
    color: #354d52;
    opacity: 1;
    font: normal normal normal 14px/15px Poppins;
    margin: 0px 0px 5px 0px;
    padding: 0px 10px !important;
    background-color: transparent !important;
}

.grants_list table td {
    padding: 20px 10px !important;
    font-weight: bold;
    color: #354d52 !important;
}

.grants_list table tbody th {
    color: #354d52 !important;
}

.grants_list table tbody th a {
    background: #00c08b;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
}

.grants_list table tr {
    background-color: #f0f5ef !important;
    border: 0px;
    color: #000;
}

.table-striped > tbody > tr {
    --bs-table-accent-bg: #f0f5ef5e  !important;
}

a.operations {
    background: #00c08b;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
}

.custom-file-button input[type="file"]::-webkit-file-upload-button {
    display: none;
}

.custom-file-button input[type="file"]::file-selector-button {
    display: none;
}

.custom-file-button:hover label {
    background-color: #dde0e3;
    cursor: pointer;
}

.help-icon {
    display: inline-block;
    width: 20px;
}

.remfor_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.body_disable_scroll {
    height: 100vh;
    overflow-y: hidden;
}

button.btn.btn-primary.btn-effect.btn-effect-arrow.mt-4 {
    margin-top: 15px !important;
}

.datepicker {
    background-color: #fff !important;
}

#msform.company-form .form-card input.form-control,
#msform.company-form .form-card select {
    height: 45px;
    line-height: 32px;
}

.mm-active .side-menu__sub-icon i {
    transform: rotate(180deg);
}

.stpes_initilized {
    width: 35px;
    height: 35px;
    background-color: #d7f4e7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1f393f;
    position: relative;
}

.stpes_initilized:hover {
    text-decoration: none;
}

.stpes_initilized.active {
    background: #00c08b;
    color: #fff;
    font-weight: 700;
}

.stpes_initilized.active::before {
    color: #00c08b;
}

.stpes_initilized::before {
    position: absolute;
    content: "";
    font-family: "fontawesome";
    left: 40px;
    top: 42%;
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background: #fff;
}

.stpes_initilized:last-child::before {
    display: none;
}

.steps_box {
    display: flex;
    align-items: center;
    gap: 25px;
}

.steps_countlist {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dates_box input {
    /* height: 40px; */
    margin-right: 10px;
    width: 100%;
}

.applyi_box {
    display: flex;
    gap: 5px;
    align-items: center;
}

.grants_list th .applyi_box a {
    font-size: 10px;
    padding: 3px 6px;
}

td.view_granticon a {
    padding: 0 0 0 20px;
    color: #00c08b;
    font-weight: 500;
    font-size: 14px;
    position: relative;
}

.checkbox_confirm {
    padding: 5px;
    gap: 5px;
}

.checkbox_confirm input {
    margin-top: 4px;
}
.imgup_box.category_img_box {
    line-height: 165px;
    border-radius: 0;
}
.imgup_box.category_img_box img {
    max-width: 100%;
    height: auto;
    width: auto;
}

.logo_left .logo-open {
    margin-left: 34px;
}

.qus_sec .next_btn.newnt_btn {
    right: 42px;
    left: auto;
}

.singleq_option.singnew_option {
    position: relative;
    background: rgba(255, 255, 255, 0.38);
    border-radius: 12px;
    margin: 25px 0 0;
    padding: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.singleq_option.singnew_option input {
    margin-top: 3px;
}


.opportunity-sec {
    position: relative;
    padding-bottom: 80px;
    width: -webkit-fill-available;
}
.opportunity-sec .table-responsive {
    display: block;
    width: 100%;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
#msform input.copy_check {
    width: auto;
    margin: 8px 8px 8px 0;
    top: 2px;
    position: relative;
}
#msform input.error,
#msform select.error {
    margin-bottom: 10px;
    border: 1px solid #ff0000;
}

/* =============================
    company overview page
================================*/
.companyp_sec {
    background: transparent;
    -webkit-backdrop-filter: blur(36px);
    backdrop-filter: blur(36px);
    --webkit-backdrop-filter: blur(36px);
    background-color: rgba(0, 0, 0, 0.185);
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 20px;
}

.comps_head {
    display: block;
    margin-bottom: 24px;
    background: #089f7552;
    padding: 15px;
    border-radius: 10px;
}

.compsh_left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.compmain_subtab{
    display: flex;
    gap: 20px;
}
.compmain_subtab .tab-content{
    flex: 2;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.23);
    border: 4px solid rgba(255, 255, 255, 0.17);
    padding: 20px;
}
.compmain_subtab ul{
    display: block;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.23);
    border: 4px solid rgba(255, 255, 255, 0.17);
    flex: .4;
    height: max-content;
}
.compmain_subtab ul li{
    display: block;
}
.comsing_icon {
    width: 40px;
    height: 40px;
    background: #e9f6ef;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
}

.compsh_right {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: center;
}

.compsh_left .logo-company {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #eeeeee;
}

.comsing_icon img {
    width: 16px;
}

.compshr_single p {
    color: #1f393f;
    font-size: 12px;
    padding-top: 5px;
}



p.weblink-txt span {
    padding-left: 5px;
    font-size: 11px;
}

.companymain_list {
    background: #eeeeee;
    padding: 5px;
    border-radius: 10px;
    width: 68%;
}

.companymain_list .nav-item .nav-link {
    min-width: 150px;
    justify-content: center;
}

.companymain_list .nav-link {
    color: #a3b5b9;
    font-size: 13px;
    font-weight: 500;
}

.companymain_list.nav-pills .nav-link:hover {
    color: #495057 !important;
}

.companymain_list.nav-pills .nav-link.active {
    background: #ffffff;
    color: #333;
}

.compmain_subtab .nav-pills .nav-link.active {
    background: #00c08ba1;
    color: #fff;
    border-radius: 0;

}
.compmain_subtab .nav-pills .nav-link:hover {
    background: #00c08b52;
    color: #fff;
    border-radius: 0;

}
.compmain_subtab .nav-link img{
    width: 25px;
    margin-right: 10px;
}
.compmain_subtab .nav-pills .nav-link.first{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}


.compmain_subtab .nav-link {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: block;
    width: 100%;
    text-align: left;
    padding: 15px 10px;
}

.compmain_subtab ul {
    justify-content: space-around;
}

.companym_head h5 {
    color: #1f393f;
    font-size: 16px;
    font-weight: 500;
}
.companym_head p {
    color: #9d9d9d;
    font-size: 13px;
    padding: 3px 0 0;
    font-weight: 400;
}
.parent-comb{
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.23);
    border: 4px solid rgba(255, 255, 255, 0.17);
    padding: 20px;
    margin-bottom: 20px;
}
.contb_single {
    display: flex;
    align-items: center;
    gap: 12px;
}
.data-comb p{
    color: #fff;
}
.data-comb h4{
    color: #fff;
}
.btn1 p{
    color: #fff;
}
.link-page{
    color: #fff !important;
}
.contbs_text h6{
    font-weight: 600;
}
.compsl_txt{
    flex: 1;
}
.top-social{
    display: flex;
    gap: 7px;
    align-items: center;
}
.top-social img{
    width: 50px;
    width: 20px;
    height: max-content;
}
.top-social .contbs_text h6{
    font-weight: 500;
    font-size: 17px;
    color: #fff;
    margin-bottom: 1px;
}
.compsl_txt h5{
    color: #fff;
    font-size: 25px;
    margin-bottom: 5px;
    font-weight: 600;
}
.compsl_txt p{
    color: #fff;
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 600;
}
.top-social .contbs_text p{
    margin: 0;
}
.contact_box-top .info-social{
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.14);
    border: 4px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0px 3px 26px #2cb596;
    padding: 10px 13px;

}
.tab-box-company{
    margin-bottom: 20px;
}
.tab-box-company table thead{
    background: #00c08b38;
}
.tab-box-company table thead tr th{
    border: none;
}
.tab-box-company table tbody tr td{
    padding: 12px;
    border-bottom: 1px solid #c9c9c9;
}
.tab-box-company table tbody .compay_con h6{
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}
.tab-box-company table tbody .compay_con p{
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}
.tab-box-company table tbody .table-con{
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}
.tab-box-company h3{
    padding-bottom: 10px;
    font-size: 23px;
    font-weight: 600;
    border-bottom: 1px solid #dddddd;
}
.tab-box-info{
    background: #00c08b38;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.17);
}
.tab-box-info h4{
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.tab-box-info p{
    font-size: 15px;
    font-weight: 500;
    color: #000;
    margin-bottom: 0;
}
.contbs_text p {
    color: #fff;
    font-weight: 400;
    font-size: 15px;
}

.address_box {
    display: flex;
    gap: 25px;
    justify-content: space-between;
}

.social_links {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.social_linkright {
    display: grid;
    grid-template-columns: repeat(3, 140px);
    gap: 18px;
}

.socialr_single {
    display: flex;
    align-items: center;
    gap: 6px;
}

.addresb_single p {
    color: #000;
    font-size: 13px;
    margin-bottom: 0 !important;
}

.addresb_single h5 {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 9px;
    font-weight: 600;
}

p.address_txt {
    width: 85%;
}

.addresb_single {
    min-width: 160px;
}

.socialr_single p {
    color: #818181;
    text-decoration: underline;
}

.social_linkleft h5 {
    color: #1f393f;
    font-size: 16px;
    font-weight: 500;
}

.appc_single {
    border: 2px solid #eeeeee;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 22px;
    min-height: 125px;
}

.appcs_head h4 {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.profile-bg{
    background: transparent;
    -webkit-backdrop-filter: blur(36px);
    backdrop-filter: blur(36px);
    --webkit-backdrop-filter: blur(36px);
    background-color: rgba(0, 0, 0, 0.185);
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 20px;
}
.appcs_head h4::before {
    content: "";
    position: absolute;
    background: #eeeeee;
    width: 100%;
    height: 2px;
    bottom: 0;
}

.appcs_head h4 span {
    padding-right: 10px;
}

.appcs_body {
    display: flex;
    align-items: center;
    gap: 12px;
}

.appcsb_single {
    position: relative;
    padding-right: 15px;
    min-width: 40px;
}

.compshr_single {
    text-align: center;
}

.appcsb_single::after {
    content: "";
    height: 100%;
    width: 2px;
    background: #eeeeee;
    position: absolute;
    right: 0;
    top: 0;
}

.appcsb_single:last-child::after {
    display: none;
}
.application_sec {
    margin: 12px;
}

.compoffice_links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.companyoff_box .accordion-item {
    background-color: rgb(255 255 255 / 53%);
    -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border: 1px solid #ffffff;
    border: 0;
    margin-bottom: 30px;
}

.companyoff_box .accordion-body > p {
    color: #818181;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    padding: 0 0 22px;
}

.companyoff_box .accordion-button {
    background-color: transparent;
    /* border: 1px solid #eee; */
}

.companyoff_box .accordion-button:not(.collapsed) {
    background-color: #00C08B;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 6%);
}
.companyoff_box .accordion-button:not(.collapsed) .accor_txt h5{
    color: #fff;
    transition: all 0.5s;
}
.companyoff_box .accordion-button:not(.collapsed) .accor_txt p{
    color: #fff;
    transition: all 0.5s;
}
.accor_txt h5 {
    color: #000;
    transition: all 0.5s;
    font-size: 19px;
    font-weight: 600;
}
.f-20{
    font-size: 20px;
}
.color-primary-theme{
    color: #007c5a;
}
.accor_txt p {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
    transition: all 0.5s;
}
.accor_txt span {
    color: #555;
    font-size: 13px;
    font-weight: 300;
}

.contbs_text .socialr_single img {
    width: 14px;
}

.contb_single > img {
    margin-top: 4px;
}
.contb_single i {
    font-size: 24px;
    line-height: 26px;
    color: #00c08b;
}
.appcs_head h5{
    font-size: 18px;
    margin-bottom: 15px;
}
/* .primarycon_box {
    background: #e9f6ef;
    padding: 15px;
    margin: 15px 6px;
    border-radius: 8px;
} */
 .appcsb_single .btn-success{
    padding: 0.25rem 0.5rem;
    border: none;
 }
.download-link{
    color: #007253 !important;
    font-weight: 600;
}
.view-link{
    color: #007253 !important;
    font-weight: 600;
}

.compfile_name h6 {
    color: #1f393f;
    text-decoration: underline;
}

.additi_sec .companym_head {
    margin: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.additi_sec .table th,
.additi_sec .table td {
    vertical-align: middle;
}

.addition_contact {
    display: flex;
    align-items: center;
    gap: 14px;
}

.additi_sec .table-con span {
    padding-right: 10px;
}

.addtin_box .compay_con h6 {
    color: #1f393f;
}

.additi_sec .action_box a {
    color: #9d9d9d;
}

.text_underline {
    text-decoration: underline;
}

.company_grybox {
    background: #f4f4f4;
    padding: 22px 15px;
    border-radius: 10px;
    margin: 0px 0 25px;
}

.company_grybox .contb_single {
    min-width: 150px;
}
.compaddtional_box .contb_single {
    min-width: 250px;
    padding: 0 15px;
}

.primarycon_box .contb_single {
    min-width: 120px;
}

.address_right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.addiaddress_sec {
    padding: 10px 10px 22px;
    margin-top: 26px;
    border-bottom: 2px solid #eeeeee;
}

.addiaddress_sec:first-child {
    margin-top: 0;
}

.addiaddress_sec .address_box {
    padding-bottom: 24px;
}

.addiaddress_sec .compoffice_links {
    gap: 45px;
}

.appcsb_single h6 {
    font-weight: 600;
    font-size: 14px;
    line-height: 25px;
}

.appcsb_single p {
    font-size: 12px;
}

.notes_box {
    background: #fafafa;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 15px 28px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.noteb_content p {
    display: -webkit-box;
    max-width: 450px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.activnotes_pagination {
    width: 15%;
    margin-left: auto;
}

.activnotes_pagination .pagination li a {
    padding: 0;
    color: #818181;
    border: 0;
    font-weight: 500;
}

.activnotes_pagination .pagination {
    border: 0;
    gap: 8px;
    justify-content: flex-end;
}

.activnotes_pagination .pagination li.page-item {
    width: 25px;
    text-align: right;
    position: relative;
    padding-right: 8px;
}

.activnotes_pagination .pagination li.page-item::after {
    position: absolute;
    content: "";
    background: #818181;
    height: 100%;
    width: 2px;
    top: 0;
    right: 0px;
}

.activnotes_pagination .pagination li.page-item:last-child::after {
    display: none;
}

.activnotes_pagination .pagination li a.active {
    color: #00c08b;
}

.description_box p {
    display: -webkit-box;
    max-width: 250px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12px;
}

.existing_tasksec .action_box p {
    min-width: 80px;
}

.adminform_body.additi_sec .noteb_content p {
    max-width: 310px;
}

.actiemail_sec {
    display: flex;
    width: 100%;
    gap: 15px;
}

.actiemails_left {
    position: relative;
    width: 20%;
}

.actiemails_left::after {
    position: absolute;
    content: "";
    background: #eeeeee;
    width: 2px;
    height: 100%;
    right: 0;
    top: 0;
}

.emailtab_bodylist .comdehead_right {
    width: 100%;
}

.actiemails_right {
    width: 80%;
}

.actiemail_sec .actiemails_left .nav-link {
    min-width: 150px;
    display: flex;
    gap: 8px;
    margin: 6px 0 15px;
    border-bottom: 0;
    font-weight: 500;
    border-radius: 0;
    position: relative;
}

.actiemail_sec .actiemails_left .nav-link::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #eee;
    bottom: -9px;
    left: 0;
}

.actiemail_sec .actiemails_left .nav-link:last-child::after {
    display: none;
}

.actiemail_sec .actiemails_left .nav-pills .nav-link.active {
    background: #fafafa;
    border-radius: 8px;
    border-bottom: 0;
}

.emailtab_bodylist .adfilter-single .form-control {
    font-size: 12px;
    padding: 0.375rem 0.5rem;
}

.actiemail_sec .actiemails_left .nav-pills .nav-link.active img {
    filter: invert(100%) sepia(3%) saturate(0%) hue-rotate(251deg)
        brightness(105%) contrast(104%);
}

.actiemail_sec .actiemails_left .nav-pills .nav-link:hover img {
    filter: invert(100%) sepia(3%) saturate(0%) hue-rotate(251deg)
        brightness(105%) contrast(104%);
}

.notes_description p.address_txt {
    width: 100%;
}

.notesdes_box textarea {
    background: transparent;
    border: 0;
    text-align: left;
}

.notes_description .notes_singlebox .addresb_single.notes_input input {
    color: #1f393f;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    min-width: 400px;
    background: transparent;
    border: 0;
}

.notesdes_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.notesdes_box {
    background: #fafafa;
    border-radius: 8px;
    padding: 12px;
}

.notesdes_box p {
    font-size: 12px;
}

.notedes_btn {
    text-align: right;
    padding: 24px 0 0;
}

.notesdes_head a {
    color: #818181;
    font-size: 13px;
}

.notdesh_left span {
    color: #00c08b;
}

.notes_singlebox .addresb_single {
    min-width: auto;
}

.glance_yellow {
    background: rgba(255, 221, 158, 0.161);
    border-left: 5px solid #f7d08a;
}

.glanceb_body .addresb_single h5 {
    font-size: 14px;
    font-weight: 600;
}

.glanceb_body {
    margin-left: 12px;
}

.glanceb_body .notes_box {
    padding: 10px 15px;
    border-radius: 0;
}

.glance_green {
    background: rgb(230, 250, 244);
    border-left: 5px solid #01c08b;
}
.glance_blue {
    background: #eaf2fa;
    border-left: 5px solid #2d7acc;
}

.join_btn {
    background: #2d7acc;
    font-size: 13px;
    color: #fff !important;
    border-radius: 4px;
    padding: 5px 10px;
}

.glance_box {
    margin-top: 65px;
}

p.meet_subtitle {
    color: #1f393f;
    font-weight: 500;
    margin: 8px 0 20px;
}

.modal_btn {
    margin: 26px 0 10px;
    text-align: right;
    display: flex;
    justify-content: center;
}

.modal_btn > .btn {
    margin-right: 10px;
}

.modal_btn .btn-cancle,
.modal_btn .btn-book {
    font-size: 12px;
    min-width: 190px;
}

.comp_docs.additi_sec {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fafafa;
    margin: 20px 0;
    width: 250px;
    border-radius: 8px;
    padding: 8px;
}

.compd_name {
    display: flex;
    gap: 10px;
}

.emailtab_lsingle {
    display: none;
}

table.table.table-hover.email_list tbody tr {
    cursor: pointer;
}

.emailsing_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 16px;
}

.emailsh_left a {
    color: #818181;
}

.emailsh_left a span {
    color: #00c08b;
}

.emailsub_box {
    display: flex;
    gap: 17px;
    margin: 40px 16px;
    align-items: flex-end;
}

.emailImage {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #a3b5b9;
    font-size: 20px;
    color: #fff;
    text-align: center;
    line-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emailsub_body {
    display: flex;
    margin: 17px;
    gap: 16px;
}

.inbox_box {
    background: #f3f2f2;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
}

.emailsub_box h5 {
    font-size: 15px;
    color: #1f393f;
}

.modal_btn.emailsb_btn {
    justify-content: flex-start;
    gap: 10px;
}

.modal_btn.emailsb_btn .btn span {
    padding: 0 10px;
}
.modal_btn.emailsb_btn .btn:hover span img {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(213deg)
        brightness(280%) contrast(102%);
}

.emailsb_tobox p {
    color: #9d9d9d;
    font-size: 12px;
    line-height: 20px;
}

.emailcon_body p {
    font-size: 13px;
    color: #818181;
    line-height: 20px;
    margin-bottom: 1rem;
}
.emailsb_tobox {
    margin: 10px 0 35px;
}

p.regard_txt {
    margin-bottom: 0;
}

p.emb_name {
    font-weight: 500;
    color: #5f5f5f;
}

.emailsb_con {
    padding: 4px 0 0;
}
.eventpro_bar {
    position: relative;
    width: 90%;
    margin-top: 10px;
    height: 10px;
    background: linear-gradient(
        90deg,
        rgb(240 69 32 / 24%) 0%,
        rgb(144 164 254 / 31%) 50%,
        rgb(0 192 139 / 29%) 100%
    );
}
.eventhb_txtbox {
    font-size: 11px;
}

.low_box,
.medium_box,
.high_box {
    width: 33.3%;
}

.medium_box {
    text-align: center;
}

.high_box {
    text-align: right;
}

.eventhb_txt {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -25px;
}

.eventprobar_dynamic {
    height: 10px;
    position: absolute;
}
.companyn_box {
    display: flex;
    gap: 6px;
}
.companyb_img {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mb-20 {
    margin-bottom: 20px;
}

.question_list span {
    background-color: transparent !important;
}

.sq-radio {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: 20px;
    color: #000;
}
.table>:not(:last-child)>:last-child>*{
    color: #000;
}
/* Hide the browser's default radio button */
.sq-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.subsidy-container .btn {
    text-align: center;
    display: flex;
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    width: auto;
    border-radius: 50px;
    overflow: hidden;
    padding: 5px 30px;
}
.subsidy-container p {
    margin-top: 0;
    margin-bottom: 1rem;
}
.subsidy-container h4 {
    margin-bottom: 1rem;
}
/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #00c08b;
}

/* On mouse-over, add a grey background color */
.sq-radio:hover input ~ .checkmark {
    background-color: #00c08b;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.sq-radio input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.sq-radio .checkmark:after {
    top: 0px;
    left: 0px;
    width: 18px;
    height: 20px;
    border-radius: 2px;
    background-color: #00c08b;
}
.chk-sec {
    display: flex;
    align-items: center;
    gap: 30px;
}

.subsidy-table td input {
    border: 0;
    width: 100%;
}
.subsidy-container {
    margin: 30px 0;
}
.subsidy-container h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    color: #1f393f;
    font-size: 28px;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: center;
}
.subsidy_form {
    padding-top: 20px;
}
#has_subsidy-error {
    position: absolute;
    top: 21px;
    left: -24px;
    width: 200px;
}

.custom-hdr.form-logo {
    justify-content: center;
}
.warning-msg {
    background-color: #fff5d9;
    padding: 15px;
    border: 1px solid #ccc;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}
.warning-msg i {
    margin-right: 5px;
}
.rmSubsidyRow {
    font-size: 24px;
    color: #ff0000;
}
#subsidyTable tr td {
    text-align: center;
    vertical-align: middle;
}
#subsidyTable input,
#subsidyTable textarea,
#subsidyTable select {
    margin: 10px 0;
}
.n-content .bold-text p {
    font-weight: 600;
}
/* event details page design by ankita (14.03.2024) */
.event_detailsbox {
    /* background: #fff5d9;
    padding: 20px 24px; */
    /* border-radius: 0 15px 15px 0; */
}

.event_detailsbox .opportunityd_box {
    justify-content: flex-start;
}


.event_detailsbox .inform_box {
    /* background: #fffdfa; */
    position: relative;
    border-radius: 10px;
    padding: 30px 20px;
}


.event_detailsbox .opportunityd_box .oppordb_left {
    width: auto;
}


.event_detailsbox .opportunityd_box .oppordb_left h6 {
    position: relative;
    padding-right: 10px;
}
.event_detailsbox .opportunityd_box .oppordb_left h6::before {
  position: absolute;
  content: ":";
  right: 0;
  height: 100%;
}


.event_detailsbox .opportunityd_box.evedescript_box .oppordb_right {
  width: 100%;
}

.event_detailsbox .opportunityd_box.evedescript_box .oppordb_right p{
  margin: 0;
  font-size: 14px;
  color: #000;
}

.event_detailsbox .opportunityd_box.evedescript_box {
  border-radius: 4px;
  margin: 10px 0 15px;
  background: transparent;
  -webkit-backdrop-filter: blur(36px);
  backdrop-filter: blur(36px);
  --webkit-backdrop-filter: blur(36px);
  background-color: rgb(255 255 255 / 51%);
}


.event_detailsbox .oppordb_left h6{
  color: #000;
  font-weight: 700;
}

.event_detailsbox .btn-success {
  color: #fff;
  background-color: #37cfa5;
  border-color: #37cfa5;
}
.event-sec .event_detailsbox {
    border-radius: 0;
}

.menu-disable {
  /*background: #93d2b6;
  filter: blur(1px);*/
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
}

.vertical-nav-menu li.menu-disable::before{
  background: #93d2b6;
  content: '';
  width: 100%;
  height: -webkit-fill-available;
  position: absolute;
  z-index: -1;
  left: 0px;
  top: 0px;
  filter: blur(1px);
}

.app-sidebar__inner ul>li.menu-disable a {
  color: #ffffff;
  filter: blur(1px);
}

.app-sidebar__inner ul>li.menu-disable a:hover{
  color: #fff;
}

/* ------------------------------------ */


.financial_question_form .submit_btn,
.financial_question_form .cancel_btn
{
    display: none;
}
.dobDatepicker.form-control[readonly]{
    background-color: #fff;
}
#directorsTable_wrapper .dataTables_paginate .pagination .paginate_button{
    padding: .5em 0 !important;
}
#directorsTable_wrapper .dataTables_length select {
    margin-bottom: 3px;
    height: 40px;
}
#directorsTable_wrapper table.dataTable thead>tr>th {
    padding-right: 20px;
}

.chat-unread-count {
    position: absolute;
    top: -9px;
    right: -10px;
    color: #fff;
    background: #e35268;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}
.message_file{
    float: right;
    border: 1px solid #ced4da;
    border-radius: 10px;
}
.message_file img{
    max-width: 150px;
    height: auto;
}
.chat_file img{
    max-width: 150px;
    height: auto;
}
.msg_img_close{
    position: absolute;
    top: -15px;
    right: 5px;
    font-size: 20px;
    color: #000;
}
.toast-header .btn-close{
    color: #fff !important;
}
.toast-body a.toast-link{
    font-weight: 600;
    background: #00bc88;
    color: #fff;
    padding: 3px 15px;
    border-radius: 2px;
    text-align: center;
}
.toast-header{
        color: #fff !important;
    background-color: rgb(0 188 136) !important;
}
.info_leftbox .accordion-button:not(.collapsed){
    color: #000;
    background-color: rgb(255 255 255 / 38%);
    font-weight: 600;
}
.info_leftbox .accordion-button{
    background: rgb(255 255 255 / 29%);
    color: #000;
    font-weight: 500;
}

.info_leftbox .accordion-item{
    background-color: transparent;
}
.info_leftbox .accordion-body{
    background: rgb(255 255 255 / 38%);
}
.info_leftbox .inform_box{
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter:none !important;
}
.box-attent-event{
    color: #000;
    background-color: rgb(255 255 255 / 38%);
    padding: 12px;
    border-radius: 5px;
}
.box-attent-event h2{
    font-size: 19px;
    font-weight: 600;
}
.box-attent-event .inform_box{
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter:none !important;
}
.grantstab label{
    margin-bottom: 10px;
    font-weight: 500;
}
.grantstab table.dataTable thead{
    background-color:#00c08b ;
}
.grantstab table.dataTable thead tr th{
    color:#fff !important;
}



#chatLoaderSpinner {
    color: #00C08B !important;
}

.message-sending-container {
    display: flex;
    gap: 10px;
}

.message-sending-btns {
    width: 80px;
    display: flex;
    gap: 10px;
    justify-content: end;
    align-items: center;
}

.message-sending-input {
    flex: 1;
    display: flex;
    gap: 10px;
}

.message_file_sending img {
    height: 40px !important;
    padding: 6px !important;
    object-fit: contain;
}

.new-chat-container {
    overflow-y: scroll;
    height: calc(100vh - 330px);
    min-width: 350px;
}

#chat {
    height: calc(100vh - 280px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#chat-messages {
    list-style: none;
    margin: 0;
    padding: 0 20px;
}

.message-text h5 {
    margin: 0;
    font-size: 16px;
}

.message-sender-name {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.message-time {
    font-weight: 400;
    font-size: 14px;
    color: #00000080;
}

.chat-messages-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message-wrapper {
    display: flex;
    flex-direction: column;
}

.message-wrapper-me {
    align-items: end;
}


.message-wrapper-me .message-sender-name {
    flex-direction: row-reverse;
}

.message-body {
    background: linear-gradient(135deg, #ffffff, #00000030);
    padding: 20px;
    border-radius: 0 20px 20px 20px;
    display: flex;
    width: fit-content;
    margin-top: 10px;
    max-width: 80%;
    color: #000000;
    border: 1px solid #00C08B50;
}

.message-wrapper-me .message-body {
    border-radius: 20px 0 20px 20px;
    background: linear-gradient(135deg, #00C08B, #198754);
    color: white;
}

.message-body a {
    color: #000000;
    font-size: 16px;
    text-decoration: underline;
    font-weight: 500;
}


#chatLoaderSpinner {
    width: 24px;
    height: 24px;
    min-width: 24px;
}

.attached-preview {
    display: flex;
    padding: 2px;
    align-items: center;
}


.message-wrapper-me h5, .message-wrapper-me a {
    color: #ffffff !important;
}
