﻿body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-weight: 400;
    color: #000624;
    background: #fff;
    margin: 0;
    padding: 0;
}

html, body {
    min-height: 100%;
}

a {
    color: #0447B3;
    text-decoration: none;
}

.logo {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #000624;
    text-decoration: none;
}

.main-login {
    display: flex;
    height: 100vh;
    overflow: hidden;
    width: 100%;
}

.main-login-inner {
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

    .main-login-inner > div {
        width: 50%;
    }

    .main-login-inner .login-right {
        position: relative;
    }

        .main-login-inner .login-right:after {
            content: "";
            position: absolute;
            background: url(../images/drop-shadow.png);
            background-position: bottom;
            background-size: auto;
            width: 100%;
            bottom: 0;
            height: 313px;
            left: 0;
        }

        .main-login-inner .login-right img {
            max-width: 100%;
            width: 100%;
            object-fit: cover;
            height: 100%;
        }

        .main-login-inner .login-right > div {
            position: absolute;
            bottom: 30px;
            color: #fff;
            max-width: 590px;
            margin: 0 auto;
            width: 100%;
            left: 50%;
            transform: translate(-50%, 0);
            z-index: 1;
            padding: 15px;
        }

            .main-login-inner .login-right > div p {
                font-size: 24px;
                line-height: 32px;
                margin: 0 0 8px;
            }

            .main-login-inner .login-right > div span {
                font-size: 16px;
                line-height: 24px;
                letter-spacing: -0.2px;
                display: block;
            }

    .main-login-inner .login-left {
        position: relative;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        grid-gap: 30px;
        overflow-y: auto;
    }

.login-left .bottom p {
    font-size: 12px;
    color: #595D70;
    line-height: 16px;
    letter-spacing: -0.2px;
    margin: 0;
}

.login-left .middle {
    max-width: 454px;
    margin: 0 auto;
}

    .login-left .middle .middle-top {
        margin-bottom: 15px;
    }

    .login-left .middle h2 {
        font-weight: 500;
        font-size: 40px;
        line-height: 40px;
        letter-spacing: -0.2px;
        color: #000624;
    }

    .login-left .middle p {
        font-size: 14px;
        line-height: 16px;
        color: #595D70;
        margin: 0;
    }

        .login-left .middle p > span {
            font-weight: 500;
            color: #000624;
        }

.form-group {
    margin-bottom: 10px;
}

label {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #000624;
}

    label em {
        color: #D0180B;
    }

.form-control, .form-select {
    border-radius: 4px;
    border: 1px solid #DFE5EB;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    color: #000624;
}

.form-select {
    padding-right: 28px;
}

    .form-control:hover, .form-select:hover {
        border: 1px solid #0447B3;
    }

    .form-control:focus, .form-control:active, .form-select:focus, .form-select:active {
        box-shadow: 0 0 0 2px rgba(4, 71, 179, 0.2);
    }

    .form-control.error, .form-select.error {
        box-shadow: 0 0 0 2px rgba(208, 24, 11, 0.2);
        border-color: rgba(230, 34, 20, 1);
    }

.login-left .middle button {
    width: 100%;
    margin: 15px 0 0;
}

.btn {
    border-radius: 4px;
    padding: 12px;
    box-shadow: 0 0 2px rgba(16, 24, 40, 0.05);
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
}

.btn-primary {
    border-color: #0447B3;
    background: #0447B3;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
        border-color: #042966;
        background: #042966;
    }

.btn-outline {
    color: #0447BE;
    border-color: #E5E7EB;
    background: #fff;
}

    .btn-outline:hover, .btn-outline:focus, .btn-outline:active {
        color: #0447BE;
        border-color: #E5E7EB;
        background: #f5f7fa;
    }

    .btn-outline:focus {
        color: #0447BE;
        border-color: #E5E7EB;
        background: #f5f7fa;
    }

.disabled, .btn:disabled {
    background-color: #E5E7EB !important;
    color: #ACAFC4 !important; /* muted gray text */
    border: none !important; /* no border */
    border-color: #E5E7EB;
    cursor: not-allowed !important; /* show disabled cursor */
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    color: #ACAFC4;
    /* pointer-events: none; */
    background-color: #eceff3;
    border-color: #0447B3;
    opacity: var(--bs-btn-disabled-opacity);
}

.form-control:disabled {
    background-color: #F9FAFB;
    opacity: 1;
    cursor: not-allowed;
}
    /* Disable hover effect */
    .form-control:disabled:hover {
        background-color: #F9FAFB;
        opacity: 1;
        cursor: not-allowed;
    }

.form-select:disabled {
    background-color: #F9FAFB;
    opacity: 1;
    cursor: not-allowed;
}
    /* Disable hover effect */
    .form-select:disabled:hover {
        background-color: #F9FAFB;
        opacity: 1;
        cursor: not-allowed;
    }

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #CFD1DC;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #CFD1DC;
}

:-ms-input-placeholder { /* IE 10+ */
    color: #CFD1DC;
}

:-moz-placeholder { /* Firefox 18- */
    color: #CFD1DC;
}

.btn:focus, .btn:active {
    box-shadow: 0 0 2px rgba(16, 24, 40, 0.05) !important;
}

.login-b-text {
    margin: 30px 0 0;
}

    .login-b-text span {
        font-size: 14px;
        color: #868AA5;
        line-height: 20px;
        font-weight: 500;
        display: block;
    }

.login-left .middle .login-b-text p {
    margin: 30px 0 0;
    line-height: 20px;
}

.login-left .middle ul.nav-pills {
    background: #ECEFF3;
    display: inline-flex;
    border-radius: 4px;
    padding: 2px;
    margin: 10px 0 20px;
}

    .login-left .middle ul.nav-pills li button {
        margin: 0;
        color: #595D70;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }

        .login-left .middle ul.nav-pills li button.active {
            color: #000624;
            font-size: 14px;
            font-weight: 500;
            line-height: 20px;
            box-shadow: 0 0 2px rgba(93, 97, 121, 0.15);
            background: #fff;
        }

.captch-sec {
    display: flex;
    align-items: center;
    grid-gap: 15px;
}

    .captch-sec .c-icon {
        display: flex;
        grid-gap: 8px;
        margin: 15px 0 0;
    }

        .captch-sec .c-icon a {
            display: flex;
            border: 1px solid #DFE5EB;
            border-radius: 4px;
            height: 32px;
            width: 32px;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 2px rgba(16, 24, 40, 0.05);
        }

.login-left .middle.otp-sec {
    max-width: 352px;
}

.otp-input {
    display: flex;
    grid-gap: 8px;
}

    .otp-input input {
        height: 64px;
        text-align: center;
        font-size: 20px;
        line-height: 28px;
        font-weight: 400;
    }



/******************Dashboard design********************/
h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -0.2px;
    color: #0447b3;
}

h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.2px;
    color: #000624;
    margin: 0;
}

.main {
    /* background: #F5F7FA;*/
    background: #ffffff;
}

.mainWhite {
    background: #ffffff;
}

.main-inner-body {
    margin: 15px;
}

.top-msg {
    background: #0447B3;
    color: #ffffff;
    display: none;
    padding: 8px;
    text-align: center;
    position: relative;
}

    .top-msg .close {
        position: absolute;
        right: 15px;
        color: #fff;
    }

.top-head {
    background: #fff;
    border-bottom: 1px solid #DFE5EB;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    /* min-height: 140px;*/
}

    .top-head.fixed {
        position: fixed;
        top: 58px;
        z-index: 99;
        width: calc(100% - 275px);
    }

    .top-head p {
        font-size: 14px;
        line-height: 16px;
        color: #595D70;
        margin: 0;
    }

.top-right {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    grid-gap: 10px;
}

.card {
    border-radius: 8px;
    border: 1px solid #DFE5EB;
    margin-bottom: 10px;
}

.card-body {
    padding: 25px;
    color: #000624;
}

    .card-body h3 {
        margin-bottom: 20px;
    }

.checkbox-sec {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    /* margin:10px 0 0;*/
}

    .checkbox-sec .form-check, .checkbox-sec .form-check label {
        display: block;
        padding: 0;
        margin: 0;
        text-align: center;
    }

        .checkbox-sec .form-check input {
            position: static;
            margin: 8px 0 0;
            float: none;
        }

.add-more-link {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.actions-sec {
    display: flex;
    align-items: center;
    grid-gap: 5px;
    justify-content: flex-end;
}
/*.breadcrumb {
    margin: 0;
    padding: 15px 15px 0;
}
    .breadcrumb li, .breadcrumb li a {
        font-size: 12px;
        line-height: 16px;
        color: #0447B3;
    }
        .breadcrumb li, .breadcrumb li .active {
            color: #595D70;
        }*/
.main-inner-body.st-details-sec {
    margin: 0;
}

.small-head {
    padding: 12px 15px;
    background: #f5f7fa;
    border-bottom: 1px solid #DFE5EB ;
}

    .small-head p {
        font-size: 12px;
        line-height: 16px;
        color: #595D70;
        margin: 0;
    }

.image-box {
    position: relative;
}

    .image-box > img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: cover;
        border: 1px solid #DADADA;
        border-radius: 4px;
    }

    /*.image-box input {
        position: absolute;
        width: 24px;
        height: 24px;
        bottom: -5px;
        left: -15px;
        border-radius: 50%;
        opacity: 0;
        z-index: 1;
        cursor: pointer;
    }*/

    .image-box a {
        position: absolute;
        background: #0447B3;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #fff;
        bottom: -5px;
        left: -15px;
    }

.st-details-block {
    padding: 15px;
    background: #fff;
   /* border: 1px solid #DFE5EB;*/
    border-left: none;
    border-top: none;
}

    .st-details-block .box {
        border-bottom: 1px solid #DFE5EB;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

        .st-details-block .box:last-child {
            border-bottom: None;
            padding-bottom: 0;
            margin-bottom: 0;
        }

    .st-details-block h6 {
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        color: #0447B3;
        margin: 0 0 10px;
    }

    .st-details-block .box label {
        font-weight: 400;
        color: #595D70;
    }

    .st-details-block .box p {
        font-size: 14px;
        line-height: 20px;
        font-weight: 500;
        margin: 0;
    }

    .st-details-block .box table th {
        font-size: 12px;
        color: #fff;
        font-weight: 400;
        line-height: 16px;
    }

    .st-details-block .box table td {
        font-size: 13px;
        line-height: 20px;
        color: #000624;
        font-weight: 500;
    }

.icon-box {
    border: 1px solid #DFE5EB;
    border-radius: 4px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 2px rgba(16, 24, 40, 0.05);
    height: 32px;
    width: 32px;
}

.st-details-block .box table th, .st-details-block .box table td {
    border: none;
}

tbody tr:nth-child(2n) {
    /*background: #eaeff8;*/
}

.accordion-flush .accordion-collapse {
    border-width: 0;
    /*  border-top: 1px solid #DFE5EB;*/
    border-top: none;
}

.accordion-flush .accordion-item .accordion-button {
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 13.6px 15px;
    background: #fff;
    width: auto;
    color: #000624;
}

.accordion-button span {
    border: 1px solid #DFE5EB;
    border-radius: 100px;
    padding: 4px 10px;
    color: #333853;
    font-size: 12px;
    line-height: 16px;
    margin-left: 10px;
}

.accordion-flush .accordion-item .accordion-button:hover, .accordion-flush .accordion-item .accordion-button:focus, .accordion-flush .accordion-item .accordion-button:active {
    box-shadow: none;
    background: #fff;
}

.accordion-button::after {
    background-size: 0.75rem;
    margin-left: 10px;
    border: 5px solid #595d70;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    background: none;
    width: auto;
    top: 3px;
    position: relative;
    height: auto;
    transition:none;
}

.accordion-button:not(.collapsed)::after {
    top: -3px;
    background:none;
    
}

.accordion-item {
    border: none !important;
    margin-bottom:24px;
}
    .accordion-item:last-child {
       margin-bottom: 0;
    }

.accordion-header {
    position: relative;
    border-bottom: 1px solid #DFE5EB
}

    .accordion-header .accordian-header-btn {
        position: absolute;
        display:flex;
        align-items:center;
        grid-gap:8px;
        right: 14px;
        top: 8px;
        z-index: 9;
    }

.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.aca-view .accordion-body label {
    font-weight: 400;
    color: #595D70;
}

.aca-view .accordion-body {
    padding-top: 0;
}

    .aca-view .accordion-body .form-group {
        margin: 0;
        padding: 8px 0;
    }

    .aca-view .accordion-body p {
        font-size: 14px;
        line-height: 20px;
        font-weight: 500;
        margin: 0;
        color: #000624;
    }

.accordion-body table.tableview tr td {
    padding: 15px 0.5rem 15px 20px;
}
/*.accordion-body table.tableview tr:last-child td {
    border-bottom: none;
}*/
.accordion-body table.tableview tr:first-child td {
    border-top: none;
}

.revert-section {
    background: #deebff;
    padding: 15px;
}

    .revert-section p {
        margin: 0;
    }

    .revert-section h3 {
        color: #0447b3;
    }
.table-details table td {
    vertical-align: middle;
    min-height: 56px;
    height: 56px;
    padding: .48rem .48rem;
}
.table-details table tfoot tr:last-child td {
    border-bottom:none;
}
.table-details .table th {
    background: #F5F7FA;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #595D70;
    vertical-align: middle;
}
    .table-details .table th:first-child, .table-details .table td:first-child {
        padding-left: 15px;
    }
    .table-details .table th:last-child, .table-details .table td:last-child {
        padding-right: 15px;
        text-align:right;
    }
.d-flex.verify-radio {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.verify-radio .form-check label {
    font-size: 14px;
}

.st-details-block .box .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

    .st-details-block .box .top h6 {
        margin: 0;
    }

    .st-details-block .box .top .btn {
        padding: 8px 15px;
    }


.verified, .pending, .rejected {
    color: #41cf61;
    display: flex;
    align-items: center;
    grid-gap: 5px;
    font-weight: 600;
}

.pending {
    color: #d11f1f;
}

.rejected {
    color: red;
}

.empty-page {
    margin: 0;
    padding: 15px;
    min-height: calc(100vh - 163px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.empty-sec {
    text-align: center;
}

    .empty-sec .img-block {
        width: 200px;
        height: 200px;
        margin: 0 auto 60px;
        background: #F5F7FA;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .empty-sec .img-block img {
            max-width: 130px;
        }

    .empty-sec p {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        margin: 0 0 10px;
        letter-spacing: 0.2px;
        color: #000624;
    }

    .empty-sec span {
        font-size: 14px;
        font-weight: 400;
        display: block;
        line-height: 16px;
        color: #595D70;
        margin: 0 0 25px;
    }

.form-check.form-check-inline {
        display: flex;
        align-items: center;
        grid-gap: 8px;
}

    .form-check.form-check-inline input {
            margin: 0;
    }

.is-invalid {
    border-color: #e62214;
    background-color: #fdeceb;
}

.form-check-input:checked {
    background-color: #0447B3;
    border-color: #0447B3;
}
.two-btn
{
    display:flex;
    align-items:center;
    grid-gap:12px;
}

.upload-area {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    position: relative;
}

    .upload-area span {
        border: 1px solid #E5E7EB;
        box-shadow: 0 0 5px #1018280D;
        background: #fff;
        border-radius: 4px;
        padding:9px 10px;
        font-size: 14px;
        line-height: 20px;
        display: inline-block;
        cursor: pointer;
        position: relative;
        z-index: 1;
        pointer-events: none;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        max-width: 100px;
    }

    .upload-area a {
        line-height: 18px;
    }

        .upload-area a i {
            color: #595D70;
            font-size: 18px;
        }

    .upload-area input[type="file"] {
        position: absolute;
        max-width: 110px;
        opacity: 0;
        cursor: pointer;
    }


.file-upload-sec {
    margin-bottom: 0;
}

.upload-area, .view-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .upload-area span, .view-area span {
        font-weight: 500;
    }
    .upload-area input.is-invalid + span {
        border-color: #e62214;
        background-color: #fdeceb;
    }
    .view-area a {
        color: red;
        cursor: pointer;
    }

.tablep {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    margin: 0;
    color: #000624;
}
.table > thead {
    vertical-align: bottom;
    height: 40px;
}

.main-acadmic {
    position:relative;
    padding-bottom:250px;
}

.botton-image {
    display: flex;
    justify-content: flex-end;
    margin-top: 100px;
    position: absolute;
    right: 0;
    bottom: 0;
}
    .botton-image img {
        max-width: 348px;
    }
.accordion-button.arrow-remove::after {
    display:none;
}
canvas#predictionChart {
    max-width: 180px;
    height: auto !important;
    margin: 0 auto;
}

.mobile-no .row {
    margin-left: -4px;
    margin-right: -4px;
}
.mobile-no .row .col-5, .mobile-no .row .col-7 {
    padding-left: 4px;
    padding-right: 4px;
}





/*modal custom css*/

#imagechoose .modal-dialog,
#popVerification .modal-dialog,
#popValidation .modal-dialog,
#confirmModal .modal-dialog, .custom-popup .modal-dialog {
    /*max-width: 288px;*/
}

#imagechoose .modal-header,
#popVerification .modal-header,
#popValidation .modal-header,
#confirmModal .modal-header, .custom-popup .modal-header {
    border: none;
    padding: 0;
}
#imagechoose .modal-body,
#popVerification .modal-body,
#popValidation .modal-body,
#confirmModal .modal-body, .custom-popup .modal-body {
    padding: 24px;
}

#imagechoose .modal-content,
#popVerification .modal-content,
#popValidation .modal-content,
#confirmModal .modal-content, .custom-popup modal-content {
    border-radius: 8px;
}


h5.modal-title {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.36px;
    margin-bottom: 12px;
}
.modal-body .content {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #333853;
}
.btn-sec {
    margin: 32px 0 0;
    display: flex;
    justify-content: flex-end;
    grid-gap: 12px;
}

.modal-header button.btn-close {
    margin: 0;
    position: absolute;
    right: -18px;
    opacity: 1;
    color: #000;
    padding: 10px;
    top: -17px;
    background: #fff;
    width: 12px;
    height: 12px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.model-body-content {
    max-height: 300px;
    overflow: auto;
}

/**end */
.gap-8 {
    grid-gap: 8px;
}

@media (max-width:767px) {
    .main-login-inner > div {
        width: 100%;
    }

    .main-login-inner .login-right {
        display: none;
    }
}
