﻿/*
    --- MOXIE COLORS ---
    DARKEST - #0D2942

    MIDDLE - #3E87CB

    LIGHTER - #72B3EC

    LIGHTEST - #DFF0FF

*/
/*
    Media Queries
--------------------------------------- */
@media screen and (max-width: 800px) {
    #main-grid {
        visibility: hidden;
        display: none;
    }

    #mobile-grid {
        visibility: visible;
    }
}


/*
    Custom Styles
-------------------------------------- */

.header-image {
    margin: 20px;
}

.user-banner {
    float: right;
    margin-right: 50px;
    margin-top: 15px;
}

.page {
    width: 96%;
    min-width: 1035px;
    background-color: #fff;
    margin: 20px auto 10px auto;
    border: none;
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.4);
    z-index: -1;
    height: auto;
    z-index: 999;
    transition: 0.3s;
    overflow: auto; /* Enable scroll if needed */
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    text-rendering: optimizeLegibility;
}

    .page:hover {
        box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.34), 0 6px 30px 5px rgba(0, 0, 0, 0.52), 0 8px 10px -5px rgba(0, 0, 0, 0.8);
        transition: 0.3s;
    }

.header {
    position: relative;
    margin: 0px;
    padding: 0px;
    background: linear-gradient(to right, #000000, #0075c9);
    width: 100%;
    box-shadow: 4px 4px 12px rgba(0,0,0,0.4);
    transition: 0.3s;
}

.welcome-box {
    transition: 0.3s;
    width: 80%;
    background-color: #fefefe;
    padding: 3px;
    border-radius: 8px;
    border-left: 5px solid #3E87CB;
    margin-left: 50px;
    box-shadow: 3px 3px 6px #c3c3c3;
    margin: 30px 0 30px 0 !important;
}

    .welcome-box:hover {
        transition: 0.3s;
        box-shadow: 4px 4px 12px #c3c3c3;
    }

    .welcome-box > p {
        margin-left: 25px;
        margin-right: 10px;
    }

i {
    color: #0075c9;
    opacity: 0.8;
}

.mobile-table {
    display: none;
}

@media(max-width: 767px) {
    .mobile-table {
        display: block;
    }
}

.moxie-logo {
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: #3F87C7;
    text-shadow: 3px 3px 3px lightgray;
}

    .moxie-logo:hover {
        transition: 0.3s;
        color: #3F87C7;
        cursor: pointer;
    }

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

a.nav-link:hover {
    transition: 0.2s;
    color: #3F87C7;
    cursor: pointer;
}

.myBtn {
    background-color: #3E87CB;
    color: #ffffff;
    transition: 0.3s;
    border: none;
}

    .myBtn:hover {
        transition: 0.3s;
        background-color: rgba(0, 0, 0, 0.4);
        border: none;
    }

.myBtnWelcome {
    background-color: #3E87CB;
    color: #ffffff;
    transition: 0.3s;
    border: none;
}

    .myBtnWelcome:hover {
        transition: 0.3s;
        border: none;
    }

p {
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat';
    color: #0D2942;
}

.page-header12 {
    font-size: 24px;
    margin-left: -5px;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.page-header1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3em;
    margin: 0px 0px 0px 20px;
}

.dashbutton {
    margin: 10px 0px 10px 0px;
    padding: 5px;
}

.filterExpt {
    margin: 0 5px;
}

input, button, textarea {
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #3F87C7;
    padding: 5px;
    font-size: 10pt;
    font-weight: normal;
    transition: 0.3s;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
    opacity: 0.7;
    margin: 5px 5px 5px 5px;
}

    input:hover, button:hover, textarea:hover {
        background-color: #3F87C7;
        color: #fff;
        border: none;
        transition: 0.3s;
        box-shadow: 2px 2px 6px rgba(0,0,0,0.7);
        opacity: 0.9;
        cursor: pointer;
    }

.edit-buttons {
    padding: 5px;
}

.cancel-button {
    transition: 0.3s;
}

    .cancel-button:hover {
        transition: 0.3s;
        color: #fff;
        background-color: rgba(69, 69, 69, 1);
    }

.remove-button {
    transition: 0.3s;
}

    .remove-button:hover {
        transition: 0.3s;
        color: #fff;
        background-color: rgba(185, 0, 0, 0.7);
    }

.run-button {
    transition: 0.3s;
}

    .run-button:hover {
        transition: 0.3s;
        color: #fff;
        background-color: #8dc63f;
    }

.navbar {
    transition: 0.3s;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

    .navbar:hover {
        transition: 0.3s;
        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    }

.learn-more {
    transition: 0.3s;
}

    .learn-more:hover {
        transition: 0.3s;
        color: #3E87CB;
    }

.contact-support {
    transition: 0.3s;
    border: none;
}

    .contact-support:hover {
        transition: 0.3s;
        border-bottom: 1pt solid #3E87CB;
        color: red;
    }

.footer-bar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: transparent;
    color: #f1f1f1;
    font-size: 10pt;
    text-align: center;
    height: 20px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    background-color: rgba(0, 0, 0, 0.1);
}

    .footer-bar:hover {
        background-color: rgba(0, 0, 0, 0.3);
        box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.4);
        transition: 0.3s;
    }

.email-notify, a {
    text-decoration: none;
    transition: 0.3s;
    color: #3E87CB;
    border-bottom: 1px solid #3E87CB;
    font-weight: normal;
}

    .email-notify:hover {
        transition: 0.3s;
        text-decoration: none;
        color: #0c9ed9;
        border-bottom: none;
    }

.error-message {
    color: rgba(185, 0, 0, 0.7);
    font-size: 10pt;
    text-align: center;
    margin: 5px auto;
}

.refresh-button {
    font-weight: normal;
    cursor: pointer;
}

.box-shadow-bottom-right {
    box-shadow: 4px 4px 12px -6px #dfdfdf;
}

.box-shadow-four-corners {
    box-shadow: 0 2px 20px 0 rgba(0,0,0,.1);
}

.myBox {
    transition: 0.3s;
    box-shadow: 4px 4px 12px -6px #dfdfdf;
    padding: 5px;
    width: 65%;
    height: fit-content;
}

    .myBox:hover {
        transition: 0.3s;
        box-shadow: 0 2px 20px 0 rgba(0,0,0,.1);
    }

/* MISC  
----------------------------------------------------------*/

.edit-button-home {
    background: url(../Images/edit.png) no-repeat 0 0;
    border: 0;
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

.status-button-home {
    background: url(../Images/error_status.png) no-repeat 0 0;
    border: 0;
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

.remove-button-home {
    background: url(../Images/remove.png) no-repeat 0 0;
    border: 0;
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

.status-message {
    margin-left: 5%;
    color: #0c9ed9;
    font-weight: bold;
}

.wide-text-box {
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #0075c9;
    padding: 5px;
    font-size: 10pt;
    font-weight: normal;
    transition: 0.3s;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
    opacity: 0.7;
    margin-top: 5px;
}

    .wide-text-box:hover {
        background-color: #0075c9;
        color: #fff;
        transition: 0.3s;
        box-shadow: 3px 3px 9px rgba(0,0,0,0.7);
        opacity: 0.9;
    }

.clear {
    clear: both;
}

.title {
    display: block;
    float: left;
    text-align: left;
    width: auto;
}

.loginDisplay {
    font-size: 1.1em;
    display: block;
    text-align: right;
    padding: 10px;
    color: White;
}

    .loginDisplay a:link {
        color: white;
    }

    .loginDisplay a:visited {
        color: white;
    }

    .loginDisplay a:hover {
        color: white;
    }

.failureNotification {
    font-size: 1.2em;
    color: Red;
}

.bold {
    font-weight: bold;
}

.submitButton {
    text-align: right;
    padding-right: 10px;
}

/* MODAL (Help File)
----------------------------------------------------------*/
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: lightgray;
    background-color: rgba(0,0,0,0.8);
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.4);
    transition: bottom 0.3s;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

    .modal:hover {
        box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.44), 0 6px 30px 5px rgba(0, 0, 0, 0.62), 0 8px 10px -5px rgba(0, 0, 0, 0.9);
        transition: bottom 0.3s;
    }

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 75%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.8s;
    animation-name: animatetop;
    animation-duration: 0.8s;
    text-shadow: 1px 1px 1px #f1f1f1;
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -400px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -400px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    transition: 0.3s;
}

    .close:hover,
    .close:focus {
        color: gray;
        text-shadow: 2px 2px 2px #f1f1f1;
        text-decoration: none;
        cursor: pointer;
        transition: 0.3s;
    }

.modal-header {
    padding: 2px 25px 5px;
    border: none;
    background: linear-gradient(to right, #0D2942, #3E87CB);
    color: white;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

    .modal-header:hover {
        transition: 0.3s;
        box-shadow: 4px 4px 12px rgba(0,0,0,0.4);
    }

.modal-body {
    padding: 2px 16px;
}

    .modal-body > p {
        margin-left: 25px;
    }

.modal-footer {
    padding: 2px 16px;
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    transition: 0.3s;
    font-size: 9pt;
}

    .modal-footer:hover {
        background-color: rgba(0, 0, 0, 0.4);
    }

#myBtn {
    transition: 0.3s;
    color: #696969;
}

    #myBtn:hover {
        transition: 0.3s;
        color: #0075c9;
        border-bottom: none;
    }

.code-copy {
    transition: 0.3s;
    opacity: 0.7;
}

    .code-copy:hover {
        transition: 0.3s;
        cursor: pointer;
        opacity: 1;
    }

/* Help Page Examples
---------------------------------------------------- */
.accordion {
    color: #444;
    cursor: pointer;
    padding: 5px;
    width: 80%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.3s;
    border-radius: 10px;
    text-shadow: 1px 1px 1px gray;
}

    .active, .accordion:hover {
        transition: 0.3s;
        color: #0075c9;
    }

    .accordion:after {
        content: '\002B';
        color: #0075c9;
        font-weight: bold;
        float: right;
        margin-left: 5px;
        transition: 0.3s;
    }

.active:after {
    content: "\2212";
    transition: 0.3s;
}

.panel {
    padding: 0 18px;
    background-color: #f1f1f1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    transition: 0.3s;
}

    .panel:hover {
        box-shadow: 4px 4px 12px rgba(0,0,0,0.2);
        transition: 0.3s;
    }


/*
	Scroll to Top
-------------------------------------- */

#back2Top {
    width: 30px;
    line-height: 30px;
    overflow: hidden;
    z-index: 999;
    display: none;
    cursor: pointer;
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    position: fixed;
    bottom: 50px;
    right: 0;
    background-color: transparent;
    color: #3E87CB;
    text-align: center;
    font-size: 30px;
    text-decoration: none;
    border: none;
    margin-right: 10px;
    opacity: 0.7;
}

    #back2Top:hover {
        background-color: transparent;
        color: #0c9ed9;
        transition: 0.3s;
        text-shadow: 2px 2px 2px #333;
        opacity: 1;
    }

.CreateButton {
    font-weight: bold;
    color: rgba(105, 105, 105, 1);
    border: none;
}

    .CreateButton:hover {
        transition: 0.3s;
        color: #333;
    }

/*
  Snackbar (Toast)
-------------------------------------- */
#snackbar {
    visibility: hidden;
    min-width: 350px;
    margin-left: -125px;
    background: rgba(0, 0, 0, 0.1);
    border-left: 8px solid #0075c9;
    border-radius: 5px;
    color: #3e87CB;
    text-shadow: 1px 1px 1px lightgray;
    text-align: center;
    padding: 12px;
    /*position: fixed;*/
    z-index: 1;
    /*left: 50%;*/
    bottom: 75px;
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.2), 0 6px 30px 5px rgba(0, 0, 0, 0.5), 0 8px 10px -5px rgba(0, 0, 0, 0.6);
    transition: 0.5s;
    position: absolute;
    /* top: 50%;*/
    left: 50%;
}

    #snackbar.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 75px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 75px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 75px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 75px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

/*
    BOX SHADOWS
*/

.box-shadow {
    box-shadow: 3px 3px 9px rgba(0,0,0,0.3);
    transition: 0.3s;
}

    .box-shadow:hover {
        box-shadow: 3px 3px 9px rgba(0,0,0,0.6);
        transition: 0.3s;
    }

.progress {
    background: #e9ecef;
    justify-content: flex-start;
    border-radius: 100px;
    align-items: center;
    position: relative;
    display: flex;
    height: 30px;
    width: 400px;
    margin: 10px 0;
}

.progress-value {
    animation: load 3s normal forwards;
    box-shadow: 0 10px 40px -10px grey;
    border-radius: 100px;
    background: #fff;
    height: 30px;
    width: 100%;
    text-align: center;
    color: #fff;
    line-height: 30px;
}

.lbltxt {
    font-family: Montserrat;
    font-size: 1em;
    font-weight: 500;
    color: #0D2942;
    margin: 2px 10px 2px 0px;
    display: inline;
}
/* new css */
div#mobile-grid {
    overflow: auto;
}

    div#mobile-grid table {
        min-width: auto;
        width: 100% !important;
    }

thead, tbody, tfoot, tr, td, th {
    vertical-align: middle;
}

.test-button {
    position: relative;
    bottom: 5px;
}

div#gvDashboard1_length {
    margin-bottom: 10px;
}

.test-button1 {
    position: relative;
    top: 5px;
}

@media(max-width: 1024px) {
    h1#aspnetTitle:after {
        left: 0;
        right: 0;
        bottom: -18px;
        height: 5px;
        width: 100% !important;
        background: #3e87cb;
        content: "";
        position: absolute;
        margin: auto;
    }

    .dataTables_wrapper .dataTables_filter {
        margin-top: 0.5em;
        margin-bottom: 13px;
    }
}


@media(max-width: 767px) {
    div#mobile-grid table tr td {
        padding: 0 5px;
        font-size: 14px;
    }

    #main-grid {
        display: none;
    }

    .tbl {
        width: 100%;
        overflow-x: scroll;
    }
}




.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    display: none; /* Initially hidden */
    margin-top: 15px
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ErrorMsg {
    display: block;
    text-align: center;
    margin: 30px 0 0 0;
}

.PagerCSS a {
    padding: 5px;
}

.PagerCSS span {
    color: #000000;
    font-weight: bold;
    font-size: 16pt;
}

tr.PagerCSS {
    background: #3E87CB !important;
}

#gvDashboard1 thead {
    background-color: #0D2942;
    color: #fff;
}

.dataTables_wrapper input[type="search"]:hover {
    background-color: #3F87C7;
}

.common-grew {
    transition: 0.3s;
    width: 100%;
    background-color: #fefefe;
    padding: 3px;
    border-radius: 8px;
    border-left: 5px solid #3E87CB;
    box-shadow: 3px 3px 6px #c3c3c3;
    padding: 30px;
    height: 100%;
}

    .common-grew:hover {
        transition: 0.3s;
        box-shadow: 4px 4px 12px #c3c3c3;
    }

.common-grewNew {
    transition: 0.3s;
    width: 100%;
    background-color: #fefefe;
    padding: 3px;
    border-radius: 8px;
    border-left: 5px solid #e9ecef;
    box-shadow: 3px 3px 6px #c3c3c3;
    padding: 30px;
    height: 100%;
}

    .common-grewNew:hover {
        transition: 0.3s;
        box-shadow: 4px 4px 12px #c3c3c3;
    }

.mar-30b {
    margin-bottom: 30px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 99999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*background-color: #3e87cb;*/
}

.csmodal {
    overflow: hidden;
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}


/*.close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            padding-left: 600px;
        }*/

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.mailcontent {
    margin: 45px 0px 0px 174px;
}

.logoimg {
    margin: 20px 0px 0px 122px;
}

span#MainContent_lblemail {
    padding-right: 58px;
    margin-left: -26px;
    font-weight: 500;
}

input#MainContent_txtemail {
    background-color: white;
}

btn-submit {
    /* background-color: #4087c7;*/
    padding-left: 50px;
    margin-left: 106px;
}

@media(max-width: 767px) {
    h1#aspnetTitle:after {
        left: 0;
        right: 0;
        bottom: -18px;
        height: 5px;
        width: 100%;
        background: #3e87cb;
        content: "";
        position: absolute;
        margin: auto;
    }
}

a.button {
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #3F87C7;
    padding: 5px;
    font-size: 10pt;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
    opacity: 0.7;
    margin: 0px 5px 0px 0px;
}

    a.button:hover {
        background-color: #3F87C7;
        color: #fff;
        box-shadow: 2px 2px 6px rgba(0,0,0,0.7);
        opacity: 0.9;
        cursor: pointer;
    }

.pdash {
    margin-top: 15px;
}

.hrline {
    width: 75%;
    margin: 0 auto;
}

.learn-more {
    cursor: pointer;
    color: #3E87CB;
    border: none;
}

#lblErrorMessage {
    font-weight: bold;
    color: red;
}

.accordion {
    font-weight: bold;
    text-transform: uppercase;
}

/* observation/Evaluation progress bar*/
.obsr_Stat {
    background: #e9ecef;
    justify-content: flex-start;
    border-radius: 100px;
    align-items: center;
    position: relative;
    display: flex;
    height: 30px;
    width: 400px;
    margin: 10px 0px 10px 0px;
}

.evalr_Stat {
    background: #e9ecef;
    justify-content: flex-start;
    border-radius: 100px;
    align-items: center;
    position: relative;
    display: flex;
    height: 30px;
    width: 400px;
    margin: 10px 0px 10px 0px;
}

.obs-value {
    animation: load 3s normal forwards;
    box-shadow: none;
    border-radius: 100px;
    background: #fff;
    height: 30px;
    width: 100%;
    text-align: center;
    color: #fff;
    line-height: 30px;
    margin: 0px 0px 2px 0px;
}

.Eval-value {
    animation: load 3s normal forwards;
    box-shadow: none;
    border-radius: 100px;
    background: #fff;
    height: 30px;
    width: 100%;
    text-align: center;
    color: #fff;
    line-height: 30px;
}

.flex-56 {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .flex-56 p {
        margin: 0 15px 0 0;
        min-width: 108px; /*01-10-2024*/
    }

.datelabl {
    font-family: Montserrat;
    font-size: 1em;
    font-weight: 500;
    color: #0D2942;
    margin-top: 2px;
    margin-bottom: 2px;
    display: flex;
    min-width: 160px;
}

.obslbl {
    display: grid;
    justify-content: center;
    margin-top: 25px;
}

.cuslbl {
    margin: 0px 3px 0px 0px;
}

.cusEvlbl {
    margin: 0px 25px 0px 0px;
}

.cnamelbl {
    font-family: Montserrat;
    font-size: 1em;
    font-weight: 500;
    color: #0D2942;
}

/*table#gvDashboard1 tr th, table#gvDashboard1 tr td {
    padding: 10px 14px;
}*/
.lbldiv {
    display: flex;
    align-items: center;
}

.lblvalue {
    font-family: Montserrat;
    font-size: 1em;
    font-weight: 500;
    color: #0D2942;
    margin-top: 2px;
    margin-bottom: 2px;
    display: flex;
}

.tbl {
    overflow: auto;
    margin: 20px 0 0 0;
}

table#gvDashboard1 {
    width: 100% !important;
    min-width: 1000px !important;
}


/*03-10-2024*/
.myBox table select {
    background-image: url('../images/arrow-down.png');
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center right 6px;
    appearance: none;
    min-width: 45px;
    font-size: 14px;
    padding: 0px 5px;
}

.dropselect {
    background-image: url('../images/arrow-down.png');
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center right 6px;
    appearance: none;
    min-width: 45px;
    font-size: 14px;
}


@media(max-width: 991px) {
    #snackbar {
        display: none;
    }
}

@media(max-width: 767px) {
    .common-grewNew {
        height: auto;
        margin: 0 0 30px 0;
    }

    select#MainContent_ddlHomeBranch, span#MainContent_LabelHomeBranch, select#MainContent_ddlFieldExpert, span#MainContent_lblFieldExpert {
        width: 100% !important;
        display: block;
    }
}

select#MainContent_ddlFieldExpert, select#MainContent_ddlHomeBranch {
    border: 1px solid #000 !important;
    border-radius: 31px;
    height: 30px;
    padding: 0 15px;
    font-size: 14px;
    max-width: 200px;
    /*margin-left: 70px;*/
}

i.material-icons.evlicon {
    position: relative;
    top: 6px;
    margin: 0 5px 0 0;
}

.lblerror {
    color: red;
    margin: 0px 0px 10px 0px;
}

.left-table table thead tr th {
    background: #0d2942;
    color: #fff;
}

.left-table table {
    width: 100% !important;
}


.active, .collapsible:hover {
    background-color: #3e87cb;
    color: #fff;
}

.fieldcontent {
    display: none;
    background-color: #ffffff;
    transition: max-height 0.3s ease-out;
}

.left-table table thead tr th, .left-table table tbody tr td {
    min-width: 100px;
    padding: 10px 15px !important;
}


button.collapsible img {
    width: 15px;
    -webkit-transition: -webkit-transform .8s ease-in-out;
    -ms-transition: -ms-transform .8s ease-in-out;
    transition: transform .8s ease-in-out;
    position: absolute;
    right: 15px;
    top: 20px;
}

button.collapsible {
    position: relative;
}

    button.collapsible.active img {
        transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
    }

    button.collapsible:after {
        display: none;
    }

hr.experthr {
    display: block;
    width: 49%;
    border-top: 2px solid;
}
/* tab css*/
.cus-nav-89 ul#pills-tab {
    display: flex;
    justify-content: flex-start;
    margin: 15px 0 30px 0 !important;
    border-bottom: 0px solid #ddd;
    position: relative;
}

.cus-nav-89 .nav-pills .nav-link {
    box-shadow: none !important;
    color: #000000 !important;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
    margin: 0 5px 0 0;
    position: relative;
    top: 1px;
    z-index: 9;
    background: transparent;
    line-height: normal;
    font-weight: bold;
}

    .cus-nav-89 .nav-pills .nav-link:hover,
    .cus-nav-89 .nav-pills .nav-link.active,
    .cus-nav-89 .nav-pills .show > .nav-link {
        background-color: #ffffff !important;
        border: 1px solid #ddd !important;
        border-bottom-color: #fff !important;
        opacity: 1 !important;
        color: #78abd8 !important;
    }

.cus-nav-89 ul#pills-tab:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    height: 1px;
    content: "";
    border-top: 1px solid #ddd;
    z-index: 0;
}

.cus-nav-89 .active, .cus-nav-89 .collapsible:hover {
    background: #fff !important;
}

.cus-nav-89 table#gvFieldExpert {
    width: 100% !important;
}



.cus-nav-89 {
    max-width: 800px;
    margin: auto;
    /*border-bottom: 1px solid #343a40;*/
    padding: 0 0 20px 0;
}

    .cus-nav-89 table tr th {
        background: #0d2942;
        color: #fff;
    }

    .cus-nav-89 .active:after {
        display: none;
    }






.parent-modal .custom-table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #000;
}

    .parent-modal .custom-table th, .custom-table td {
        border: 2px solid #dee2e6;
        padding: 3px 15px;
        text-align: center;
        vertical-align: middle;
        font-size: 14px;
    }

    .parent-modal .custom-table .header-row {
        background-color: #f8f9fa;
    }

    .parent-modal .custom-table .data-row td {
        width: 50%;
    }

.parent-modal tr.total-avg {
    font-weight: 600;
}

.parent-modal td.score {
    font-weight: 600;
}

.parent-modal td.pass {
    font-weight: 600;
    color: #1cc11c;
}

.parent-modal .modal-dialog {
    max-width: 800px;
}

.parent-modal table.table.custom-table {
    max-width: 100%;
}

.parent-modal .modal-body {
    padding: 22px;
}

.parent-modal .modal-header {
    border-bottom: 1px solid #dee2e6;
    background: #fff;
    box-shadow: none;
    padding: 6px 15px;
}

.parent-modal .modal-footer {
    background: #fff;
    padding: 5px 15px;
}

.parent-modal .modal-header:hover {
    box-shadow: none;
}

.parent-modal .modal-footer:hover {
    box-shadow: none;
    background: #fff;
}

.parent-modal button#modalclose1:hover {
    background-color: transparent;
}

.parent-modal button#modalclose {
    padding: 3px 10px;
    font-size: 14px;
    background: #3e87cb;
    opacity: 1;
    margin: 0;
    border: none !important;
}

    .parent-modal button#modalclose:hover {
    }

    .parent-modal button#modalclose:hover {
        border: none !important;
    }

.parent-modal .modal-content {
    padding: 0px;
}

p.number {
    margin: 0;
}

p.pass {
    margin: 0;
    font-weight: 600;
}

/*tr.goal-row td:nth-child(1) {
    width: 100%;
    max-width: 32%;
}*/

.tbcls tbody tr td:nth-child(1):not([colspan="2"]) {
    width: 100%;
    max-width: 32%;
    font-weight: bold;
}

.datafilter {
    margin-top: 10px;
}

.datepicker-wrapper {
    position: relative;
    display: inline-block;
}

/* Style for the TextBox */
.datepicker-input {
    width: 150px;
    padding-right: 30px; /* Adjust to leave space for the icon */
    padding-left: 5px;
    box-sizing: border-box;
}

/* Style for the calendar icon */
.calendar-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px; /* Adjust icon size as needed */
}

@media (max-width: 768px) {
    #gvFieldExpert, #gvFieldExpert1 {
        margin: 0 auto; /* Centers the table */
        width: 100%; /* Ensures the table takes full width */
    }

        #gvFieldExpert th, #gvFieldExpert td, #gvFieldExpert1 th, #gvFieldExpert1 td {
            text-align: center; /* Center the headings and content */
        }
}




/*01-10-2024*/
@media(max-width: 767px) {
    .datepicker-wrapper {
        width: 100%;
        max-width: 240px;
        margin: auto;
    }

        .datepicker-wrapper input {
            width: 100%;
        }

    .datafilter {
        max-width: 240px;
        margin: auto;
        margin-top: 20px;
    }
}
