* {
    font-family: Arial, Helvetica, sans-serif;
    transition: 0.3s ease-in-out;
}
/* Active navigation menu item */
.active, #nav-button:hover {
    color: rgb(0, 140, 255);
}
/* ------------------ Main page ------------------ */
/* Nav logo */
.logo{
    width: 150px;
    height: 50px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 6px 10px;
}
.logo-form{
    width: 100px;
    height: 100px;
    border-radius: 5px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 6px 10px;
}
.blog-images{
    width: 300px;
    height: 200px;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 6px 10px;
}
.cross{
    color: rgba(255, 0, 0, 0.513);
}
.cross:hover{
    color: rgb(255, 0, 0);
    cursor: pointer;
}
.large{
    font-size: 5rem;
}
.dashboard-row-two{
    height: 40vh;
}
.msg-container{
    background-color: rgb(255, 255, 255);
    width: fit-content;
    max-width: 30%;
    height: auto;
    border-radius: 10px;
    transition: 1s;
    left: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

#hideMe{
    -moz-animation: cssAnimation 0s ease-in 5s forwards;
    -webkit-animation: cssAnimation 0s ease-in 5s forwards;
    -o-animation: cssAnimation 0s ease-in 5s forwards;
    animation: cssAnimation 0s ease-in 5s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes cssAnimation {
    to {
        width:0;
        height:0;
        overflow:hidden;
    }
}
@-webkit-keyframes cssAnimation {
    to {
        width:0;
        height:0;
        visibility:hidden;
    }
}
.logo-top{
    height: 35px;
}
/* Home page section one */
.hSecOne{
    /* Darkend background image */
    background: linear-gradient( rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) ), url("../images/homeBg.jpg");
    background-size: cover;
    background-attachment: fixed;  
}
.hFeatureCards{
    height: 15vh;
}
.hSecTwo{
    background-color: rgb(246, 246, 246);;
}
/* Section headings */
.section-heading{
    color:black;
    display:inline-block;
    position:relative; 
}
.section-heading::after{
    content:'';
    height:2px;
    width:20%;
    background:red;
    position:absolute;
    left:calc(50% - 10%);
    bottom:-5px;
}
/* Home page section two */
#work-card{
    min-height: 12vh;
    height: auto;
    border: none;
    background-color: rgb(245, 245, 245);
}
/* Card hover effects */
#work-card:hover, #feature-card:hover, #contact-card:hover{
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    cursor: pointer;
}
/* Home page section three */
.hSecThree{
    background-color: rgb(246, 246, 246);
}
#feature-card{
    width: 20rem;
    border: none;
}
#fCardText{
    text-align: left;
    color: gray;
}
/* Home page section four */
.homeBgTwo{
    height: 35vh;
}
/* Home page section five */
.hSecFive{
    /* Darkend background image */
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url("../images/homeBg3.jpg");
    background-size: cover;
    background-attachment: fixed;  
}
/* Footer */
#footer{
    color: rgb(167, 167, 167);   
    text-decoration: none;
}
/* ------------------ Main page end ------------------ */
/* ------------------ Contact page ------------------ */
.cSecOne{
    height: 100vh;
    background-image: linear-gradient(to bottom right, rgb(165, 216, 255), rgb(209, 209, 209));
}
#contact-card{
    width: 30rem;
    border: none;
    border: none;
}
#contact-header{
    color:black;
    position:relative; 
}
#contact-header::after, #login-header::after{
    content:'';
    height:2px;
    width:20%;
    background:red;
    position:absolute;
    left:calc(50% - 10%);
    bottom:-5px;
}
/* ------------------ Contact page end ------------------ */
/* ------------------ Register & login page ------------------ */
.form-container{
    height: 89vh;
}
.user_card {
    width: 25rem;
    margin-top: auto;
    margin-bottom: auto;
    background: white;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(75, 75, 75, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.form_container {
    margin-top: 20px;
}
#form-title{
    color: black;
}
.login_btn {
    width: 100%;
    border: none;
    background: rgb(1,123,254) !important;
    color: white !important;
    border-radius: 5px;
    
}
.login_btn:hover{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.login_btn:focus {
    box-shadow: none !important;
    outline: 0px !important;
}
.register_btn {
    width: 100%;
    border: none;
    background: rgb(1,123,254) !important;
    color: white !important;
}
#verify-btn, #register_btn, #submit-details, #submit-mcqs, #resume-download-btn, #start-camera, #click-photo{
    border-radius: 30px;
    width: fit-content;
}
.register_btn:focus {
    box-shadow: none !important;
    outline: 0px !important;
}
.login_container {
    padding: 0 2rem;
}
.input-group-text {
    background: rgb(1,123,254) !important;
    color: white !important;
    height: 100%;
    border: 0 !important;
    border-radius: 0.25rem 0 0 0.25rem !important;
}
/* select{
    appearance: none;
    padding: 1%;
    padding-left: 4%;
    padding-right: 10px;
    padding-top: 3%;
    padding-bottom: 3%;
    width: 100%;
    color: rgb(108,117,125);
    border-color: rgb(208, 208, 208);
    border-radius: 0.25rem 0 0 0.25rem !important;
} */
/* .input_user,
select:focus,
.input_pass:focus {
    box-shadow: none !important;
    outline: 0px !important;
} */
.error-message{
    color: rgb(0, 140, 255);
}
.logreg{
    background-image: linear-gradient(to bottom right, rgb(165, 216, 255), rgb(209, 209, 209));
}
/* ------------------ Register & login page end ------------------ */
/* ------------------ After login ------------------ */
/* ------------------ Navigation ------------------ */
#active_page{
    display:block;
}
#deactive_page{
    display:none;
}
/* ------------------ Navigation end ------------------ */

.bg-card{
    background-color: white;
    border-radius: 10px;
    height: 100%;
    width: 100%;
}
#top-nav{
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
#content {
    width: 100rem;
    min-height: 92vh;
    transition: all 0.3s;
    height: auto;
}
.main-row{
    position: relative;
    min-height: 85vh;
    height: auto;
}
.dashboard-score-cards{
    height: 10vh;
}
.score-card-headers{
    font-size: 1.1rem;
}
.main-containers{
    height: 85vh;
    overflow-y: scroll;
}
.footer_second{
    position: absolute;
    bottom: 0;
    color: rgb(160, 160, 160);
    width: 100%;
}
#page-header{
    color: rgb(51, 51, 51);
}
.scan_upload_row{
    min-height: 50vh;
    height: fit-content;
}
.scan_upload_row>.main-cards{
    min-height: 55vh;
    height: fit-content;
}
.main-cards{
    background-color: white;
    height: auto;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.coming_soon{
    height: 50vh;
}
.blog-container{
    margin-top: 11vh;
    height: 75vh;
    overflow-y: scroll;
    margin-bottom: 5vh;
}
.card-linkedin{
    color: white;
    background-color: rgb(1,119,181, 0.599);
}
.card-website{
    color: white;
    background-color: rgb(25, 119, 1, 0.599);
}
.card-naukri{
    color: white;
    background-color: rgba(237, 26, 37, 0.599);
}
.card-indeed{
    color: white;
    background-color: rgba(215, 155, 2, 0.599);
}
.card-linkedin:hover{
    color: white;
    cursor: pointer;
    background-color: rgb(1,119,181);
}
.card-website:hover{
    color: white;
    cursor: pointer;
    background-color: rgb(25, 119, 1);
}
.card-naukri:hover{
    color: white;
    cursor: pointer;
    background-color: rgba(237, 26, 37);
}
.card-indeed:hover{
    color: white;
    cursor: pointer;
    background-color: rgb(215,153,2);
}
#job-cards{
    color: white;
    text-decoration: none;
}
#btns, #btn-set, #all-que-btn, #next-que-btn, #prev-que-btn{
    border-radius: 30px;
    width: auto;
}
.file-drop-area {
    position: relative;
    display: flex;
    min-height: 280px;
    background-color: rgba(1, 123, 253, 0.035);
    border: 1px dashed rgba(1, 123, 253, 0.035);
    border-radius: 10px;
    color: rgb(69, 69, 69);
}
.file-drop-area:hover{
    color: black;
    cursor: pointer;
    border: 3px dashed rgba(1, 123, 253, 0.1);
}
.choose-file-button {
    flex-shrink: 0;
}
.file-message {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.file-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;
}
.active-nav{
    border-radius: 50px;
    color: black;
    background-color: rgb(243, 243, 243);
}
/* ------------------ Admin add user page ------------------ */
#add-modal, #blog1-modal{
    border-radius: 10px;
    border: none;
    box-shadow: rgba(255, 255, 255, 0.129) 0px 6px 10px;
}
.blog-modal{
    width: 80rem;
    max-height: 80vh;
    overflow-y: scroll;
}
#exampleModalCenter, #exampleModalCenter2{
    background-color: rgba(0, 0, 0, 0.554);
}
#modal-btn, #submit-test-id, #enter-test-btn{
    border-radius: 30px;
}
.hidden-fields, #job-two, #job-three, #job-four, #hide-resumes-col{
    display: none;
}
.table-header{
    position:sticky;
    top: 0 ;
    background-color: white;
}
.user-table{
    border-radius: 20px;
    border: 1px solid rgb(217, 217, 217);
    max-height: 200px;
    overflow-y: auto;
}
table {
    border-collapse: collapse;
    border-spacing: 1;
    width: auto;
    overflow-y: auto;
}
.col-admin-dash{
    height: 40vh;
}
#resume-container{
    overflow-x: scroll;
    max-height: 70vh;
    overflow-x: scroll;
}
/* #screen-table th{
    width: 200px;
    height: 10px;
    background-color: rgb(196, 196, 196);
    position: sticky; 
    top: 0; 
    z-index: 1;
    text-align: center;
} */
#tables{
    border-radius: 6px 6px 6px 6px;
}
th, td {
    padding: 16px;
    vertical-align: middle;
}
.no-row{
    background-color: rgba(128, 128, 128, 0.071);
    border-radius: 20px;
    border: 3px dashed rgb(233, 233, 233);
    color: gray;
}
#no-user-row, #no-job-row, #test-inputs-card, #test-face-verification{
    display: none;
}
#delete-user-btn{
    border: none;
    background-color: transparent;
    border-radius: 30px;
}
#deleteUserModal{
    background-color: rgba(0, 0, 0, 0.554);
}
.slider{
    height: 5px;
    background-color: rgb(229, 229, 229);
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    position: relative;
    border: none;
}
.slider .progress{
    height: 5px;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    border: none;
    background-color: rgb(1,123,253);
}
.range-input{
    position: relative;
    border: none;
    background: none;
}
.range-input input{
    position: absolute;
    top: -10px;
    border: none;
    height: 5px;
    background: none;
    appearance: none;
    pointer-events: none;
}
.range-input input:focus{
    background: none;
    border: none;
}
input[type="range"]::-webkit-slider-thumb{
    height: 17px;
    width: 17px;
    appearance: none;
    background: none;
    border-radius: 20px;
    pointer-events: auto;
    background: rgb(1,123,253);
}
input[type="range"]::-moz-slider-thumb{
    height: 17px;
    width: 17px;
    appearance: none;
    background: none;
    border-radius: 20px;
    pointer-events: auto;
    background: rgb(1,123,253);
}
.job-creation-row{
    height: 50vh;
}
.upload-job-card{
    height: 49vh;
}
.job-cards{
    height: 25vh;
    
}
.job-body{
    height: 23vh;
    overflow-y: scroll;
}
.job-main-row{
    height: 67vh;
    overflow-y: scroll;
}
#submit-filter{
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.filter-head{
    color: gray;
}
.job-table-container{
    border-radius: 20px;
    height: 400px;
    width: 100%;
    overflow-y: scroll;
    border: 1px solid rgb(221, 221, 221);
}
.help-table-container{
    border-radius: 20px;
    width: 95%;
    overflow-y: scroll;
    border: 1px solid rgb(221, 221, 221);
}
.col-job{
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    border-radius: 20px;
}
.col-job:hover{
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 5px;
    cursor: pointer;
}
td{
    word-wrap:break-word
}
#confirm-jobs{
    border-radius: 20px;
    
}
#job_post_url{
    height: 40px;
    border-radius: 50px;
    border: 1px solid rgb(221, 221, 221);
}
#scanning_page{
    height: 87vh;
    overflow-y: scroll;
}
#scanning_page>.scan_upload_row>#fetching-loader{
    line-height: 50vh;
    vertical-align: middle;
}
.dont-show, #skills-container, #duplicate-btn{
    display: none;
}
.resume-table-container{
    border-radius: 20px;
    max-height: 400px;
    width: 62rem;
    overflow-y: scroll;
    border: 1px solid rgb(221, 221, 221);
}
.resume-headers{
    font-size: 13px;
}
.resume-table-container-screening{
    border-radius: 20px;
    max-height: 500px;
    width: 80rem;
    overflow-y: scroll;
    border: 1px solid rgb(221, 221, 221);
}
#screening-filter-rowm{
    height: 15vh;
    overflow-y: scroll;
}

.total-hover:hover{
    color: rgb(1,123,253);
    cursor: pointer;
}
.input-boxes{
    border: 1px solid rgb(210, 210, 210);
    border-radius: 5px;
    height: 40px;
    width: 100%;
}
.input-boxes-rounded{
    border: 1px solid rgb(210, 210, 210);
    border-radius: 20px;
    height: 40px;
    width: 100%;
}
.input-boxes-text{
    border: 1px solid rgb(210, 210, 210);
    border-radius: 5px;
    width: 100%;
}
.card-proctor{
    max-height: 73vh;
    overflow-y: scroll;
}
.gray-font{
    color: rgb(82, 82, 82);
}
#que-cont-manual, .code-input-row, #candidate-row{
    max-height: 70vh;
    overflow-y: scroll;
}
#next-tab, #all-que-btn, #submit-que-btn, #tf-cont, #tf-name, #row-two, #row-three, #row-upload-attachment, #no-resume-row, .no-show{
    display: none;
}
#table-mcq{
    border: 1px solid rgb(210, 210, 210);
    border-radius: 20px;
    max-height: 50vh;
    overflow-y: scroll;
}
#row-two{
    max-height: 81vh;
    overflow-y: scroll;
}
.overlay_effect{
    background-color: rgba(255, 0, 0, 0.199);
}
.main-container{
    scroll-behavior: smooth;
}
.interview-container{
    overflow-y: scroll;
    height: 81vh;
}
.skill-container{
    max-height: 10vh;
    overflow-y: scroll;
}
.create-test-card{
    max-height: 84vh;
    overflow-y: scroll;
}
.form-section{
    border: 0.3px solid rgb(193, 193, 193);
    border-radius: 10px;
    padding: 0% 1% 1% 1%;
    width: 60rem;
    margin: auto;
    margin-bottom: 4%;
}
.form-section-mails{
    border: 0.3px solid rgb(193, 193, 193);
    border-radius: 10px;
    padding: 0% 1% 1% 1%;
    width: 100%;
    margin: auto;
    margin-bottom: 4%;
}
.form-section-job{
    border: 0.3px solid rgb(193, 193, 193);
    border-radius: 10px;
    padding: 0% 1% 1% 1%;
    width: 100%;
    margin: auto;
    margin-bottom: 4%;
}
.form-section-heading{
    margin-top: -1.6%;
    margin-left: 1%;
    background-color: white;
    width: fit-content;
    padding: 0.5% 1%;
    border-radius: 20px;
    border: 0.3px solid rgb(193, 193, 193);
}
.form-section-heading-mails{
    margin-top: -2.6%;
    margin-left: 4%;
    background-color: white;
    width: fit-content;
    padding: 1% 2%;
    border-radius: 20px;
    border: 0.3px solid rgb(193, 193, 193);
}
.valid {
    color: blue;
  }
  .invalid {
    color: red;
  }
/* ------------------ After login end ------------------ */

#footer_a{
    text-decoration: none;
    color: rgb(167, 167, 167);
}

#test-row-home{
    height: 89vh;
}
#email_id, #fullName{
    border-radius: 20px;
}
#test-instruction-card{
    max-height: 85vh;
    overflow-y: scroll;
}
#question-col{
    max-height: 40vh;
    overflow-y: scroll;
}
#mcq-container{
    max-height: 40vh;
    overflow-y: scroll;
}
#timer{
    width: fit-content;
}
.mcq-line{
    height: 0.5px;
    background-color: rgb(204, 204, 204);
}
#mcq-main-container,#completion-row{
    height: 80vh;
    overflow-y: scroll;
}
#blog-row,#faqs-row{
    height: 85vh;
    max-height: 85vh;
    overflow-y: scroll;
    background-color: rgb(241, 241, 241);
}
.blog-cards{
    min-height: 30vh;
}
#job-main-row{
    height: 80vh;
    overflow-y: scroll;
}
.resume-cards{
    max-height: 50vh;
    overflow-y: scroll;
}
.face-verification-cols{
    background-color: rgb(243, 243, 243);
    border-radius: 20px;
}
#video{
    border-radius: 20px;
    height: 160px;
    width: 240px;
}
#ai-msg{
    background-color: rgb(219, 233, 255);
    border-radius: 20px;
    width: fit-content;
}
.page-container-login{
    height: 100vh;
    background-color: rgb(243, 243, 243);
}
.form-cont{
    background-color: white;
    border-radius: 10px;
    min-height: 70vh;
    height: auto;
    width: 70%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.left{
    width: 50%;
    float: left;
    min-height: 70vh;
    height: auto;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items:center;
    background-color: rgb(1,123,253);
}
.right{
    width: 50%;
    float: right;
    min-height: 70vh;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items:center;
}
.input-fields{
    height: 6vh;
    padding: 0% 3%;
    width: 90%;
    border-radius: 5px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

input:focus {
    background-color: rgb(246, 246, 246);
    outline:none !important;
}

.form-error{
    color: rgb(1,123,253);
    padding: 2%;
    text-align: center;
    border-radius: 5px;
    width: 90%;
}
#btn-submit{
    height: 6vh;
    padding: 3%;
    width: 90%;
    border-radius: 5px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
#check-input{
    background: transparent;
    border: 1px solid rgb(78, 78, 78);
}
.label-text, .forgot-text{
    color: gray;
    font-size: 14px;
    cursor: pointer;
}
/* NEWW */
.body-main{
    background-color: rgb(247, 251, 255);
    max-width: 100%;
    overflow-x: hidden;
}

.main-cont{
    width: 100%;
}
.main-left{
    width: 15rem;
    float: left;
}
.main-right{
    width: 85%;
    height: 100%;
    overflow-y: scroll;
    float: right;
}
.login-row{
    height: 4vh;
    width: 100%;
}
.login-info{
    width: 100%;
}
.card-cont{
    height: 100%;
    width: 100%;
    position: relative;
    min-width: fit-content;
    background-color: white;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.side-logo{
    position: absolute; 
    bottom: 0;
}
.side-opt{
    text-decoration: none;
    color: rgb(67, 67, 67);
    font-size: 16px;
}
.side-opt:hover, .side-opt.active{
    color: rgb(57, 57, 57);
    text-decoration: none;
}
.nav-list{
    padding: 2%;
}
.nav-list:hover, .nav-list.active{
    border-radius: 10px;
    background-color: rgb(238, 247, 255);
}
.num-cont{
    height: 6%;
    width: 100%;
}
.num-cards{
    height: 100%;
    width: 20%;
    background-color: white;
    border-radius: 10px;
    color: rgb(57, 57, 57);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.people-jobs-cont, .graph-container{
    height: 40vh;
    width: 100%;
    display: flex;
}
.nothing-to-see{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    /* background-color: white; */
    border-radius: 10px;
    height: 40vh;
}
.no-jobs{
    background-color: rgb(245, 245, 245);
    border-radius: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.no-hirings{
    background-color: rgb(245, 245, 245);
    border-radius: 10px;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.people-jobs-cards, .job-cards, .graph-one, .graph-two{
    background-color: white;
    border-radius: 10px;
    width: 50%;
    height: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.review-job-cards, .resume-screen-table, .test-table-cont{
    background-color: white;
    border-radius: 10px;
    width: 100%;
    height: 80%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.graph-three{
    background-color: white;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.review-job-cont{
    height: 100%;
}
.table-cont{
    height: 86%;
}
.resume-screen-table{
    height: 78vh;
    overflow-y: scroll;
}
.test-table-cont{
    height: 78vh;
    overflow-y: scroll;
}
.table-cont, .review-job-cont, .resume-screen-table, .test-table-cont{
    overflow-y: auto;
    padding: 0% 1%;
}
.table-cont table, .shortlist-table-cont table, .review-job-cont table, .resume-screen-table table, .test-table-cont table{
    width: 100%;
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 0 0.5em;
}
.table-cont table thead, .shortlist-table-cont table thead, .review-job-cont table thead, .resume-screen-table table thead, .test-table-cont table thead{
    position: sticky;
    top: 0;
    border-radius: 5px;
    box-shadow: rgba(106, 106, 106, 0.12) 0px 1px 3px, rgba(106, 106, 106, 0.12) 0px 1px 2px;
    background-color: rgb(236, 245, 255);
}
.table-cont tbody tr, .shortlist-table-cont tbody tr, .review-job-cont tbody tr, .resume-screen-table tbody tr, .test-table-cont tbody tr{
    border-radius: 5px;
    box-shadow: rgba(106, 106, 106, 0.12) 0px 1px 3px, rgba(106, 106, 106, 0.12) 0px 1px 2px;
}
.rounded-left{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.rounded-right{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.graph{
    padding: 0% 3% 3% 3%;
    height: 80%;
}
.shorlist-cont{
    height: 90%;
    width: 100%;
}
.shortlist-graph{
    width: 50%;
    height: 80%;
}
.shortlist-table{
    height: 100%;
    width: 50%;
}
.shortlist-table-cont{
    height: 100%;
    overflow-y: auto;
    padding: 0% 1%;
}
.approved, .rejected, .process{
    color: black;
    border-radius: 5px;
}
.approved{
    background-color: rgba(113, 208, 157, 0.21);
}
.rejected{
    background-color: rgba(255, 0, 0, 0.21);
}
.process{
    background-color: rgba(114, 152, 235, 0.21);
}
.graph-shortlist{
    height: 50%;
}
/* Create job */
.create-job-container{
    height: 84vh;
    width: 100%;
}
.create-job-manual, .create-job-upload{
    border-radius: 10px;
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.create-job-manual{
    height: fit-content;
    width: 60%;
    max-height: 84vh;
    overflow-y: scroll;
}
.create-job-upload{
    height: fit-content;
    width: 40%;
}
.form-control{
    background-color: black;
}
.form-fields{
    border: none;
    height: fit-content;
    border-radius: 5px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 0% 3%;
}
.job-title-field{
    height: 5vh;
    width: 100%;
}
.screen-email-field, .screen-phone-field{
    height: 5vh;
    width: 50%;
}
.screen-id-field{
    height: 5vh;
    width: 20%;
}
.screen-comment-field{
    height: 15vh;
    width: 100%;
}
.job-description-field{
    margin-top: 2%;
    padding-top: 1%;
    height: 15vh;
    width: 100%;
}
.job-skill-field{
    margin-top: 1%;
    margin-right: 2%;
    width: 70%;
    height: 5vh;
}
.job-domain-field{
    margin-top: 1%;
    width: 30%;
    height: 5vh;
    color: gray;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
}
.job-vacancy-field, .job-location-field{
    width: 50%;
    margin-top: 2%;
    height: 5vh;
}
.job-vacancy-field{
    margin-right: 2%;
}
.job-about-field{
    width: 100%;
    padding-top: 1%;
    margin-top: 2%;
    height: 15vh;
}
.job-benefit-field{
    width: 100%;
    margin-top: 1%;
    height: 5vh;
}
.job-minsal-field, .job-maxsal-field{
    width: 50%;
    height: 5vh;
    margin-top: 2%;
}
.job-salto-field{
    height: 5vh;
    margin-top: 3%;
    margin-right: 2%;
    color: gray;
}
.job-minsal-field{
    margin-right: 2%;
}
#id_test_name, #id_test_domain, #id_test_start{
    width: 20%;
    height: 5vh;
}
.create-job-submit, .filter-resume-submit{
    margin-top: -1%;
    text-align: center;
    width: 20%;
}
.filter-domain-field{
    height: 5vh;
    width: 20%;
    margin-right: 2%;
}
.search-header{
    padding-top: 1.5%;
    margin-right: 2%;
}
.filter-skill-field{
    height: 5vh;
    width: 20%;
    margin-right: 2%;
}
#id_resume_domain, #id_resume_skills, #id_resume_total_experience, #id_resume_education{
    height: 5vh;
    width: 15%;
    margin-right: 2%;
}
.filter-title-field{
    height: 5vh;
    width: 20%;
    margin-right: 2%;
}
.filter-search-button{
    width: 10%;
}
.proctor-create-cont{
    height: 85vh;
    width: 100%;
}
.proctor-create-instructions, .proctor-create-form{
    background-color: white;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.proctor-create-instructions{
    width: 30%;
    height: 70%;
}
.proctor-create-form{
    width: 70%;
    overflow-y: scroll;
    height: 100%;
}
.test-form-job, .test-form-type, .test-form-domain, .test-form-name, .test-form-duration, .test-form-pass, .test-form-from, .test-form-to, .test-form-zone{
    height: 5vh;
    width: 33.4%;
}
.test-form-description{
    height: 15vh;
    width: 100%;
}
.padding-minus{
    margin-top: -1%;
}
.test-form-code, .test-form-mcq, .test-form-gmail-sub{
    width: 33.4%;
    height: 5vh;
}
.test-form-gmail-body, .test-form-gmail-id{
    height: 15vh;
    width: 50%;
}
.interview-create-cont{
    height: 86vh;
    width: 100%;
}
.interview-instructions{
    width: 30%;
    padding: 2%;
    height: fit-content;
    background-color: white;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.interview-form{
    width: 70%;
    padding: 2%;
    height: 100%;
    background-color: white;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.interview-interviewee,.interview-type, .interview-location,
.interview-from, .interview-to, .interview-zone{
    height: 5vh;
    width: 33.4%;
}
.interview-domain, .interview-title{
    height: 5vh;
    width: 50%;
}
.interview-description{
    width: 100%;
    padding-top: 1%;
    height: 20vh;
}
.interview-skills, .interview-emails{
    height: 15vh;
    padding-top: 1%;
    width: 50%;
}
.form-gap, .interview-gap{
    height: 5vh;
}
.interview-gap{
    width: 15%;
}
.add-user-form{
    height: 50vh;
    width: 40%;
    border-radius: 10px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.form-username,.form-email{
    height: 5vh;
    width: 100%;
}
.form-pass{
    height: 5vh;
    width: 50%;
}

.template-textarea{
    min-height: 20vh;
}
.cred-textarea{
    height: 30vh;
}
/* Remove */
/* rgba(1,123,255, 0.7) */
.loader {
    width: 12px;
    height: 12px;
    margin-top: 35%;
    margin-left: 45%;
    border-radius: 50%;
    position: absolute;
    color: rgba(1,123,255, 0.7);
    box-sizing: border-box;
    animation: animloader 1s linear infinite alternate;
  }
  
  @keyframes animloader {
    0% {
      box-shadow: -38px -12px ,  -14px 0,  14px 0, 38px 0;
    }
    33% {
      box-shadow: -38px 0px, -14px -12px,  14px 0, 38px 0;
    }
    66% {
      box-shadow: -38px 0px , -14px 0, 14px -12px, 38px 0;
    }
    100% {
      box-shadow: -38px 0 , -14px 0, 14px 0 , 38px -12px;
    }
  }
  .password-similarity, .password-checklist, .valid-email{
    position: absolute;
    text-align: left;
    border-radius: 10px;
    font-size: 0.9vw;
    background: #ebecee7e;
    display: none;
  }
  .valid-email{
    margin-top: -18rem;
    margin-left: 34%;
    padding: 1% 1% 0% 1%;
    width: fit-content;
  }
  .password-similarity{
    margin-top: -10rem;
    margin-left: 34%;
    padding: 1% 1% 0% 1%;
    width: fit-content;
  }
  .password-checklist{
    margin-top: -14rem;
    margin-left: 34%;
    padding: 1% 0% 0% 0%;
    width: 15rem;
  }
  #id_password1:focus ~ .password-checklist, #id_password2:focus ~ .password-similarity, #id_email:focus ~ .valid-email{
    display: block;
  }
  .checklist{
    list-style: none;
  }
  .list-item{
    padding-left: 1%;
  }
  .list-item::before{
    content: '\f00d';
    padding-right: 3%;
    font-family: FontAwesome;
    color: red;
  }
  .list-item.checked{
    opacity: 0.5;
  }
  .list-item.checked::before{
    content: '\f00c';
    font-family: FontAwesome;
    color: green;
  }
  .note-container{
    background-color: rgba(255, 0, 0, 0.098);
    border-radius: 10px;
  }
  .feedback-form-container{
    background-color: rgb(240, 240, 240);
    border-radius: 10px;
  }
  .form1{
    background-color: rgb(240, 240, 240);
    border-radius: 10px;
    width: fit-content;
    text-decoration: none;
  }
  #short-ans-container{
    display: none;
  }
  .form-templates-container{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    /* padding-top: 2.5%; */
    margin: 1vh 1rem;
    border-radius: 10px;
    height: 14vh;
    /* font-size: 1.2vw; */
    /* text-align: center; */
    background-color: white;
    /* text-decoration: none; */
  }
  .small-font{
    font-size: 14px;
  }
  .form-templates-container:hover{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    cursor: pointer;
  }
  .no-forms{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    background-color: rgb(242, 242, 242);
    border-radius: 10px;
    text-align: center;
    height: 20vh;
    line-height: 20vh;
    margin: 0rem 1rem;
    vertical-align: center;
  }
.rounds-container{
    background-color: #fafafa;
    border-radius: 10px;
}

.text-bg{
    background-color: #fafafa;
    border-radius: 10px;
    width: fit-content;
    padding: 1% 3% 1% 1%;
}

.hidden-containers{
    display: none;
}

.cursor-hover:hover{
    cursor: pointer;
}
.deatils-wrapper{
    display:flex;
}
.deatils-wrapper p{
    margin: 10px;
}
.col-layout{
    border: 0.5px solid rgb(217, 217, 217);
    height: 50vh;
    max-height: 60vh;
    overflow-y: scroll;
}
.set-rows{
    max-height: 60vh;
    overflow-y: scroll;
}
.coding-question-container-row{
    max-height: 70vh;
    overflow-y: scroll;
}
.test-case-container{
    max-height: 20vh;
    overflow-y: scroll;
}
.editor {
    width: 100%;
    height: 24vh;
    border: 1px solid #ccc;
}
.divider {
    border: none;
    height: 1px;
    background-color: #9e9e9e;
    margin: 20px 0; /* Optional: Add some space around the line */
}
.candidate-table-container{
    max-height: 65vh;
    overflow-y: scroll;
}
.valid {
    border-color: green;
    color: green;
}
.invalid {
    border-color: rgb(255, 0, 0);
}
.custom_input{
    border-radius: 5px;
    height: 38px;
    width: 100%;
    padding-left: 1%;
    border: 1px solid rgb(201, 201, 201);
}

.email-input {
    width: 100%;
    border: 1px solid #CED4D9;
    border-radius: 5px;
    padding: 5px;
}

.email-input.invalid {
    color: red;
}

.email-input.valid {
    color: green;
}
.hiring-round-container{
    height: 40vh;
    overflow-y: scroll;
}
.hiring-round-cards{
    border: 1px solid rgb(214, 214, 214);
    border-radius: 10px;
    height: 30vh;
}
.proctor-home-card{
    height: 85vh;
}
.instructions-container{
    background-color: rgb(255, 219, 219);
    border-radius: 10px;
}
.proctor-login-container{
    border: 1px solid rgb(210, 210, 210);
    border-radius: 10px;
}
.small-font{
    font-size: 12px;
}
.rounds-main-container{
    height: 34vh;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    /* overflow: auto; */
    background-color: #F7FBFF;
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    box-shadow: rgba(113, 113, 113, 0.1) 0px 4px 6px -1px inset, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px inset;
    padding: 2%;
}
.round-cards{
    width: 30%;
    height: 100%;
    background-color: white;
    padding: 1%;
    border-radius: 10px;
    flex-shrink: 0;
    position: relative;
    box-shadow: rgba(113, 113, 113, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.round-cards::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -50px; /* Adjust based on the desired gap between cards */
    width: 50px; /* Length of the dashed line */
    border-top: 3px dashed #acd6ff;
    transform: translateY(-50%);
}
.round-info-container{
    background-color: rgb(250, 250, 250);
    height: 80%;
    border-radius: 10px;
}
.add-round-container{
    background-color: #f7fbff;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown-menu{
    width: 270px;
    height: 20vh;
    overflow-y: scroll;
    padding: 2%;
    border: none;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

/* ---------------------- Progress bar ---------------------- */
.bar {
    --d: 1rem;       /* arrow depth */
    --gap: 0.3rem;   /* arrow thickness, gap */
    display: flex;
    margin-right: var(--d);
  }
  
  .bar-step {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.6rem var(--d);
    margin-right: calc(var(--d) * -1 + var(--gap));
    background: #e3f1ff;
    color: gray;
    clip-path: polygon(
      0% 0%,
      calc(100% - var(--d)) 0%,
      100% 50%,
      calc(100% - var(--d)) 100%,
      0% 100%,
      var(--d) 50%
    );
  }
  
  .bar-step:first-child {
    clip-path: polygon(
      0% 0%,
      calc(100% - var(--d)) 0%,
      100% 50%,
      calc(100% - var(--d)) 100%,
      0% 100%
    );
  }
  .bar-step.active {
    background: #017BFE;
    color: #fff;
  }
  .bar-step:hover{
    cursor: pointer;
  }
  .hidden{
    display: none;
  }
  /* Table Wrapper */
.table-wrapper {
    max-height: 80vh;
    overflow-y: scroll;
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 5;
}
.bg-light-blue{
    background: rgb(247,251,255);
    border-radius: 10px; 
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.bg-light-blue:hover{
    background: #017bfdb9;
    color: white;
    cursor: pointer;
}
.active-light-blue{
    background: #007bff;
    color: white;
}
.candidate-outer-container{
    background-color: rgb(247,251,255);
    height: 100vh;
}
.bg-information{
    background-color: rgba(255, 0, 0, 0.128);
    border-radius: 10px;
    padding-top: 1%;
    padding-bottom: 1%;
}