/* Color Scheme */
:root {
    --light-bg: #fff;
    --dark-bg: #1c1c1c;
    --dark-text: #1c1c1c;
    --light-text: #fff;
    --link-text: #1351D8;
    --primary-color: #192F60;
    --secondary-color: #F3F6FD;
    --base-clr: #192F60;
    --line-clr: #42434a;
    --hover-clr: #1c1c1c;
    --text-clr: #e6e6ef;
    --accent-clr: #5e63ff;
    --secondary-text-clr: #b0b3c1;
}

/* Normalize CSS (Reset) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: var(--light-bg);
    color: var(--dark-text);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    height: 100%;
    /* line-height: 1.6;*/
    overflow-x: hidden;
}

ul,
ol {
    list-style: none;
    padding: 0;
}

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

a {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

.rounded-br {
    border-radius: 8px;
}

/* Flexbox Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    font-family: "poppins";
    letter-spacing: 0.56px;
    margin: 0;
    color: #1c1c1c;
}

p {
    letter-spacing: 0.32px;
    font-weight: 500;
    margin: 0;
}

.page-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    position: relative;
}

.ism-footer-copyright {
    text-align: center;
    background: #192f60;
    padding: 0.35rem;
    color: #fff;
    bottom: 0;
    /* position: absolute; */
    width: 100%;
}

.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: #192f60;
    content: var(--bs-breadcrumb-divider, ">");
    font-weight: 600;
}

.breadcrumb-item a {
    color: rgba(25, 47, 96, 0.70);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.32px;
}

.breadcrumb-item.active > a {
    color: #192f60 !important;
}

.form-section {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins';
}

.form-section-header {
    background-color: #192f60;
    color: white;
    padding: 10px 15px;
    border-radius: 8px 8px 0 0;
    font-family: 'Poppins';
}

.form-section-body {
    padding: 3rem 1rem;
}

.form-label {
    font-size: 1rem;
    letter-spacing: 0.32px;
    font-weight: 500;
    color: #192F61;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(25, 47, 96, 0.70);
    background-color: #f3f6fd;
    background-clip: padding-box;
    border: 2px solid rgba(25, 47, 96, 0.10);
    border-radius: 4px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    height: 2.75rem;
}

.themeCrm-btn-light {
    padding: 5px 12px;
    border-radius: 100px;
    background: #fff;
    color: #192F60;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.4px;
    border: 2px solid #192F60;
}

.themeCrm-btn-darkBlue {
    padding: 5px 12px;
    border-radius: 100px;
    background: #192F60;
    color: #FFF;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.4px;
    border: 2px solid #fff;
}

.themeCrm-btn-lightBlue {
    padding: 5px 12px;
    border-radius: 100px;
    background: #1351D8;
    color: #FFF;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.4px;
    border: 2px solid #fff;
}

.page-container {
    background: #F3F6FD;
    padding: 0.75rem;
    overflow: auto;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

.menu {
    display: none;
    position: absolute;
    top: 40px;
    left: -5rem;
    background: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #192f60;
}

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

    .menu li {
        padding: 0.5rem;
        width: max-content;
        /* border-bottom: 1px solid #192f60; */
    }

        .menu li:first-child {
            border-bottom: 1px solid #192f60;
        }

    .menu a {
        text-decoration: none;
        color: black;
    }

    .menu.show {
        display: block;
    }

.attachment-button {
    border-radius: 4px;
    border: 1px solid #192F60;
    background: #F3F6FD;
    padding: 0.75rem 1.5rem;
    margin: 0 0.5rem 0.5rem 0;
    display: inline-block;
}

#pageTitle {
    color: #192F60;
    font-family: Poppins;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.56px;
}

#description {
    color: #1C1C1C;
    font-family: Poppins;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.28px;
    margin: 0;
}

.page-body-container {
    border-radius: 8px;
    border: 1px solid #192F60;
    background: #FFF;
    padding: 1rem;
}

.page-body-container {
    border-radius: 8px;
    background: #FFF;
    padding: 1rem;
}

.accordion-button {
    border-radius: 4px;
    border: 2px solid rgba(25, 47, 96, 0.10);
    color: rgba(25, 47, 96, 0.70);
    background: #F3F6FD;
    font-size: 14px;
    padding: 0.5rem 1rem;
    margin-bottom: 5px;
}
/* Status Css Start Here ---- Add status with referred class "class="status pending"" */
.status {
    padding: 0.25rem 0.5rem;
    border-radius: 85px;
    font-weight: 500;
    font-size: 0.75rem;
    width: fit-content;
    display: block;
    text-align: center;
}

.pending {
    background-color: #FFF4CC;
    color: #DB8900;
    border: 1px solid #DB8900;
}

.confirmation-awaited {
    border: 1px solid #B76D00;
    background: #FFF1D6;
    color: #B76D00;
}

.confirmed {
    border: 1px solid #8D9735;
    background: #F0F4CD;
    color: #8D9735;
}

.approved {
    border: 1px solid #10623E;
    background: #CEEAD6;
    color: #10623E;
}

.cancel {
    border: 1px solid #E88C73;
    background: #F9EEED;
    color: #E88C73;
}

.failed {
    border: 1px solid #D1604E;
    background: #F9EEED;
    color: #D1604E;
}

.withdraw {
    border: 1px solid #B3261D;
    background: #F9EEED;
    color: #B3261D;
}

.not-approved {
    border: 1px solid #BD0D10;
    background: #FCDCDD;
    color: #BD0D10;
}

.acknowledged {
    border: 1px solid #6C7EB8;
    background: #E1E8FF;
    color: #6C7EB8;
}

.sent {
    border: 1px solid #10623E;
    background: #CEEAD6;
    color: #10623E;
}

.failed-to-send {
    border: 1px solid #D1604E;
    background: #F9EEED;
    color: #D1604E
}

.recieved {
    border: 1px solid #6C7EB8;
    background: #E1E8FF;
    color: #6C7EB8;
}

.payment-pending {
    border: 1px solid #DB8900;
    background: #FFF4CC;
    color: #DB8900;
}

.preliminary-screening {
    border: 1px solid #B76D00;
    background: #FFF1D6;
    color: #B76D00;
}

.evaluation-under-review {
    border: 1px solid #0083DB;
    background: #D6F1FF;
    color: #0083DB;
}

.card-header {
    background-color: #192f60;
    color: #fff;
    font-weight: 500;
}
.payment-awaited {
    background: #7955480f;
    color: #795548;
    border-color: #795548;
    border: 1px solid #795548;
}

/* New statuses and steps Css Start Here ---- Add status with referred class "class="status default-state"" */
.modal-body {
    overflow-y: auto;
}

.default-state {
    border: 1px solid #6C7EB8;
    background: #E1E8FF;
    color: #6C7EB8;
}

.review-state {
    border: 1px solid #0083DB;
    background: #D6F1FF;
    color: #0083DB;
}

.pending-state {
    border: 1px solid #DB8900;
    background: #FFF4CC;
    color: #DB8900;
}

.success-state {
    border: 1px solid #10623E;
    background: #CEEAD6;
    color: #10623E;
}

.failed-state {
    border: 1px solid #D1604E;
    background: #F9EEED;
    color: #D1604E
}



/* Login/Forgot Css Start Here */

.login-section {
    background-image: url(../../images/backgrounds/events_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}

.login-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.theme-crm-btn {
    padding: 0.5rem;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #192F60;
    color: #fff;
}

    .theme-crm-btn a {
        color: #fff;
    }

    .theme-crm-btn:hover {
        padding: 0.5rem;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        background: #192F60;
        color: #fff;
    }

.main-heading {
    color: #192F60;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    text-transform: capitalize;
}

.login-link-text {
    color: #192F60;
    font-size: 1rem;
    font-style: normal;
    text-transform: capitalize;
}

/* Login/Forgot Css End Here */


/* Dashboard Css Start Here */
.dashboard-bg {
    background-image: url(../../images/entity/desktop_home_banner.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    padding: 1rem 0.5rem;
}

.dashboard-card {
    align-items: center;
    background-color: #F3F6FD;
    border-radius: 0.5rem;
    height: 100%;
    margin-bottom: 1.25rem;
    padding: 1rem;
}

.application-card_icon {
    font-size: 3rem;
    margin-right: 1rem;
}

.application-card_title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #192f60;
    letter-spacing: 0.4px;
    padding: 0.25rem;
}

.application-card_count {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.56px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-right: 0.5rem;
}

.main-header {
    background: #B7C3DF;
    color: #192F60;
    height: 3rem;
}

    .main-header .dropdown-toggle::after {
        display: none;
    }

.bg-primary-aqua {
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.60);
    padding: 2rem;
}

.notification-container {
    max-height: 500px;
    overflow: auto;
    padding-right: 0.5rem;
}

.scheme-tabs {
    padding: 0.5rem;
    border: none;
    display: inline-flex;
    background: #fff;
    border-radius: 0.5rem;
}

.nav-link {
    color: #1C1C1C !important;
}

.nav-tabs .nav-link.active {
    color: #fff !important;
    background-color: #1c1c1c;
    border-color: none !important;
}

.notification-heading {
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.56px;
}

.sub-heading {
    color: #FFF;
    font-family: Poppins;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    margin: 0;
}

.notification-tabs {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
}

.notification-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.32px;
}

.notification-icon img {
    height: 2.5rem;
}

.notification-date {
    color: #1351D8;
}

.profile {
    display: flex;
    align-items: center;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #192f60;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}

.info {
    margin-bottom: 10px;
}

    .info span {
        display: inline-block;
        font-size: 14px;
        font-weight: bold;
    }

    .info .value {
        font-weight: normal;
    }

.edit-link {
    font-size: 14px;
    color: #192f60;
    font-weight: 500;
    letter-spacing: 0.32px;
}

.info-card {
    border-radius: 8px;
    border: 1px solid #BAC1D0;
    background: #FFF;
}

.info-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #192f60;
    font-weight: bold;
    background: #F3F6FD;
    padding: 1rem;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

    .info-card-header h5 {
        color: #192F60;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        letter-spacing: 0.32px;
    }

.info-card-body {
    padding: 1rem;
}

.info p {
    font-size: 14px;
    font-weight: 600;
}

.info-card table {
    font-size: 14px;
}

.info-card .table th {
    /* color: #192f60; */
    padding: 0.5rem 0;
    font-weight: 600;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    background: #F3F6FD;
}

/* Dashboard Css Ends Here */

.password-container {
    position: relative;
    width: 100%;
}

.toggle-password {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(50%);
    cursor: pointer;
    color: #192f60;
}

.disabled-button {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

.modal-body .table tbody tr td {
    border: 1px solid #ccc;
}

.otp-input {
    width: 45px;
    height: 45px;
    font-size: 20px;
    text-align: center;
    margin: 0 4px;
    border: 2px solid #192f60;
    border-radius: 8px;
    display: inline-block !important;
}

    .otp-input:focus {
        border-color: #5e35b1;
        outline: none;
    }

.resend-otp-btn {
    background: #192f60;
    color: #fff !important;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
}

.resend-otp-btn:hover {
    text-decoration: none;
}

.disabled-button {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}


/*Global Responsive css for CRM Portals*/
@media screen and (max-width: 769px) {
    #meityLogo, #dicLogo {
        display: none;
    }

    .ism-header__main_box {
        justify-content: left;
    }
    .ism-footer-copyright{
        display:none;
    }
    #sidebar.close{
        width:100%;
    }
}

@media screen and (max-width: 546px) {

}

@media screen and (max-width: 345px) {

}