@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700;800&display=swap');

body {
    font-family: 'Baloo 2', cursive;
    font-size: 14px;
    color: #0C0E3A;
}




.login_section {
    background: #0C0E3A;
    width: 100%;
    height: 100%;
    position: absolute;
    text-align: center;
}

.logo_img {
    width: 168px;
    margin: auto;
    margin-bottom: 10px;
}

    .logo_img img {
        width: 100%;
    }

.login_box {
    padding-top: 10%;
}

.loginfrom_box {
    padding: 30px;
    max-width: 400px;
    text-align: left;
    margin: auto;
    background: #15184D;
    border: dashed 3px #323AB9;
    border-radius: 16px;
}

.login_lable {
    display: block;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.login_input {
    outline: none;
    background: #0C0E3A;
    height: 50px;
    border-radius: 50px;
    width: 100%;
    border: 0px;
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
}

.login_lable span {
    color: #FF0004;
}

.login_box ::placeholder {
    color: #4A4FAC;
    opacity: 1;
}

.login_box :-ms-input-placeholder {
    color: #4A4FAC;
}

.login_box ::-ms-input-placeholder {
    color: #4A4FAC;
}

.btn_login {
    background: #D933E1;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    border: 0px;
    width: 100%;
    color: #fff;
    padding: 7px;
    margin-top: 20px;
}

.ripple {
    background-position: center;
    transition: background 0.8s;
}

    .ripple:hover {
        background: #A012A7 radial-gradient(circle, transparent 1%, #A012A7 1%) center/15000%;
    }

    .ripple:active {
        background-color: #FA8EFF;
        background-size: 100%;
        transition: background 0s;
    }


header {
    background: #0C0E3A;
    padding-left: 50px;
    padding-right: 50px;
}

.header_logo {
    width: 168px;
    padding-top: 8px;
}

    .header_logo img {
        width: 100%;
    }

/*ul.menu_list{ list-style: none; margin-top: 20px; font-size: 16px; font-weight: 700;}
ul.menu_list li{ display: inline-block; margin-right: 40px; }
ul.menu_list li a{ color: #fff; text-decoration: none; }
ul.menu_list li ul{ visibility: hidden; opacity: 0; position: absolute; transition: all 0.5s ease; display: none}
ul.menu_list li:last-child{ float: right; font-size: 14px; font-weight: 400;}


*/


ul.menu_list {
    list-style-type: none;
    list-style: none;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 700;
}

    ul.menu_list > li {
        display: inline-block;
        margin-right: 40px;
        position: relative;
    }

        ul.menu_list > li a {
            color: #fff;
            text-decoration: none;
        }

        ul.menu_list > li:last-child {
            float: right;
        }

        /* Styles for the submenu */
        ul.menu_list > li:hover ul.submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

ul.submenu {
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    position: absolute;
    top: 100%;
    left: 0;
    list-style-type: none;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 6px;
    background: #fff;
    margin: 0px;
    padding: 0px;
    width: 250px;
}

    ul.submenu > li {
        display: block;
        padding: 10px;
    }

        ul.submenu > li a {
            color: #000;
        }



/* Style for the underline animation */
.underline-animation {
    position: relative;
    display: inline-block;
}

    .underline-animation::before {
        content: "";
        position: absolute;
        width: 0;
        height: 3px; /* Adjust the thickness of the underline */
        bottom: -2px;
        left: 50%;
        background-color: #D933E1; /* Adjust the color of the underline */
        transition: width 0.2s ease-in-out, left 0.2s ease-in-out;
    }

    .underline-animation:hover::before {
        width: 100%;
        left: 0;
    }







.userimgbox {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #000;
    display: inline-block;
    background-size: cover !important;
    position: relative;
    top: -5px;
}

.usernamebox {
    position: relative;
    top: -20px;
    margin-left: 10px;
}

    .usernamebox::after {
        content: '';
        background: url("../images/userarrow.svg") no-repeat;
        width: 12px;
        height: 8px;
        display: inline-block;
        margin-left: 10px;
    }

.mainsection_box {
    padding: 50px;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    margin: 0px;
    padding: 0px;
}

h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0px;
    padding: 0px;
}

.waitingfor_resultsbox {
    margin-top: 30px;
}

.tablebox {
    width: 100%;
    font-size: 13px;
    margin-top: 20px;
}

    .tablebox thead {
        background: #3D408B;
        color: #fff;
    }

        .tablebox thead tr th {
            padding: 10px;
        }

    .tablebox tbody tr td {
        padding: 10px;
    }

    .tablebox tbody tr:nth-child(even) {
        background-color: #E5E6FF;
    }

    .tablebox thead tr th:first-child {
        border-top-left-radius: 12px;
    }

    .tablebox thead tr th:last-child {
        border-top-right-radius: 12px;
    }


    .tablebox tbody tr:last-child td:first-child {
        border-bottom-left-radius: 12px;
        border: 0px;
    }

    .tablebox tbody tr:last-child td:last-child {
        border-bottom-right-radius: 12px;
        border: 0px;
    }


    .tablebox tbody tr {
        border-left: solid 1px #E5E6FF;
        border-right: solid 1px #E5E6FF;
        border-bottom: solid 1px #E5E6FF;
    }



.register_samplebox {
    margin-top: 30px;
}

.dashboard_box {
    background: #0C0E3A;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    height: 100%
}

.count_box {
    font-size: 48px;
    font-weight: 700;
}

.mt_30 {
    margin-top: 30px;
}

.dashboard_boxwhite {
    height: 100%;
    background: #fff;
    border-radius: 12px;
    color: #0C0E3A;
    border: dashed 3px #0C0E3A;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.row_flex {
    display: flex;
    flex-wrap: wrap;
}


.text1 {
    font-size: 16px;
    font-weight: 700;
    color: #B7B7C3;
}

.text2 {
    font-size: 26px;
    font-weight: 700;
    color: #B7B7C3;
}

.text3 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.text4 {
    font-size: 16px;
    font-weight: 700;
    color: #0C0E3A;
}


.register_samplebtn {
    background: #D933E1;
    display: block;
    margin-top: 30px;
    border-radius: 50px;
    color: #fff;
    font-size: 32px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
}

.recent_arrivals {
    margin-top: 30px;
}

.selectdropdown_box {
    width: 100%;
    border: solid 3px #2E3259;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 20px;
}


ul.step_listbox {
    list-style: none;
    padding: 0px;
    margin: 0px;
    margin-top: 30px;
    margin-bottom: 30px;
}

    ul.step_listbox li {
        background: #F9F9F9;
        color: #E3E0E0;
        display: block;
        font-size: 26px;
        font-weight: 700;
        padding: 15px;
        border-radius: 12px;
        margin-bottom: 15px;
    }

.step_active {
    background: #D933E1 !important;
    color: #fff !important;
    position: relative;
}


    .step_active::after {
        content: '';
        background: url("../images/steparrow.svg") no-repeat;
        width: 34px;
        height: 39px;
        display: inline-block;
        position: absolute;
        right: -15px;
    }

.register_text {
    font-size: 18px;
    font-weight: 700;
}

.register_number {
    font-size: 50px;
    font-weight: 700;
}


.scenario_mainbox {
    background: #0C0E3A;
    width: 100%;
    border-radius: 12px;
    margin-top: 30px;
    padding: 30px;
}

.sampleno_text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.sampleno_count {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
}


.scenario_box {
    background: #15184D;
    border-radius: 12px;
    border: dashed 3px #323AB9;
    margin-bottom: 25px;
    cursor: pointer;
    padding-bottom: 25px;
}

    .scenario_box:hover {
        box-shadow: 0px 0px 25px rgba(245, 0, 255, 0.66);
    }


.scenario_title {
    border-radius: 12px;
    color: #fff;
    padding: 15px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    font-size: 18px;
    font-weight: 700;
}

ul.scenario_listbox {
    list-style: none;
    color: #fff;
    margin: 15px;
    padding: 0px
}

    ul.scenario_listbox li {
        display: block;
        margin-top: 15px;
    }

        ul.scenario_listbox li::before {
            content: '';
            background: url(../images/tickicon.svg) no-repeat;
            width: 16px;
            height: 16px;
            display: inline-block;
            background-size: 100%;
            margin-right: 10px;
            position: relative;
            top: 4px;
        }

a {
    text-decoration: none;
    color: #0C0E3A;
}

    a:hover {
        text-decoration: none;
    }



.search_box {
    background: #0C0E3A;
    width: 100%;
    border-radius: 12px;
    padding: 15px;
    position: relative
}

.inputsearchbox {
    outline: none;
    width: 100%;
    color: #fff;
    font-size: 16px;
    height: 55px;
    border-radius: 50px;
    border: 0px;
    background: #3D408B;
    padding: 20px;
}

    .inputsearchbox::placeholder {
        color: #B8BBFD;
        opacity: 1;
    }

    .inputsearchbox:-ms-input-placeholder {
        color: #B8BBFD;
    }

    .inputsearchbox::-ms-input-placeholder {
        color: #B8BBFD;
    }


.inputsearch_btn {
    height: 55px;
    background: #7E81CC;
    border: 0px;
    border-radius: 50px;
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 110px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.text_muted {
    color: #E3E0E0;
}

.vehicle_numbertext {
    float: right;
}


.test_box {
    display: block;
    border-radius: 12px;
    background: #DA33E2;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    margin-bottom: 15px;
	position: relative;
}

.vehicle_number {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}






.test_boxactive {
    background: url(../images/selectbg.svg) no-repeat;
    display: inline-block;
    width: 36px;
    height: 36px;
    position: absolute;
    z-index: 9999;
    background-size: 100%;
    left: 10px;
    top: 20px;
}



.savebtn_box {
    text-align: right;
    margin-top: 30px;
}

.save_btn {
    background: #D933E1;
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    padding: 15px 50px;
}

    .save_btn:hover {
        color: #fff;
    }

.sample_btn {
    background: #D933E1;
    color: #fff;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    margin-left: 15px;
    display: inline-block;
    padding: 15px 30px;
}

.mb_20 {
    margin-bottom: 20px;
}

.mt_20 {
    margin-top: 20px;
}


.btn_right {
    background: #D933E1;
    float: right;
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    padding: 15px 50px;
}

    .btn_right:hover, .btn_right:focus {
        color: #fff;
        text-decoration: none;
    }

.modal-title {
    font-size: 24px;
    font-weight: 700;
}


.popup_formbox {
    padding-left: 25px;
    margin-right: 25px;
}

.popup_lable {
    display: block;
    color: #0C0E3A;
    font-weight: 700;
    margin-bottom: 10px;
}

.popup_input {
    outline: none;
    background: #fff;
    height: 50px;
    border-radius: 8px;
    width: 100%;
    border: 2px solid #0C0E3A;
    color: #0C0E3A;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
}

.popup_savebtn {
    display: block;
    font-size: 18px;
    font-weight: 700;
    background: #D933E1;
    border: 0px;
    border-radius: 8px;
    color: #fff;
    width: 100%;
    padding: 15px;
    margin-bottom: 30px;
}

.modal-header {
    border-bottom: 0px;
    padding-left: 25px;
    padding-right: 25px;
}

.popup_checkbox {
    width: 20px;
    height: 20px;
    position: relative;
    top: 4px;
    left: 10px;
}


.dashboard_boxmanager {
    background: #0C0E3A;
    border-radius: 12px;
    color: #fff;
    text-align: left;
    padding: 20px;
}

.dashboard_boxmanager_white {
    background: #fff;
    border-radius: 12px;
    color: #0C0E3A;
    border: dashed 3px #0C0E3A;
    text-align: left;
    padding: 20px;
}

.text3_manager {
    font-size: 26px;
    font-weight: 700;
    color: #0C0E3A;
}

.text1_manager {
    font-size: 16px;
    font-weight: 700;
    color: #0C0E3A;
}

.text2_manager {
    font-size: 26px;
    font-weight: 700;
    color: #0C0E3A;
}

.sample_searchbox {
    margin-top: 30px;
    position: relative;
}


.inputsample_search {
    width: 98%;
    border: solid 3px #2E3259;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 20px;
}

    .inputsample_search:focus {
        outline: none;
    }



.inputsample_searchbtn {
    height: 47px;
    background: #0C0E3A;
    border: 0px;
    border-radius: 50px;
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 110px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}



.filter_span {
    display: inline-block;
    background: #F0F1FF;
    border-radius: 50px;
    padding: 5px 15px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

    .filter_span:hover {
        background: #D933E1;
        color: #fff;
    }

    .filter_span:focus {
        background: #D933E1;
        color: #fff;
    }






/* The container */
.checkboxwrap {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .checkboxwrap input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: solid 1px #d933e1;
}

/* On mouse-over, add a grey background color */
.checkboxwrap:hover input ~ .checkmark {
    background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.checkboxwrap input:checked ~ .checkmark {
    background-color: #d933e1;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkboxwrap input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkboxwrap .checkmark:after {
    left: 8px;
    top: 3px;
    width: 9px;
    height: 15px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}








.otherinfo_lable {
    display: block;
    font-weight: 700;
}

.otherinfo_input {
    outline: none;
    background: #fff;
    height: 50px;
    border-radius: 8px;
    width: 100%;
    border: 2px solid #0C0E3A;
    color: #0C0E3A;
    padding: 10px;
    margin-bottom: 10px;
}

.otherinfo_textarea {
    outline: none;
    background: #fff;
    height: 150px;
    border-radius: 8px;
    width: 100%;
    border: 2px solid #0C0E3A;
    color: #0C0E3A;
    padding: 10px;
    margin-bottom: 10px;
    resize: none;
}

.testype_box {
    background: #E5E6FF;
    border: dashed 3px #0C0E3A;
    border-radius: 12px;
    padding-top: 10px;
    margin-top: 10px;
}

.testype_formbox {
    padding-left: 10px;
    margin-right: 10px;
}



.btn_add {
    background: #0C0E3A;
    float: right;
    margin-left: 10px;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    padding: 5px 20px;
}

    .btn_add:hover, .btn_add:focus {
        color: #fff;
        text-decoration: none;
    }

.samples_cartbox {
    box-shadow: 0px 0px 26px rgba(0, 0, 0, 0.16);
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    position: relative;
    margin-bottom: 30px;
}

.samples_testbox {
    font-size: 16px;
    font-weight: 700;
    color: #BABABA;
    padding-top: 10px;
}

.samples_cartpercent {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
}


.samples_cartcheckbox {
    position: absolute;
    top: 15px;
    right: 15px;
}

.samplecart_spanbox {
    color: #BABABA;
    font-size: 25px;
    font-weight: 700;
}




.samples_cartpercentspan {
    background: url(../images/cart_icon.svg) no-repeat;
    width: 18px;
    height: 37px;
    display: inline-block;
    background-size: 100%;
    position: relative;
    top: 8px;
}





/* The container */
.checkboxwrap_nolabel {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .checkboxwrap_nolabel input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .checkboxwrap_nolabel .checkmark {
        position: absolute;
        top: -7px;
        left: 0;
        height: 25px;
        width: 25px;
        background-color: #fff;
        border: solid 1px #d933e1;
    }

    .checkboxwrap_nolabel input:checked ~ .checkmark {
        background-color: #d933e1;
    }

        .checkboxwrap_nolabel input:checked ~ .checkmark:after {
            display: block;
        }

    .checkboxwrap_nolabel .checkmark:after {
        left: 8px;
        top: 3px;
        width: 9px;
        height: 15px;
        border: solid white;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .checkboxwrap_nolabel:after {
        content: "";
        position: absolute;
        display: none;
    }

.lightblue_box {
    background: #E5E6FF;
    border-radius: 16px;
    padding: 30px;
    
}

.text_lable {
    display: block;
    font-weight: 700;
}

.form_input {
    outline: none;
    background: #fff;
    height: 50px;
    border-radius: 8px;
    width: 100%;
    border: 2px solid #0C0E3A;
    color: #0C0E3A;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
}

.mt_40 {
    margin-top: 40px;
}

.whitebox {
    background: #fff;
    border: dashed 3px #0C0E3A;
    border-radius: 12px;
    padding: 20px;
    margin-top: 10px;
}

.scroll_box {
    background: #E5E6FF;
    height: 400px;
    overflow-y: scroll;
    border-radius: 16px;
    padding: 15px;
    margin-top: 20px;
}

.scroll_box_search {
    width: 100%;
    border-radius: 12px;
    height: 45px;
    margin-bottom: 30px;
    border: 0px;
    padding: 15px;
    outline: none;
}

.button_box {
    text-align: center;
    margin-top: 130px;
}


.nextbtn {
    background: url("../images/nextbtn.svg") no-repeat;
    width: 106px;
    height: 34px;
    display: block;
    background-size: 100%;
    margin: auto;
    margin-bottom: 10px;
}

.backbtn {
    background: url("../images/backbtn.svg") no-repeat;
    width: 106px;
    height: 34px;
    display: block;
    background-size: 100%;
    margin: auto;
    margin-bottom: 10px;
}

.nextbtnall {
    background: url("../images/nextbtnall.svg") no-repeat;
    width: 106px;
    height: 34px;
    display: block;
    background-size: 100%;
    margin: auto;
    margin-bottom: 10px;
}

.backbtnall {
    background: url("../images/backbtnall.svg") no-repeat;
    width: 106px;
    height: 34px;
    display: block;
    background-size: 100%;
    margin: auto;
    margin-bottom: 10px;
}



.btn_primary {
    background: #D933E1;
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    padding: 15px 50px;
    border: 2px solid #D933E1;
}

.btn_white {
    background: #fff;
    color: #D933E1;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    padding: 15px 50px;
    border: 2px solid #D933E1;
}












.userprofile_box {
    border: 4px dashed #0c0e3a;
    background: #fff;
    border-radius: 16px;
    padding: 40px 20px;
}

.userprile_imgbox {
    background: #fff;
    border: 5px solid #e5e6ff;
    width: 150px;
    height: 150px;
    padding: 7px;
    border-radius: 50%;
    margin: auto;
}

    .userprile_imgbox img {
        background-size: contain;
        width: 100%;
        border-radius: 50%;
    }

.userprile_popupimg {
    background: #fff;
    border: 5px solid #e5e6ff;
    width: 100px;
    height: 100px;
    padding: 7px;
    border-radius: 50%;
    float: left;
}

    .userprile_popupimg img {
        background-size: contain;
        width: 100%;
        border-radius: 50%;
    }

.popupuser_name {
    margin-top: 40px;
    display: inline-block;
    margin-left: 20px;
}

.userrole_checkbox {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
    line-height: 25px;
    margin-left: 10px;
}



.tablebox_userrole {
    width: 100%;
    margin-top: 10px;
}


    .tablebox_userrole tbody tr {
        border: solid 1px #E5E6FF;
    }

        .tablebox_userrole tbody tr td {
            padding: 10px;
        }

            .tablebox_userrole tbody tr td:first-child {
                font-size: 14px;
                font-weight: 700;
            }

            .tablebox_userrole tbody tr td:last-child {
                text-align: right;
            }

.roles_listbox {
    margin-top: 20px;
}

.userimgbox_text {
    text-align: center;
    font-weight: 700;
    color: #B2B2C0;
    margin-top: 10px;
}

.userupload_btnbox {
    text-align: center;
    margin-top: 10px;
}

.upload_btn {
    background: #D933E1;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    padding: 10px 35px;
    text-decoration: none;
    border: solid 1px #D933E1;
}

    .upload_btn:hover, .upload_btn:focus {
        color: #fff;
        text-decoration: none;
    }

.reset_btn {
    background: #fff;
    color: #D933E1;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    padding: 10px 35px;
    text-decoration: none;
    border: solid 1px #D933E1;
}

    .reset_btn:hover, .reset_btn:focus {
        color: #D933E1;
        text-decoration: none;
    }


.validation-message {
    color: #FF0000;
}
button{ border:0px;}

.card_bgbox {
    background: #0c0e3b;
    color: #ffffff;
}
.card_box {
    border: solid 1px #0c0e3c;
}



.nav-link {
    background: #fff !important;
    color: #000 !important;
    font-size: 16px;
    font-weight: 600;
    border: 0px !important;
}


.active {
    background: #d933e1 !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    border: 0px !important;
}

.tab-content > .tab-pane {
    background: #fff !important;
}

.nav-tabs{ margin-left:30px;}


.role_btn{   
	background: url("../images/role_icon.svg") no-repeat;
    width: 25px;
    height: 25px;
	display: inline-block; cursor: pointer;
}

.edit_btn{   
	background: url("../images/edit_icon.svg") no-repeat;
    width: 25px;
    height: 25px;
	display: inline-block; cursor: pointer;
}

.delete_btn{   
	background: url("../images/delete_icon.svg") no-repeat;
    width: 25px;
    height: 25px;
	display: inline-block; cursor: pointer;
}

.mr_10{margin-right: 10px;}






.add_edittextbox{ font-weight: 16px; font-weight: 700; margin-top: 30px; text-align: right;}
.add_edittextbox a{ text-decoration: none; color: #0C0E3A}
.add_edittextbox a:hover{ text-decoration: none; color: #0C0E3A}


.add_edittest_table{ margin-top: 0px; margin-bottom: 30px;}


.add_edittest_icon {
    background: url(../images/selectbg.svg) no-repeat;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: 100%;
    float: right;
    position: relative;
    top: -1px;
    right: 30px;
}



.cardbox{ border-radius: 16px; background: #fff; box-shadow: 0px 0px 26px rgba(0, 0, 0, 0.16); padding: 20px 20px;}

 
 


.container_radio {
  display:inline-block;
  position: relative;
  padding-left: 35px;
  margin-top: 15px;
  cursor: pointer;
 
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
margin-right: 20px;	
}

/* Hide the browser's default radio button */
.container_radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.container_radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container_radio:hover input ~ .checkmark {
  background-color: #FDD3FF;
}

/* When the radio button is checked, add a blue background */
.container_radio input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.container_radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container_radio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container_radio .checkmark:after {
    top: 2px;
    left: 2px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #D933E1;
}

.unit_bgbtn{ border-radius: 8px; background: #e5e6ff; padding: 7px 8px; display: inline-block; cursor: pointer; margin-right: 7px;}
.unit_bgbtn:hover{ background: #FDCCFF;} 

.unit_bgbtn_active{ background: #D933E1; color: #fff;}
.unit_bgbtn_active:hover{ background: #D933E1; color: #fff;}
.unit_rightbox{ text-align: right;}


.graph_box img{ width: 100%;}

ul.item_list{ list-style: none; padding: 0px; margin: 0px;}
ul.item_list li{ display: block;}

ul.item_list li ul{ margin-left: 10px;}  






/* The container */
.itemlist_wrap {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .itemlist_wrap input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.itemlist_wrap .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: solid 1px #d933e1;
}

/* On mouse-over, add a grey background color */
.itemlist_wrap:hover input ~ .checkmark {
    background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.itemlist_wrap input:checked ~ .checkmark {
    background-color: #d933e1;
}

/* Create the checkmark/indicator (hidden when not checked) */
.itemlist_wrap .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.itemlist_wrap input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.itemlist_wrap .checkmark:after {
    left: 5px;
    top: 3px;
    width: 7px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.itemlist_up {
    background: url(../images/itemlist_upicon.svg) no-repeat;
    width: 20px;
    height: 20px;
    display: inline-block;
    cursor: pointer;
    background-size: 90%;
    position: relative;
    top: 6px;
    margin-right: 5px;
}

.itemlist_down {
    background: url(../images/itemlist_downicon.svg) no-repeat;
    width: 20px;
    height: 20px;
    display: inline-block;
    cursor: pointer;
    background-size: 90%;
    position: relative;
    top: 6px;
    margin-right: 5px;
}

.item_listboxscroll {
    height: 400px;
    overflow-x: hidden;
    overflow-y: scroll;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #E5E6FF; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #D933E1; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #3D408B; 
}

.graph_box2{ text-align: center;}

.graph_box2 img{ width: 60%;}

.graph_box3{ text-align: center;}

.graph_box3 img{ width: 70%;}



.sampleno_text {
    font-size: 18px;
    font-weight: 700;
    /* color: #fff; */
}

.graphtext_h3 {
    font-size: 14px;
    font-weight: 700;
}
 .graphtext_h2 {
    font-size: 30px;
    font-weight: 700;
}

.text_right{ text-align: right;}


.itemlist_radius .checkmark{ border-radius: 50px;}

.cardbox_dashboard {
    border-radius: 16px;
    background: #fff;
    box-shadow: 0px 0px 26px rgba(0, 0, 0, 0.16);
    padding: 20px 20px; height: 100%;
}
.mt_60{ margin-top: 60px;}


.loader_bg {
    width: 100%;
    height: 100%;
    background: #0c0e3ae6;
    position: fixed;
    z-index: 999;
	padding-top: 20%;
}
.loader_logo{ width: 150px; margin: auto; }


.graph_title{ font-weight: 700; font-size: 30px; }












