::-webkit-scrollbar {
    width: 5px; /*For Vertical Scroll thickness*/
    height: 7px; /*For Horizontal Scroll thickness*/
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #bebebe83;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #9191916b;
}


:root {
    --header-height: 3rem;
    --nav-width: 68px;
    --first-color: #1e1e22;
    --second-color: #009bb6;
    --first-color-light: #dddddd;
    --white-color: #F7F6FB;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

*,
::before,
::after {
    box-sizing: border-box
}

body {
    position: relative;
    margin: var(--header-height) 0 0 0;
    padding:.5rem;
    font-size: var(--normal-font-size);
    transition: .5s;
    font-family: 'Sofia Sans', sans-serif;
    overflow-x:hidden;
}

a {
    text-decoration: none
}

.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color:#e4e4e4;
    z-index: var(--z-fixed);
    transition: .5s
}

.header_toggle {
    color: var(--first-color);
    font-size: 1.5rem;
    cursor: pointer
}
.header_detail{
    display: flex;
    justify-content: center;
    align-items: center;
}
.header_detail .header_img {
    width: 35px;
    height: 35px;
    border:1px solid #cdcdcd;
    border-radius: 50%;
    overflow: hidden;
}

.ellipsis_icon{
    cursor: pointer;
}
.ellipsis_nav{
    background: #fff;
    position: absolute;
    top: 70px;
    right:2%;
    padding:5px;
    display: none;
    /* -webkit-box-shadow: 0px 0px 38px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 38px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 38px 0px rgba(0,0,0,0.2); */
}
.chevron_menu_div{
    display: none;
    width:100%;
    /* height: 0px; */
    justify-content: center;
    align-items: center;
    position:relative;
    top:0px;right:0px;
    overflow: hidden;
    transition: .5s ease !important;
}
.record_payment_form{
    display: flex;
    justify-content: center;
    align-items: center;
}
.opened-chevron-menu{
    height: 100% !important;
    display: flex !important;
    transition: .5s ease !important;
}
.ellipsis_nav .ellipsis_menu{
    margin: 1px 0px;;
    width:100%;
    height:25px;
    padding:1px 10px;
    background: #fff;
    transition: .3s ease;
    user-select: none;
}

.ellipsis_nav .ellipsis_menu i{
    margin-right: 8px;
    color:#aaaaaa;
    font-size: 15px;;
}
.ellipsis_nav .ellipsis_menu span{
    font-size: 15px;;
}
.ellipsis_nav .ellipsis_menu:hover{
    background:#1e1e22;
    cursor: pointer;
}
.ellipsis_nav .ellipsis_menu:hover span{
    color:#fff;
}
.open-ellipse-nav{
    display: block;
    animation: riseup .2s  linear;
}
@keyframes riseup{
    from {
        transform: translateY(20px);
    }
    to{
        transform: translateY(0px);
    }
}
.l-navbar {
    position: fixed;
    top: 0;
    left: -30%;
    width: var(--nav-width);
    height: 100vh;
    background-color: var(--first-color);
    padding: 0rem .1rem 0 0;
    transition: .5s;
    z-index: var(--z-fixed);
}

.nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: scroll;
}
nav::-webkit-scrollbar {
    width: 3px;
  }
  
  nav::-webkit-scrollbar-track {
    background-color: rgba(34, 34, 34, 0.623);
  }
  
  nav::-webkit-scrollbar-thumb {
    background-color: rgba(59, 59, 59, 0.425);
  }

.nav_logo,
.nav_link {
    display: grid;
    grid-template-columns: max-content max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .3rem 0 .3rem 1.2rem;
}
.sub_nav_list{
    overflow-x: hidden;
    height:0px;
    display: none;
    transition: .5s ease;
}
.sub_nav_list .sub_nav_menu{
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .2rem 0 .2rem 2.5rem;
    transition: .1s ease-in-out;
    margin: 1px 0px;
}


.sub_nav_list .sub_nav_name{
    color:#dddddd;
    font-size: 15px;
}

.nav_logo {
    margin: .7rem;
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--white-color)
}

.nav_logo-name {
    color: var(--white-color);
    font-weight: 700
}
.nav_logo-name img{
    max-width: 12.4%;
    margin-left: -1%;;
}

.nav_link {
    position: relative;
    color: var(--first-color-light);
    margin: 0.4rem 0;
    transition: .3s ease;
}
.nav_name{
    width:110px;
}
.nav_rotate_icon{
    transform: rotateX(180deg);
}
.nav_toggle_icon{
    font-size:12px;
}

.sub_nav_list.opened{
    height:auto !important;
    display: block !important;
}
.sub_nav_list.opened .nav_toggle_icon{
    transform: rotateX(180deg) !important;
}
.nav_link:hover::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color);
}
.sub_nav_menu:hover::before {
    content: '';
    position: absolute;
    left: 0;
    width: 1.5px;
    height: 31px;
    background-color: #0e0e0f;
}
.nav_link{
    -webkit-box-shadow: 0px 0px 4px 1px #17171a;
-moz-box-shadow:0px 0px 4px 1px #17171a;
box-shadow: 0px 0px 4px 1px #17171a;
}

.nav_link:hover{
    background-color: #000;
    box-shadow: 0px 0px 4px 1px #0e0e0f;
}
.nav_icon {
    width:33px;
    font-size: 1.25rem;
    color:var(--second-color);
    text-align: center;
}
.sub_nav_icon {
    width:15px;
    font-size: .5rem;
    text-align: center;
    color:var(--second-color);
}
.sub_nav_menu:hover{
    background-color: #dddddd;
    /* box-shadow: 0px 0px 4px 1px #0e0e0f; */
}
.sub_nav_menu.active{
    background-color: #dddddd;
}
.sub_nav_menu.active .sub_nav_name{
    color: #0e0e0f;
}
.sub_nav_menu:hover .sub_nav_name{
    color: #0e0e0f;
}
.show {
    left: 0
}

.body-pd {
    padding-left: calc(var(--nav-width) + 1rem)
}

.nav_link.active{
    background-color: #000;
    box-shadow: 0px 0px 4px 1px #0e0e0f;
}
.nav_link.active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}
.sub_nav_menu.active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 1.5px;
    height: 31px;
    background-color: #0e0e0f;
}

@media screen and (min-width: 768px) {
    body {
        margin: calc(var(--header-height) + 1rem) 0 0 0;
        padding-left: calc(var(--nav-width) + .5rem);
    }

    .header {
        height: calc(var(--header-height) + 1rem);
        padding: 0 2rem 0 calc(var(--nav-width) + 1rem)
    }

    .header_img {
        width: 40px;
        height: 40px
    }

    .header_img img {
        width: 45px
    }

    .l-navbar {
        left: 0;
    }

    .show {
        width: calc(var(--nav-width) + 156px)
    }

    .body-pd {
        padding-left: calc(var(--nav-width) + 165px)
    }
}
/*********************************************************/

.main_container{
    width:100%;
    height:90vh;
    overflow-x:hidden;
}
.popup{
    background-color: rgba(0, 0, 0, 0.062);
    backdrop-filter: blur(5px);
    width:100%;
    height:100vh;
    position: fixed;
    top:8%;
    left:0;
    right:0;
    justify-content: center;
    display: none;
}
.popup_content{
    width:60%;
    height:65%;
    background-color: #f5f5f5;
    margin: 50px auto;;
    padding:10px;
    overflow-x: hidden;
    overflow-y: scroll;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 39px 3px rgba(207,207,207,1);
    -moz-box-shadow: 0px 0px 39px 3px rgba(207,207,207,1);
    box-shadow: 0px 0px 39px 3px rgba(207,207,207,1);
    animation:popup .2s linear;
}
@keyframes popup{
    from{
        transform: translateY(50px);
    }

    to{
        transform: translateY(0px);
    }
}
.close-btn{
    width:35px;
    height:35px;
    position:absolute;
    top: 1%;
    left: 80%;
    cursor:pointer;
    text-align: center;
    background: none;
    border:none;
}
.close-btn i{
    font-size: 25px;
}
.toggle-popup{
    display:flex;
}


.profile_card{

    width:100%;
    background: #fff;
    border:1px solid #e2e2e2;
    display: flex;
    overflow: hidden;
    border-radius: 10px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.profile_card .image_area{
    text-align: center;
    width:30%;
    border:1px solid #e2e2e2;
    padding:10px;
}

.profile_card .image_area img{
    max-width:80%;;
}
.profile_card .image_area .action{
   display: flex;
   justify-content: center;
   align-items: center;
   width:100%;
   height:30px;
}
.profile_card .image_area .action i{
    margin: 0px 7px;
    cursor: pointer;
}
.profile_card .image_area .action
.profile_card  h6{
    font-weight: 600;
}
.profile_card .detail_area{
    padding:10px;
    width:70%;
    border:1px solid #e2e2e2;
    line-height: 20px;;
}
.search_area #search_icon{
    position: relative;
    top:-28px;
    left:90%;
    color:#cdcdcd;
}
.datainputs input{
    width:92%;
    margin: 0;
}

#inputRemove1, #inputRemove2{
    position: relative;
    left:95%;
    top:-27px;
}
.add_input1,.add_input2{
   position: relative;
   top:-10%;
}

.data-card{
    max-width:100%;
    border-radius:10px;
    margin:10px;
    -webkit-box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.103);
    -moz-box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.103);
    box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.103);
}
.data-card .data-icon{
    width: 20%;
    text-align: center;
    background:#1e1e22;
    border-radius:10px;
    padding:10px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.data-card .data-icon i{
    font-size: 2rem;
    color:#dbdbdb;
}
.data-card .data-text{
    width: 80%;
    padding:5px 10px;
    text-align:center;
}
.data-card .data-text h4{
    font-weight: 500;
    font-size: 22px;
    margin: 10px 0px;
}

.filter-head{
    max-width:99%;
    background: #1e1e22;
    padding:7px;
    height:40px;
}
.filter-head-invoice{
    max-width:32%;
    background: #1e1e22;
    padding:7px;
    height:40px;
}
.filter-head h5{
    color: #cfcfcf;
}
.filter-head-invoice h5{
    color: #cfcfcf;
}
.arrow-pointer {
    height: 40px;
    position: relative;
}

.arrow-pointer:before {
    content: '';
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid #cfcfcf;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
  }
.header .page_title{
    font-weight: 600;
    font-size: 20px;
    margin: 0px 20px;
}
@media(max-width:767px){

    .popup{
        top: 6%;
    }
    .popup_content{
        width:100%;
        height:79%;
        background-color: #fff;
        margin: 50px auto;;
        padding:10px;
    }
    .close-btn{
        left:90%;
    }
    .profile_card .image_area{
        text-align: center;
        width:30%;
        border:1px solid #e2e2e2;
        padding:5px;
    }

    .profile_card .image_area img{
        max-width:100%;
     }

     .data-card .data-icon i{
        font-size: 1.5rem;
        color:#dbdbdb;
    }
    .data-card .data-icon {
        width: 14%;
    }
    .data-card .data-text{
        width: 86%;
    }

    .filter-head{
        width:80%;
    }

    .header .page_title{
        font-size: 18px;
        margin: 0px 10px;
    }
}
@media (min-width:768px) and (max-width:1000px){
     .popup{
        top: 7%;
    }
    .popup_content{
        width:85%;
        height:82%;
        background-color: #fff;
        margin-left: 12%;
        padding:10px;
    }
    .close-btn{
        left:95%;
    }
    .filter-head{
        width:40%;
    }


}
    .text-warning{
        color:#ff7402 !important;
    }


/* ===========================Login Form CSS============================*/

.form_container{
    margin:0px 70px 0px 0px;
    height:80vh;
    padding:0px 100px;
  }
  .form_container .logo_area{
    background: #1e1e22;
  }
.form_container .logo_area img{
    width:50%;
  }
  .login_form{
    border-radius:10px;
    width:36%;
    margin:0px auto;
    padding:20px;
    background:#fff;
  }
  .form-heading{
    color:#fff;
    border-radius:5px;
    padding:5px 10px;
  }
  .form_icon{
    position: relative;
    top:-29px;
    left:93%;
  }
  .dt{
    border:none;
    border-radius:2px;
    font-size:15px;

  }
  .form-head{
    width:100%;
    background: #000;
    padding:5px 10px;
    height:35px;
  }
  .form-head h5{
    color:#fff;
  }
  @media (max-width:767px){
    .form_container {
      margin:0px !important;
      height: 80vh;
      padding: 10px 0px;
    }
    .login_form{
      width:100%;
      margin:0px auto;
      padding:20px;
    }
    .form_container .logo_area img{
        width:60%;
    }
  }

  @media (min-width:768px) and (max-width:1024px){
    .form_container {
      height: 80vh;
      padding: 10px 0px;
    }
    .login_form{
      width:55%;
      margin:0px auto;
      padding:20px;
    }
    .form_container .logo_area img{
        width:40%;
    }
  }
  .response .detail{
    background:#cfcfcf;
    padding:5px;
    border-radius:5px;
  }
  .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards
}

.checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 4% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none
    }

    50% {
        transform: scale3d(1.1, 1.1, 1)
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142
    }
}

/* =================================================================*/

.cursor-pointer {
    cursor: pointer;
}

.action_icon i{
    width:30px;
    height:30px;
    border-radius: 50%;
    border: 1px solid #ebebeb;
    transition: .2s ease-in-out;
    cursor: pointer;
    font-size: 13px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 3px;
}

.action_icon i:hover{
    border: 1px solid #c2c2c2;
    -webkit-box-shadow: 0px 0px 8px 5px rgb(236, 236, 236);
    -moz-box-shadow: 0px 0px 8px 5px rgb(236, 236, 236);
    box-shadow: 0px 0px 8px 5px rgb(236, 236, 236);
    background: #1e1e22;
    color:#dbdbdb !important;
}

.table_div{
    overflow-x: scroll !important;;
}

.main_heading h3{
    font-weight: 500;
    font-size: 20px;
    color:#fff;
    background: #1e1e22;
}

.User_form{
    display: none;
    box-shadow: 1px 0px 7px 2px #cfcfcf;
    padding:10px;
    border-radius: 5px;
}


/******************************************************************************/


.form-control:disabled {
    background-color:transparent !important;
    opacity: 1;
}

table tr td{
    font-size: 15px;
}

.custom_modal{
    width:100%;
    height:100vh;
    position: fixed;
    top:0;
    left:0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00000049;
    display: none;
    z-index: 9;
}
.custom_modal .modal_content{
    width:40%;
    min-height: 30%;
    background:#ffffff;
    position: relative;
    top:-80px;
    left:7%;
    border-radius: 3px;
    z-index: 99;
}
.modal_opened{
    display: block;
    animation:swipe-up .3s ease-in-out;
}
@keyframes swipe-up{
    from{
        transform: translateY(-50px);
    }
    to{
        transform: translateY(0px);
    }
}
.show_modal_wrapper{
    display: flex !important;
}
.btn-Light{
    border:1px solid #fff;
}
.btn-Light:hover{
    background: #ffff;
    border: 1px solid #555;
}


.loader {
    display: inline-block;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin-left:48%;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .Detail-card{
    border-radius: 15px;
    width:95%;
    margin:0 auto;
    height:auto;
    background: #fff;
    overflow: hidden;
  }

  .Detail-card .detail-card-head{
    padding:10px;
    background: #dbdbdb;
    height:50px;
  }
  .Detail-card .detail-card-head h5{
    margin-top: 3px;;
  }
  .Detail-card .detail-card-body{
    padding:10px;
  }
  .Detail-card .detail-card-body .card-data{
    width:100%;
    padding:5px 20px;
  }
  .Detail-card .detail-card-body .card-data span{
    font-size: 14px;
  }


  /****************************************************************/
  .tab_form_container{
    width:100%;
  }
  .tab_navigation{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
  }
  
  .tab_navigation .tab_menu{
    width:100%;
    height:40px;
    background-color: #e4e4e4;
    color: #000;
    text-align: center;
    padding:10px;
    position: relative;
    transition: .3s linear;
  }
  
  @media(max-width:992px){
    .tab_navigation{
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: row;
      }
    .tab_menu .menu_text{
        display: none;
    }
  }
.straight_line{
    content:'';
    width: 100%;
    height:3px;
    display: block;
    background: linear-gradient(to right, #009bb6 25%, #e4e4e4 25%);
    margin-bottom: -12.6px;
    transition: background-color 0.8s ease-in-out;
}
.tab_menu:before {
    content: '';
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid #e4e4e4;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
  }

.tab_menu.active {
    background-color: #212529;
    color: #fff;
}

.tab_area {
    position: relative;
}



