﻿@import url(../css/bootstrap.min.css);
@import url(../css/select2.css);
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css');
/*@import url('https://fonts.googleapis.com/css2?family=Secular+One&family=Yantramanav:wght@300;400&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Secular+One&family=Yantramanav:wght@300;400;500&display=swap');

body {
    padding: 0;
    margin: 0;
    font-family: var(--pragraph-font);
    position: relative;
    /*overflow-x: hidden;*/
    box-sizing: border-box;
}

* {
    font-family: var(--pragraph-font);
}

    *::before, *::after {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

a {
    text-decoration: none;
    color: inherit;
}

button:focus-visible {
    border: 0px;
    outline: 0px;
}

:root {
    /*--main-colorone: #355C7D;*/
    /*--main-colorone: #5e72e4;*/
    --main-colorone: #355C7D;
    --head-font: 'Secular One', sans-serif;
    --pragraph-font: 'Yantramanav', sans-serif;
    --bigbox_shadow: 0 0 2rem 0 rgb(136 152 170 / 42%);
    /*--image-bgcolor: #BAC7D2;*/
    --image-bgcolor: #5e72e470;
    --underline-color: #33B8E2;
    --text-black: #616161;
    /*--button-color: #5e72e4;*/
    --button-color: #7789fe;
    --icon-color: #A992FC;
    --texthead-color: #A992FC;
    --danger-red: #EC1800;
    --success-green: #009D00;
    --inputfocus-color: #a992fc5e;
}

p {
    color: var(--text-black);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--head-font);
}
/*-----------------Login--------------------*/

.login_bx {
    box-shadow: var(--bigbox_shadow);
    /* padding: 35px; */
    border-radius: 5px;
}

.login_head {
    font-family: var(--head-font);
    color: var(--main-colorone);
    text-align: center;
    position: relative;
    margin-bottom: 26px;
}

    .login_head:after {
        position: absolute;
        content: "";
        width: 50px;
        height: 4px;
        background: var(--underline-color);
        top: 34px;
        left: 45%;
        border-radius: 4px;
    }

label {
    font-family: var(--pragraph-font);
}

.outside_input {
}

.form-group {
    position: relative;
    margin-bottom: 2em;
}

.signup_frm .form-group {
    position: relative;
    margin-bottom: 1.3em;
}

.successmodal_content {
    text-align: center;
}

    .successmodal_content i {
        font-size: 2em;
        margin: 13px 0px;
        color: var(--success-green);
    }

    .successmodal_content h3 {
        font-size: 17px;
        line-height: 24px;
    }

.form-group label {
    margin-bottom: 5px;
    color: #616161;
}

.form-group .outside_input {
    border-radius: 3px;
    padding-left: 3em;
    height: 50px;
}

    .form-group .outside_input:focus {
        box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
        border: .5px solid #355c7d5c;
    }

.form-group .input_icon {
    position: absolute;
    top: 18px;
    left: 10px;
    color: #A3A3A3;
}

.form-group.forgottxt_bx .input_icon {
    top: 45px;
}

.form-group .input_icon::after {
    position: absolute;
    content: "";
    width: 1px;
    background: #cacaca;
    height: 28px;
    left: 23px;
    border-radius: 27%;
    top: -6px;
}

.login_btn {
    width: 100%;
    border: 0px;
    padding: 12px;
    background: var(--button-color);
    color: #fff;
    border-radius: 3px;
    transition: ease-in-out .3s;
    border: 1px solid var(--button-color);
    font-weight: 500;
}
/*.login_btn:hover {
    background: #fff;
    color: var(--button-color);
}
.login_btn :hover .lg-text {
    color: var(--button-color);
}*/

.login_form {
    padding: 30px;
}

.otp_submit {
    display: inline;
    width: 188px;
    margin: 0 auto;
}

.login_imgbx {
    background: var(--image-bgcolor);
    text-align: center;
    padding: 68px;
    height: 100%;
    border-radius: 5px 0px 0px 5px;
    display: flex;
}

.register_imgbx {
    background: var(--image-bgcolor);
    text-align: center;
    padding: 68px;
    height: 100%;
    border-radius: 0px 5px 5px 0px;
    display: flex;
}
/*------ line Animie----------*/

a.forg_txt {
    color: var(--text-black);
    /* margin: 20px 0px; */
    /* text-decoration: none; */
    display: block;
}

a.forg_txt {
    overflow: hidden;
    position: relative;
    display: inline-block;
}

    a.forg_txt::before, a.forg_txt::after {
        content: '';
        position: absolute;
        width: 100%;
        left: 0;
    }

    a.forg_txt::before {
        background-color: #54b3d6;
        height: 1px;
        bottom: 0;
        transform-origin: 100% 50%;
        transform: scaleX(0);
        transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
    }

    a.forg_txt:hover::before {
        transform-origin: 0% 50%;
        transform: scaleX(1);
    }

    a.forg_txt:hover::after {
        transform: translate3d(0, 0, 0);
    }

.forg_txt2 {
    text-decoration: none;
}

    .forg_txt2 a {
        color: #308dff;
    }

.forgtxt_p {
    margin-top: 35px;
}

.validate_msg {
    color: #f00;
    margin-bottom: 0px;
}
/*------------Login Spinner--------*/

.lg-text {
    transition: .3s ease-in;
    color: #fff;
}

.loaderlog_spinner {
    display: none;
}

.loaderlog_spinner {
    /*margin: 100px auto 0;*/
    width: 70px;
    text-align: center;
}

    .loaderlog_spinner > div {
        width: 15px;
        height: 15px;
        background-color: #fff;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
        animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    }

.loder_blue > div {
    background: var(--icon-color);
}

.loaderlog_spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loaderlog_spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}
/*-----------OTP-input-----------*/

.customBtn {
    border-radius: 0px;
    padding: 10px;
}

input.otp {
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
    border: 0px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
}

    input.otp:focus {
        border: 0px;
    }

    input.otp:focus-visible {
        border: 1px solid #c2c2c2;
        outline: 0;
    }

.otp_main {
    gap: .7em;
}
/*-------------------------------------*/

/*---------Dashboard side menu--------*/

.dashboard_main {
    /*overflow-x: hidden;*/
    display: flex;
    position: relative;
}

.company_logo {
    width: 56px;
    margin: 0px 26px 0px 5px;
}

ul {
    list-style: none;
}

nav {
    position: absolute;
    width: 16rem;
    background-color: var(--main-colorone);
    height: 100vh;
    z-index: 1000;
    left: -16rem;
    padding: 0rem 0.85rem 1rem;
    transition: all 0.3s ease;
    color: #fff;
}
/*nav::before {
        content: "";
        position: absolute;
        width: 2rem;
        height: 100%;
        top: 0;
        left: 100%;
    }*/

/*.dash_content {
    flex: 1;
    display: flex;
    flex-direction: column;
}*/

.sidebar-top {
    position: relative;
    display: flex;
    align-items: center;
    /* border-bottom: 1px solid #a7a7a7; */
    /* padding: 9px 0px; */
}

    .sidebar-top .logo {
        width: 2.1rem;
        margin: 0 0.8rem;
    }
/*
    nav:hover .shrink-btn,
    .shrink-btn.hovered {
        transform: translateY(-50%) translateX(0px);
        opacity: 1;
        pointer-events: all;
    }
*/

.sidebar-links ul {
    position: relative;
    padding-left: 4px;
}

.sidebar-links li {
    position: relative;
    padding: 2.5px 0;
}

.sidebar-links a {
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    height: 41px;
    padding: 9px;
    position: relative;
    transition: opacity 0.3s 0.2s, color 0.3s;
}

    .sidebar-links a.depsub_item {
        padding-left: 3px;
    }

.iconiconbx {
    font-size: 1.3rem;
    text-align: center;
    /*min-width: 3.7rem;*/
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

    .iconiconbx i {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        transition: 0.3s;
    }
/*.iconiconbx i:last-child {
    opacity: 0;
    color: #fff;
 }*/

/*.sidebar-links a.active, .sidebar-links a:hover {
    color: #383838;
    background: #fff;
}*/

.sidebar-links a.sub-btn {
    cursor: pointer;
}

.sidebar-links:focus {
    background-color: red;
}

.sidebar-links a.active {
    background: #fff;
    border-radius: 6px;
    /*padding: 10px 6px;*/
    color: #4d4d4d;
}

.sidebar-links a.active {
    background: #fff;
    border-radius: 6px;
    /* padding: 10px 6px; */
    color: #4d4d4d;
    font-weight: 600;
}

.sidebar-links a.sub-item.active {
    background: #fff;
    border-radius: 0px 6px 6px 0px;
    /* padding: 10px 6px; */
    color: #000000;
    font-weight: 500;
}
/*.sub-item:active {
    background: #fff;
    border-radius: 6px;*/

/* padding: 10px 6px; */

/*color: #4d4d4d;
    font-weight: 600;
}*/

/*.sidebar-links a.sub-btn.active {
    background-color: transparent;
    border-radius: 0px;*/

/* padding: 10px 6px; */

/*color: #fff;
    font-weight: 500;
}*/

.sidebar-links a.active .iconiconbx i {
    color: #4d4d4d;
}

.sidebar-links a.active:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 40px;
    background: #ffffff;
    right: -14px;
    top: 0px;
    border-radius: 3px 0px 0px 3px;
    z-index: 1000;
}

.sidebar-links a .link {
    transition: opacity 0.3s 0.2s, color 0.3s;
    margin-left: 10px;
}

.sidebar-links a.active i:first-child {
    opacity: 0;
}

.sidebar-links a.active i:last-child {
    opacity: 1;
}

.active-tab {
    width: 100%;
    height: 53px;
    background-color: var(--main-color-dark);
    border-radius: 10px;
    position: absolute;
    top: 2.5px;
    left: 0;
    transition: top 0.3s;
}

.sidebar-footer {
    position: relative;
    margin-top: auto;
}

.admin-user {
    display: flex;
    align-items: center;
}

.admin-profile {
    white-space: nowrap;
    max-width: 100%;
    transition: opacity 0.3s 0.2s, max-width 0.7s 0s ease-in-out;
    display: flex;
    align-items: center;
    flex: 1;
    /* overflow: hidden; */
    margin: 5px 0px 10px 0px;
    gap: .5em;
}

.admin-user img {
    width: 2.9rem;
    border-radius: 50%;
    /* margin: 0 0.4rem; */
    height: 2.9rem;
    object-fit: cover;
    border: 1px solid #838383;
}

.admin-info {
    /*padding-left: 0.3rem;*/
    /* margin-top: 15px; */
}

.tooltip {
    background-color: #A992FC;
    position: absolute;
    right: -1.2rem;
    top: 0;
    transform: translateX(100%) translateY(-50%);
    padding: 0 0.8rem;
    font-size: 0.85rem;
    display: none;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    height: 30px;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 3px 10px -3px rgba(70, 46, 118, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    text-align: center;
    white-space: nowrap;
    z-index: 1000;
}

    .tooltip span {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        opacity: 0;
        transition: 0.3s;
    }

        .tooltip span.show {
            opacity: 1;
        }

.tooltip-element:hover ~ .tooltip {
    opacity: 1;
    pointer-events: all;
}
/*------SideBar Custom Scrolling---------*/
.navcustscrollbar{
    overflow-y:auto;
}
.navcustscrollbar::-webkit-scrollbar {
    width: 6px;
}

.navcustscrollbar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}
.navcustscrollbar::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 4px;
}
.navcustscrollbar::-webkit-scrollbar-thumb:hover {
        background: #b30000;
    }

/*--------------------------------------*/
/* When the menu shrinks */

/*-----------------------------------*/

.dpage-icon {
    width: 20px;
}

.dash_content {
    width: 100%;
}

.dash_txtarea {
    height: 100px;
}

.sidebar-links .dropdown {
    position: absolute;
    right: 0;
    transition: 0.3s ease;
    margin-right: 14px;
}

.sidebar-links .sub-menu {
    background-color: #355c7d;
    display: none;
    /* border: 1px solid #767676; */
    /* border-radius: 5px; */
    /* padding: 10px; */
    /* box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px; */
    border-left: 2px solid #e7e7e7;
    margin-left: 22px;
}

    .sidebar-links .sub-menu.submenu_dep {
        margin-left: 20px;
        border-left: 2px solid #e7e7e7;
        margin-top: 4px;
    }

.sidebar-links .sub-item {
    position: relative;
    cursor: pointer;
}

    .sidebar-links .sub-item:before {
        position: absolute;
        content: "";
    }
/*.sidebar-links .sub-item.depsub_item:before {
    content: "";
    position: absolute;
    width: 11px;
    height: 1px;
    background-color: #fff;
    left: -5px;
}*/

.dash_sdmcnt .sub-menu a {
    padding-left: 19px;
}

.sidebar-links .rotate {
    transform: rotate(90deg);
}

.menu-btn i {
    margin: 13px;
    font-size: 22px;
    color: var(--main-colorone);
}

button.topbar_btn {
    padding: 6px;
    border: 0px;
    border-radius: 10px;
    width: 36px;
    height: 36px;
    background: #fbfbfb;
    transition: ease-in-out .3s;
}

    button.topbar_btn:hover {
        transform: scale(1.1);
        background: #f5f5f5;
    }

.tooltip_bx p {
    margin: 0px;
    color: #fff;
}

.tooltip_bx {
    width: 100px;
    /* height: 10px; */
    background: #A992FC;
    position: absolute;
    right: 70px;
    border-radius: 6px;
    padding: 4px 20px;
    text-align: center;
    color: #fff;
    display: none;
}

    .tooltip_bx:after {
        content: '';
        position: absolute;
        width: 12px;
        height: 12px;
        right: -12px;
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        background-color: #A992FC;
        /* border: 1px solid #DCA; */
    }

.topbar_btn:hover .tooltip_bx {
    display: block;
}
.departmentlink {
    display: flex;
    cursor: pointer;
}
.departmentlink i {
    font-size: 13px!important;
}
.departmentlink span {
    font-size: 15px;
}
.dashtopbar {
    /* height: 100px; */
    box-shadow: rgb(100 100 111 / 10%) 0px 4px 19px 6px;
    padding: 8px 17px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
}

.search_bx {
    margin-left: 2px;
    border: 0px;
}

input.search_bx::placeholder {
    color: var(--icon-color);
    opacity: 1;
}

input.search_bx:-ms-input-placeholder {
    color: var(--icon-color);
}

input.search_bx:-ms-input-placeholder {
    color: var(--icon-color);
}

.search_bx:focus {
    border: 0px;
    outline: 0px;
}

.serchbx_main i {
    color: var(--text-black);
}

.logoutmdl_content {
    text-align: center;
}

    .logoutmdl_content i {
        font-size: 25px;
        margin: 12px 0px;
        color: rgb(255, 0, 0);
        border: 1px solid var(--icon-color);
        padding: 3px 13px;
        border-radius: 50%;
    }

    .logoutmdl_content img {
        margin: 14px 0px;
        /* color: rgb(255, 0, 0); */
        border: 1px solid var(--icon-color);
        padding: 10px 10px;
        border-radius: 50%;
        /* height: 26px; */
        /* width: 46px; */
    }

.logoutcnfrmmdl_foot {
    /*padding: 10px;*/
    border-top: 1px solid #ccc;
}

    .logoutcnfrmmdl_foot button {
        width: 100%;
        border: 0px;
        padding: 10px;
        background: #fff;
        border-radius: 0px 0px 23px 0px;
        transition: ease-in-out .3s;
    }

        .logoutcnfrmmdl_foot button:hover {
            background: var(--icon-color);
        }

        .logoutcnfrmmdl_foot button:first-child {
            border-right: 1px solid #ccc;
            border-radius: 0px 0px 0px 23px;
        }
/*---------Responsive Search box----------*/

.container_search {
    position: absolute;
    margin: auto;
    top: 0;
    left: 30%;
    /* right: 0; */
    bottom: 0;
    width: auto;
    /* height: 100px; */
}

    .container_search .search {
        position: absolute;
        margin: auto;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 40px;
        /* background: crimson; */
        border-radius: 50%;
        transition: all 1s;
        z-index: 4;
        /*box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;*/
    }

        .container_search .search:hover {
            cursor: pointer;
        }

        .container_search .search::before {
            content: "";
            position: absolute;
            margin: auto;
            top: 9px;
            right: 0;
            bottom: 0;
            left: 13px;
            width: 9px;
            height: 2px;
            background: black;
            transform: rotate(40deg);
            transition: all 0.5s;
        }

        .container_search .search::after {
            content: "";
            position: absolute;
            margin: auto;
            top: -5px;
            right: 0;
            bottom: 0;
            left: -5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 2px solid black;
            transition: all 0.5s;
        }

    .container_search input {
        position: absolute;
        margin: auto;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 34px;
        outline: none;
        color: black;
        padding: 0 80px 0 20px;
        border-radius: 5px;
        transition: all 1s;
        opacity: 0;
        z-index: 5;
        letter-spacing: 0.1em;
        border: 0;
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    }

        .container_search input:hover {
            cursor: pointer;
        }

        .container_search input:focus {
            width: 210px;
            opacity: 1;
            cursor: text;
        }

            .container_search input:focus ~ .search {
                right: -384px;
                /* background: #fff; */
                z-index: 1000;
                /* border: 0; */
            }

                .container_search input:focus ~ .search::before {
                    top: 0;
                    left: 0;
                    width: 16px;
                }

                .container_search input:focus ~ .search::after {
                    top: 0;
                    left: 0;
                    width: 16px;
                    height: 2px;
                    border: none;
                    background: black;
                    border-radius: 0%;
                    transform: rotate(-45deg);
                }

        .container_search input::placeholder {
            color: white;
            opacity: 0.5;
            font-weight: bolder;
        }
/*---------------------------------------*/

.topbar_btnbx {
    gap: 1em;
}

.topbar_bt {
    border: 0px;
}

button.topbar_btn img {
    width: 17px;
}

button.topbar_btn i {
    color: var(--icon-color);
}

button.topbar_btn svg {
    color: var(--icon-color);
}

.dashuser_name {
    color: #fff;
    font-family: var(--head-font);
    font-size: 16px;
    margin-bottom: 1px;
    margin-top: 6px;
}

span.orgname_sm {
    font-size: 13px;
    font-weight: 400;
    word-wrap: break-word;
    white-space: break-spaces;
    font-family: var(--pragraph-font);
}

.user_threedots {
    border: 0px;
    border-radius: 5px;
    background: #cacaca;
    height: 23px;
    line-height: 0;
}

.user_role {
    color: #d0d0d0;
    font-size: 12px;
}

.profimg_nmbx {
    gap: .5em;
}

.profimg_nmbxmain {
}

.logosec_bx {
    padding: 7px 12px;
    border-bottom: 1px solid #919191;
}

    .logosec_bx img {
        width: 62px;
    }

.menubtn_main {
}

i.menu_icon {
    padding: 10px;
    background: #fff;
    border-radius: 50%;
    font-size: 13px;
    color: var(--icon-color);
    transition: ease-in-out .3s;
    cursor: pointer;
    /* margin: 0px 20px 0px 136px; */
    box-shadow: rgb(169 146 252 / 51%) 0px 1px 4px;
}

i.menu_iconclose {
    display: none;
    padding: 9px 12px;
}

button.toggle_sdbar {
    border: 0px;
    background-color: transparent;
}
/*-----------------Profile------------*/

.dashboard_body {
    padding: 30px 20px;
    /* z-index: -1; */
    position: relative;
    width: 100%;
    overflow: auto;
}
/*----input float label-----------------*/

.label-float {
    position: relative;
    padding-top: 16px;
    margin-bottom: 17px;
    width: 100%;
}
 .label-float input {
    border: 0px;
    border-radius: 4px;
    outline: none;
    width: 100%;
    padding: 11px 20px;
    font-size: 16px;
    transition: all .1s linear;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -webkit-appearance: none;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border: .5px solid #ebebeb;
}
.label-float input[type="text"]:disabled {
    background: #dddddd59;
    cursor: no-drop;
    border:0px;
}
.disadbled_label {
    background-color: transparent !important;
}
/*---Tool tip for disabled button-----*/
.tooltiptextdisable_inp {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
}
.label-float input[type="text"]:disabled:hover .tooltiptextdisable_inp {
    visibility: visible;
}
#tooltip {
    position: fixed;
    height: fit-content;
    width: fit-content;
    background-color: white;
    padding: 5px 12px;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
    border-radius: 5px;
    font-family: 'Open Sans';
    display: none;
}

.disablelab_float:hover .disb_tooltip {
    display: block;
}
/*-------------------------*/
.label-float textarea {
    border: 0px;
    border-radius: 4px;
    outline: none;
    width: 100%;
    padding: 11px 20px;
    font-size: 16px;
    transition: all .1s linear;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -webkit-appearance: none;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    height: 100px;
    border: .5px solid #ebebeb;
}
    .label-float input {
        border: 0px;
        border-radius: 4px;
        outline: none;
        width: 100%;
        padding: 11px 20px;
        font-size: 16px;
        transition: all .1s linear;
        -webkit-transition: all .1s linear;
        -moz-transition: all .1s linear;
        -webkit-appearance: none;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
        border: .5px solid #ebebeb;
        border-bottom: 2px solid #ffffff;
    }
    .label-float textarea {
        border: 0px;
        border-radius: 4px;
        outline: none;
        width: 100%;
        padding: 11px 20px;
        font-size: 16px;
        transition: all .1s linear;
        -webkit-transition: all .1s linear;
        -moz-transition: all .1s linear;
        -webkit-appearance: none;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
        height: 100px;
        border: .5px solid #ebebeb;
    }
    .label-float select {
        border: 0px;
        border-radius: 4px;
        outline: none;
        width: 100%;
        padding: 11px 20px;
        font-size: 16px;
        transition: all .1s linear;
        -webkit-transition: all .1s linear;
        -moz-transition: all .1s linear;
        -webkit-appearance: none;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
        /*height: 100px;*/
        border: .5px solid #ebebeb;
    }

    .label-float input:focus {
        border-bottom: 2px solid var(--icon-color);
    }

    .label-float input::placeholder {
        color: transparent;
    }

    .label-float textarea:focus {
        border-bottom: 2px solid var(--icon-color);
    }

    .label-float textarea::placeholder {
        color: transparent;
    }

    .label-float label {
        pointer-events: none;
        position: absolute;
        /*top: calc(50% - 8px);*/
        left: 15px;
        transition: all .1s linear;
        -webkit-transition: all .1s linear;
        -moz-transition: all .1s linear;
        background-color: white;
        padding: 5px;
        box-sizing: border-box;
        font-size: 14px;
        top: 0;
        font-family: var(--pragraph-font);
        color: var(--main-colorone);
    }
/*-------------Input Camera--------------*/

/*-------------Profile Edit--------------*/

.input--file {
    position: absolute;
    color: #7f7f7f;
    z-index: 200;
    /* width: 200px; */
    /* top: 63px; */
    right: 0px;
    bottom: 19px;
}

    .input--file input[type="file"] {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        width: 39px;
    }

.Profilebig_img {
    width: 150px;
    border-radius: 50%;
    height: 150px;
    object-fit: cover;
    display: block;
    border: 1px solid #cfcfcf;
    transition: ease-in-out .3s;
    transform: scale(1);
    opacity: 1;
    cursor: pointer;
}
/*.Profilebig_img:hover{
    transform:scale(1.1);
    opacity:1.1;
} */

.profimgbx_overlay {
    position: absolute;
    width: 100%;
    background: #a992fc2e;
    z-index: 10;
    top: 0;
    height: 100%;
    width: 150px;
    border-radius: 50%;
    transform: scale(0);
    transform-origin: bottom left;
    opacity: 0;
    transition: .3s linear;
}

.profimgbx_main {
    cursor: pointer;
}

    .profimgbx_main:hover .profimgbx_overlay {
        opacity: 1;
        transform: scale(1);
    }

.dashuser_icon {
    padding: 7px 12px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #cacaca;
    color: #000;
}

.input--file svg {
}

.profimg_bxmain {
    display: flex;
    align-items: center;
    gap: 1.3em;
    flex-direction: column;
}

.cam_icon {
    font-size: 35px;
    color: var(--icon-color);
    cursor: pointer;
}

    .cam_icon i {
        filter: drop-shadow(0px 4px 2px #888888);
    }

.filter_slct {
    width: 212px;
    height: 35px;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 5px 0px, rgb(0 0 0 / 10%) 0px 0px 1px 0px;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    padding: 2px 10px 2px 22px;
    /* appearance: none; */
    color: #5a5a5a;
    transition: .3s ease-in;
    background: #7755a20d;
}

.select2-container--default .select2-selection--single {
    /*background-color: #7755a20d;*/
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    box-shadow: rgb(0 0 0 / 5%) 0px 0px 0px 1px;
}

.select2-container .select2-selection--single {
    height: 47px;
    padding: 7px 14px;
    box-shadow: rgb(0 0 0 / 5%) 0px 0px 0px 1px;
    border: 1px solid #d8d8d8;
    color: #5a5a5a;
    transition: .3s ease-in;
    /* background: #7755a20d; */
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    margin-top: 14px;
    /* height: 20px; */
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 10px;
    right: 1px;
    width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 32px;
}

.select_label {
    position: absolute;
    top: 26px;
    z-index: 10;
    left: 20px;
    background: #fff;
    font-size: 14px;
    /* top: 0; */
    font-family: var(--pragraph-font);
    color: var(--main-colorone);
}
.select_mt {
    margin-top: 15px;
}
.select_mb {
    margin-bottom: 15px;
}
.save_btn {
    padding: 10px 35px;
    font-family: var(--pragraph-font);
    border-radius: 5px;
    background: var(--button-color);
    color: rgb(255, 255, 255);
    font-size: 16px;
    border: 1px solid var(--button-color);
    transition: all 0.3s ease-in-out 0s;
    margin: 0px 0px 35px;
    width: 100%;
    font-weight: 500;
}

    .save_btn:hover {
        color: var(--button-color);
        background: #fff;
    }

.profup_btn {
    margin-top: 33px;
    /* width: 100%; */
    width: 100%;
}
.profilefield_grid {
    display: grid;
    gap: 1em;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 15px;
}
.profilefield_grid .label-float{
        margin-bottom: 5px!important;
}
.profleavebal_btn {
    padding: 4px 12px;
    font-family: var(--pragraph-font);
    border-radius: 5px;
    background: #ffffff;
    color: rgb(53 92 125);
    font-size: 16px;
    border: 1px solid var(--button-color);
    transition: all 0.3s ease-in-out 0s;
    /*margin: 0px 0px 35px;*/
    font-weight: 500;
}
.mdltable_inp {
    width: max-content;
    margin: 0 auto;
    text-align: center;
    width: 80px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border: 1px solid #e4e4e4;
    border-radius: 5px;
    color: #494949;
}
.mdltable_inp:focus{
    border: 1px solid #b3b3b3;
    outline:0;
}
.mdltable_inp:focus-visible{
    border: 1px solid #b3b3b3;
    outline:0;
}
input.mdltable_inp::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input.mdltable_inp[type=number] {
    -moz-appearance: textfield;
}
/*---------------Alert Guide----------------*/
@-webkit-keyframes animatop {
    0% {
        opacity: 0;
        bottom: -500px;
    }

    100% {
        opacity: 1;
        bottom: 0px;
    }
}

@keyframes animatop {
    0% {
        opacity: 0;
        bottom: -500px;
    }

    100% {
        opacity: 1;
        bottom: 0px;
    }
}

@-webkit-keyframes rotatemagic {
    0% {
        opacity: 0;
        transform: rotate(0deg);
        top: -24px;
        left: -253px;
    }

    100% {
        transform: rotate(-30deg);
        top: -24px;
        left: -78px;
    }
}

@keyframes rotatemagic {
    0% {
        opacity: 0;
        transform: rotate(0deg);
        top: -24px;
        left: -253px;
    }

    100% {
        transform: rotate(-30deg);
        top: -24px;
        left: -78px;
    }
}

.alert {
    display: none;
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 1000;
    width: 400px;
    /* height: 74px; */
    padding: 18px 17px;
    border-left: 4px solid #009d00;
}
/*.alert.show{
    display:block;
}*/
.alert-danger {
    border-left: 4px solid #f00 !important;
}
.alert .fa {
    margin-right: 0.5em;
}

.closealert {
    border: 0px;
    background-color: transparent;
    position: absolute;
    right: 13px;
    border-radius: 50%;
    padding: 3px 0px;
    top: 19px;
    line-height: 0;
    text-align: center;
    line-height: 0;
    padding: 2px 4px;
    margin: 0;
    transition: ease-in-out .3s;
}

    .closealert i {
        color: #ec180066;
        font-size: 14px;
        margin-top: 0px;
        transition: ease-in-out .3s;
    }

    .closealert:hover {
        border: 1px solid #ec180066;
        border-radius: 50%;
    }

.alert_txt {
    white-space: nowrap;
    word-break: keep-all;
    margin: 0;
}

.alert_txt i {
    color: var(--success-green);
}
.alert-danger .alert_txt i {
    color: var(--danger-red);
    margin-right: 5px;
}
.alert_dangertxt i {
    color: var(--danger-red);
}

.ok_btn {
    /* border: 1px solid #000; */
    outline: 0px;
    display: block;
    padding: 2px 17px;
    margin-bottom: 22px;
    border-radius: 3px;
    color: #fff;
    background: var(--button-color);
    border: 1px solid var(--button-color);
    cursor: pointer;
}

    .ok_btn:hover {
        color: #000;
        background: #fff;
        border: 1px solid var(--button-color);
    }

.round_check {
    color: #4BB543;
    font-size: 39px;
}

.modal-body h4 {
    font-family: var(--head-font);
    color: var(--button-color);
    margin-top: 17px;
    font-size: 22px;
}

#changeSuccessModal .modal-footer {
    border-top: 0px;
    padding: 0;
}
/*--------------eye icon-----------------*/

i.log_eyeicon {
    position: absolute;
    top: 16px;
    right: 17px;
    color: #909599;
    transition: .3s ease-in;
    cursor: pointer;
}

i.log_eyeicon1 {
    position: absolute;
    top: 16px;
    right: 18px;
    color: #909599;
    transition: .3s ease-in;
    display: none;
    cursor: pointer;
}

    i.log_eyeicon1:hover {
        color: #0699dd;
    }

i.log_eyeicon:hover {
    color: #0699dd;
    /* transform: scale(1.2);*/
}


/*--------------signup eye icon-----------------*/

i.sign_eyeicon {
    position: absolute;
    top: 46px;
    right: 17px;
    color: #909599;
    transition: .3s ease-in;
    cursor: pointer;
}

i.sign_eyeicon1 {
    position: absolute;
    top: 46px;
    right: 18px;
    color: #909599;
    transition: .3s ease-in;
    display: none;
    cursor: pointer;
}

    i.sign_eyeicon1:hover {
        color: #0699dd;
    }

i.sign_eyeicon:hover {
    color: #0699dd;
    /* transform: scale(1.2);*/
}


/*--------------signupConfirm eye icon-----------------*/

i.signp_eyeicon {
    position: absolute;
    top: 46px;
    right: 17px;
    color: #909599;
    transition: .3s ease-in;
    cursor: pointer;
}

i.signp_eyeicon1 {
    position: absolute;
    top: 46px;
    right: 18px;
    color: #909599;
    transition: .3s ease-in;
    display: none;
    cursor: pointer;
}

    i.signp_eyeicon1:hover {
        color: #0699dd;
    }

i.signp_eyeicon:hover {
    color: #0699dd;
    /* transform: scale(1.2);*/
}

/*-----Organization------------------------*/

.organi-img {
    width: 25px;
    height: 25px;
    /* border: 2px solid #fff; */
    padding: 3px;
    border-radius: 3px;
}

.leave_icon {
    stroke: #fff;
}

.sidebar-links a.active .leave_icon {
    stroke: #000;
}

.accoitem_bx {
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/
    border-radius: 5px;
    border: 0px;
    /*margin-bottom: 20px;*/
}

.orgmain_gridchild {
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 5px;*/
}

.accordion-button {
    border-radius: 6px;
}

.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 0px;
}

.accordion-flush .accordion-item {
    border-radius: 3px;
    border-left: 2px solid var(--icon-color);
}

.min_100 {
    min-height: 100%;
}

.accobrdr {
    border-left: 2px solid var(--icon-color);
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 5px;
}

.accordion-button:focus {
    z-index: 3;
    border-color: red;
    outline: 0;
    box-shadow: 0px 0px;
    background-color: transparent;
}

.orgmain_grid {
    display: grid;
    gap: 1em;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 25px;
}

.orgcomp_name {
    color: var(--texthead-color);
    margin-bottom: 1px;
    font-size: 17px;
}
/*.addneworgani_btn {
    border: 0;
    padding: 10px;
    background: var(--success-green);
    color: #fff;
    font-weight: 500;
    border-radius: 4px;*/

/* margin-bottom: 20px; */

/*position: fixed;
    z-index: 100;
    right: -2px;*/

/* top: 75px; */

/*}*/

.addneworgani_btn {
    display: block;
    border: 0px;
    border: 1px solid var(--success-green);
    text-align: center;
    position: fixed;
    z-index: 100;
    right: -2px;
    transition: all .35s;
    padding: 8px 17px;
    border-radius: 4px;
    background: var(--success-green);
    color: #fff;
}

    .addneworgani_btn span {
        position: relative;
        z-index: 2;
    }

    .addneworgani_btn:after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: #fff;
        transition: all .35s;
        border-radius: 4px;
    }

    .addneworgani_btn:hover {
        color: #000;
    }

        .addneworgani_btn:hover:after {
            width: 100%;
        }

.addnewdepa_btn {
    border: 0;
    padding: 10px;
    background: var(--success-green);
    color: #fff;
    font-weight: 500;
    border-radius: 4px;
    /* margin-bottom: 20px; */
    position: relative;
    z-index: 100;
    right: -2px;
}

.smbtn_pad {
    padding: 5px 15px;
}

.createby_txt {
    margin-bottom: 0px;
    font-size: 15px;
    color: #9e9e9e;
}

.accordion-button::after {
    border: 1px solid #a992fc;
    padding: 10px 18px;
    border-radius: 20px;
    /* width: 40px; */
    text-align: center;
    display: block;
    /* margin-left: 20px; */
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='icon icon-tabler icon-tabler-chevron-down' width='24' height='24' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M6 9l6 6l6 -6' /%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    box-shadow: 0px 0px 0px;
}

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='icon icon-tabler icon-tabler-chevron-down' width='24' height='24' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M6 9l6 6l6 -6' /%3E%3C/svg%3E");
        transform: var(--bs-accordion-btn-icon-transform);
    }

.edit_btn {
    display: inline-block;
    padding: 3px 23px;
    background-color: var(--button-color);
    color: #fff;
    border-radius: 4px;
    font-family: var(--pragraph-font);
    border: 1px solid var(--button-color);
    transition: ease-in-out .3s;
    font-weight: 500;
    cursor: pointer;
}

    .edit_btn i {
        margin-right: 5px;
    }

    .edit_btn:hover {
        background-color: #fff;
        color: #000;
        border: 1px solid var(--button-color);
    }

.Orgedit_formmain {
    /*margin-top: 51px;*/
    margin-top: 21px;
}

.addmemb_bxmain {
    /* padding: 23px; */
    box-shadow: rgb(53 92 125 / 38%) 0px 1px 4px;
    border-radius: 5px;
    min-height: 405px;
    position:relative;
}

.addmemb_searchbx {
    margin-top: 0px;
}

    .addmemb_searchbx i {
        position: absolute;
        top: 10px;
        left: 11px;
        color: var(--icon-color);
        font-size: 14px;
    }

.empsearch_input {
    border: 1px solid #ececec;
    border-radius: 5px;
    /* border-radius: 5px 5px 0px 0px; */
    padding: 4px 23px 4px 33px;
    width: 100%;
    /* margin-top: 12px; */
    background: #e7e2f95e;
}

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

.borderradio_top {
    border-radius: 5px 5px 0px 0px;
}

.empsearch_input:focus {
    /*border:0px;*/
    outline: 0px;
}

.useraddsub_bx {
    border-bottom: 1px solid #f3f3f3;
    padding: 5px;
}

.adduser_btn {
    border: 0px;
    padding: 1px 7px;
    border-radius: 3px;
    background: #ffffff;
    color: var(--success-green);
    /* font-weight: 600; */
    cursor: pointer;
    box-shadow: rgb(0 157 0 / 36%) 0px 0px 0px 1px;
    transition: ease-in-out .3s;
}

    .adduser_btn:hover {
        background: var(--success-green);
        color: #ffffff;
    }

.userserch_bxmain {
    box-shadow: rgb(0 0 0 / 11%) 0px 1px 4px;
    border-radius: 0px 0px 5px 5px;
    /* padding: 20px;*/
    position: absolute;
    width: 100%;
    background: #fff;
    z-index: 10;
    /*display: none;*/
    transition: ease-in .3s;
    height: 0px;
    overflow: hidden;
}

.search_show {
    /* display: block; */
    height: 248px;
    padding: 20px 13px;
    transition: ease-in .3s;
    overflow-y: auto;
}

.serchnotfound_bx img {
    width: 50px;
}

.serchnotfound_bx h6 {
    margin-top: 7px;
    color: #355c7d;
    font-size: 16px;
}

.modalbtn_close {
    position: absolute;
    right: 18px;
    top: 15px;
    border: 0px;
    background: #fff;
    /* color: var(--icon-color); */
    color: var(--danger-red);
    transition: ease-in .3s;
    padding: 4px 7px;
    /* border: 1px solid #000; */
    line-height: 0;
    border-radius: 50%;
    border: 1px solid #ffffff;
    box-shadow: rgb(177 177 177 / 36%) 0px 0px 0px 1px;
    z-index: 1000;
}

    .modalbtn_close:hover {
        border: 1px solid var(--danger-red);
    }

    .modalbtn_close i {
        font-size: 16px;
    }

.orgaddmodal_top {
    padding: 20px 0px;
}

.modal-body {
    padding: 5px 32px 30px;
}

.modal-content {
    border-radius: 25px;
    border: 0px;
}

.modal_head {
    color: var(--button-color);
    font-size: 21px;
}

    .modal_head:after {
    }

.label-float textarea.orgdiscri_height {
    height: 164px;
}

.user_icon {
    font-size: 84px;
    border: 1px solid #b8b8b8;
    border-radius: 50%;
    padding: 12px 28px;
    color: #bebebe;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, "");
    padding: 0;
}

.breadcrumb-item.active a {
    color: #000000;
    cursor: default;
}

a.home_icon i {
    border: 1px solid #e3e3e32e;
    padding: 6px;
    border-radius: 5px;
    color: var(--button-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.bredcrunxt_ic {
    color: #7e7e7e;
    margin-left: 8px;
}

.breadcrumb_ul {
    gap: .5em;
    display: flex;
    align-items: center;
    padding: 0px;
}

    .breadcrumb_ul li {
        padding: 0px;
    }

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0px;
}

.remove_btn {
    padding: 4px 12px;
    background: var(--danger-red);
    border: 0px;
    color: #fff;
    border-radius: 4px;
    margin-left: 12px;
}

    .remove_btn i {
        margin-left: 5px;
        border-left: 1px solid #ffffff61;
        padding-left: 8px;
        color: #d0d0d0;
    }

.dlt_btn {
    border: 0;
    padding: 5px;
    background: #fff;
    border-radius: 3px;
    color: var(--danger-red);
    box-shadow: rgb(236 24 0 / 33%) 0px 0px 0px 1px;
    transition: ease-in-out .3s;
    font-size: 13px;
    width: 30px;
    height: 25px;
    text-align: center;
}
.bxshadow_none {
    box-shadow: 0px 0px 0px 0px !important;
}
    .dlt_btn i {
    }

    .dlt_btn:hover {
        background: var(--danger-red);
        color: #fff;
    }

    .dlt_btn svg {
        /* color: beige; */
        width: 28px;
        stroke: var(--danger-red);
        display: block;
    }
/*-----------------Table-------------------*/

.table_div {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 0px 20px;
    border-radius: 5px;
    /*display: flex;
    margin-top: 15px;*/
}

.table_main {
    /* width: 87%; */
    margin: 22px auto;
    border-radius: 6px;
    color: #5d5d5d;
    /*box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;*/
}

    .table_main tr th {
        font-weight: 500;
        /*border-right: 1px solid #ededed;*/
        padding: 11px 15px;
        font-size: 17px;
    }

    .table_main tr td {
        /*border-right: 1px solid #ededed;*/
        padding: 11px 15px;
        font-size: 16px;
    }

.downld_btn {
    border: 0px;
    padding: 8px 20px;
    /* border: 1px solid var(--icon-color); */
    border-radius: 5px;
    font-weight: 500;
    background: var(--button-color);
    color: #fff;
    font-size: 14px;
    transition: ease-in-out .3s;
    border: 1px solid var(--inputfocus-color);
}

    .downld_btn:hover {
        background: #fff;
        color: var(--button-color);
        border: 1px solid var(--inputfocus-color);
    }

    .downld_btn i {
        margin-right: 4px;
    }

.upload_icon {
    color: #464646;
    font-size: 28px;
}

.input--file2 {
    bottom: 0;
    padding: 8px 0px;
    width: 100%;
    text-align: center;
    border: 2px dashed var(--icon-color);
    border-radius: 4px;
}

.choose_txt {
    display: block;
    font-size: 16px;
    margin: -6px 0px 0px 0px;
}

.input--file2 input[type="file"] {
    width: 100%;
    height: 85px;
}

.bulkup_upbx {
    margin: 112px 0px 11px;
    display: flex;
}

.lastbrdrnone_tbl tbody:last-child tr td {
    border-bottom: 0;
}
/*---------------Custom ScrollBar---------*/
.scrollbr_custom::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.scrollbr_custom::-webkit-scrollbar {
    width: 7px;
    background-color: #F5F5F5;
}

.scrollbr_custom::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: var(--icon-color);
}
/*-----------Bootstrap Tab----------------*/

.addmemb_bxmain .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #000;
    background-color: #fff;
    /*border-bottom: 2px solid #5e72e4;*/
    box-shadow: rgb(0 38 255 / 25%) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    border-radius: 5px;
}

.addmemb_bxmain .nav-item {
    border-radius: 0px;
    padding: 8px 10px;
}

.addmemb_bxmain .nav-pills .nav-link {
    border-radius: 0px;
    width: 100%;
    padding-bottom: 0px;
    /* font-family: var(--te); */
    font-family: var(--pragraph-font);
    font-weight: 500;
    color: #000;
    padding: 4px 0px;
    transition: ease-in-out .3s;
    border-radius: 5px;
}

    .addmemb_bxmain .nav-pills .nav-link:hover {
        box-shadow: rgb(0 38 255 / 25%) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    }

.tabitem_bx {
    /* padding-top: 1px; */
    border-bottom: 1px solid #ebebeb;
}

.topbx_shadow {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.bdr_left {
    border-right: 1px solid #ccc;
}

.addmemb_bxmain .tab_content {
    padding: 1px 13px 25px;
}

.createuser_btn {
    padding: 8px;
    /* border: 2px dashed var(--icon-color); */
    display: block;
    width: 100%;
    background: #fff;
    /* height: 163px; */
    font-weight: 500;
    border-radius: 4px;
    border: 0px;
    font-size: 15px;
    transition: all 0.3s ease;
}

    .createuser_btn:hover {
        background: #f2eefe;
        /*color:#fff;*/
    }

.bulkreg_img {
    width: 26px;
    display: block;
    text-align: center;
    margin: 0px auto 0px;
    /* filter: drop-shadow(0px 4px 2px #b4b4b4); */
    /* color: #b4b4b4; */
}

.createuser_btn i {
    display: block;
    font-size: 18px;
    margin-bottom: 3px;
    color: var(--button-color);
    /* filter: drop-shadow(0px 4px 2px #b4b4b4); */
}

.usersmain_bx {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    row-gap: .5em;
    height: 225px;
    overflow-y: auto;
    padding: 0px 12px 0px 0px;
}

.user_scrollbx {
    min-height: 225px;
    /*max-height: 213px;*/
}

.userssub_bx {
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 2px;
}

    .userssub_bx:last-child {
        border-bottom: 0px;
    }

.userlist_img {
    width: 40px;
    border-radius: 50%;
    height: 40px;
    object-fit: cover;
    border: 1px solid #5e72e4;
}

.user_usericon i {
    width: 45px;
    border-radius: 50%;
    height: 45px;
    object-fit: cover;
    text-align: center;
    border: 1px solid #5e72e4;
    padding: 12px;
    font-size: 1.1em;
    /* color: #5e72e4; */
    background: #f3f3f3;
}

.userimgname_bx {
}

    .userimgname_bx h6 {
        margin-left: 9px;
        margin-bottom: 0;
        font-size: 14px;
    }

.emailsm_txt {
    margin: 0px 0px 6px 9px;
    font-size: 13px;
}

.userbx_mainmain {
}

.useraddbtn_gp {
    border-top: 1px solid #d3d3d3;
    position: relative;
    bottom: -44px;
    width: 100%;
    left: 0;
    position: absolute;
}

.brdr_left {
    border-right: 1px dashed #c9c9c9;
    /* border-radius: 0; */
    border-radius: 0px 0px 0px 5px;
}

.row_brdr {
    /* border-bottom: 1px solid #f3f3f3; */
    /* box-shadow: 0px 11px 9px -15px #11111169; */
    padding-bottom: 15px;
    border-radius: 5px;
}

.second_head {
    color: #495057;
    margin-bottom: 20px;
    text-align: center;
    font-size: 22px;
}
/*------------------Flip Checkbx-------------*/

.checkbox-wrapper-45 {
    position: relative;
}

    .checkbox-wrapper-45 input[type="checkbox"] {
        display: none;
        visibility: hidden;
    }

    .checkbox-wrapper-45 .cbx {
        -webkit-perspective: 20;
        perspective: 20;
        display: inline-block;
        border: 2px solid #e8e8eb;
        background: #e8e8eb;
        border-radius: 4px;
        transform: translate3d(0, 0, 0);
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .checkbox-wrapper-45 .cbx:hover {
            border-color: #0b76ef;
        }

    .checkbox-wrapper-45 .flip {
        display: block;
        transition: all 0.4s ease;
        transform-style: preserve-3d;
        position: relative;
        width: 18px;
        height: 18px;
    }

    .checkbox-wrapper-45 input[type="checkbox"]:checked + .cbx {
        border-color: #0b76ef;
    }

        .checkbox-wrapper-45 input[type="checkbox"]:checked + .cbx .flip {
            transform: rotateY(180deg);
        }

    .checkbox-wrapper-45 .front, .checkbox-wrapper-45 .back {
        backface-visibility: hidden;
        position: absolute;
        top: 0;
        left: 0;
        width: 18px;
        height: 18px;
        border-radius: 2px;
    }

    .checkbox-wrapper-45 .front {
        background: #fff;
        z-index: 1;
    }

    .checkbox-wrapper-45 .back {
        transform: rotateY(180deg);
        background: var(--icon-color);
        text-align: center;
        color: #fff;
        line-height: 18px;
        box-shadow: 0 0 0 1px var(--icon-color);
    }

        .checkbox-wrapper-45 .back svg {
            margin-top: -1px;
            fill: none;
        }

            .checkbox-wrapper-45 .back svg path {
                stroke: #fff;
                stroke-width: 2.5;
                stroke-linecap: round;
                stroke-linejoin: round;
            }
/*-----------------Custom Select------------*/

.custom-select {
    position: relative;
    width: 86px;
}

    .custom-select select {
        display: none;
    }
/*.select-selected {
    background-color: DodgerBlue;
}*/

.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 9px;
    width: 7px;
    height: 7px;
    border-style: solid;
    border-color: #000;
    border-width: 0px 1px 1px 0px;
    transition: ease-in-out .3s;
    transform: rotate(45deg);
}

.select-selected.select-arrow-active:after {
    /* border-color: transparent transparent #000 transparent; */
    top: 18px;
    border-style: solid;
    border-color: #000;
    border-width: 0px 1px 1px 0px;
    transform: rotate(-135deg);
}

.select-items div, .select-selected {
    color: #777;
    padding: 8px 10px;
    /* border: 1px solid transparent; */
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    border: 1px solid;
}

.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid #c7c7c74d;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border-radius: 5px;
}

.select-hide {
    display: none;
}
/*.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}*/

.exlup_main {
    /*display: flex;
    gap: 1em;
    padding: 0 30px;*/
}
/*-------Custom Select Sidemenu---------------*/

.custom-orgselect {
    position: relative;
    margin-top: 5px;
}

    .custom-orgselect select {
        display: none;
    }

.sidem_slctmain {
    width: 100%;
}

    .sidem_slctmain .select-items div, .select-selected {
        color: #000;
        padding: 7px 0px;
        /* border: 1px solid transparent; */
        border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
        cursor: pointer;
        border-bottom: 1px solid #f4f4f4;
        font-size: 14px;
    }

    .sidem_slctmain .select-items div {
        color: #181818;
        border-bottom: 1px solid #eeeeee;
        transition: ease-in-out .3s;
        border-radius: 3px;
        /* padding: 0; */
        padding: 7px 9px;
        border-radius: 0;
        font-weight: 400;
        text-transform: capitalize !important;
    }

        .sidem_slctmain .select-items div:last-child {
            border: 0px;
        }

        .sidem_slctmain .select-items div:hover {
            background: #355c7d;
            color: #fff;
        }

    .sidem_slctmain .select-selected {
        color: #fff;
    }

    .sidem_slctmain .select-selected {
        color: #fff;
        padding: 0px 0px 0px;
        width: 170px;
        overflow: hidden;
        /* border-bottom: 1px solid #a992fc80; */
        border: 0;
        overflow: hidden;
        max-width: 24ch;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: 300;
    }

    .sidem_slctmain .select-items {
        min-width: max-content;
        z-index: 10000;
        border-radius: 2px;
        /* padding: 0px 4px; */
        transition: ease-in-out .3s;
        background: rgb(53 92 125 / 31%);
        border-radius: 3px;
        box-shadow: 0 4px 30px rgb(0 0 0 / 57%);
        backdrop-filter: blur(4.6px);
        -webkit-backdrop-filter: blur(7.6px);
        margin-top: 3px;
        background: white;
        padding: 0;
        border: 0;
    }

    .sidem_slctmain .select-selected:after {
        border-width: 0;
        /* padding: 3px; */
        color: #fff;
        border-color: #b9a6fd;
        top: 6px;
        right: -2px;
        background: url(../img/down-icon-sm.svg)no-repeat;
        width: 13px;
        height: 11px;
        transform: rotate(0deg);
        transition: all .5s linear;
    }

    .sidem_slctmain .select-selected:before {
        position: absolute;
        content: "";
        width: 16px;
        height: 15px;
        background: #fff;
        right: -3px;
        top: 2px;
        border-radius: 3px;
    }

    .sidem_slctmain .select-selected.select-arrow-active:after {
        border-width: 0;
        transform: rotate(180deg);
        top: 2px;
        right: -1px;
    }

    .sidem_slctmain .select-hide {
        /*transform:scale(0);*/
        max-height: 300px;
        opacity: 0;
        pointer-events: none;
        transform-origin: top left;
        transform: scale(1, 0);
        transition: all ease-in-out 0.3s;
        display: block;
    }
/*-------------Delete Modal---------------*/

.dltmdl_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .dltmdl_content i {
        color: var(--danger-red);
        font-size: 23px;
        padding: 17px 17px;
        border-radius: 50%;
        background: #ec18002b;
        margin-top: 14px;
    }

    .dltmdl_content h3 {
        font-size: 23px;
        margin-top: 9px;
        color: #000;
    }

    .dltmdl_content p {
        text-align: center;
        margin-bottom: 0;
    }

.mdldlt_btn {
    border: 0;
    padding: 5px 20px;
    background: var(--danger-red);
    color: #fff;
    font-weight: 500;
    border-radius: 20px;
}

.mdlclose_btn {
    border: 0;
    padding: 5px 20px;
    font-weight: 500;
    border-radius: 20px;
    background: #5c5b5d1f;
}

span.dltmdl_username {
    font-weight: 600;
    color: var(--danger-red);
}

.delete_modal .modal-footer {
    border: 0px;
}

.delete_modal .modal-body {
    padding: 0px 10px;
}
/*----------------Leave--------------------*/

.leave_form {
    width: 100%;
}

    .leave_form .select-items div {
        color: #777;
        padding: 8px 10px;
        cursor: pointer;
        /* box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px; */
        border: 0px solid #ebebeb;
        transition: ease-in-out .3s;
        /* border-radius: 4px; */
    }

        .leave_form .select-items div:hover {
            background-color: var(--icon-color);
            color: #fff;
        }

    .leave_form .select-selected {
        color: #777;
        padding: 8px 10px;
        cursor: pointer;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
        border: 0.5px solid #ebebeb;
        border-radius: 4px;
        transition: ease-in-out .3s;
    }

        .leave_form .select-selected:focus {
            border: 1px solid var(--inputfocus-color);
        }

    .leave_form .select-items {
        position: absolute;
        background-color: #fff;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 99;
        border: 1px solid #c7c7c74d;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
        border-radius: 5px;
        transition: ease-in-out .3s;
    }

.customslct_label {
    display: block;
    margin: 20px 0px;
}

.customslct_main {
    width: 100%;
}

.date_input {
}

.leave_form input[type="date"] {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border: 0.5px solid #ebebeb;
    background-color: #fff;
    padding: 9px 20px;
    color: #686868;
    /* font-size: 18px; */
    outline: none;
    border-radius: 4px;
    width: 100%;
}

.leave_form input[type="datetime"] {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border: 0.5px solid #ebebeb;
    background-color: #fff;
    padding: 9px 20px;
    color: #686868;
    /* font-size: 18px; */
    outline: none;
    border-radius: 4px;
    width: 100%;
}

.leave_form input[type="date"]:focus-visible {
    border: 1px solid var(--inputfocus-color);
}

.leave_form ::-webkit-calendar-picker-indicator {
    background-color: #a992fc42;
    padding: 4px;
    cursor: pointer;
    border-radius: 3px;
}

.leave_form textarea {
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border: 0.5px solid #ebebeb;
    width: 100%;
    padding: 12px 20px;
    height: 140px;
}

    .leave_form textarea:focus-visible {
        border: 1px solid var(--inputfocus-color);
        outline: 0px;
    }

.leavedate_main {
    width: 100%;
}
.custom-datepicker .datepicker-day[data-date][data-holiday="true"] {
    color: red;
}
.status_bx {
    display: flex;
    /* justify-content: center; */
    margin: 26px 0px 0px;
    align-items: baseline;
    gap: 10px;
    flex-direction: column;
}

    .status_bx p {
        margin: 0;
    }

span.frm_date {
    border: 1px solid rgb(216, 216, 216);
    padding: 1px 8px;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    font-weight: 500;
    color: #303030;
    margin: 0px 6px 0px 0px;
}

span.to_date {
    border: 1px solid #d8d8d8;
    padding: 1px 8px;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    font-weight: 500;
    color: #303030;
    margin: 0px 0px 0px 6px;
}

span.day_count {
    border: 1px solid #d8d8d8;
    padding: 1px 10px;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    font-weight: 600;
    color: #303030;
    margin: 0px 0px 0px 1px;
    color: var(--icon-color);
}

element.style {
}

.wrapper_calendar.small-calendar .calendar .days li {
    z-index: 1;
    cursor: pointer;
    position: relative;
    margin-top: 17px;
    font-size: 14px;
}

.calendar .days li {
    z-index: 1;
    cursor: pointer;
    position: relative;
    margin-top: 30px;
}

.calendar li.holiday {
    color: #fff;
    font-weight: 500;
}

.popupdate_p {
    margin-bottom: 0px;
    border: 1px solid #d1d1d1;
    padding: 3px 16px;
    display: inline;
    border-radius: 5px;
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    text-align: center;
    color: #7789fe;
}
/*-------------custom check-------------*/

.checkbox-wrapper-48 label {
    font-size: 1em;
    margin-top: 10px;
    transition: ease-in-out .3s;
}

.label_p {
    display: inline;
    font-size: 14px;
    transition: ease-in-out .3s;
}
/* CORE STYLES */

.checkbox-wrapper-48 input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 1em;
    height: 1em;
    font: inherit;
    border: 0.1em solid #9098a9;
    margin-bottom: -0.125em;
    transition: ease-in-out .3s;
    cursor: pointer;
}

    .checkbox-wrapper-48 input[type=checkbox] {
        border-radius: 0.25em;
    }

    .checkbox-wrapper-48 input:checked {
        border-color: transparent;
        background: var(--icon-color) border-box;
        box-shadow: 0 0 0 0.1em inset #fff;
    }

        .checkbox-wrapper-48 input:checked ~ .label_p {
            color: var(--icon-color);
        }
/*.checkbox-wrapper-48 input:not(:checked):hover {
        border-color: transparent;
        background: var(--icon-color);
   }*/

/*-------------------------------------*/

/*---------Custom Radio Button----------*/

.radiobtn_bx {
    color: #AAAAAA;
    display: block;
    position: relative;
}

    .radiobtn_bx input[type=radio] {
        position: absolute;
        visibility: hidden;
    }

    .radiobtn_bx label {
        display: block;
        position: relative;
        font-weight: 500;
        font-size: 13px;
        padding: 0px 14px 0px 20px;
        margin: 13px auto 0px;
        /* height: 32px; */
        z-index: 9;
        cursor: pointer;
        -webkit-transition: all 0.25s linear;
        white-space: nowrap;
    }

    .radiobtn_bx .check {
        display: block;
        position: absolute;
        border: 2px solid #AAAAAA;
        border-radius: 100%;
        height: 16px;
        width: 16px;
        top: 14px;
        /* left: 20px; */
        z-index: 5;
        transition: border .25s linear;
        -webkit-transition: border .25s linear;
    }

        .radiobtn_bx .check::before {
            display: block;
            position: absolute;
            content: '';
            border-radius: 100%;
            height: 8px;
            width: 8px;
            top: .1em;
            left: .1em;
            margin: auto;
            transition: background 0.25s linear;
            -webkit-transition: background 0.25s linear;
        }

    .radiobtn_bx input[type=radio]:checked ~ .check {
        border: 3px solid var(--icon-color);
    }

        .radiobtn_bx input[type=radio]:checked ~ .check::before {
            background: var(--icon-color);
        }

    .radiobtn_bx input[type=radio]:checked ~ label {
        color: var(--icon-color);
        font-weight: 600;
    }

.radiobtn_bxmain {
    display: flex;
    flex-wrap: wrap;
}
/*---------------Calendar Style------------ */

.wrapper_calendar {
    /* width: 450px; */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    /*height: 100%;*/
}

    .wrapper_calendar header {
        display: flex;
        align-items: center;
        padding: 25px 30px 10px;
        justify-content: space-between;
    }

        .wrapper_calendar header .icons {
            display: flex;
        }

            .wrapper_calendar header .icons i {
                font-size: 15px;
            }

            .wrapper_calendar header .icons span {
                height: 38px;
                width: 38px;
                margin: 0 1px;
                cursor: pointer;
                color: #878787;
                text-align: center;
                line-height: 38px;
                font-size: 1.9rem;
                user-select: none;
                border-radius: 50%;
            }
                /*.icons span:last-child {
    margin-right: -10px;
}
*/

                .wrapper_calendar header .icons span:hover {
                    background: #f2f2f2;
                }

        .wrapper_calendar header .current-date {
            font-size: 1.45rem;
            font-weight: 500;
        }

.calendar {
    padding: 20px;
}

    .calendar ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        text-align: center;
        padding-left: 0;
    }

    .calendar .days {
        margin-bottom: 20px;
    }

    .calendar li {
        color: #333;
        width: calc(100% / 7);
        font-size: 1.07rem;
    }

    .calendar .weeks li {
        font-weight: 500;
        cursor: default;
    }

    .calendar .days li {
        z-index: 1;
        cursor: pointer;
        position: relative;
        margin-top: 30px;
    }

.days li.inactive {
    color: #aaa;
}

.days li.active {
    color: #fff;
    font-weight: 500;
}

.days li::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    height: 40px;
    width: 40px;
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.days li.active::before {
    background: #9B59B6;
}

.days li:not(.active):hover::before {
    background: #f2f2f2;
}
/*--------------CAlender event Popup------------*/

.calendar_event {
    display: none;
    position: absolute;
    right: 1px;
    z-index: 1000;
    padding: 18px 17px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    width: 93%;
    border-radius: 6px;
    margin-top: 27px;
    left: 14px;
    /* width: 100%; */
}

.eventpopup .fa {
    margin-right: 0.5em;
}

.caledit_btn {
    padding: 4px;
    border: 0px;
    border-radius: 5px;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    background: #fff;
    color: #009d00;
    box-shadow: rgb(0 157 0 / 36%) 0px 0px 0px 1px;
    width: 30px;
    height: 25px;
    text-align: center;
    transition: ease-in-out .3s;
    font-size: 13px;
}
.caledit_btn:hover {
    background: #009d00;
    color: #fff;
 }

.caldlt_btn {
    padding: 4px;
    width: 35px;
    height: 30px;
    text-align: center;
}
.deleteall_btn {
    border: 0;
    padding: 5px 10px;
    background: #fff;
    border-radius: 3px;
    color: var(--danger-red);
    box-shadow: rgb(236 24 0 / 33%) 0px 0px 0px 1px;
    transition: ease-in-out .3s;
    width: max-content;
    line-height: 0;
    font-size: 14px;
    height: 26px;
}
.deleteall_btn:hover {
    background: var(--danger-red);
    color: #fff;
}
.newholi_btn {
    padding: 6px 14px;
    background: #7789fe;
    border-radius: 5px;
    color: #fff;
    border: 0px;
    margin-top: 15px;
}

.holireson_bxmain {
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 14px;
}

    .holireson_bxmain:last-child {
        border-bottom: 0px;
    }

.leave_reson {
    margin: 0px;
    font-size: 17px;
    color: #000;
}

.leavedep_name {
    margin: 0;
    font-size: 14px;
}

.leave_datecal {
    margin: 6px 0px 5px;
    font-size: 14px;
}

    .leave_datecal span {
        color: var(--icon-color);
    }

.slideDown {
    animation-name: slideDown;
    -webkit-animation-name: slideDown;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(8%);
    }

    65% {
        transform: translateY(-4%);
    }

    80% {
        transform: translateY(4%);
    }

    95% {
        transform: translateY(-2%);
    }

    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
    }

    50% {
        -webkit-transform: translateY(8%);
    }

    65% {
        -webkit-transform: translateY(-4%);
    }

    80% {
        -webkit-transform: translateY(4%);
    }

    95% {
        -webkit-transform: translateY(-2%);
    }

    100% {
        -webkit-transform: translateY(0%);
    }
}
.modal_coverbox {
    background: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10000;
    opacity: .4;
    border-radius: 25px;
    display:none;
    transition:ease-in-out .3s;
}
/*----------------------------------------------*/
/*--------------Calendar Small-------------*/
.wrapper_calendar.small-calendar header .current-date {
    font-size: 1.1em;
    margin-bottom: 0;
    color: #7789fe;
}

.wrapper_calendar.small-calendar header {
    display: flex;
    padding: 13px 13px 18px;
    justify-content: space-between;
    align-items: baseline;
}

.wrapper_calendar.small-calendar .calendar {
    padding: 0px 7px 19px;
}

    .wrapper_calendar.small-calendar .calendar .days li {
        z-index: 1;
        cursor: pointer;
        position: relative;
        margin-top: 17px;
        font-size: 14px;
    }

        .wrapper_calendar.small-calendar .calendar .days li:hover .tooltip_bxcalen {
            color: #f00;
            display: block;
        }

    .wrapper_calendar.small-calendar .calendar .weeks li {
        font-weight: 500;
        cursor: default;
        font-size: 15px;
    }

.wrapper_calendar.small-calendar header .icons i {
    font-size: 12px;
}

.wrapper_calendar.small-calendar .calendar ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    text-align: center;
    padding-left: 0;
    margin-bottom: 0;
}

.wrapper_calendar.small-calendar header .icons {
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: baseline;
}

.wrapper_calendar.small-calendar .calendar .days li::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    height: 30px;
    width: 30px;
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.wrapper_calendar.small-calendar .calendar .days li.holiday::before {
    background: #ff00009c;
    color: #fff;
}
/*----------------Calendar Page---------*/

select {
    -webkit-transition: none !important;
    transition: none !important;
}
.normal_select {
    color: #777;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border: 0.5px solid #ebebeb;
    border-radius: 4px;
    transition: ease-in-out .3s;
    width: 100%;
    padding: 11px 13px;
    background: #fff;
    border-bottom: 2px solid #ffffff;
}
.normal_select:focus-visible {
    border-bottom: 2px solid var(--icon-color);
    outline: 0px;
}
.slct_label {
    pointer-events: none;
    position: absolute;
    /* top: calc(50% - 8px); */
    left: 15px;
    transition: all .1s linear;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    background-color: white;
    /* padding: 5px; */
    box-sizing: border-box;
    font-size: 14px;
    top: -10px;
    font-family: var(--pragraph-font);
    color: var(--main-colorone);
}

.text-area {
    border-radius: 4px;
    outline: none;
    width: 100%;
    padding: 11px 17px;
    font-size: 16px;
    transition: all .1s linear;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -webkit-appearance: none;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    height: 100px;
    border: 0.5px solid #ebebeb;
    width: 100%;
}
/*--------------tooltip--------------------*/

button.calendar_hoverbtn {
    position: relative;
    color: #fff;
}

    button.calendar_hoverbtn:hover span {
        opacity: 1;
        transform: translate(-50%, 0);
    }

.tooltip_bxcalen {
    position: relative;
    left: 50%;
    bottom: 100%;
    /* opacity: 0;*/
    margin-bottom: 1em;
    padding: 1em;
    background-color: #000;
    font-size: 0.6em;
    line-height: 1.6;
    text-align: left;
    white-space: nowrap;
    transform: translate(-50%, 1em);
    transition: all 0.15s ease-in-out;
    z-index: 1000;
    display: none;
}
/*.wrapper_calendar.small-calendar .calendar .days li:hover .tooltip_bxcalen {
    display: block;
}*/

button.calendar_hoverbtn span {
    position: absolute;
    left: 50%;
    bottom: 100%;
    opacity: 0;
    margin-bottom: 1em;
    padding: 1em;
    background-color: #000;
    font-size: 0.6em;
    line-height: 1.6;
    text-align: left;
    white-space: nowrap;
    transform: translate(-50%, 1em);
    transition: all 0.15s ease-in-out;
}

    button.calendar_hoverbtn span::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        width: 0;
        height: 0;
        border: 0.5em solid transparent;
        border-top-color: #000;
        transform: translate(-50%, 0);
    }
/*---------Table Calendar-----------------*/

.basiccal_main {
    /* width: 450px; */
    background: #fff;
    border-radius: 10px;
    /*box-shadow: 0 15px 40px rgba(0,0,0,0.12);*/
    height: 100%;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.calnxtprev_icon span {
    height: 38px;
    width: 38px;
    margin: 0 1px;
    cursor: pointer;
    color: #878787;
    text-align: center;
    line-height: 32px;
    font-size: 1.9rem;
    user-select: none;
    border-radius: 50%;
}

    .calnxtprev_icon span i {
        font-size: 14px;
    }

    .calnxtprev_icon span:hover {
        background: #f2f2f2;
    }

.basiccal_main ul.weeks {
    display: flex;
    /*gap: 2.3em;*/
    padding: 0px;
}

    .basiccal_main ul.weeks li {
        font-weight: 500;
        cursor: default;
        font-size: 15px;
        width: calc(100% / 7);
        text-align: center;
    }

ul.caldate {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    text-align: center;
    padding-left: 0;
    margin-bottom: 0;
}

    ul.caldate li.days {
        z-index: 1;
        cursor: pointer;
        position: relative;
        margin-top: 17px;
        font-size: 13px;
        width: calc(100% / 7);
    }

        ul.caldate li.days.inactive {
            color: #c8c8c8;
        }

        ul.caldate li.days.active {
            color: #fff;
            font-weight: 500;
        }

        ul.caldate li.days.holiday {
            color: #fff;
        }

        ul.caldate li.days.active.holiday {
        }

        ul.caldate li.days::before {
            position: absolute;
            content: "";
            left: 50%;
            top: 50%;
            height: 30px;
            width: 30px;
            z-index: -1;
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        ul.caldate li.days:not(.active, .attendance, .overtime, .pending, .approved, .rejected):hover::before {
            background: #f2f2f2;
        }

        ul.caldate li.days.holiday:hover::before {
            background: #ff0000a6;
        }

        ul.caldate li.days.active::before {
            background: #9B59B6;
        }

        ul.caldate li.days.holiday::before {
            background: #ff0000a6;
            width: 25px;
            height: 25px;
        }

        ul.caldate li.days.active.holiday::before {
            width: 30px;
            height: 30px;
            background: #c12c00;
        }

.basiccal_main {
}

.cal_indicmain {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 15px 10px;
    border-radius: 9px;
    margin-bottom: 10px;
}

.cal_indicsmbx {
}

.cal_indicsmbxmain {
    display: grid;
    gap: .8em;
    grid-template-columns: repeat(3, auto);
}

.cal_indicsmbx p {
    margin-bottom: 0px;
}

.cal_indicicon {
    width: 20px;
    height: 20px;
    margin-right: 3px;
    border-radius: 50%;
}
.cal_indiciconsm {
    width: 16px;
    height: 16px;
}
.holiday_label {
    background: #ff5959;
}

.overtime_label {
    background: #0dc9c5;
}

.attendance_label {
    border: 2px solid #0dc9c5;
}

.pending_label {
    background-color: #f7d636;
}

.rejected_label {
    background: #ff00005e;
    border: 1px solid #ff0000a6;
}

.approved_label {
    background-color: var(--success-green);
}
.currentdtcal_sm {
    font-size: 14px;
    margin-bottom: 13px;
    color: #1a2e3e;
}
.calinditxt_sm{
    font-size:14px;
}
/*------------OverTime Add Clendar------------*/
.popcalendar_main {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 1000;
    -webkit-animation: blowUpContent 0.3s forwards;
    animation: blowUpContent 0.3s forwards;
}
/*.popcalendar {
    position: absolute;
    z-index: 10000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
}*/
.popcalendar {
    position: absolute;
    z-index: 10000;
    position: relative;
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    height: auto;
    width: 467px;
    margin: 0 auto;
}
@keyframes blowUpContent {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    99.9% {
        transform: scale(1);
        /*opacity: 0;*/
    }

    100% {
        transform: scale(1);
    }
}
/*@-webkit-keyframes show-popup {
    0% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0;
    }

    45% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }

    80% {
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes show-popup {
    0% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0;
    }

    45% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }

    80% {
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}*/
/*--------------Big Calendar----------------*/
.bigcal_main {
    padding: 0px;
    padding-bottom: 54px;
    height: auto;
}

.caltop_bx {
    padding: 8px 17px 5px;
    border-bottom: 1px solid #dedede;
}

.bigcal_main .current-date {
    font-size: 1.6rem;
    color: #355c7d;
    font-weight: 500;
}

.bigcal_main ul.weeks li {
    font-size: 17px;
}

.bigcal_main ul.caldate li.days {
    font-size: 16px;
    margin-top: 28px;
    z-index: auto;
}

    .bigcal_main ul.caldate li.days::before {
        position: absolute;
        content: "";
        left: 50%;
        top: 50%;
        height: 35px;
        width: 35px;
        z-index: 1;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }
/* .bigcal_main ul.caldate li.days.holiday::before {
    background: #ff0000a6;
    width: 27px;
    height: 27px;
 }*/

.datespa {
    position: relative;
    z-index: 10;
    padding: 10px;
}

.leavebluetxt {
    color: var(--main-colorone);
}

.days.overtime {
    color: #fff;
}

    .days.overtime::before {
        background: #0dc9c5;
    }

.days.attendance {
    color: #000;
}

    .days.attendance::before {
        /* background-color: #0dc9c5; */
        border: 1px solid #0dc9c5;
    }
/*.days.attendance::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 4px;
    background: #0dc9c5;
    right: 81px;
    border-radius: 50%;
    top: 20px;
}*/

.days.pending {
    color: #fff;
}

    .days.pending::before {
        background-color: #f7d636;
    }

.days.rejected {
    color: #000;
}

    .days.rejected::before {
        background: #ff00005e;
        border: 1px solid #ff0000a6;
    }

.days.approved {
    color: #fff;
}

    .days.approved::before {
        background-color: var(--success-green);
    }
/*---------Big Calendar EventPopup---------*/

.bigcal_event {
    display: none;
    border-radius: 6px;
    margin-top: 0px;
    left: 0px;
    position: absolute;
    top: 52px;
    padding: 13px;
    width: 177px;
}

    .bigcal_event:before {
        content: "";
        width: 30px;
        height: 30px;
        /* background-color: red; */
        position: absolute;
        top: -16px;
        transform: rotate(45deg);
        z-index: -8;
        border: 1px solid #d0d0d0;
        /* box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px; */
        border-bottom: 0;
        border-right: 0;
        background-color: #fff;
        left: 5%;
    }

.holireson_bxsub {
    /*margin-bottom: 9px;*/
    border-bottom: 1px solid #e8e8e8;
}

    .holireson_bxsub:last-child {
        border-bottom: 0px;
    }

    .holireson_bxsub:first-child {
        margin-bottom: 9px;
        padding-bottom: 5px;
    }

.bigcal_event .holireson_bxmain {
    margin-bottom: 0px;
}

.bigcalennxtpre_main {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-radius: 30px;
}

.bigcal_main .calnxtprev_icon span {
    height: 38px;
    width: 38px;
}
/*.bigcal_main ul.caldate li.d:hover .testbx {
    display: block;
}*/

/*.bigcal_main ul.caldate li.days.holiday span:hover .bigcal_event {
    display:block;
}
.bigcal_main ul.caldate li.days.holiday span:hover .calendar_event {
    display: block;
}*/

.daybx_sm {
    display: inline;
}

.slideUp {
    animation-name: slideUp;
    -webkit-animation-name: slideUp;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important;
}

@keyframes slideUp {
    /*    100% {
        transform: translateY(-100%);
    }
    95% {
        transform: translateY(8%);
    }
    80% {
        transform: translateY(4%);
    }
    65% {
        transform: translateY(-4%);
    }
    50% {
       transform: translateY(8%);
    }
    0% {
       transform: translateY(-0%);
    }

*/
    0% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(8%);
    }

    65% {
        transform: translateY(-4%);
    }

    80% {
        transform: translateY(4%);
    }

    95% {
        transform: translateY(-2%);
    }

    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(-100%);
    }

    50% {
        -webkit-transform: translateY(8%);
    }

    65% {
        -webkit-transform: translateY(-4%);
    }

    80% {
        -webkit-transform: translateY(4%);
    }

    95% {
        -webkit-transform: translateY(-2%);
    }

    100% {
        -webkit-transform: translateY(0%);
    }
}

.rejectbg {
    background: #ffa1a1;
}

    .rejectbg:before {
        background: #ffa1a1;
    }

.approvebg {
    background: rgb(0 157 0 / 100%);
    color: #fff;
}

    .approvebg:before {
        background: rgb(0 157 0 / 45%);
    }

.pendingbg {
    background: #fbde50;
}

    .pendingbg:before {
        background: #fbde50;
    }
/*----------Department, leave Tabs---------*/

.btm_tabpillsmain {
    /*border: 1px solid #d9d9d9;
    padding: 10px 8px;*/
    border-radius: 5px;
    /*box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .075);*/
}

.nav-pills.btm_tabpills .nav-link {
    color: #676767;
    font-weight: 400;
    padding: 0;
    border-radius: 5px;
    padding: 6px 10px;
    transition: ease-in-out .3s;
}

    .nav-pills.btm_tabpills .nav-link:hover {
        box-shadow: rgb(0 38 255 / 25%) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    }

    .nav-pills.btm_tabpills .nav-link.active, .nav-pills .show > .nav-link {
        background-color: rgb(255, 255, 255);
        color: rgb(0, 0, 0);
        /*border: 1px solid rgb(0 38 255 / 25%);*/
        box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
        box-shadow: rgb(0 38 255 / 25%) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
        font-weight: 500;
        position: relative;
    }

.orgtabcnt_brdr {
    box-shadow: rgb(0 38 255 / 25%) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    padding: 12px 40px;
    border-radius: 15px;
    position: relative;
    margin-top: 28px;
}

/*.nav-pills.btm_tabpills .nav-link.active:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;*/
    /* background: #000; */
    /*top: 65px;
    border: 1px solid #bbb;
    transform: rotate(181deg);
    border: 0px 1px 0px;
    border-width: 1px 0px 0px 1px;
    background: #fff;
    z-index: 1;*/
    /* border-left: 25px solid transparent; */
    /* border-right: 25px solid transparent; */
    /* border-bottom: 26px solid #ffffff; */
    /*transform: translate(-50%, -50%);
    left: 50%;
    transform: rotate(45deg) translateX(-74%);
}*/
/*-------------Notification Box------------*/
.notifybx_main {
    width: 21.8rem;
    height: 26.2rem;
    position: fixed;
    background: white;
    right: 1rem;
    border-radius: 10px;
    box-shadow: rgb(53 92 125 / 38%) 0px 1px 4px;
    top: 4.5rem;
    display: none;
    z-index: 1000;
}

.notify_topbar {
    padding: 15px 22px 4px;
    border-bottom: 1px solid #d6d6d6;
}

.notify_body {
}

.notify_head {
    font-size: 20px;
}

.notify_single {
    overflow-y: auto;
    height: 307px;
}

.notify_singlebx {
    display: flex;
    align-items: center;
    gap: .6em;
    padding: 4px 16px;
    /* margin-top: 4px; */
    border-bottom: 1px solid #e5e5e5;
    transition: ease-in-out .3s;
    cursor: pointer;
}

    .notify_singlebx:hover {
        background: #e4e4e4;
    }

.notify_single img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #b8a5fc;
    padding: 1px;
    object-fit: cover;
}

.notify_single h6 {
    font-size: 16px;
    font-family: var(--pragraph-font);
    margin-bottom: 3px;
}

    .notify_single h6 span {
        font-family: var(--head-font);
        font-size: 16px;
        color: #355c7d;
    }

.notifydatetime {
    display: flex;
    /* justify-content: space-between; */
    /* padding: 0px 18px; */
    gap: .5em;
}

    .notifydatetime p {
        font-size: .8em;
        color: #959595;
        margin: 0;
    }

.viewallnotify_btn {
    position: absolute;
    bottom: 17px;
    right: 15px;
    padding: 5px 15px;
    font-size: 15px;
    transition: ease-in-out .3s;
    border: 1px solid #7789fe;
    font-weight: 500;
}

    .viewallnotify_btn:hover {
        color: #7789fe;
        background: #fff;
    }

.notify_count {
    position: absolute;
    background: #ec6293;
    line-height: 0;
    padding: 8px 0px;
    border-radius: 7px 3px 7px 7px;
    color: #fff;
    font-size: 13px;
    top: 0;
    right: 0;
    text-align: center;
    font-weight: 500;
    width: 17px;
    height: 12px;
}

.notfysix {
    width: 19px;
    height: 19px;
    padding: 10px 0px;
}

.notify_emtymain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

    .notify_emtymain img {
        border: 0;
        width: 75px;
        height: auto;
        border-radius: 0;
    }

    .notify_emtymain h5 {
        font-size: 16px;
        margin-top: 8px;
        color: var(--main-colorone);
    }
/*------------Notification Page------------*/

.notifypage_main {
    display: flex;
    flex-direction: column;
    row-gap: .5em;
}

.notifypagesm_bx {
    display: flex;
    gap: .5em;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 7px 15px;
    border-radius: 3px;
    justify-content: space-between;
    align-items: center;
    transition: ease-in-out .3s;
    cursor: pointer;
}

    .notifypagesm_bx:hover {
        transform: translateY(-5px);
    }

.notifypage_img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--icon-color);
}

.notifypagesm_bx h6 {
    font-size: 16px;
    font-family: var(--pragraph-font);
    margin-bottom: 3px;
}

    .notifypagesm_bx h6 span {
        font-family: var(--head-font);
        font-size: 16px;
        color: #355c7d;
    }

.notifypagesm_bx p {
    font-size: .8em;
    color: #959595;
    margin: 0;
}

.notifydlt_btn {
    border: 0;
    padding: 3px 11px;
    background: transparent;
    border-radius: 3px;
    color: var(--danger-red);
    /* box-shadow: rgb(236 24 0 / 33%) 0px 0px 0px 1px; */
    transition: ease-in-out .3s;
}

    .notifydlt_btn:hover {
        background: #e7e7e7;
    }

.notify_unread {
    background: #a992fc24;
    border-left: 2px solid var(--icon-color);
}

.notify_read {
    background: #fff;
    border-left: 1px solid var(--icon-color);
}
/*---------------Attendence----------------*/

.success_msg {
    color: var(--success-green);
}
/*--------------Leave Requist-------------*/

.Appr_btn {
    /* border: 1px solid var(--success-green); */
    box-shadow: rgb(0 157 0 / 33%) 0px 0px 0px 1px;
    border-radius: 3px;
    color: #fff;
    background: var(--success-green);
    text-align: center;
    transition: ease-in-out .3s;
    /*padding: 7px 0px;*/
    line-height: 0;
    width: 3em;
    height: 1.9em;
    border: 0px;
}

    .Appr_btn:hover {
        background: #fff;
        color: var(--success-green);
    }

.Levreqremove_btn {
    border: 0;
    /* padding: 12px 0px; */
    background: #fff;
    border-radius: 3px;
    color: var(--danger-red);
    box-shadow: rgb(236 24 0 / 33%) 0px 0px 0px 1px;
    transition: ease-in-out .3s;
    line-height: 0;
    width: 3em;
    height: 1.9em;
}

    .Levreqremove_btn:hover {
        background: var(--danger-red);
        color: #fff;
    }

.leavereq_main {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1em;
}

.leavereqbx_sub {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.leavereqbx_subsm {
}

.leavereq_label {
    font-size: 15px;
    color: #464646;
    font-weight: 400;
}

.leavereq_fieldtxt {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
    color: #4e4e4e;
    font-family: var(--pragraph-font);
    word-wrap: break-word;
    white-space: pre-wrap;
    /* max-width: fit-content; */
    line-break: anywhere;
    text-align: left;
}

.leavereqbx_sub img {
    width: 70px;
    border-radius: 50%;
    height: 70px;
    object-fit: cover;
    border: 1px solid var(--button-color);
    margin-bottom: 10px;
}

.leavereq_email {
    font-size: 14px;
    color: #6d6d6d;
    margin-bottom: 20px;
}

.leavereqbx_sub .user_usericon i {
    width: 70px;
    border-radius: 50%;
    height: 70px;
    font-size: 2.5em;
    color: #355c7d;
}

.head_text {
    margin-bottom: 32px;
    /* color: var(--main-colorone); */
    font-size: 1.3em;
    position: relative;
    text-align: center;
}

    .head_text span {
        font-size: 13px;
        color: #000000;
        /* border: 1px solid #355c7d; */
        padding: 4px 12px;
        border-radius: 23px;
        margin-left: 3px;
        position: absolute;
        top: 1px;
        background: #a992fc87;
        font-weight: 500;
    }

.orgname_roundbx {
    font-size: 13px;
    color: #000000;
    /* border: 1px solid #355c7d; */
    padding: 4px 12px;
    border-radius: 23px;
    margin-left: 3px;
    /*position: absolute;
    top: 1px;*/
    background: #a992fc87;
    font-weight: 500;
}

.label-float textarea.h-110 {
    height: 110px;
}

.w-13 {
    width: 13em;
}

.btn_md {
    padding: 5px 40px;
}

.label-floatleavereq {
    margin-bottom: 0px;
    margin-top: 18px;
}
/*-------------Salary History--------------*/

.salaryhist_sec {
}

.leavereq_label {
    margin-bottom: 10px;
    white-space: nowrap;
}

.leavereqbx_subsm {
    border-bottom: 1.5px dashed #baa8fd9c;
    margin-bottom: 10px;
}

    .leavereqbx_subsm:last-child {
        border-bottom: 0px;
        margin-bottom: 0px;
    }
/*-------------Profile changes--------------*/

.profupmdl_bx {
    margin: 143px 0px 1px;
    display: flex;
    cursor: pointer;
    width: 100%;
}

    .profupmdl_bx .input--file2 {
        padding: 30px 0px;
    }

.modalcam_bx {
}

    .modalcam_bx video {
        width: 100%;
        border-radius: 20px;
    }

.imageadddltbx {
    display: flex;
    gap: 1em;
    position: absolute;
    bottom: 12px;
    left: 44%;
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: ease-in-out .3s;
    z-index: 1000;
    justify-content: center;
}

.modalcam_bx button {
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.075);
    border: 0;
    background: var(--main-colorone);
    border-radius: 50%;
    padding: 14px;
    /* border: 1px solid #cdcdcd; */
    position: absolute;
    bottom: 1px;
    /* left: 50%; */
    /* right: 50%; */
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: ease-in-out .3s;
    z-index: 1000;
}

    .modalcam_bx button:hover {
        background: #fff;
    }

.modalcam_bx svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
    transition: ease-in-out .3s;
}

.modalcam_bx button:hover svg {
    background: #fff;
    stroke: var(--main-colorone);
}

#ProfilePicCameraModal .modal-body {
    padding: 13px 13px 5px;
}

#ProfilePicCameraModal .modalbtn_close {
    z-index: 10000;
    right: 4px;
    top: 4px;
    padding: 8px 11px;
    border-radius: 14px;
}

.popuppicshow_bx {
}

    .popuppicshow_bx img {
        width: 100%;
        border-radius: 20px;
    }
.errormsg_p {
    color: #ff0000;
    margin: 2px 0px;
    font-size: 14px;
}

.modalcam_bx button.image_btn {
    z-index: 1000;
    display: block;
    position: relative;
    width: 40px;
    height: 35px;
    border-radius: 5px;
    background: #fff;
    padding: 0;
    z-index: 10000;
    transition: ease-in-out .3s;
}

    .modalcam_bx button.image_btn.add_btnimg {
        box-shadow: rgb(0 157 0 / 36%) 0px 0px 0px 1px;
        color: var(--success-green);
    }

        .modalcam_bx button.image_btn.add_btnimg:hover {
            background: var(--success-green);
            color: #fff;
        }

    .modalcam_bx button.image_btn.dlt_btnimg {
        box-shadow: rgb(236 24 0 / 33%) 0px 0px 0px 1px;
        color: var(--danger-red);
    }

        .modalcam_bx button.image_btn.dlt_btnimg:hover {
            background: var(--danger-red);
            color: #fff;
        }

.modalcam_bx canvas {
    width: 34.6rem;
    height: 25.9rem;
    border-radius: 29px;
    z-index: 1000;
    transform: scaleX(-1);
}

.captureimg_bx {
    /*display: none;*/
    transform: scale(0);
    z-index: 10000;
    position: absolute;
    top: -20px;
    /* bottom: 0; */
    left: -26px;
    /*-moz-transform: translateX(-50%);
    transform: translateX(-50%);*/
    transition: ease-in-out .3s;
}

.popupbigimg_bx {
    display: flex;
    justify-content: center;
}

    .popupbigimg_bx img {
        border-radius: 25px;
        padding: 2px;
        min-height: 350px;
        width: 100%;
        object-fit: cover;
        /* max-height: 65%; */
        /* text-align: center; */
    }

.imgpopup_close {
    position: absolute;
    right: -5px;
    top: -4px;
}

.cursor-pointer {
    cursor: pointer;
}
/*-------Side Menu Changes------*/

.sideorg_slct {
    color: #ffffff;
    cursor: pointer;
    /* box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px; */
    border: 0px;
    border-radius: 2px;
    transition: ease-in-out .3s;
    width: 100%;
    padding: 0px 13px 4px 0px;
    background: #355c7d;
    border-bottom: .5px solid #c6c6c6;
    font-size: 14px;
    position: relative;
    /*-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;*/
}

    .sideorg_slct:focus-visible {
        border-bottom: 2px solid var(--icon-color);
        outline: 0px;
    }

    .sideorg_slct:after {
        content: "▼";
        font-size: 25px;
        width: 50px;
        height: 30px;
        position: absolute;
        background-color: #FF8080;
        z-index: 1;
        right: 20px;
        top: 20px;
        text-align: center;
    }
/*-----------No data Box-------*/

.nodata_bx {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
    /*height: 100%;*/
    min-height: 60vh;
}

    .nodata_bx img {
        width: 75px;
        transform: scale(1);
        transition: ease-in-out .3s;
    }

        .nodata_bx img.salryadnodata_img {
            width: 140px;
        }

        .nodata_bx img:hover {
            transform: scale(1.1);
        }

    .nodata_bx p {
        font-size: 16px;
        /* color: #3d3d3d; */
    }

    .nodata_bx svg {
        width: 52px;
        color: var(--icon-color);
    }

.wid_25 {
    width: 100%;
}

.wr-50 {
    width: 50rem;
}
/*--------------Salary Generation----------*/

/*.salgen_input {
    height: 24px;
}*/

img.userimg_sm {
    width: 42px;
    height: 42px;
}

.salgensingle_bx:not(:last-child) {
    border-bottom: 1.5px dashed #baa8fd9c;
    padding: 1px 0px 0px;
    border-radius: 2px;
    margin-bottom: 5px;
}

.salgensingle_bx h5 {
    margin: 4px 0px 0px;
    font-size: 14px;
    font-family: var(--pragraph-font);
    font-weight: 500;
    color: #626262;
    position: relative;
}
/*.salgensingle_bx h5:after {
    content: "";
    position: absolute;
    width: 23px;
    height: 2px;
    background: #355c7d;
    top: 16px;
    left: 46%;
}*/

.salgensingle_bx p {
    margin-bottom: 0;
}

.label-float input.salgen_input {
    padding: 11px 8px 0px;
    border-radius: 3px;
}

    .label-float input.salgen_input:disabled {
        cursor: no-drop;
    }

.salgensingle_bx .label-float {
    padding-top: 10px;
}

    .salgensingle_bx .label-float label {
        font-size: 13px;
        padding: 0;
        top: 2px;
        /* background: transparent; */
        z-index: 10;
    }
/*.salgensingle_bx .label-float:after {
    content: "";
    position: absolute;
    width: 49px;
    height: 5px;
    background: #ffffff;
    top: 13px;
    left: 11px;
    z-index: 1;
}*/

.salgen_sub {
    padding: 12px;
}

    .salgen_sub h6 {
        font-size: 16px;
    }

    .salgen_sub p {
        margin-bottom: 1px;
        font-size: 13px;
    }

.savechange_btn {
    padding: 7px 13px;
    height: auto;
}

.genersal_btn {
}

a.viewallsalgen_btn {
    padding: 5px 15px;
    font-size: 15px;
    transition: ease-in-out .3s;
    border: 1px solid #7789fe;
    font-weight: 500;
}

.saladv_img {
    width: 23px;
}
/*--------------Salary Generation table----------*/

.stickytable_main {
    position: relative;
    overflow: auto;
    /* height: 100vh; */
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    transition: ease-in-out;
    scroll-behavior: smooth;
    min-height: 100%;
    max-height: 30rem;
    /* display: flex; */
    width: 100%;
}

    .stickytable_main table {
        /* border: 1px solid #000; */
        /* width: 0; */
        border-collapse: collapse;
        /* display: block; */
    }

        .stickytable_main table tr td {
            border: 1px solid #d8d8d8;
            padding: 15px 14px;
            /* border-bottom: 0; */
            text-align: center;
            border-width: 1px 1px 1px 0px;
        }

    .stickytable_main.salgenhis_tbl table tr td {
        padding: 5px;
    }

    .stickytable_main.salgenhis_tbl {
        max-height: 24rem;
    }

        .stickytable_main.salgenhis_tbl table th {
            padding: 15px 15px;
        }

.table_input {
    width: 6em;
    border: 1px solid #bebebe !important;
    border-radius: 3px;
    /* box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px !important; */
    padding: 2px 9px !important;
    text-align: center;
    box-shadow: rgb(0 0 0 / 8%) 0px 0px 0px 1px !important;
    border: 0 !important;
}

    .table_input:focus-visible {
        border: 0;
        outline: 0;
    }

    .table_input:focus-within {
        border: 0;
        outline: 0;
    }

    .table_input:disabled {
        background: whitesmoke;
    }

input.table_input::-webkit-outer-spin-button, input.table_input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */

input.table_input[type=number] {
    -moz-appearance: textfield;
}

.stickytable_main table th {
    min-width: 8rem;
    /* height: 1rem; */
    position: sticky;
    top: 0;
    z-index: 1;
    white-space: nowrap;
    background: rgb(242 238 254);
    color: #5d5d5d;
    font-weight: 500;
    border: 1px solid #d8d8d8;
    padding: 5px;
    text-align: center;
    border-width: 0px 1px 0px 0px;
}

    td.left_sticky, .stickytable_main table th.left_sticky {
        position: sticky;
        left: 0;
        background: rgb(242 238 254);
        color: #5d5d5d;
        font-weight: 500;
        z-index: 10;
    }
td.leftsticky_seccol, .stickytable_main table th.leftsticky_seccol {
    position: sticky;
    left: 129px;
    background: rgb(242 238 254);
    color: #5d5d5d;
    font-weight: 500;
    z-index: 10;
}

.stickytable_main table tr.txtbx_tr td {
    border-top: 0px;
}

.z-100 {
    z-index: 100;
}

.stickytable_main::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.stickytable_main::-webkit-scrollbar-track {
    background: #f1f1f1;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 3px;
}

.stickytable_main::-webkit-scrollbar-thumb {
    background: var(--icon-color);
    border-radius: 3px;
}

    .stickytable_main::-webkit-scrollbar-thumb:hover {
        background: rgb(209 197 253);
    }

.salgennxt_btn {
    padding: 7px 35px;
    border: 0;
    margin-top: 20px;
    border-radius: 4px;
    padding: 10px 35px;
    font-family: var(--pragraph-font);
    border-radius: 5px;
    background: var(--button-color);
    color: rgb(255, 255, 255);
    font-size: 16px;
    border: 1px solid var(--button-color);
    transition: all 0.3s ease-in-out 0s;
    width: 100%;
}
.salgennxt_btn:hover {
    color: var(--button-color);
    background: #fff;
}
.salgennxt_btn:hover .lg-text{
     color: var(--button-color);
}
.btnwith_loader {
    width: 16rem !important;
}
.btnwith_loader:hover{
    background: #355c7d;
}
.btnwith_loader:hover .lg-text {
    color: #fff;
}
.salgenproces_main {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    min-height: 60vh;
    align-content: center;
}

    .salgenproces_main h4 {
        font-size: 20px;
        color: #355c7d;
    }

.salgen_modalcnt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 0px;
}

    .salgen_modalcnt i {
        font-size: 42px;
        color: var(--success-green);
    }

    .salgen_modalcnt h6 {
        margin: 13px 0px 4px;
        color: var(--success-green);
        font-size: 18px;
    }

    .salgen_modalcnt p {
        text-align: center;
        margin-bottom: 0;
    }
/*.stickytable_main table tr.prenxt_tr td:not(:first-child) {
    font-size: 14px;
    padding-bottom: 0;
}*/

.stickytable_main table tr.prenxt_tr {
}

    .stickytable_main table tr.prenxt_tr td {
        padding: 5px;
        /* border-top: 0; */
        position: sticky;
        top: 35px;
        z-index: 1;
        background: #f2eefe;
        font-size: 14px;
        padding-bottom: 0;
    }
/*.stickytable_main table tr.prenxt_tr td:first-child {
     border-top: 0; 
    background: #f2eefe;
}*/

.tablehead_color {
    padding: 0;
}

    .tablehead_color .table_main tr th {
        font-weight: 500;
        border-right: 1px solid #d8d8d8;
        font-size: 17px;
        background: #f2eefe;
        padding: 11px 35px;
    }

    .tablehead_color .table_main tr td {
        border-right: 1px solid #d8d8d8;
        padding: 11px 35px;
        font-size: 16px;
    }

.salgenhisfilt_main {
    gap: 1em
}

form {
    width: 100% !important;
}
/*--------------salary slip table----------------*/

.sliptbl_div {
    margin-top: 23px;
    position: relative;
    overflow: auto;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    transition: ease-in-out;
    scroll-behavior: smooth;
    width: 100%;
}

    .sliptbl_div table {
    }

    .sliptbl_div .table > :not(caption) > * > * {
        border-bottom-width: 0px;
        padding: 12px 20px;
    }

.sm_tablediv {
    /* padding: 10px; */
    width: 100%;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    /*border: .5px dashed #e7e7e7;*/
}

.sm_tablemain {
    padding: 10px 20px;
}

.sliptbl_div table.sm_table {
    width: 100%;
}

    .sliptbl_div table.sm_table tbody, td, tfoot, th, thead, tr {
        padding: 5px 15px;
    }

    .sliptbl_div table.sm_table tr {
        /*border-bottom: .5px dashed #d5d5d5;*/
    }

.ttlamount_bx {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    /*border: 1px dashed #b3b3b3;*/
    margin-top: 20px;
    padding: 10px;
    align-items: center;
    position: relative;
}

    .ttlamount_bx h5 {
        font-size: 16px;
        margin-bottom: 0;
    }

    .ttlamount_bx p {
        font-size: 14px;
        margin: 0;
    }

.table_bg {
    background-color: rgb(242 238 254);
}

h5.amount_bx {
    background: #f2eefe;
    height: 100%;
    position: absolute;
    right: 0;
    padding: 20px;
}
/*---------Email Confirmation Page----------*/

.mailcnrm_bxsub {
    width: 50%;
    padding: 28px 0px;
    /* border: 1px solid #000; */
    margin: 0 auto;
    box-shadow: var(--bigbox_shadow);
    border-radius: 15px;
    text-align: center;
    position: absolute;
    /* left: 50%; */
    top: 50%;
    transform: translate(50%, 50%);
}

    .mailcnrm_bxsub img {
        width: 100px;
        margin-bottom: 23px;
    }

.cnrfm_btn {
    width: auto;
    padding: 7px 30px;
}

    .cnrfm_btn:hover {
        background: #fff;
        color: var(--button-color);
    }
/*-----------------New-----------------------*/

.text_upper {
    text-transform: uppercase;
}

.tbl_bg {
    background: rgb(242 238 254);
}

.modal_table tr th {
    width: 50%;
}

.modal_table td:first-child {
    /* background: rgb(242 238 254); */
    font-weight: 500;
    border-right: 1px solid #ebebeb;
    padding: 10px;
}

.modal_table tr {
    border-bottom: 1px solid #ebebeb;
}

    .modal_table tr:last-child {
        border-bottom: 0px;
    }

.modal_table table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: rgb(242 238 254);
    color: #5d5d5d;
    font-weight: 500;
    border: 1px solid #d8d8d8;
    padding: 5px;
    text-align: center;
    border-width: 0px 1px 0px 0px;
}

.modal_table {
    height: 100%;
    overflow-y: auto;
    max-height: 18rem;
}

    .modal_table::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }

    .modal_table::-webkit-scrollbar-track {
        background: #f1f1f1;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        border-radius: 3px;
    }

    .modal_table::-webkit-scrollbar-thumb {
        background: var(--icon-color);
        border-radius: 3px;
    }

        .modal_table::-webkit-scrollbar-thumb:hover {
            background: rgb(209 197 253);
        }

.saladvsm_tbl {
}

    .saladvsm_tbl tr td {
        width: 50%;
    }

    .saladvsm_tbl tr {
        border-bottom: 1px solid #ebebeb;
    }

        .saladvsm_tbl tr:last-child {
            border-bottom: 0px;
        }

    .saladvsm_tbl td:first-child {
        font-weight: 500;
        border-right: 1px solid #ebebeb;
    }

.addmemb_bxmainmrg {
    margin-top: 32px;
}
/*-------------Date Piker-------*/

.input-container input {
    border: none;
    box-sizing: border-box;
    outline: 0;
    padding: .75rem;
    position: relative;
    width: 100%;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}
/*-------------------new changes-----------*/
.slctmrg_1 {
    margin-top: 21px;
}
.sidemenu_acco .accordion-item {
    background-color: transparent;
    color: #fff;
    padding: 0;
}
.sidemenu_acco .accordion-item .accordion-button{

}
/*----------------New Changes-------------*/
.createorg_sidembtn {
    position: absolute !important;
    margin-bottom: 20px;
    left: -8px;
    bottom: -60px;
    background: #af9afc;
    padding: 5px !important;
    border-radius: 4px;
    width: 100%;
    color: #fff;
    transition: ease-in-out .3s;
    text-align: center;
}

    .createorg_sidembtn:hover {
        color: #000;
        background: #fff;
    }

.orgul_mrg {
    margin-bottom: 47px;
}

.iconbg_color {
    background: var(--icon-color);
}
.modal_already{

}
.modal_already i{
    background:#009d0045;
    color:var(--success-green);
}
.green_btn {
    background: var(--success-green);
}
/*--------Salary generation History----------*/
.statusshhow_sm {
    display: inline;
    padding: 4px 12px;
    border-radius: 20px;
    /* color: #fff; */
    font-size:13px;
}

.tbl_pendstat {
    background: #ffff99;
}

.tbl_complestat {
    background: #cbeadc;
}

.view_a {
    text-decoration: underline;
    display: flex;
    align-items: baseline;
    gap: 3px;
    cursor:pointer;
}
.tblview_btn {
    text-decoration: none;
    border: 1px solid #355c7d54;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 5px;
    color: #50a1ff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}
.tblview_btn i {
    margin-left: 5px;
    font-size: 12px;
}
.postproce_btn {
    background: var(--main-colorone);
    color: #fff;
}
/*--------------Custom Radio Button--------*/
.radiobtn_grp {
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column; */
    column-gap: .5em;
    align-items: center;
    margin-top: 7px;
}
.profgend_bx {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border: 0.5px solid #ebebeb;
    padding: 5px 13px 1px;
    border-radius: 5px;
    position: relative;
    margin: 12px 0px 14px;
}
.profgend_bx p {
    background-color: white;
    padding: 0px 5px;
    font-size: 14px;
    top: 0;
    font-family: var(--pragraph-font);
    color: var(--main-colorone);
    position: absolute;
    top: -10px;
    z-index: 1;
    left: 13px;
    margin: 0;
}
.radiobtn_grp label {
    display: flex;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.375em;
}
.radiobtn_grp label input {
    position: absolute;
    left: -9999px;
}
 .radiobtn_grp label input:checked + span {
    background-color: #a992fc38;
}
.radiobtn_grp label input:checked + span:before {
    box-shadow: inset 0 0 0 0.3em #355c7d;
}
    .radiobtn_grp label span {
        display: flex;
        align-items: center;
        border-radius: 99em;
        transition: 0.25s ease;
        padding: 1px 12px 2px 6px;
        font-weight: 400;
    }
.radiobtn_grp label span:hover {
    background-color: #d6d6e5;
}
.radiobtn_grp label span:before {
    display: flex;
    flex-shrink: 0;
    content: "";
    background-color: #fff;
    width: 1.2em;
    height: 1.2em;
    border-radius: 50%;
    margin-right: 0.375em;
    transition: 0.25s ease;
    box-shadow: inset 0 0 0 0.125em #355c7d;
}
/*-----------New Salary-----------*/
.smmdl_body {
    padding: 5px 19px 16px!important;
}
.mdlgreen_btn {
    border: 0;
    padding: 5px 20px;
    font-weight: 500;
    border-radius: 20px;
    background: var(--success-green);
    color: #fff;
}
/*------------Salary Head--------------*/
.calcadd_main {
    display: flex;
    /* gap: .6em; */
    margin: 2px 0px 20px;
    align-items: end;
}
.calcadd_btn {
    display: block;
    width: 80px;
    border: 0;
    background: var(--button-color);
    color: #fff;
    border-radius: 0px 5px 5px 0px;
    height: 47px;
}
.calcadd_btn i {
    padding: 0;
    margin-right: 4px;
    font-size: 14px;
}
.calcadd_main .blazored-typeahead {
    position: relative;
    width: 100%;
    /* border: 1px solid #bfbfbf; */
    border-radius: 5px 0px 0px 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border: 0.5px solid #ebebeb;
     padding: 3px; 
}
.calcadd_main .blazored-typeahead:focus-within {
    border-bottom: 2px solid var(--icon-color);
    box-shadow: none;
}
.calcadd_main .blazored-typeahead.valid.modified {
    /* border: 0px!important; */
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border: 0.5px solid #ebebeb;
}
.blazored-typeahead__input-icon:focus {
    box-shadow:none!important;
}
.labflo_typehead{

}
.labflo_typehead input {
    border: 0px;
    box-shadow: none;
    padding: 0px 18px;
}
.labflo_typehead input:focus{
    border:0px;
    box-shadow:none;
}
.calcadd_main .blazored-typeahead__results {
    max-height: 10rem;
}
.calcadd_main .blazored-typeahead__results::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.calcadd_main .blazored-typeahead__results::-webkit-scrollbar {
    width: 7px;
    background-color: #F5F5F5;
}

.calcadd_main .blazored-typeahead__results::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: var(--icon-color);
}
.bg_green{
    background:var(--success-green)!important;
}
/*-----------Bulk Upload files in page-----------*/
.bulkup_upbxpage{

}
.bulkup_upbxpage .upload_icon {
    font-size: 25px;
}
.bulkup_upbxpage {
    margin: 44px 0px;
    display: flex;
}
.bulkup_upbxpage .input--file2 {
    padding: 57px 90px;
    border: 2px dashed #bbbbbb4f;
    /* width: max-content; */
    margin: 0 auto;
    /* height: 200px; */
    /* border-radius: 50%; */
    background: #0000000a;
    border: 1px solid #00000012;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 10px;
}
.bulkup_upbxpage .input--file {
    position: relative;
}
.sampdwnld_btn {
    height: 44px;
}
.bulkup_upbxpage .input--file2 input[type="file"] {
    width: 100%;
    height: 100%;
}
.cancel_btn {
    border: 0;
    /* background: var(--danger-red); */
    border: 1px solid #ec180047;
    background: #fff;
    color: #000;
    box-shadow: rgb(212 0 0 / 6%) 0px 6px 24px 0px, rgb(255 0 0 / 19%) 0px 0px 0px 1px;
}
.cancel_btn:hover{
    background:var(--danger-red);
    color:#fff;
}
.width-maxcnt{
    width:max-content;
}
/*-------Alert Modal Content-------*/
.alertmodal_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* gap: 1em; */
    padding: 20px 0px;
}
.alertmodal_content i {
    font-size: 23px;
    color: #ffd500;
    border: 1px solid #ffe900;
    padding: 11px;
    border-radius: 50%;
}
.alertmodal_content h3 {
    font-size: 18px;
    text-align: center;
    margin: 11px;
}
.alertmodal_content p {
    text-align: center;
    margin: 0;
}
.alertmodal_footer {
    padding: 0 18px 21px;
    width: 100%;
    display: flex;
    gap: -1em;
    flex-wrap: nowrap;
}
.alertmodal_footer button {
    width: 100%;
    padding: 6px;
    transition:ease-in-out .3s;
}
.alertmodal_footer button.yes_btn {
    background: #5cb85c;
    border:1px solid #5cb85c;

}
.alertmodal_footer button.yes_btn:hover{
    background:#fff;
} 
.alertmodal_footer button.no_btn {
    background: #fff;
    color: #000;
}
.alertmodal_footer button.no_btn:hover{
    background:#dfdfdf;
}
.tblwithslct_main {
    /*padding: 10px;*/
    /* border: 1px solid #e9e9e9; */
    /*border-radius: 10px;*/
    /*box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;*/
    /*margin-top: 24px;*/
}
/*------Table Checkbox-----*/

  .checkbox-wrapper-18 .round {
    position: relative;
  }
    .checkbox-wrapper-18 .round label {
        background-color: #fff;
        border: 1px solid #7789fe45;
        border-radius: 4px;
        cursor: pointer;
        height: 21px;
        width: 21px;
        display: block;
        /* box-shadow: rgb(119 137 254 / 39%) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px; */
        box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    }
.checkbox-wrapper-18 .round label:after {
    border: 2px solid #355c7d;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 5px;
    opacity: 0;
    position: absolute;
    top: 6px;
    transform: rotate(-45deg);
    width: 12px;
}
  .checkbox-wrapper-18 .round input[type="checkbox"] {
    visibility: hidden;
    display: none;
    opacity: 0;
  }

  .checkbox-wrapper-18 .round input[type="checkbox"]:checked + label {
    background-color: #a992fc87;
    /*border-color: #66bb6a;*/
  }

  .checkbox-wrapper-18 .round input[type="checkbox"]:checked + label:after {
    opacity: 1;
  }
.chkbxslctall_txt {
    margin: 0px;
    font-weight: 600;
}
.markattendmodal_btn {
    border: 1px solid var(--success-green);
    text-align: center;
    transition: all .35s;
    padding: 8px 17px;
    border-radius: 4px;
    background: var(--success-green);
    color: #fff;
}
.markattendmodal_btn:hover{
    background:#fff;
    color:#000;
}
.whitespace-nowrawp{
    white-space:nowrap;
}
.tdovertime_days {
    max-width: 13em;
    word-wrap: break-word;
}
.tdovertime_days span {
    margin-right: 4px;
    border: 1px solid #a3a3a3;
    padding: 2px 10px;
    border-radius: 22px;
    margin-bottom: .6em;
    display: inline-block;
    font-size: 14px;
}
button:disabled,
button[disabled] {
    opacity:.5;
    cursor:no-drop;
}
.normal_spinner div {
    background: #355c7d;
}
.cabsolute-center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/*--------------Table Responsive---------*/
@media (max-width: 768px) {
    .table thead {
        display: none;
    }

    .table, .table tbody, .table tr, .table td {
        display: block;
        width: 100%;
        padding: 1px;
    }

        .table tr {
            margin-bottom: 15px;
            border-radius: 5px;
            box-shadow: rgb(0 0 0 / 5%) 0px 0px 0px 1px;
        }

        .table td {
            text-align: right;
            padding-left: 50%;
            text-align: right;
            position: relative;
        }

            .table td::before {
                content: attr(data-label);
                position: absolute;
                left: 0;
                width: 50%;
                padding-left: 15px;
                font-size: 15px;
                font-weight: bold;
                text-align: left;
            }

    .tblname_bg {
        background: #0070d557;
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
    }

    td.checkalltd {
        display: none;
    }
    /*    td.td_center{
        display:flex;
        justify-content:center;
        padding-left:0px;
    }*/
    .table td.td_center {
        display: flex;
        justify-content: center;
        padding-left: 0px;
    }

    .table_div {
        padding: 0px 0px;
        box-shadow: 0px 0px 0px 0px;
    }

    .nonresp_tbl {
        box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    }
}
/*--------------------------------------*/

@media (min-width: 576px) {
    .align_middle {
        position: absolute;
        top: 50%;
        transform: translateY(42%);
        width: 100%;
    }

    .align_middlelogin {
        position: absolute;
        top: 50%;
        transform: translateY(20%);
        width: 100%;
    }

    .caltop_bx {
        padding: 10px 60px 5px;
        border-bottom: 1px solid #dedede;
    }

    .bigcal_event {
        width: 213px;
    }
}

@media (min-width: 768px) {
    /*.dboard_sdmenumain {
        left: 0px;
        width: 330px;
        position: relative;*/
    /* top: 66px; */
    /*}*/
    .profimg_bxmain {
        flex-direction: row;
    }

    nav {
        position: sticky;
        top: 0;
        left: 0;
        height: 100%;
        background-color: var(--main-colorone);
        width: 16rem;
        padding: 0rem 0.85rem 1rem;
        color: #fff;
        display: flex;
        flex-direction: column;
        transition: width 0.5s ease-in-out;
        z-index: 100;
        min-height: 100vh;
        /* max-height: 100vh; */
        /* height: auto; */
        /*float: left;
        margin-right: 30px;*/
    }

    .company_logo {
        width: 56px;
        margin: 0px 20px 0px 136px;
    }

    .dashtopbar {
        padding: 8px 30px;
    }

    .hide {
        transition: opacity 0.3s 0.2s;
    }

    body.shrink nav {
        width: 5.4rem;
    }

    body.shrink .hide {
        opacity: 0;
        pointer-events: none;
        transition-delay: 0s;
    }

    body.shrink .admin-profile {
        max-width: 0;
        transition: opacity 0.3s 0s, max-width 0.7s 0s ease-in-out;
    }

    body.shrink .tooltip {
        display: grid;
    }

    body.shrink .shrink-btn i {
        transform: rotate(-180deg) translateX(23px);
        /*margin-left: 25px;*/
        box-shadow: rgb(169 146 252 / 51%) 0px 1px 4px;
    }

    .profform_main {
        gap: 3em;
        margin-top: 20px;
    }

    .save_btn {
        width: auto;
    }

    .profup_btn {
        margin-top: 12px;
        /* width: 100%; */
        width: 230px;
    }

    .alert {
        width: 400px;
    }

    .dashboard_body {
        padding: 30px 37px;
        /*z-index: -1;*/
        position: relative;
    }
    /*.addmemb_bxmain .tab_content {
        padding: 15px 25px 25px;
    }*/
    .addmemb_bxmain .tab_content {
        padding: 0px 13px 25px;
    }

    .orgmain_grid {
        margin-top: 70px;
    }

    .leavereq_main {
        grid-template-columns: repeat(2, 1fr);
    }

    .cal_indicsmbxmain {
        grid-template-columns: repeat(6, auto);
        justify-content: end;
    }

    .wid_25 {
        width: 25%;
    }

    .cnrfm_btn {
        width: 16em;
    }

    .mailcnrm_bxsub img {
        width: 150px;
        margin-bottom: 23px;
    }

    .salgennxt_btn {
        width: auto;
    }

    .w-320 {
        width: 23em;
    }

    .head_text {
        text-align: left;
    }

    .status_bx {
        flex-direction: row;
    }
   /* nav {
        position: absolute;
    }*/
    .profilefield_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .login_form {
        max-width: 500px;
        margin: 40px 19px 40px auto;
        padding: 0px;
    }

    .orgmain_grid {
        display: grid;
        gap: 1em;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width:1200px) {
    .login_form {
        max-width: 500px;
        margin: 40px auto;
        padding: 0px;
    }

    .bigcal_event:before {
        left: 24%;
    }

    .leavereq_main {
        grid-template-columns: repeat(3, 1fr);
    }
    .profilefield_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width:1400px) {
    .bigcal_event:before {
        left: 32%;
    }

    .leavereq_main {
        grid-template-columns: repeat(4, 1fr);
    }
}

.window-container {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 250px;
    height: 150px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
}

.window-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #ddd;
}

.window-content {
    padding: 10px;
}

.window-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #ddd;
}

.progress-container {
    width: 100%;
    height: 30px;
    background-color: #e0e0e0;
    border-radius: 5px;
}

.progress-bar {
    height: 100%;
    background-color: #4caf50;
    border-radius: 5px;
}