html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background: #e5edfa;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/*..header {
    background-color: #351f1d*/ /*/url('/img/oses-evalutor-banner.jpg');  Replace with the actual path to your image */
/*background-size: cover;*/ /* Ensures the image covers the entire header area */
/*background-position: center;*/ /* Centers the image within the header */
/*background-repeat: no-repeat;*/ /* Prevents the image from repeating */
/*display: inline-block;
    width: 100%;
}*/
.image-markup-canvas {
    cursor: url('/img/red-pen.png') 14 50, auto;
}

.lazy-page {
    min-height: 500px; /* Placeholder height */
    background: #f0f0f0 url('/img/process.gif') center/50px no-repeat;
    width: 100% !important;
    height: auto !important;
}

.canvas-paper {
    width: 100%;
    height: 100%;
}

.green-tick {
    color: green; /* Sets the tick color to green */
    font-size: 2em; /* Adjusts the size of the tick */
}

.success {
    background-color: lightgreen;
    color: darkgreen;
    font-weight: bold;
    padding: 1px;
    border-radius: 4px;
}
/*eraser */
#eraser-cursor {
    position: fixed;
    pointer-events: none;
    border: 2px solid red;
    border-radius: 50%;
    display: none;
    z-index: 9999;
}

/*Model */
/* Overlay to "lock" the parent window */
#modalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 999; /* Ensure it's above other content */
    display: none; /* Hidden by default */
}

/* Modal box styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000; /* Ensure it's above the overlay */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 94%;
    max-width: 95%;
    ;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000; /* Ensure it's above the overlay */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 60%;
    ;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.webcammodal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000; /* Ensure it's above the overlay */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 25%;
    max-width: 30%;
    background-color: teal;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.modal-content {
    padding: 20px;
    position: relative;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}


.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

.h-custom {
    height: calc(100% - 73px);
}

@media (max-width: 450px) {
    .h-custom {
        height: 100%;
    }
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Spinner Animation */
.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-text {
    margin-top: 12px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

/*end model*/
/*custom css*/
#partialQuestion {
    box-shadow: 0px 5px 10px #237ca661;
    border-radius: 15px;
}

.pager-btn {
    cursor: pointer;
    color: #000000;
    text-decoration: none;
    border: solid 1px #ddeaf7;
    border-radius: 25px;
    height: 20px;
    width: 26px;
    text-align: center;
    padding: 0;
    margin: 2px;
    font-size: 12px;
    background: #ddeaf7;
}

.pager-btnblue {
    cursor: pointer;
    color: #ffffff;
    text-decoration: none;
    border: solid 1px #2886a9;
    border-radius: 25px;
    height: 22px;
    width: 22px;
    text-align: center;
    padding: 0;
    margin: 2px;
    font-size: 12px;
    background: linear-gradient(154deg, #2e95ad 0, #165f9e 100%);
}

.login-pg-logo {
    font-size: 45px;
    font-weight: 700;
}

.login-pg .form-outline {
    position: relative;
}

    .login-pg .form-outline i {
        position: absolute;
        top: 13px;
        left: 13px;
        font-size: 16px;
        color: #000;
    }

    .login-pg .form-outline .form-control {
        padding-left: 40px;
    }

.custom-login {
    background: #FF9800;
    color: #fff;
    border: none;
}

    .custom-login:hover {
        background: #ef8f02;
        color: #fff;
    }

.header {
    background: linear-gradient(154deg, #165f9e 0, #2e95ad 100%);
    box-shadow: 0px 0 25px #8cbdf7;
    padding: 3px 10px;
}

.top-right-nav {
    margin: 0;
    padding: 0;
    display: inline-block;
}

    .top-right-nav li {
        display: inline-block;
        font-size: 13px;
    }

.btn-logout {
    color: #ffffff !important;
    background: #F44336;
    border: none;
}

    .btn-logout:hover {
        background: #e42618;
        color: #ffffff;
    }

.custom-menu-main {
    background: #edf2fb;
    margin: 0;
    border-bottom: solid 1px #dde0e7;
    padding: 0;
    border-top: 1px solid #dde0e7;
}

.content-body {
    box-shadow: 0px 0 25px #8cbdf7d1;
    display: inline-block;
    width: 100%;
    background: #fff;
    padding: 0;
    /*height:85vh;*/
}

.start-end-date {
    font-size: 13px;
}

.btn-warning {
    background: #ff9800;
    color: #fff;
    border: none;
}

    .btn-warning:hover {
        background: #f19000;
        color: #fff;
    }

.has-float-label {
    position: relative;
}

    .has-float-label label, .has-float-label > span:last-of-type {
        position: absolute;
        cursor: text;
        font-size: 12px;
        opacity: 1;
        top: -0.5em;
        left: 1.4rem;
        z-index: 3;
        line-height: 1;
        padding: 0 2px;
        font-weight: 600;
    }

        .has-float-label label::after, .has-float-label > span::after {
            content: " ";
            display: block;
            position: absolute;
            height: 5px;
            top: 3px;
            left: -0.2em;
            right: -0.2em;
            z-index: -1;
        }

        .has-float-label label::after, .has-float-label > span::after {
            background: #fff;
        }

.emp-form-label .form-control {
    height: 40px;
    font-size: 12px;
    line-height: 33px;
    color: #000;
    background: #f7f7f7;
    border: 1px solid #d5d5d5;
    display: block;
    width: 94%;
}

.mark-tbl-header {
    background: #d5f2ff;
    border-radius: 5px;
}

    .mark-tbl-header .col-2 {
        font-size: 13px;
    }

.tr-section {
    border: solid 1px #9f9f9f;
    border-radius: 10px;
    margin: 3px 0;
}

.f-13 {
    font-size: 13px;
}

.custom-field-entry {
    width: 33px;
    height: 22px;
    padding: 3px;
    text-align: center;
    border: solid 1px #898989;
}


.anscopyimg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
    transition: transform 0.1s ease-out;
    user-select: none;
    pointer-events: none;
}

#viewerContainer {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid #ccc;
    position: relative;
    cursor: grab;
    background-color: #f8f9fa;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

blink-text {
    animation: blink 1s infinite; /* Adjust time to change speed */
}

#blink-me {
    font-size: 20px;
    font-weight: bold;
    color: #2d38be;
    transition: 0.5s;
}

.divBorder {
    border-bottom: 1px solid #cfcfcf;
}
/*.viewerContainer img {width:100%;}*/
.second-top-head {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-top: -18px;
    padding-top: 6px;
}

.mark-window-head {
    padding: 13px 10px 7px 10px;
    /* cursor: move; */
    /* z-index: 10; */
    background: linear-gradient(154deg, #2e95ad 0, #165f9e 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-top: 5px;
    position: relative;
    z-index: -1;
    height: 43px;
    display: inline-block;
    width: 100%;
}

    .mark-window-head span {
        position: absolute;
        top: 6px;
    }

.mark-body-outer {
    background: #fff;
    padding: 0 7px;
}

.mark-body {
    padding: 0 5px;
}

.custom-btn {
    font-size: 12px;
    display: inline-block !important;
    width: 100%;
}

#marksSection {
    margin-top: -4px;
}

.scroll-body-section {
    height: 300px;
    overflow-y: scroll;
}

#footersection {
    padding: 0 10px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

    #footersection .mark-body {
        background: #d5f2ff;
        padding: 5px;
        border-radius: 5px;
    }

#txtremarks {
    border: solid 1px #747474;
}

#copypageing {
    padding: 5px 10px;
    margin: 0;
}

.bg-custom {
    background: #d5f2ff;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    z-index: 9991;
}

.star {
    font-size: 30px;
    cursor: pointer;
    color: gray;
}

    .star.selected {
        color: gold;
    }

.profile-card {
    max-width: 600px;
    margin-top: 20px;
}

.blink-me {
    animation: blinker 1.0s linear infinite;
    color: red; /* Use Bootstrap text color utilities as needed, e.g., text-danger */
    font-family: sans-serif;
}

.navbar-brand {
    color: rgb(23 97 158);
    font-weight: 500;
    font-size: 16px;
}

.dashboard .stretch-card > .card {
    width: 100%;
    min-width: 100%;
    border-radius: 10px;
}

.dashboard .bg-gradient-danger {
    background: -webkit-gradient(linear, left top, right top, from(#ffbf96), to(#fe7096));
    background: linear-gradient(to right, #ffbf96, #fe7096);
    border: none;
}

.dashboard .bg-gradient-info {
    background: -webkit-gradient(linear, left top, right top, from(#90caf9), color-stop(99%, #047edf));
    background: linear-gradient(to right, #90caf9, #047edf 99%);
    border: none;
}

.dashboard .bg-gradient-success {
    background: -webkit-gradient(linear, left top, right top, from(#84d9d2), to(#07cdae));
    background: linear-gradient(to right, #84d9d2, #07cdae);
    border: none;
}

.dashboard .bg-gradient-danger-2 {
    background: -webkit-gradient(linear, left top, right top, from(#ffbf96), to(#fe7096));
    background: linear-gradient(to right, #da9cdf, #ca62d3);
    border: none;
}

.dashboard .card .card-body {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
}

.dashboard .card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem 1rem;
}

.dashboard .card.card-img-holder .card-img-absolute {
    position: absolute;
    top: 0;
    right: 0;
}

.dashboard .stretch-card {
    margin-bottom: 30px;
    text-align: left;
}

.dashboard .card .card-body h4, .card .card-body h2, .card .card-body h6 {
    z-index: 1;
    position: relative;
}

.dashboard .text-white {
    color: #fff;
}

.dashboard .form-section {
    min-height: 100vh;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.dashboard .card.card-img-holder img.card-img-absolute {
    height: 100%;
}

.dashboard .card.card-img-holder i.card-img-absolute {
    font-size: 45px;
    top: 24%;
    right: 8%;
}

.dashboard .card-body h2 {
    font-size: 22px;
    text-shadow: 0px 1px 2px #00000059;
}

.dashboard a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

    .dashboard a:hover {
        text-decoration: underline;
    }

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.bg-custom-header {
    background: linear-gradient(154deg, #165f9e 0, #2e95ad 100%);
}

.nav-link {
    color: #0c558b;
}

.nav-tabs .nav-link {
    border: var(--bs-nav-tabs-border-width) solid #1b69a12e;
    margin-right: 2px;
}

.nav-tabs {
    border-bottom: var(--bs-nav-tabs-border-width) solid #2177a5;
}

    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
        color: #ffffff;
        background: linear-gradient(154deg, #2e95ad 0, #165f9e 100%);
        border-color: #2075a4;
    }

.table-scroll {
    overflow-y: scroll;
    height: 450px;
}

.thead-light {
    position: sticky;
    top: 0;
}
/*New grid css 23/01/26 by Vasudev Sharma*/
table.table-grid-view th:first-child {
    border-left: 1px solid #e9e9e9;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

table.table-grid-view th:last-child {
    border-right: 1px solid #e9e9e9;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

table.table-grid-view tr th {
    background: #e3eef1;
    color: #000000;
    font-weight: 400;
    padding: 5px;
}

table.table-grid-view tr td, table.table-grid-view tr th {
    border-width: 0;
    font-size: 13px;
}

table.table-grid-view {
    border-collapse: separate !important;
    border-spacing: 0 10px;
    border: none !important;
    table-layout: fixed;
}

    table.table-grid-view tbody td:first-child {
        border-left: 1px solid #e9e9e9;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }

    table.table-grid-view tbody td:last-child {
        border-right: 1px solid #e9e9e9;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    table.table-grid-view tbody td {
        border-top: 1px solid #e9e9e9;
        border-bottom: 1px solid #e9e9e9;
        padding: 5px;
        vertical-align: middle;
        /*font-size: 100%;*/
        word-wrap: break-word;
        font-size: 13px;
    }

.table-grid-view tr.header-style {
    background: linear-gradient(to bottom, rgba(236 241 247) 0%,rgba(229,235,238,1) 50%,rgba(215,222,227,1) 51%,rgb(236 241 247) 100%);
}

    .table-grid-view tr.header-style th:first-child {
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }

    .table-grid-view tr.header-style th:last-child {
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
    }

.fullscreen-popup {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
}

.modal-fullscreen .modal-content {
    padding: 0;
}

.modal-fullscreen .modal-title {
    font-size: 15px;
}

.modal-fullscreen .modal-header {
    background: linear-gradient(154deg, #165f9e 0, #2e95ad 100%);
    color: #fff;
    padding: 5px;
}

    .modal-fullscreen .modal-header .btn-close {
        margin-right: 15px;
        filter: invert(1);
        opacity: 1;
    }

.color-circle {
    width: 8px;
    height: 8px;
    border-radius: 25px;
    display: block;
}

.cl1 {
    background: #ffcb78;
}

.cl2 {
    background: #309c98;
}

.cl3 {
    background: #428ece;
}

.cl4 {
    background: #d68edc;
}

.cl5 {
    background: #546c8a;
}

.cl6 {
    background: #ffa2a4;
}

.btn-default {
    background: #d0ddeb;
    color: #000;
}

    .btn-default:hover {
        background: #cadbed;
    }
/*Profile Page CSS*/
.avatar-upload {
    position: relative;
    max-width: 210px;
}

.social-profile .profile-info {
    margin-top: -120px;
}

.avatar-upload .avatar-preview > div {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 100px;
}

.avatar-upload .avatar-preview {
    width: 210px;
    height: 210px;
    position: relative;
    border-radius: 100px;
    border: 10px solid #fff;
    background-color: #fff;
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: 4px;
    bottom: 4px;
    z-index: 1;
}

    .avatar-upload .avatar-edit input {
        display: none;
    }

        .avatar-upload .avatar-edit input + label {
            display: inline-block;
            width: 50px;
            height: 50px;
            line-height: 50px;
            margin-bottom: 0;
            border-radius: 100%;
            background: #fff;
            border: 1px solid #dae0ec;
            cursor: pointer;
            font-weight: normal;
            transition: all ease 0.5s;
            font-size: 20px;
        }

            .avatar-upload .avatar-edit input + label:after {
                content: "\eb31";
                font-family: remixicon !important;
                color: #475569;
                position: absolute;
                top: 0;
                left: 1px;
                right: 0;
                text-align: center;
                margin: auto;
            }

.social-profile .mb-45 {
    margin-bottom: 45px;
}
.p-20 {
    padding: 20px;
}
.bg-light-custom { 
    background-color: rgb(239 245 253);
}
.mb-10 {
    margin-bottom: 10px;
}
.fs-14 {
    font-size: 14px;
}
.fs-16 {
    font-size: 16px;
}
.fs-20 {
    font-size: 20px;
}
.mb-20 {
    margin-bottom: 20px;
}
.lh-1-8 {
    line-height: 1.8;
}
.custom-button {
    border: solid 1px #2c8fab;
    background: linear-gradient(94deg, #2c8fab, #16609e);
    background-size: 200% 200%;
    transition: background-position 0.5s ease;
}
    .custom-button:hover {
        background-position: right center;
        border: solid 1px #16609e;
    }
.social-profile .btn-outline-primary {
    border: solid 1px #2681a7;
    color: #1077a3;
}
    .social-profile .btn-outline-primary:hover, .social-profile .btn-outline-primary:focus {
        background: transparent;
        color: #1077a3;
    }
/*media CSS*/
@media (max-width: 852px) {
    .dashboard {
        background: #fff;
    }

        .dashboard .form-section {
            display: block;
            padding: 15px;
        }

    .card-img-holder {
        margin-bottom: 15px;
    }
}


.custom-bordered-row .content-wrapper {
    border-right: 1px solid #dee2e6; /* Default Bootstrap border color */
    border-bottom: 1px solid #dee2e6;
    padding: 1rem; /* Add desired padding */
}
/* Remove the right border from the last child in the row to prevent double borders on the edge */
.custom-bordered-row .col:last-child .content-wrapper {
    border-right: none;
}