﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background-color: #f4f6f8;
}

.main-header {
    width: 100%;
    height: 36px;
}


    .main-header nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        height: 70px;
        background: #ebebeb;
        /*background: #3E8DA8;*/
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        z-index: 99;
    }

        .main-header nav .navbar {
            height: 100%;
            max-width: 1250px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: auto;
            /* background: red; */
            padding: 0 50px;
        }

    .main-header .navbar .logo a {
        font-size: 30px;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
    }

        .main-header .navbar .logo a img {
            width: 60px;
            /* margin: 10px 0px 0px 0px;*/
        }

    .main-header nav .navbar .nav-links {
        line-height: 70px;
        height: 100%;
    }

    .main-header nav .navbar .links {
        display: flex;
        align-items: center;  /*add*/
    }

        .main-header nav .navbar .links li {
            position: relative;
            /*display: flex;
            align-items: center;
            justify-content: space-between;*/
            list-style: none;
            padding: 0 14px;
        }

        .main-header nav .navbar .links li a {
            height: 100%;
            text-decoration: none;
            white-space: nowrap;
            color: #2e5c7e;
            font-size: 15px;
            font-weight: 500;
        }

/*=============22-sep-2025 css start =============*/
/* Default style for the links */
/*.nav-links .links li a {
    font-weight: normal;
    text-decoration: none;
    color: inherit;
}*/

    /* Style for active link */
    .main-header nav .nav-links .links li a.active {
        /*font-weight: bold !important; */
        color: #fff !important;
        background-color: #2e5c7e !important;
        padding: 10px !important;
        border-radius:5px !important;
    }

    /* Optional: Add a hover effect */
    .nav-links .links li a:hover {
        text-decoration: underline;
    }


/* Style for active "Setting" menu */
.nav-links .links li.active-setting > a {
    font-weight: bold;
    color: #007bff; /* Optional: Change color to indicate it's active */
}

/* Optional: Change the color of the sub-menu */
.nav-links .js-sub-menu li a.active {
    font-weight: bold !important;
    color: #007bff; /* Optional: Change color of sub-menu item when active */
}



/*===============end*/


                

    .main-header nav .navbar .links li .arrow {
        /* background: red; */
        height: 100%;
        width: 22px;
        line-height: 70px;
        text-align: center;
        display: inline-block;
        color: #2e5c7e;
        transition: all 0.3s ease;
    }

    .main-header nav .navbar .links li .sub-menu {
        position: absolute;
        top: 60px;
        left: 0;
        line-height: 40px;
        background: #3E8DA8;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        border-radius: 0 0 4px 4px;
        display: none;
        z-index: 2;
        padding: 0px;
    }

    .main-header nav .navbar .links li:hover .htmlCss-sub-menu,
    .main-header nav .navbar .links li:hover .js-sub-menu {
        display: block;
    }

    .main-header .navbar .links1 li .sub-menu li {
        padding: 0 22px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .main-header .navbar .links li .sub-menu a {
        color: #fff;
        font-size: 15px;
        font-weight: 500;
    }

    .main-header .navbar .links li .sub-menu .more-arrow {
        line-height: 40px;
    }

    .main-header .navbar .links li .htmlCss-more-sub-menu {
        /* line-height: 40px; */
    }

    .main-header .navbar .links li .sub-menu .more-sub-menu {
        position: absolute;
        top: 0;
        left: 100%;
        border-radius: 0 4px 4px 4px;
        z-index: 1;
        display: none;
    }

    .main-header .links li .sub-menu .more:hover .more-sub-menu {
        display: block;
    }

    .main-header .navbar .search-box {
        position: relative;
        height: 40px;
        width: 40px;
        display: none;
    }

        .main-header .navbar .search-box i {
            position: absolute;
            height: 100%;
            width: 100%;
            line-height: 40px;
            text-align: center;
            font-size: 22px;
            color: #2e5c7e;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .main-header .navbar .search-box .input-box {
            position: absolute;
            right: calc(100% - 40px);
            top: 80px;
            height: 60px;
            width: 300px;
            background: #3E8DA8;
            border-radius: 6px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s ease;
        }

    .main-header .navbar.showInput .search-box .input-box {
        top: 65px;
        opacity: 1;
        pointer-events: auto;
        background: #3E8DA8;
    }

    .main-header .search-box .input-box::before {
        content: '';
        position: absolute;
        height: 20px;
        width: 20px;
        background: #3E8DA8;
        right: 10px;
        top: -6px;
        transform: rotate(45deg);
    }

    .main-header .search-box .input-box input {
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: 4px;
        transform: translate(-50%, -50%);
        height: 35px;
        width: 280px;
        outline: none;
        padding: 0 15px;
        font-size: 16px;
        border: none;
    }

    .main-header .navbar .nav-links .sidebar-logo {
        display: none;
    }

    .main-header .navbar .bx-menu {
        display: none;
    }

@media (max-width:920px) {
    .main-header nav .navbar {
        max-width: 100%;
        padding: 0 25px;
    }

        .main-header nav .navbar .logo a {
            font-size: 27px;
        }

        .main-header nav .navbar .links li {
            padding: 0 10px;
            white-space: nowrap;
        }

            .main-header nav .navbar .links li a {
                font-size: 15px;
            }
}

@media (max-width:800px) {
    .main-header nav {
        /* position: relative; */
    }

    .main-header .navbar .bx-menu {
        display: block;
    }

    .main-header nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 270px;
        width: 100%;
        background: #ebebeb;
        /*background:  #3E8DA8;*/
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .main-header .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main-header .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }

        .main-header .sidebar-logo .logo-name img {
            width: 60px;
            margin: 0px 20px 0px 0px;
        }

    .main-header .sidebar-logo i,
    .main-header .navbar .bx-menu {
        font-size: 25px;
        color: #2e5c7e;
    }

    .main-header nav .navbar .links {
        display: block;
        margin-top: 20px;
    }

        .main-header nav .navbar .links li .arrow {
            line-height: 40px;
        }

        .main-header nav .navbar .links li {
            display: block;
            padding: 0px;
        }



            .main-header nav .navbar .links li .sub-menu {
                position: relative;
                top: 0;
                box-shadow: none;
                display: none;
            }

                .main-header nav .navbar .links li .sub-menu li {
                    border-bottom: none;
                }

    .main-header .navbar .links li .sub-menu .more-sub-menu {
        display: none;
        position: relative;
        left: 0;
    }

        .main-header .navbar .links li .sub-menu .more-sub-menu li {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

    .main-header .links li:hover .htmlcss-arrow,
    .main-header .links li:hover .js-arrow {
        transform: rotate(0deg);
    }

    .main-header .navbar .links li .sub-menu .more-sub-menu {
        display: none;
    }

    .main-header .navbar .links li .sub-menu .more span {
        /* background: red; */
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
    }

    .main-header .links li .sub-menu .more:hover .more-sub-menu {
        display: none;
    }

    .main-header nav .navbar .links li:hover .htmlCss-sub-menu,
    .main-header nav .navbar .links li:hover .js-sub-menu {
        display: none;
    }

    .main-header .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .main-header .navbar .nav-links.show3 .links .js-sub-menu,
    .main-header .navbar .nav-links.show2 .links .more .more-sub-menu {
        display: block;
    }

    .main-header .navbar .nav-links.show1 .links .htmlcss-arrow,
    .main-header .navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .main-header .navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width:370px) {
    .main-header nav .navbar .nav-links {
        max-width: 100%;
    }
}

.grid-scroll-wrapper {
    /*max-height: 400px;*/ /* or any height you want */
    overflow-y: auto;
    /* overflow-x: scroll;*/
    /*overflow-y: hidden;*/
    position: relative;
    /*max-height: calc(100vh - 126px);*/
}

.mvc-grid {
    line-height: 1.25em;
    position: relative;
    overflow: visible !important;
    font-size: 1rem;
}

/* Optional: Style pager */
.grid-pagination-outside {
    margin-top: 10px;
    text-align: center;
}




/*=================*/
/* Fullscreen Loader Overlay */
/*#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000040;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}*/

/* Ring Spinner */
/*.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 64px;
        height: 64px;
        margin: 8px;
        border: 8px solid #007BFF;
        border-radius: 50%;
        animation: lds-ring 1.2s linear infinite;
        border-color: #007BFF transparent transparent transparent;
    }

        .lds-ring div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .lds-ring div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .lds-ring div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/

/* Loading text */
/*#loader-wrapper h3 {
    margin-top: 20px;
    color: #333;
    font-family: sans-serif;
}*/

/* Optional fade out animation */
/*.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}*/

/* Loader Container */
.dts-loader {
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; 
    font-family: Arial, sans-serif;
    background-color: #00000061;*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000094;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

/* Ring Spinner */
.lds-ring {
    display: inline-block;
    position: relative;
    width: 70px;
    height: 70px;
}

    .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 64px;
        height: 64px;
        margin: 8px;
        border: 8px solid #007BFF;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #007BFF transparent transparent transparent;
    }

        .lds-ring div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .lds-ring div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .lds-ring div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Optional loading text styling */
.dts-loader h3 {
    margin-top: 20px;
    color: #000;
    position: absolute;
    /* width: 147px; */
    left: 93px;
    width: 222px;
}

/*==========================form radio btn start ================*/
.update-box {
    /*    border: 1px solid #ccc;
    padding: 10px;
    margin: 6px 0px 8px 0px;
    background-color: #f7f7f7;*/
}

    .update-box .form-group {
        margin-bottom: 10px;
    }

        .update-box .form-group > label {
            display: block;
            font-weight: 600;
        }

            .update-box .form-group > label small {
                font-size: 11px;
            }

    .update-box label, .form-group-box label {
        font-weight: 600;
        margin-bottom: 3px;
    }

        .update-box label span {
            color: #f00;
        }

    .update-box .form-group input[type="radio"]{
        display: none;
    }

.radio-row input[type="radio"] {
    display: inline !important;
}

.update-box .form-group .form-radio {
    display: inline-flex;
    border: 1px solid #ced4da;
    height: auto;
    border-radius: .25rem;
    overflow: hidden;
    background: #fff;
}

    .update-box .form-group .form-radio label{
        margin-bottom: 0;
        display: flex;
        cursor: pointer;
    }

        .update-box .form-group .form-radio label span{
            height: 100%;
            padding: 7px 16px;
            color: #333;
            font-size: 14px;
        }

.update-box .form-group input[type="radio"]:checked + span {
    color: #fff;
}

.update-box .form-group input[type="radio"].yes:checked + span {
    background: #28a745;
}

.update-box .form-group input[type="radio"].no:checked + span {
    background: #dc3545;
}


/*==========================form radio btn end ================*/

.copyright-box {
    margin: 0px;
    background-color: #2e5c7e;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 9;
}

.User-content {
    margin: 0px 0px 35px 0px !important;
}


.Verification-box {
    width: 40%;
    margin: 30px auto;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

@media (max-width: 480px) {
    .Verification-box {
        width: 100%;
    }
}

