@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Satoshi';
    font-weight: 400;
    padding: 0;
    margin: 0;
    overflow-x: hidden !important;
}

h1,h2,h3,h4,h5,h6,p{
    padding: 0;
    margin: 0;
}
a,a:hover,a:focus{
    text-decoration: none;
}
a:hover{
    color: #fff;
}
ul,ol,li{
    list-style: none;
    margin: 0;
    padding: 0;
}
img{
    max-width: 100%;
}
.row>* {
    padding-right: 10px;
    padding-left: 10px;
}
/*========== Font Face Start =============*/
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Bold.eot');
    src: url('../fonts/Satoshi-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Satoshi-Bold.woff2') format('woff2'),
        url('../fonts/Satoshi-Bold.woff') format('woff'),
        url('../fonts/Satoshi-Bold.ttf') format('truetype'),
        url('../fonts/Satoshi-Bold.svg#Satoshi-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Light.eot');
    src: url('../fonts/Satoshi-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Satoshi-Light.woff2') format('woff2'),
        url('../fonts/Satoshi-Light.woff') format('woff'),
        url('../fonts/Satoshi-Light.ttf') format('truetype'),
        url('../fonts/Satoshi-Light.svg#Satoshi-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Regular.eot');
    src: url('../fonts/Satoshi-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Satoshi-Regular.woff2') format('woff2'),
        url('../fonts/Satoshi-Regular.woff') format('woff'),
        url('../fonts/Satoshi-Regular.ttf') format('truetype'),
        url('../fonts/Satoshi-Regular.svg#Satoshi-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Medium.eot');
    src: url('../fonts/Satoshi-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Satoshi-Medium.woff2') format('woff2'),
        url('../fonts/Satoshi-Medium.woff') format('woff'),
        url('../fonts/Satoshi-Medium.ttf') format('truetype'),
        url('../fonts/Satoshi-Medium.svg#Satoshi-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
/*========== Font Face End =============*/

table{
    font-family: "Poppins", sans-serif;
}
/*========== Header Css Start =============*/
.header{
    padding: 10px 0;
    margin: 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 88;
    transition: all 300ms ease-in-out;
    background-color: #1850A4;
}
.header.sticky{
    position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
  z-index: 999;
}
@keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
.header .header-wrap{
    display: flex;
    justify-content: space-between;
    padding: 0px 0;
    margin: 0;
    align-items: center;
}
.navigation .stellarnav.light{
    background: transparent;
}

.navigation .stellarnav{
    width: auto;
}
.navigation .stellarnav ul > li{
    padding: 0;
    margin: 0 16px 0 0;
}
.navigation .stellarnav ul > li:last-child{
    margin-right: 0;
}


.navigation .stellarnav ul > li > a{
    font-family: 'Satoshi';
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
    padding: 0;
    margin: 0;
}
.navigation .stellarnav ul > li > a:hover{
    color: #ffcd41;
}

.navigation .stellarnav ul > li > ul{
    padding: 0px;
    border-radius: 5px;
    background: #3577D8;
}
.navigation .stellarnav ul > li > ul li{
    border-bottom: 1px solid #ccc;
    margin: 0;
    padding: 5px;
}
.navigation .stellarnav ul > li > ul li a{
    font-size: 14px;
    padding: 18px ;
    margin:0;
    display: block;
    color: #fff;
}
.stellarnav .has-sub .dd-toggle{
    display: none !important;
}
.navigation .stellarnav ul > li > ul li:first-child a{
    padding-top: 0;
}
/* .navigation .stellarnav ul > li > ul li:last-child a{
    padding: 10px 8px;
} */

.navigation .stellarnav ul > li > ul li:last-child{
    border-bottom: none;
}

.stellarnav.desktop li.has-sub a {
    padding-right: 5px;
    width: 120px;
}
.header .logo{
    max-width:129px;
    transition: all 300ms ease-in-out;
}
.header .logo img{
    max-width: 160px;
}
.header.sticky .logo{
    max-width: 190px;
    transition: all 300ms ease-in-out;
}

 .header .header-wrap .rt-side{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
 }
 .stellarnav a.dd-toggle .icon-plus {
    margin-top: -2px;
 }
 .header .header-wrap .rt-side .hd-icons-side{
    padding: 0 20px 0 40px;
 }

 .header .header-wrap .rt-side .hd-icons-side ul{
    display: flex;
    align-items: center;
    gap: 15px;
 }
 .header .header-wrap .rt-side .hd-icons-side ul li{
    padding: 0;
    margin: 0;
 }


.hduser{
    position: relative;
}
.hduser .dropdownmenu-content{
    position: absolute;
    right: 0;
    box-shadow: 0px 0px 14px 0px #00000014;
    background: #fff;
    border-radius: 10px;
    min-width: 133px;
    top: 40px;
}
.hduser .dropdownmenu-content ul{
    padding: 10px;
    margin: 0;
}
.hduser .dropdownmenu-content ul li{
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #fafafa;
}
.hduser .dropdownmenu-content ul li:last-child{
    border-bottom: none;
}
.hduser .dropdownmenu-content ul li a{
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.2;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: all 300ms ease-in-out;
}
.hduser .dropdownmenu-content ul li a:hover{
    color: #2D8ABA;
}
.hduser .dropdownmenu-content ul li:last-child a,
.hduser .dropdownmenu-content ul li:last-child a:hover{
    color: #FF4545;
}

.hduser{
    display: flex;
    align-items: center;
    min-width: 160px;
}
.hduser .icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    padding: 0;
    margin: 0;
    box-shadow: 0px 2px 6px 2px #00000026;
    box-shadow: 0px 1px 2px 0px #0000004D;
}
.hduser .icon img{
    width: 100%;
    height: 100%;
}

.hduser .info{
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 0 10px;
    justify-content: space-between;
}
.hduser .info p{
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    color:#fff;
    padding: 0;
    margin: 0;
}
.hduser .info small{
    font-weight: 400;
    font-size: 10px;
    line-height: 1.2;
    color:#fff;
    padding: 0;
    margin: 0;
}
.hduser .info .infowrap{
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hduser .info span{
    color: #fff;
}
/*========== Header Css End =============*/

/*====================== Contact Css Start =================*/

.custom-container {
    max-width: 100%;
    margin: 0 auto;
    padding:0 15px;
}

.innerPageBody{
    background: #f8fafd;
    padding: 10px 0 20px;
    min-height: calc(100vh - 60px);
}

.headingWIthFilter{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 2px;
    padding: 0;
}
.headingWIthFilter .ttl{
    padding: 0;
    margin: 0;
    /* position: fixed;
    top: 20%; */
}
.headingWIthFilter .ttl h2{
    font-family: 'Satoshi';
    font-weight: bold;
    font-size: 15px;
    color: #000000;
    padding: 0;
    margin: 0;
    border-left: 3px solid #ee6429;
    padding-left: 8px;
}
.headingWIthFilter .ttl p{
    font-family: 'Satoshi';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: #717171;
    padding: 0;
    margin: 0;
}
.headingWIthFilter .srcWtbtn{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.headingWIthFilter .srcWtbtn .srcblock{
    min-width: 190px;
    position: relative;
    padding: 0;
    margin: 0;
}
.headingWIthFilter .srcWtbtn .srcblock .field{
    border: none;
    /* border-bottom: 1px solid #B5B7C4; */
    width: 100%;
    /* height: 40px; */
    background: transparent;
    padding: 0 0px 0 40px;
    outline: none;
    box-shadow: none;
    font-size: 14px;
    line-height: 1.2;
}
.headingWIthFilter .srcWtbtn .srcblock span{
    position: absolute;
    left: 0px;
    top: 5px;
}
.headingWIthFilter .btnPanel{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.btnPanel .dropdown-content{
    min-width: 180px;
    border-radius:  0 0 10px 10px;
    color: #1850A4;
}
.btnPanel .dropdown-content a{
    color: #1850A4;
    font-weight: 600;
}
.iconbtn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Satoshi';
    font-weight: 500;
    font-size: 13px;
    line-height: 1.2;
    padding: 6px 14px;
    margin: 0;
    box-shadow: 0px 0px 14.87px 0px #0000001A;
    border-radius: 10px;
    border: none;
    transition: all 300ms ease-in-out;
}
.table {
    border-left: 1px solid #f1f2f4;
}
.greembtn{
    background: #139F5B;
    color: #fff;
}
.bluebtn{
    background: #3577D8;
    color: #fff;
}
.form-check-watsapp{
    display: flex;
    align-items: center;
}


.tabwithtable{
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 6px 0px rgb(19 18 66 / 14%);
    margin-top: 10px;
}
/* .tabletabHd{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 10px;
    background: #eceef2;
    border-radius: 10px;
    padding: 0px 30px;
} */
 .tabletabHd {
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 10px;*/
    background: #ffffff;
    border-radius: 10px;
    /* padding: 8px 30px 8px 10px; */
    padding: 8px 10px;
    box-shadow: 0 0 18px rgb(24 80 164 / 10%);
    border: 1px solid #d8e8ff; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 10px;
}
.tabletabHd .nav.nav-tabs{
    border: none;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.tabwithtableWrap{
    display: flex;
    align-items: center;
    gap: 20px;
}
.tabletabHd .nav.nav-tabs .nav-link{
    padding: 6px 10px;
    margin: 0;
    font-family: 'Satoshi';
    font-weight: 500;
    font-size: 13px;
    line-height: 1.2;
    color: #2E2E2E;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid #dddddd;
    transition: all 200ms ease-in;
    background-image: linear-gradient(to bottom, #ffffff, #fafafa, #f5f5f5, #f0f0f0, #ebebeb);
}
.tabletabHd .nav.nav-tabs .nav-link:hover {
    border-color: #EE6429;
    background: #fffaf9;
    background-image: linear-gradient(to bottom, #fffaf9, #fff0ed, #ffe6e1, #ffddd6, #ffd3ca);
}
.tabletabHd .nav.nav-tabs .nav-link.active{
    border-color: #EE6429;
    background: #fffaf9;
    background-image: linear-gradient(to bottom, #fffaf9, #fff0ed, #ffe6e1, #ffddd6, #ffd3ca);
}
.tabletabHd .nav.nav-tabs .nav-link.active img{
    filter: invert(53%) sepia(69%) saturate(3970%) hue-rotate(347deg) brightness(98%) contrast(90%);
}
.advfilterAndExport ul{
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}
.advfilterAndExport ul li{
    display: flex;
    align-items: center;
    gap: 10px;
    /* padding: 0 20px 0 0; */
    margin: 0 20px 0 0;
    /* border-right: 1px solid #ccc; */
}
.advfilterAndExport ul li:last-child{
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}
.advfilterAndExport ul li .btn {
    display: flex;
    gap: 5px;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    /* color: #EE6429; */
    color: #1850a4;
    border: none;
    background: transparent;
    outline: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    transition: all 200ms ease-in;
}
.advfilterAndExport ul li .btn:hover {
    color: #EE6429;
}
.advfilterAndExport ul li .btn i {
    color: #EE6429;
}
.tablewrap .table th{
    /* background: #F1F3F9; */
    background: #3769b1;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    text-transform: capitalize;
    color: #fff;
}
.tablewrap .table thead th,
.tablewrap .table tbody td{
    border-top: none;
    border-bottom:1px solid #fff !important;
    border-right: 1px solid #fff;
    padding: 12px 10px;
}
.tablewrap .table tbody td{
    font-weight: 400;
    font-size: 13px;
    line-height: 1.2;
    vertical-align: middle;
    color: #63676D;
}
.tablewrap .table tbody tr:nth-child(even) td{
    background: #F8F9FC;
}

.checboxell{
    width: 44px;
    max-width: 44px;
    min-width: 44px;
}

.fitercell{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}
.fitercell .tbflbtn{
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
}

.tableActionbtn{
    display: flex;
    align-items: center;
    gap: 0px;
    justify-content: center;
    position: relative;
    width: 30px;
}
.tableActionbtn .actionBtn{
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    color: #1D2433CC;
}


.table-responsive {
    overflow: visible;
}
.actionlistwrap {
    position: absolute;
    z-index: 999;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.tableActionbtn .actionlistwrap ul{
    padding: 5px 0;
   /* margin-bottom: 20px; */
}
#manpowerCostForm{
    margin-bottom: 100px;
}
.actionlistwrap {
    position: absolute;
    z-index: 99999;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 5px;
    width: 120px;
}

.tableActionbtn {
    position: relative;
}

.table-responsive{
    overflow-y: hidden;
    position: relative;
}
.tableActionbtn .actionlistwrap ul li{
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #fafafa;
}
.tableActionbtn .actionlistwrap ul li:last-child{
    border-bottom: none;
}
.tableActionbtn .actionlistwrap ul li a{
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 1.2;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    transition: all 100ms ease-in;
    justify-content: flex-start;
}
.tableActionbtn .actionlistwrap ul li a:hover{
    color: #1850A4;
}

.commontabwarp{
    padding: 0;
    margin: 0;
}

.comNavTab{
    display: inline-flex;
}
.comNavTab {
    /* background: #EAF0FA; */
    background: #3577d8;
    border-radius: 10px 10px 0 0;
    padding: 0;
    margin: 0;
    border: none;
    /* overflow: hidden; */
}
.comNavTab .nav-item .nav-link{
    font-family: 'Satoshi';
    font-weight: 500;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: -0.4px;
    color: #fff;
    padding: 10px 18px;
    margin: 0;
    border: none;
    border-radius: 8px 8px 0 0;
    outline: none;
    box-shadow: none;
}
.comNavTab .nav-item .nav-link.active{
    border-radius: 8px 8px 0 0;
    color: #3577D8;
}
.detailsformwrap{
    padding: 15px;
    background: #fff;
    border-radius:0px 10px 10px;
    box-shadow: 0px 2px 6px 0px rgb(19 18 66 / 14%);
}

.orangettlbar{
    background: #fef7f4;
    border-radius: 10px;
    padding: 14px 20px;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.orangettlbar .icon{
    line-height: 0;
}
.orangettlbar h4{
    font-family: 'Satoshi';
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    color: #2E2E2E;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.detailsformwrap .accordion-button:not(.collapsed){
    font-size: 14px;
}

.visible-1{
    visibility: hidden;
}
.comm-form-group{
    margin: 0 0 10px;
    padding: 0;
}
.comm-form-group label{
    display: block;
    font-family: 'Satoshi';
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    color: #2E2E2E;
    padding: 0;
    margin: 0 0 2px;
    margin-left: 0px;
}
.comm-form-group .fl-icon label{
    font-family: 'Satoshi';
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #2E2E2E;
    padding: 10px 15px;
}
.comm-form-group label sup{
    color: #EE6429;
}
.fl-icon{
    position: relative;
    width: 100%;
}
.fl-icon .fricon{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.selectize-input{
    padding: 0 10px !important;
}
.selectize-input {
    min-height: 23px !important;
}
.com-form-control{
    border: 1px solid #1850a4;
    border-radius: 6px;
    height: 32px;
    background: white;
    width: 100%;
    font-family: 'Satoshi';
    font-weight: 400;
    font-size: 12px;
    line-height: 10px;
    color: #2E2E2E;
    padding: 4px;
    outline: none;
    box-shadow: 0px 2px 6px 0px #13124212;
}
.fl-icon .com-form-control{
    padding-right: 30px;
}
.saveNextbtn .btn {
    box-shadow: 0px 0px 20px 0px #00000045;
    background: #139F5B;
    border-radius: 5px;
    font-family: 'Satoshi';
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color: #FFF;
    outline: none;
    border: none;
    padding: 8px 14px;
}
.srcblock img{
    width: 16px;
}
.saveNextbtn .btn i
 {
    padding-left: 12px;
}

/*================ Rajarshi Css Start =================*/
.detailsformwrap .accordion-button:not(.collapsed) {
    color: #2E2E2E !important;
    background-color: #fef7f4;
    box-shadow: none !important;
}

.detailsformwrap .accordion-button {
    font-family: 'Satoshi';
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    color: #2E2E2E;
    padding: 0;
    margin: 0;
    padding:8px 23px;
    border-radius: 10px;
    background-color: #fef7f4;
}
.tablewrap .table tbody td {
    /* border-left: 1px solid #dddddd40 !important; */
    border-right: 1px solid #dddddd40 !important;
    padding: 8px;
    border-bottom: 1px solid #dddddd40 !important;
    font-size: 12px;
}
label.error{
    font-size: 10px !important;
}

.detailsformwrap .accordion-button em {
    padding-right: 9px;
    display: flex;
    align-items: center;
}

.detailsformwrap .accordion-button span {
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.detailsformwrap .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.detailsformwrap .accordion-button:not(.collapsed)::after,
.detailsformwrap .accordion-button::after {
    background-color: #EE6429;
    padding: 6px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    height: 28px;
    width: 28px;
    /* background-image:url(../images/down.png); */
    background-image: none !important;
    font-family: 'Font Awesome 5 Free';
    content: '\f078';
    font-weight: 900;
    color: #ffffff;
    background-position: center;
    box-sizing: border-box;
    rotate: 180deg;
}

.detailsformwrap .accordion-item {
    border: none;
}

.location button {
    background-color: transparent;
    border: none;
    box-shadow: none;
    margin-right: 33px;
    font-size: 16px;
    /* height: 23px;
    min-width: 74px; */
    font-weight: 500;
    align-items: center;
}

/* .location button img {
    width: 18px;
} */

.location button span {
    margin-left: 9px;
}

button.delete {
    color: #EE6429;
}

button.edit {
    color: #3577D8;
}
button {
    color: #3577d8;
    background-color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: 'Satoshi';
    font-weight: 500;
    font-size: 13px;
    line-height: 1.2;
    padding: 6px 14px;
    margin: 0;
    box-shadow: 0px 0px 14.87px 0px #0000001A;
    border-radius: 10px;
    /* border: 1px solid #000; */
    transition: all 300ms ease-in-out;
    cursor: pointer;
}
button:hover {opacity: 0.9;}
button.blue_btn span i {
    font-size: 14px;
    color: #3577d8;
}
button.blue_btn {
    color: #3577d8;
    background-color: #ffffff;
    border: none;
}

.blue_btn img{
    margin-right: 12px;
}

.area-contact button.blue_btn {
    display: flex;
    align-items: center;
    height: 28px;
}

.area-contact button.blue_btn img {
    padding-right: 10px;
}

button.green_btn {
    color: #139F5B;
}

.heading h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    font-family: Satoshi;
}

.area-contact .bluebtn span {
    padding-left: 14px;
}

.area-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 58vh;
    flex-direction: column;
}

.contactBox p {
    font-size: 16px;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 20px;
}

.greenBar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(19, 159, 91, 0.3);
    padding: 9px 0;
    border-radius: 10px;
}

.greenBar h4 span {
    padding-right: 10px;
}

.greenBar h4 {
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    color: #139F5B;
}

/* progress */
.p-bar {
    width: 100%;
    max-width: 356px;
    visibility: hidden;
}

.progressbar {
    counter-reset: step;
    display: flex;
    justify-content: space-between;
}

.progressbar li {
    list-style: none;
    display: block;
    width: 89px;
    position: relative;
    text-align: center;
    cursor: pointer;
    font-size: 10px;
    font-weight: 500;
    color: #292D32;
    /* background: #000; */
}

.progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 23px;
    height: 23px;
    line-height: 22px;
    border-radius: 100%;
    display: block;
    color: #2E2E2E;
    text-align: center;
    margin: 0 auto 8px auto;
    background-color: rgba(217, 217, 217, 1);
    font-size: 10px;
}


.progressbar li:after {
    content: "";
    position: absolute;
    width: 66%;
    height: 4px;
    background-color: #D9D9D9 !important;
    top: 9px;
    left: -38%;
    z-index: 0;
    margin: 0 5px;
    border-radius: 10px;
}

.progressbar li:first-child:after {
    content: none;
}

.progressbar li.active {
    color: #3577D8;
    font-size: 10px;
    font-weight: 600;
}

.progressbar li.active:before {
    border: none;
    background-color: rgba(53, 119, 216, 1);
    color: white;
}

.progressbar li.active + li:after {
    background-color: #3577D8 !important;
}

/*================ Rajarshi Css End =================*/

/*====================== Contact Css End =================*/

/*====================== Settings Css Start =================*/
.settinsWrap{
    padding: 0;
    margin: 0;
}
.settinsWrap .settingsCard {
    background: #fff;
    border-radius: 10px;
    padding: 30px 50px 30px 30px;
    position: relative;
    margin: 0 0 30px;
    transition: all 300ms ease-in-out;
}
.settinsWrap .settingsCard:hover{
    /* box-shadow: 0px 0px 14px 0px #00000014; */
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.settinsWrap .settingsCard .img{
    margin: 0 0 10px 0;
}
.settinsWrap .settingsCard .info{
    padding: 0;
    margin: 0;
}
.settinsWrap .settingsCard .info h3{
    font-family: 'Satoshi';
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: #000;
    padding: 0;
}
.settinsWrap .settingsCard .info p{
    font-family: 'Satoshi';
    font-weight: 400;
    font-size: 16px;
    color: #717171;
    padding: 0;
    margin: 0;
}

.settinsListWrap{
    padding: 30px;
    margin: 0;
    background: #fff;
    border-radius: 10px;
}
.settinsListWrap .settingsList{
    border: 1px solid rgba(243, 245, 249, 1);
    border-radius: 10px;
    padding: 15px;
    margin: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 300ms ease-in-out;
}
.settinsListWrap .settingsList:hover{
    box-shadow: 0px 0px 14px 0px #00000014;
}
.settinsListWrap .settingsList .info{
    padding: 0;
    margin: 0;
}
.settinsListWrap .settingsList .info h4{
    font-family: 'Satoshi';
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.4px;
    color: #000000;
    padding: 0;
    margin: 0 0 6px;
}
.settinsListWrap .settingsList .info p{
    font-family: 'Satoshi';
    font-weight: 400;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: -0.4px;
    color: #717171;
    margin: 0;
    padding: 0;
}
.settinsListWrap .settingsList .starrowiconBtn i{
    color: rgba(18, 18, 18, 0.6);
}

.settinsWrap .settingsCard .starrowiconBtn{
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}
.settinsWrap .settingsCard .starrowiconBtn i{
    color: rgba(18, 18, 18, 0.6);
}




/*====================== Settings Css End =================*/

 /*====================== Login Css Start =================*/
.loginPage{
    background: #F4FAFF;
    padding: 30px 0;
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loginPage .loginformwrap{
    width: 554px;
    background: #fff;
    border-radius: 10px;
    padding: 40px 40px;
    box-shadow: 0px 0px 20px 0px #0000000D;
}
.loginPage .loginformwrap .logo{
    max-width: 162px;
    margin: 0 auto 30px;
}
.loginPage .loginformwrap .loginform{
    margin: 0;
    padding: 0;
}
.loginPage .loginformwrap .loginform .form-group{
    margin: 0 0 20px;
    padding: 0;
}
.loginPage .loginformwrap .loginform .form-group label{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: #666666;
    margin: 0 0 8px;
    padding: 0;
}
.loginPage .loginformwrap .loginform .form-group .form-control{
    border: 1px solid #139F5B;
    border: 1px solid #DEDEDE;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 1.2;
    color: #666666;
    height: 50px;
}
.loginPage .loginformwrap .loginform .form-group .form-control:focus{
    border: 1px solid #139F5B;
    box-shadow: none;
    outline: none;
}
.loginPage .loginformwrap .loginform .forrgotpass{
    display: flex;
    justify-content: flex-end;
    padding: 0;
    margin: 0 0 30px;
}
.loginPage .loginformwrap .loginform .forrgotpass a{
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #DD4C40;
    display: inline-block;
}
.loginPage .loginformwrap .loginform .lgbtn{
    padding: 0;
    margin: 0 0 30px;
}
.loginPage .loginformwrap .loginform .lgbtn .btn{
    border: 1px solid #76B4FF;
    border-radius: 8px;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    background: #76B4FF;
    padding: 12px 15px;
    border-radius: 10px;
    outline: none;
    box-shadow: none;
    text-align: center;
    width: 100%;
    transition: all 300ms ease-in-out;
}
.loginPage .loginformwrap .loginform .lgbtn .btn:hover{
    color: #76B4FF;
    background: transparent;
}
.loginPage .loginformwrap .loginform .lgfooter{
    text-align: center;
    padding: 0;
    margin: 0;
}
.loginPage .loginformwrap .loginform .lgfooter p{
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #000000;
    padding: 0;
    margin: 0 0 10px;
}
.loginPage .loginformwrap .loginform .lgfooter p a{
    color: #4889F4;
}
.forpasstitle{
    padding: 0;
    margin: 0 0 30px;
}
.forpasstitle h2{
    font-family: 'Satoshi';
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    color: #000000;
    padding: 0 0 10px;
    margin: 0 0 10px;
    border-bottom: 1px solid #DEDEDE;
    text-align: center;
}
.forpasstitle p{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: #000000;
    padding: 0;
    max-width: 280px;
    margin: 0 auto;
}

.email-verificationImg{
    padding: 0;
    margin: 0 0 30px;
    text-align: center;
}

.meailVeryText{
    padding: 0;
    margin: 0 auto 20px;
    text-align: center;
    max-width: 430px;
}
.meailVeryText h2{
    font-weight: bold;
    font-size: 24px;
    line-height: 1.4;
    text-align: center;
    color: #000;
    padding: 0;
    margin: 0 0 10px;
}
.meailVeryText p{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    color: #666666;
    padding: 0;
    margin: 0 0 0px;
}
 /*====================== Login Css End =================*/




/*====================== Search Modal Start =================*/
.search-modal{
    display:none;
}
.search-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom:0 ;
    left: 0;
    overflow: auto;
    text-align: center;
    background: rgb(0 0 0 / 75%);
    backdrop-filter: blur(10px);
    margin: 0;
    z-index: 9999;
    height: 100vh;
}

.search-modal .centered {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 10px 15px;
    color: #FFF;
    border: none;
    background: transparent;
}

.search-modal #search-box {
    position: relative;
    max-width: 550px;
    width: 100%;
}

.search-modal #search-box input[type="text"] {
    width: 100%;
    height: 46px;
    border: 2px solid #3577D8;
    background: #fff;
    padding: 8px 50px 8px 15px;
    border-radius: 27px;
    outline: none;
    box-shadow: none;
    color: #000;
    font-size: 16px;
}

.search-modal #search-button {
    position: absolute;
    top: 1px;
    right: 1px;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    background: #3577D8;
    cursor: pointer;
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    outline: none;
    box-shadow: none;
}

.search-modal #close-btn{
    position: fixed;
    top: 1em;
    right: 1em;
}
.search-modal #close-btn:hover{
    color: #777;
    cursor: pointer;
}

/*====================== Search Modal End =================*/

/*====================== Side Modal Start =================*/
.modal-dialog-slideout {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999991;
    bottom: 0;
    width: 100%;
    max-width: 475px;
    margin: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    height: 100%;
}

.modal-lg.modal-dialog-slideout {
    max-width: 800px;
}

.modal-dialog-slideout .modal-content{
    border-radius: 0;
    border: none;
}
.modal-dialog-slideout .modal-header {
    box-shadow: 7px 0px 18.8px 10px #1850A41A;
    border-bottom: none;
    border-radius: 0 0 9px 9px;
}
.modal-dialog-slideout .modal-header .ttl .modal-title{
    font-family: 'Satoshi';
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0%;
    color: #2E2E2E;
    padding: 0;
    margin: 0;
}
.modal-dialog-slideout .modal-header .ttl p{
    font-family: 'Satoshi';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color:#717171;
    padding: 0;
    margin: 6px 0 0;
}
.modal-dialog-slideout .modal-header .btn-close {
    background: #EE6429;
    color: #fff;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}


.modal-dialog-slideout .modal-body {
    /* min-height: calc(100vh - 83px); */
    min-height: calc(100vh - 57px);
}
.sidemodalWrap {
    /* height: calc(100vh - 115px); */
    height: calc(100vh - 147px);
    overflow-y: auto;
    padding-bottom: 95px;
}

/* Style for the scrollbar */
/* body::-webkit-scrollbar {
    width: 3px; 
  }


  body::-webkit-scrollbar-track {
    background: #525151;
  }


  body::-webkit-scrollbar-thumb {
    background: #3577D8;
  } */


 body::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #525151;
}

 body::-webkit-scrollbar
{
	width: 12px;
	background-color: #525151;
}

 body::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #3577D8;
}




.fixedmodalfooetr {
    padding: 20px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 16px 0px 18.8px 10px #1850A41A;
    border-radius: 9px 9px 0 0;
    background: #fff;
    z-index: 999;
}


.modal.fade .modal-dialog-slideout {
    transform: translateX(100%);
}

.modal.fade.show .modal-dialog-slideout {
    transform: translateX(0);
}
/*====================== Side Modal End =================*/



/* 02-04-2025 */

.com-form-controlOne {
    border: none;
    border-radius: 6px;
    height: 32px;
    background: white;
    font-family: 'Satoshi';
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
    color: #2E2E2E;
    padding: 0px 6px;
    outline: none;
    border: 1px solid #1850a4;
    box-shadow: 0px 2px 6px 0px #13124212;
}

select.com-form-controlOne {
    width: 15%;
    display: inline-block;
}

.inputWrap {
    /* display: flex;
    box-shadow: 0px 2px 6px 0px #13124212;
    border: 1px solid #EFF0F6;
    border-radius: 10px;
    position: relative;
    background-color: white; */
    display: flex;
    border-radius: 6px;
    position: relative;
    gap: 5px;
}

.inputWrap::before {
    content: '';
    display: block;
    width: 2px;
    background-color: #EFF0F6;
    height: 35px;
    position: absolute;
    left: 16%;
    top: 16%;
    z-index: 7777;
}

.selectize-input.full {
    background-color: #fff;
    width: 100%;
}

.contactDetailphone .inputWrap::before {
    content: '';
    display: block;
    width: 2px;
    background-color: #EFF0F6;
    height: 20px;
    position: absolute;
    left: 16%;
    top: 16%;
    z-index: 7777;
}

.contactDetailphone{
    position: relative;
}
.selectize-control.com-form-control.select22WithoutAdd.single {
    width: 40%;
    border: none;
    box-shadow: none;
}

.blueBg .inputWrap::before {
    content: '';
    display: block;
    width: 2px;
    background-color: #EFF0F6;
    height: 22px;
    position: absolute;
    left: 54%;
    top: 16%;
}
select.com-form-controlOne {
    width: 16%;
    display: inline-block;
}
.row.contactDetailemail,.row.contactDetailphone {
    align-items: center;
}
.wrapper {
    height: 95px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check-label {
    margin-left: 8px;
    /* color: #D9D9D9; */
}

.form-check-label{
    margin: 14px 10px 10px 10px;
    /* color: #D9D9D9; */
    font-size: 12px;
}

.inputWrap input {
    width: 85%;
    /* margin-top: 20px; */
}

.blueBg .inputWrap input {
    width: 54%;
    /* margin-top: 20px; */
}



.modal-content h5{
    font-size: 15px;
}

.boxWrap{
    /* padding-bottom: 43px; */
    border-bottom: 1px solid rgba(0, 0, 0, 0.21);
}
.borderBox{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 56px 86px;
}

.uploadIcon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.selectBtn {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.uploadIcon p, .selectBtn p{
    font-size: 13px;
    font-weight: 400;
}
.uploadIcon h6{
    font-size: 12px;
    font-weight: 400;
    color: #00000066;
}

button.selectBTN {
    border: 1px solid #3577D8;
    background-color: #FBFDFE;
    font-size: 10px;
    letter-spacing: 0.9px;
    color: #3577D8;
    padding: 12px 16px;
    text-transform: uppercase;
    border-radius: 5px;
}

.img-btn{
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.apex-wrap{
    gap: 10px;
}

.wrapper_apex{
    padding: 16px 16.6px;
    background-color: #F2F2F2;
}

.boxApex{
    position: relative;
    width: 97%;
    /* margin-top: 22px; */
}

.apexCross{
    position: absolute;
    right: -4px;
    top: -12px;
    z-index: 990;
}
.apexCross img{
    height: 17px;
    width: 17px;
}
.apexCross button{
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.apex-wrap p {
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    position: relative;
}

.apex-wrap p::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: 3px;
    border-radius: 55%;
    background-color: #767676;
}

.size p{
    font-size: 13px;
    font-weight: 400;
}

.apex-wrap button{
    background-color: transparent;
    font-size: 12px;
    box-shadow: none;
    border: none;
    color: #0F91D2;
    padding: 0px 15px;
}

.cateoryBody label{
    font-weight: 700;
    font-size: 13px;
    /* line-height: 60px; */
}

.cateoryBody label sub{
    color: #EE6429;
}

.cateoryBody .row {
    display: flex;
    align-items: center;
    text-align: left;
}

.cateoryBody .comm-form-group {
    margin: 9px 0;
    padding: 0;
}
.tick a i{
    color: #139F5B;
}
.tick{
    display: flex;
    justify-content: center;
}
.category sup {
    top: -3px !important;
}
.lightBlue{
    background-color: #76B4FF !important;
}
/* 02-04-2025 */

/* lead */
.ttl span,.ttl i{
    color: #3577D8;
}

.ttl img{
    margin: 0 5px;
    width: 16px;
}

.heading p{
    font-size: 12px;
}
/* .blueBg{
    padding: 12px;
    background-color: #D3E7FF80;
    border-radius: 15px;
} */
.blueBg h5{
    font-size: 16px;
    font-weight: 500;
    line-height: 17px;
}
.blueBg h5::before {
    content: "\f013";
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-variant-caps: normal;
    font-variant-ligatures: normal;
    font-weight: 900;
    height: 12px;
    font-size: 13px;
    line-height: 16px;
    text-rendering: auto;
    width: 12px;
    margin-right: 5px;
    -webkit-font-smoothing: antialiased;
    color: #1850a4;
}
.form-check-input {
    border: 1px solid rgb(24 80 164);
    margin-top: 0;
}
.blueBg {
    position: relative;
    padding: 12px;
    background-color: #d3d3ff42;
    border-radius: 10px;
    /* border: 1px dashed #1850a4;
    box-shadow: 0px 2px 6px 0px #13124212; */
}
.blueBg::after {
    position: absolute;
    right: 0;
    top: 0;
    width: 18px;
    height: 18px;
    content: "";
    background: #EE6429;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    border-radius: 0 0 0 0;
    z-index: 2;
}


.edit {
   box-shadow: 0px 2px 6px 0px #13124212; 
}




.wizard_Form{
    position: relative;
    z-index: 9;
}
.wrapperposition {
    position: relative;
    top: -20px;
    z-index: 0;
    padding-top: 30px;
    border-radius: 0 10px 10px 10px;
}

.breadcrumb.wizard {
    padding: 0 40px 0 0;
    /* background-color: #ffe9bb; */
    list-style: none;
    overflow: hidden;
    margin-top: 10px;
    font-size: 10px;
    border-radius: 10px;
    /* box-shadow: 0px 2px 6px 0px rgb(19 18 66 / 14%); */
    width: max-content;
    margin-bottom: 0;
}
.boxShadow {
  box-shadow: 0px 2px 6px 0px rgb(19 18 66 / 14%);  
}
.breadcrumb.wizard>li+li:before {
	padding: 0;
}
.breadcrumb.wizard li {
	float: left;    
    background: #ffe9bb;    
}
.breadcrumb.wizard li.completed a {
	color: #1850A4;
	font-size: 16px;
	background: #E3ECF7;
}
.breadcrumb.wizard li.completed a:after {
	border-left: 30px solid #E3ECF7;
}
.breadcrumb.wizard li a {
	color: #121212;
	text-decoration: none;
	padding: 10px 0 10px 45px;
	position: relative;
	display: block;
	float: left;
	font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.breadcrumb.wizard li a span {
	color: #1850A4;
	padding-left: 12px;
}

.breadcrumb.wizard li a:after {
	content: " ";
	display: block;
	width: 0;
	height: 0;
	border-top: 50px solid transparent;
	border-bottom: 50px solid transparent;
	border-left: 31px solid #ffe9bb;
	position: absolute;
	top: 50%;
	margin-top: -50px;
	left: 100%;
	z-index: 2;
}

.breadcrumb.wizard li a:before {
	content: " ";
	display: block;
	width: 0;
	height: 0;
	border-top: 50px solid transparent;
	border-bottom: 50px solid transparent;
	border-left: 32px solid white;
	position: absolute;
	top: 50%;
	margin-top: -50px;
	margin-left: 1px;
	left: 100%;
	z-index: 1;
}
select.smlSelect{
    border: none;
    background-color: transparent;
    font-size: 13px;
    position: relative;
    padding: 11px 0 10px 45px;
}
.breadcrumb.wizard li.active-status a {
    color: #bd420e !important;
}
/* select.smlSelect::after{
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid #E3ECF7;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -50px;
    left: 100%;
    z-index: 2;
}
select.smlSelect::before{
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid white;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -50px;
    margin-left: 1px;
    left: 100%;
    z-index: 1;
} */

.custom-select-wrapper {
    position: relative;
    display: inline-block;
  }
.custom-select-wrapper select.smlSelect {
    border: none;
    background-color: transparent;
    font-size: 13px;
    position: relative;
    padding: 11px 0 10px 45px;
    font-weight: 500 !important;
    text-transform: uppercase;
}
  .custom-select-wrapper::after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid #ffe9bb;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -31px;
    z-index: 2;
  }

  .custom-select-wrapper::before {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 32px solid #ffe9bb;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -32px;
    z-index: 1;
  }

select.smlSelect:focus{
    border:none
}
/* select.smlSelect:after {
    border-left: 30px solid #E3ECF7;
} */
.breadcrumb.wizard li a {
    outline: none;
    border: none;
    box-shadow: none;
}

select.smlSelect:focus,
select.smlSelect:active,
select.smlSelect:focus-visible {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}


.submenu-items {
	display: none;
	background-color: #E3ECF7;
	padding: 10px;
	border-radius: 5px;
	list-style: none;
}



  .hidden {
    display: none;
  }

  .visible {
    display: block;
  }

.modalServices .heading p{
    font-size: 12px;
}
.modalServices .heading h6{
    font-size: 14px;
}

.saveModal .modal-dialog{
    max-width: 600px;
    border-radius: 20px !important;
}
.saveModal .modal-content{
    padding: 28px 26px;
    border-radius: 20px !important;
}
.saveModal .modal-header{
    display: inline;
}
#saveModal {
    top: 20%;
}
.saveModalBody h5{
    font-size: 18px;
    font-weight: 500;
}
.saveModalBody {
    display: flex;
    justify-content: center;
    height: 18vh;
    align-items: center;
}
#saveModal .modal-footer{
    display: flex;
    justify-content: center;
    border-top: none;
}
.btnCancel{
    font-size: 14px;
    font-weight: 500;
    background-color: #8B8B8B;
    padding: 4px 16px;
    border-radius: 5px;
    color: white;
    border: none;
    display: inline-block;
    width: 80px;
}
.btnYes{
    font-size: 14px;
    font-weight: 500;
    background-color: #139F5B;
    padding: 4px 16px;
    border-radius: 5px;
    color: white;
    border: none;
    display: inline-block;
    width: 80px;
}

.actionlistwrap {
    /* position: static; */
    background-color: #fff;
    border: 1px solid #ffffff;
    box-shadow: 0px 0 15px rgb(53 119 216 / 41%);
    padding: 0 10px;
    z-index: 998;
    min-width: 160px;
    border-radius: 4px;
    /* right: 22px; */
    left: 22px;
}

.actionlistwrap ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.table-responsive {
    overflow: visible !important;
    height: auto !important;
}

#manpowerTable {
    table-layout: auto;
}


.actionlistwrap ul li {
    margin: 5px 0;
}

.actionlistwrap ul li a {
    text-decoration: none;
    color: #333;
}
.actionlistwrap ul li a{
    display: flex;
    justify-content: space-between;
}


.comm-form-group p{
    color: #65696E;
    margin-bottom: 10px;
}

.approveBtn button {
    width: 83px;
    display: inline-block;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    text-align: center;
    padding: 6px 18px;
    border: none;
}

button.btnArchive{
    background-color: #ff804a;
}
button.btnApprove{
    background-color: #4488ee;
}

.mainWrap .inputWrap::before{
    content: '';
    display: block;
    width: 2px;
    background-color: #EFF0F6;
    height: 22px;
    position: absolute;
    left: 65%;
    top: 16%;
    z-index: 998;
}

.mainWrap .checkbox {
    display: flex;
    align-items: center;
    margin: 10px;
    font-family: Arial, sans-serif;
    color: black;
  }

  .mainWrap .checkbox input {
    display: none;
  }

  .mainWrap .checkbox .checkmark {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ffffff2b;
    box-shadow: rgba(0, 0, 0, 0.62) 0px 0px 5px inset, rgba(0, 0, 0, 0.21) 0px 0px 0px 24px inset,
          #22cc3f 0px 0px 0px 0px inset, rgba(224, 224, 224, 0.45) 0px 1px 0px 0px;
    cursor: pointer;
    position: relative;
  }

  .mainWrap .checkbox .checkmark::after {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #e3e3e3;
    box-shadow: transparent 0px 0px 0px 2px, rgba(0, 0, 0, 0.3) 0px 6px 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease-in-out;
  }

  .mainWrap .checkbox input:checked + .checkmark {
    background-color: #EE6429;
    box-shadow: rgba(0, 0, 0, 0.62) 0px 0px 5px inset, #EE6429 0px 0px 0px 2px inset, #EE6429 0px 0px 0px 24px inset,
          rgba(224, 224, 224, 0.45) 0px 1px 0px 0px;
  }

  .mainWrap .checkbox input:checked + .checkmark::after {
    background-color: white;
  }

  .mainWrap .checkbox .label {
    margin-left: 10px;
    user-select: none;
    font-weight: 700;
    cursor: pointer;
  }

  .srcWtbtn a{
    color: #2E2E2E;
  }

  .checks{
    flex-wrap: wrap;
  }

  .mainWrap .radio {
    display: flex;
    align-items: center;
    margin: 10px;
    font-family: Arial, sans-serif;
    color: black;
}

.mainWrap .radio input {
    display: none;
}

.mainWrap .radio .checkmark {
    width: 14px;
    height: 14px;
    border-radius: 50%; /* Keeps the circular design for radio buttons */
    background-color: #ffffff2b;
    box-shadow: rgba(0, 0, 0, 0.62) 0px 0px 5px inset, rgba(0, 0, 0, 0.21) 0px 0px 0px 24px inset,
        #22cc3f 0px 0px 0px 0px inset, rgba(224, 224, 224, 0.45) 0px 1px 0px 0px;
    cursor: pointer;
    position: relative;
}

.mainWrap .radio .checkmark::after {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #e3e3e3;
    box-shadow: transparent 0px 0px 0px 2px, rgba(0, 0, 0, 0.3) 0px 6px 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease-in-out;
}

.mainWrap .radio input:checked + .checkmark {
    background-color: #EE6429;
    box-shadow: rgba(0, 0, 0, 0.62) 0px 0px 5px inset, #EE6429 0px 0px 0px 2px inset, #EE6429 0px 0px 0px 24px inset,
        rgba(224, 224, 224, 0.45) 0px 1px 0px 0px;
}

.mainWrap .radio input:checked + .checkmark::after {
    background-color: white;
}

.mainWrap .radio .label {
    margin-left: 10px;
    user-select: none;
    font-weight: 700;
    cursor: pointer;
}


  /* .form-check,.checks label{
    margin-top: 5px;
  } */

  .checks label{
    min-height: 1.5rem;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
  }

  /* quote */
  .quoteWrap .comm-form-group {
    position: relative;
  }

  .quoteWrap .comm-form-group::after {
    content: '';
    position: absolute;
    top: 0;
    right: 10%;
    width: 1px;
    height: 100%;
    background-color: #00000040;
  }

  /* .dropdown-toggle::after{
    display: none;
  } */

/*
  .quoteWrap .comm-form-group:nth-child(4n)::after {
    display: none;
    content: none;
  }

  .actionlistwrap{
    border: none;
    box-shadow: none;
    padding: 0;
    background-color: transparent;
  }
  .actionlistwrap select{
    border: none;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
  } */

  .approved{
    color: #0F9D1A;
  }
  .pending{
    color: #FFC300;
  }
  .rejected{
    color: #E51A1A;
  }
  .status{
    display: flex;
    justify-content: space-between;
  }

  .sub-table table {
    border-collapse: collapse;
  }
  .sub-table table, th, td {
    border: none !important;
  }
  .sub-table thead, tbody {
    background-color: transparent !important;
  }
  .sub-table table tr {
    border-bottom: none !important;
    border-width: 0 !important;
  }
  .sub-table table th{
     font-size: 14px;
      font-weight: 500;
      color: #3577D8;
  }
  .sub-table table td{
    font-size: 12px;
  }
  .sub-table .inputWrap{
    max-width: 100px;
    padding: 0 10px 0 0;
  }

  .sub-table .inputWrap::before{
    left: 62%;
  }
  .sub-table .blue{
    color: #3577D8;
  }
  .sub-table table td {
    /* text-align: center; */
    vertical-align: middle;
  }
  .total {
    padding: 10px;
    border-radius: 5px;
    border:1px solid #EFF0F6BF;
  }

  /* order */
  .process{
    background-color: #76B4FF;
    color: #FFF;
    border-radius: 24px;
    width:180px;
    padding: 15px 24px;
    font-size: 12px;
  }

  .lightGreen textarea {
    width: 100%;
    height: 204px;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    resize: none;
  }

   textarea {
    width: 100%;
    height: 204px;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    resize: none;
  }

  .new textarea {
    width: 100%;
    height: 60px;
    border: 1px solid #1850a4;
    border-radius: 6px;
    padding: 5px;
    font-size: 12px;
    resize: none;
  }

  .b-23{
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 10px 18px;
    margin: 10px 0;
  }

  .contactBox img {
    max-width: 121px;
    display: block;
    margin: 0 auto;
}

  .lightGreen{
    background-color: #F3FFF9;
    border-radius: 20px;
    padding: 24px 30px;
  }

  .lightGreen h5{
    font-size: 16px;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 52px;
  }

  .sidemodalWrap{
    padding: 12px 15px;
  }

  .srcblock a{
    color: #3577D8;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
  }
  .srcblock a img{
    padding-right: 8px;
  }
  .dropdownSelect select{
    width: 100px;
    background: transparent;
    border: none;
  }

  .checkbox-wrapper-4 * {
  box-sizing: border-box;

}

.checkbox-wrapper-4 .cbx {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: inline-block;
}

.checkbox-wrapper-4 .cbx:not(:last-child) {
  margin-right: 6px;
}

/* .checkbox-wrapper-4 .cbx:hover {
  background: rgba(0,119,255,0.06);
} */

.checkbox-wrapper-4 .cbx span {
  float: left;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-4 .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: scale(1);
  border: 1px solid #cccfdb;
  transition: all 0.2s ease;
  box-shadow: 0 1px 1px rgba(0,16,75,0.05);
}

.checkbox-wrapper-4 .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-4 .cbx span:last-child {
  padding-left: 8px;
  line-height: 18px;
  font-weight: 500;
}

.checkbox-wrapper-4 .cbx:hover span:first-child {
  border-color: #07f;
  border-radius: 50%;
}

.checkbox-wrapper-4 .inp-cbx {
  position: absolute;
  visibility: hidden;
}

.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child {
  background: #07f;
  border-color: #07f;
  animation: wave-4 0.4s ease;
}

.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.checkbox-wrapper-4 .inline-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  user-select: none;
}

@media screen and (max-width: 640px) {
  .checkbox-wrapper-4 .cbx {
    width: 100%;
    display: inline-block;
  }
}

@-moz-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@-webkit-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@-o-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

.primary a{
    background-color: #3577D8;
    color: #FFF;
    font-size: 12px;
    padding: 10px;
    border-radius: 50px;
}


.inputs input, .inputs select {
    background: #F0F0F0;
    width:95px;
    border: none;
    box-shadow: none;
    color: #63676D;
    height: 30px;
    padding: 6px;
    border-radius: 5px;
}

.inputs{
    display: flex;
    gap: 20px;
    justify-content: space-between;
}


.orderTable .inputs span{
    width: 100%;
}
.orderTable .inputs input, .orderTable .inputs select {
    background: #F0F0F0;
    width:100%;
    border: none;
    box-shadow: none;
    color: #63676D;
    height: 30px;
    padding: 6px;
    border-radius: 5px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    color: #0F91D2;
    filter: invert(50%) sepia(100%) saturate(200%) hue-rotate(180deg) brightness(90%);
 }

 .custom-date {
    position: relative;
    padding-right: 30px;
    background: url(../images/calender.png) no-repeat right center;
    background-size: 20px 20px;
 }

.dates .inputWrap input{
    width:50%;
}

.dates .inputWrap::before {
    content: '';
    display: block;
    width: 2px;
    background-color: #EFF0F6;
    height: 35px;
    position: absolute;
    left: 50%;
    top: 16%;
}

#order .nav-tabs .nav-link.active{
    color: #3577D8;
    background-color: transparent;
    border-bottom: 2px solid #3577D8;
    border-top: none;
    border-left: none;
    border-right: none;
}

#order .nav-tabs .nav-link {
    margin-bottom: -1px;
    background: 0 0;
    border: none;
    color: black;
}

.big-modal .modal-dialog-slideout{
    max-width: 900px;
}

.big-modal .modal-dialog-slideout .modal-header .ttl .modal-title{
    font-size: 14px;
}

.big-modal .modal-dialog-slideout .modal-header .ttl p {
    font-size: 12px;
    line-height: 1.2;
}

.big-modal .page-link{
    color: #285192;
    font-weight: 800;
}

  .pagination {
    border: none;
  }

  .page-item .page-link {
    border: none;
  }

  .page-item.disabled .page-link {
    background-color: #EEEE;
    pointer-events: none;
  }

  .page-item.active .page-link {
    background-color: #EEEE;
  }

  .tableTotal{
    background-color: #F8F9FC;
  }

  .orderTable table{
    margin-bottom: 2px;
  }

  .product_info p{
    font-size: 16px;
    font-weight: 400;
  }

  .product_info p span{
    font-size: 16px;
    font-weight: 600;
  }

  .biilling .row > .col {
    position: relative;
  }

  .biilling .row > .col:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2px;
    height: 90%;
    background-color: #EEE;
  }

  .biillings .row > .col {
    position: relative;
  }
  .biillings{
    overflow-x: clip;
  }
  .biillings .row > .col:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2px;
    height: 90%;
    background-color: #EEE;
  }
  .product_info p{
    display: flex;
  }

  .biillings .row{
    position: relative;
}
.biillings .row > .col-lg-3:first-of-type::after {
    content: '';
    display: block;
    height: 90%;
    width: 2px;
    background-color: #EEE;
    position: absolute;
    top: 15%;
    left: 23%;
}

/* cost */
.costBody{
    background-color: #f8fafd;
}
.solidNav{
    background-color: #FFF;
    border-bottom: none !important;
}
.costBody .nav-tabs{
    border-bottom: none !important;
    background-color: white;
}
.costBody .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-bottom: 2px solid #EE6429;
    border-left: none;
    border-right: none;
    border-top: none;
    color: #EE6429;
    font-weight: 600;
}
.costBody .nav-tabs .nav-link{
    color: #000;
}
.selectTool select{
    border: none;
    box-shadow: none;
    background-color: transparent;
}
.selectTool select:focus{
    border: none;
    outline: none;
}
/* profile */
.main-profile{
    background-color: white;
    padding: 15px;
    width: 80%;
    display: block;
    margin: -40px auto 0 auto;
    border-radius: 20px;
    z-index: 999;
    position: relative;
}

.imgPic{
    position: relative;
}
.imgPic img{
    border: 2px solid #3577D8;
    border-radius: 50%;
    padding: 5px;
}

.imgPic span{
    position: absolute;
    bottom: -29px;
    left: 48%;
    transform: translate(-50%,-50%);
}

.imgPic span.green{
    background-color: #0F9D1A;
    color: white;
    padding: 7px 12px;
    font-weight: 700;
    border-radius: 50px;
}
.imgPic span.red{
    background-color: #E51A1A;
    color: white;
    padding: 7px 12px;
    font-weight: 700;
    border-radius: 50px;
}
.imgPic span.yellow{
    background-color: #FFC300;
    color: white;
    padding: 7px 12px;
    font-weight: 700;
    border-radius: 50px;
}
.profilePic{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.profileName h4{
    font-size: 34px;
    font-weight: 700;
}
.profileName p{
    font-size: 24px;
    font-weight: 500;
}
.headerWrapper{
    border-bottom: 1px solid #00000029;
    padding-bottom: 40px;
}
.main-profile{
    padding: 23px;
    box-shadow: 0 0 45px #00000014;
}

.bodywrapper .row .col {
  position: relative;
  padding: 20px;
}

.bodywrapper .row .col::after {
  content: '';
  position: absolute;
  right: 0;
  top: 30px;
  height: 40%;
  width: 1px;
  background-color: #00000029;
}

.bodywrapper .row .col:last-child::after {
  display: none;
}
.profileBody{
    padding: 18px 18px 48px 18px;
    border-radius: 9px;
}
h1.accountName{
    color: #EE6429;
    font-size: 24px;
    font-weight: 700;
    line-height: 20px;
}

.profile .nav-item{
    color: #000 !important;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
}

.profile .nav-link{
    color: #000;
    margin-top: 26px;
}
.profilePanel{
    padding: 40px 45px;
    border-radius: 9px;
}

.profile .tab-content{
    border-radius: 9px;
}
.profile .nav-link.active {
    font-size: 18px;
    font-weight: 700;
}

.profile .orderTable .inputs input{
    padding: 19px 20px;
    margin-bottom: 41px;
    border-radius: 10px;
}
.profilePanel h2{
    font-size: 20px;
    color: #3577D8;
    font-weight: 700;
    line-height: 20px;
}
.profilePhoto img{
    background-color: #D9D9D9;
    border-radius: 50%;
    height: 170px;
    width: 170px;
    display: block;
    object-fit: cover;
}
.contents-photo h6{
    color: #000;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}
.contents-photo p em{
    color: #666666;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}
.contents-photo p{
    color: #000;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 20px;
}
.profilePanel button{
    border: none;
}
.b-btm{
    border-bottom: 1px solid #00000033;
    padding-bottom: 30px;
}
.coverPhoto img{
    background-color: #D9D9D9;
    border-radius: 3%;
    height: 160px;
    width: 200px;
    display: block;
    object-fit: cover;
}





.searchModal{
    margin: 12px 0 0 0;
}
.searchModal input{
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #65696E;
    width: 100%;
    padding: 9px;
}
.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-thead {
   background-color: #76B4FF29;
   border-radius: 5px;
   margin-top:10px
}

.custom-table th,.custom-table td{
    padding: 18px;
}
.custom-thead-row {
    background-color: #76B4FF29;
    border-radius: 5px;
  }

  .custom-thead-row th:first-child {
    border-top-left-radius: 5px;
  }

  .custom-thead-row th:last-child {
    border-top-right-radius: 5px;
  }

  .modalWrapper .col:nth-child(1)::after,
  .modalWrapper .col:nth-child(2)::after {
      content: "";
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 1px;
      background-color: #eeeeee;
  }

  .modalWrapper .col {
      position: relative;
  }

  .modalSalary p{
    font-size: 14px;
  }
  .modalSalary h5{
    font-size: 16px;
    font-weight: 700;
  }
  .clear a{
    background-color: #D9D9D9;
    color: #2E2E2E;
    padding: 9px 12px;
    font-size: 12px;
    border-radius: 6px;
  }
  .selectize-input {
    border: none !important;
  }
  .group{
    /* background-color: light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4)); */
    border-radius: 8px;
    border: 1px solid rgba(0, 119, 255, 0.187)
  }
  .loginform input{
    border:none !important
  }

  .selectize-control.com-form-control.select2.single .selectize-input {
    outline: none;
    box-shadow: none;
}

.text{
    color: rgba(0, 119, 255, 0.187);
}
.fa-eye:before{
    color: #76b4ff;
}
.white_Blue a{
    color: white;
}
.white_Blue a span{
    padding-right: 10px;
}

.meet input.com-form-control{
    border: none;
    box-shadow: none;
}
.edit .modal-content  .edited .modal-content{
    height: 100vh;
}
.de-modal{
    max-width: 1000px;
}
.edit .modal-content{
    height: 100vh;
}
.filter .modal-content{
    height: 100vh;
}
.mr .inputWrap::before
 {
    content: '';
    display: block;
    width: 2px;
    background-color: #EFF0F6;
    height: 35px;
    position: absolute;
    left: 25%;
    top: 16%;
    z-index: 7777;
    display: none;
}
.mr select.com-form-controlOne {
    width: 100%;
    display: inline-block;
}

.leadModal .modal-content{
    height: 100vh;
}
.conModal .modal-content{
    height: 100vh;
}
.name .inputWrap::before {
    content: '';
    display: block;
    width: 2px;
    background-color: #EFF0F6;
    height: 20px;
    position: absolute;
    left: 35%;
    top: 16%;
    z-index: 7777;
}
.taskModal .modal-content{
    height: 100vh;
}
.taskModal .modal-dialog-slideout{
    max-width: 768px;
}
.comm-form-group sup{
    color: red;
}
.askModel{
    height: 50px;
}
span.tag.label.label-info {
    background-color: #3577d838;
    padding: 0px 12px;
    border-radius: 30px;
    color: #434343;
    margin-top: 2px;
}
.leadModal-1.modal-content h5{
    font-size: 22px;
    font-weight: 700;
    color: #2E2E2E;
    font-family: 'Satoshi';
}

.leadModal-1.modal-content .input p{
    font-size: 22px;
    font-weight: 700;
    color: #2E2E2E;
    font-family: 'Satoshi';
}

li.active-status a {
    color: #3577D8 !important;
}
.breadcrumb select.smlSelect:focus,
.breadcrumb select.smlSelect:valid {
    /* background-color: blue; */
    color: #3577D8;
    font-weight: bold;
}
/* change */
select#salutation {
    width: 45%;
    border: none;
    box-shadow: none;
}
/* General menu styling */
.navigation .stellarnav ul > li {
    position: relative;
}

.navigation .stellarnav ul > li > ul {
    background-color: #ffffff;
    margin-top: 10px;
    color: #1850a4;
    /* border-radius: 30px; */
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 2px 11px rgb(24 80 164 / 19%);
}

/* Arrow indicator for first-level submenus only */
.navigation .stellarnav ul > li > ul:not(.d-block ul)::before {
    /* content: "▲"; */
    display: block;
    text-align: center;
    color: rgb(254, 254, 254);
    font-size: 22px;
    margin-bottom: 5px;
    position: absolute;
    top: -22px;
    left: 25px;
    border-radius: 2px;
}

/* Uniform styling for all menu items */
.subClass {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
}

.menuClass {
    display: flex;
    min-width: 156px;
    align-items: center;
}

/* Icon styling */
.menuIcon i {
    color: #3577D8;
}

/* Ensuring consistent text color for all items */
.navigation .stellarnav ul > li > ul li a {
    color: #121212;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

/* Adding spacing between icon and text */
.navigation .stellarnav ul > li > ul li a span {
    color: #3577D8;
    padding-right: 13px;
    min-width: 34px;
}

/* Adjustments for last menu item */
.navigation .stellarnav ul > li > ul li:last-child a em {
    color: #3577D8;
    margin-left: 20px;
}


.dataTables_wrapper .dataTables_filter input{
    /* border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid #B5B7C4 !important;
    margin-bottom: 20px; */
    border: 1px solid #1850a4 !important;
    margin-bottom: 20px;
    border-radius: 20px !important;
    background-color: #fff !important;
    padding-left: 36px !important;
}

.dataTables_filter label {
    color: #3577D8;
}
input[type="search"]:focus-visible{
    outline: none;
    border: none;
}

.inputWrap label.error{
    color: red !important;
    font-size: 13px;
    margin-top: 55px;
    display: block;
    position: absolute;
}
.dataTables_wrapper .dataTables_filter input{
    margin-bottom: 10px;
}
.dataTables_filter label {
    font-size: 13px;
}
.dataTables_wrapper .dataTables_filter input{
    min-width: 200px;
}
table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
    background-color: #ffffff;
}

table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd{
    background-color: #ffffff !important;
}
.table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: rgb(0 0 0 / 0%) !important;
    color: var(--bs-table-striped-color);
}
table.dataTable.display tbody tr.odd>.sorting_1, table.dataTable.order-column.stripe tbody tr.odd>.sorting_1 {
    background-color: #ffffff !important;
}
table.dataTable.display tbody tr:hover>.sorting_1, table.dataTable.order-column.hover tbody tr:hover>.sorting_1 {
    background-color: #ffffff00 !important;
}
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #28282892;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loaders {
    position: relative;
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: rotateBorder 2s linear infinite, colorCycle 3s linear infinite;
    border: 8px solid transparent;
}

.loaders img {
    width: 60px;
    height: 60px;
    position: absolute;
}

.loaders:before,
.loaders:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: spin 1s linear infinite;
}

.loaders:after {
    transform: rotateY(70deg);
    animation-delay: 0.4s;
}

#preloader img{
    width: 156px;
    position: absolute;
    animation: waveMovement 3s infinite ease-in-out;
}
@keyframes waveMovement {
    0% { transform: translate(-80px, 0px); }
    25% { transform: translate(0px, 30px); }
    50% { transform: translate(60px, 0px); }
    75% { transform: translate(60px, 30px); }
    100%{transform: translate(-100px,0px);}
}
/* Spinner Animation */
/* @keyframes spin {
    0%, 100% { border-color: red; }
    12% { border-color: blue; }
    25% { border-color: green; }
    37% { border-color: yellow; }
    50% { border-color: pink; }
    62% { border-color: orange; }
    75% { border-color: purple; }
    87% { border-color: cyan; }
} */

/* Border Rotation Animation */
/* @keyframes rotateBorder {
    0% { transform: rotate(0deg) scale(1); border-color: rgb(101, 57, 215); }
    25% { transform: rotate(90deg) scale(1.05); border-color: rgb(67, 67, 141); }
    50% { transform: rotate(180deg) scale(0.95); border-color: rgb(27, 160, 183); }
    75% { transform: rotate(270deg) scale(1.03); border-color: rgb(35, 103, 117); }
    100% { transform: rotate(360deg) scale(1); border-color: rgb(99, 53, 180); }:
} */

/* Color Cycle Animation */
/* @keyframes colorCycle {
    0% { background-color: rgb(101, 57, 215); }
    25% { background-color: rgb(67, 67, 141); }
    50% { background-color: rgb(27, 160, 183); }
    75% { background-color: rgb(35, 103, 117); }
    100% { background-color: rgb(99, 53, 180); }
} */

.loaders:after {
    content: '';
    position: absolute;
    width: 41px;
    top: 0;
    left: 10px;
    height: 41px;
    border-radius: 50%;
    border: 1px solid rgb(255, 0, 0);
    clip-path: inset(50% 0 0 0);
    animation: rotateHalfBorder 2s linear infinite reverse;
}
/* @keyframes rotateHalfBorder {
    0% { transform: rotate(0deg); border-color: rgb(101, 57, 215); }
    25% { transform: rotate(-90deg); border-color: rgb(67, 67, 141); }
    50% { transform: rotate(-180deg); border-color: rgb(27, 160, 183); }
    75% { transform: rotate(-270deg); border-color: rgb(35, 103, 117); }
    100% { transform: rotate(-360deg); border-color: rgb(99, 53, 180); }
} */

.mainbar .progressbar{
    display: flex;
    justify-content: center !important;
}

.container-custom{
    padding: 0 20px;
}
.hduser{
    cursor: pointer;
}
.masterDataDeleteBtn i{
    color: red;
}
i.fa-regular.fa-pen-to-square {
    color: #353556;
}

.removeBtn a , .removeBtnemail a{
    color: red;
}

.bootstrap-tagsinput {
    border: none !important;
    border-radius: 10px !important;
    height: 40px !important;
    background: white;
    width: 100%;
    font-family: 'Satoshi';
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #2E2E2E;
    padding: 10px 15px;
    outline: none;
    box-shadow: 0px 2px 6px 0px #13124212 !important;
}

.btnPanel a span {
    /* color: #2E2E2E;  */
    color: #FFF;
    font-weight: bold;
    text-decoration: none;
}
.btnPanel a i{
    color: white;
}
button.blue_btn span {
    color: #3577D8;
}
.btnPanel a {
    color: #3577D8;
    font-weight: bold;
    text-decoration: none;
}

.btnPanel a em {
    color: inherit;
}

.selectize-dropdown-content {
    background: #FFF;
    width: 100%;
}

.selectize-dropdown.single.field.com-form-control.select2WithoutAdd {
    width: 150px !important;
    left: 0px !important;
}

button.pushBtn{
    background-color: #3577D8;
    color: #FFF;
    padding: 10px 40px;
    border-radius: 10px;
}
/* .headingWIthFilter .srcWtbtn .srcblock span {
    position: absolute;
    left: 24px;
    top: -3px;
} */

.headingWIthFilter .srcWtbtn .srcblock .field{
    padding: 0 0 0 2px;
}

.pi-control {
    width: 100%;
}

.com-form-control.pi-control input {
    border: none;
    width: 96%;
    margin-top: 8px;
}

.com-form-control.pi-control input:focus{
    border: none;
    outline: none;
}

.btnBlack a{
    color:#2E2E2E;
}

.heading h6{
    font-size: 13px;
    font-weight: 500;
    color: #1850a4;
}

.addDropdown {
    width: 208px !important;
    left: 16px !important;
}
.saveNextbtn {
    position: fixed;
    bottom: 2%;
    right: 2%;
    z-index: 999;
}
.saveBtn{
    box-shadow: 0px 0px 20px 0px #00000045;
    background: #139F5B;
    border-radius: 5px;
    font-family: 'Satoshi';
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color: #FFF;
    outline: none;
    border: none;
    padding: 8px 14px;
}

.detailsformwrap .accordion-button span img{
    visibility: hidden;
}
.detailsformwrap .accordion-button span{
    color: #EE6429;
}
.dataTable .tablewrap td:last-child,
.dataTable .tablewrap th:last-child {
  width: 49px !important;
  text-overflow: ellipsis;
}
.leaddetails .heading {
    padding: 10px 15px;
    border-radius: 10px;
    background: #f7f7f7;
    height: 100%;
} 

.confirmModal .modal-content {
    border-radius: 15px;
    box-shadow: 0 0 30px #2a65bf6b;
    border-bottom: 4px solid #235195;
}
.confirmModal .modal-content .modal-header {
    padding: 15px 20px;
}
.confirmModal .modal-content .modal-header h5.modal-title {
    font-size: 16px; 
    font-weight: 500; 
    color: #2E2E2E;
    font-family: 'Satoshi';
}
.confirmModal .modal-content .modal-header h5.modal-title span {
    color: #666;
}
.confirmModal .modal-content .modal-header h5.modal-title::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-variant-caps: normal;
    font-variant-ligatures: normal;
    font-weight: 900;
    height: 12px;
    font-size: 16px;
    line-height: 16px;
    text-rendering: auto;
    width: 12px;
    margin-right: 5px;
    -webkit-font-smoothing: antialiased;
    color: #1850a4;
}
.confirmModal .modal-content .modal-body .heading h6 {
    font-size: 13px;
    font-weight: 500;
}
.confirmModal .modal-content .modal-body .heading p {
    font-size: 13px;
    margin: 0;
}
.confirmModal .modal-content .modal-body h5.status {
    font-size: 16px;
    text-decoration: underline;
}
.confirmModal .modal-content .modal-body h5.status span {
    margin-right: 8px;
}
.confirmModal .modal-content .modal-body h5.status span i {
    font-size: 16px;
    color: #ff804a;
}

/* .dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_info{
    display: none !important;
} */

.dataTables_length,
.dataTables_paginate {
    display: none !important;
}

.dataTables_wrapper .dataTables_filter input{
    display: none !important;
}

.dataTables_filter label{
    display: none;
}
.subTable .dataTables_filter label{
    display: flex;
    align-items: center;
    position: relative;
}
.subTable .dataTables_filter label i {
    position: absolute;
    left: 15px;
    top: 8px;
    font-size: 16px;
}
textarea.solution {
    height: 70px;
    padding: 10px;

}

.subTable .dataTables_wrapper .dataTables_filter input{
    display: block !important;
}
.subTable .dataTables_length,
.dataTables_paginate{
    display: block !important;
}
.subTable.dataTables_filter label{
    display: block !important;
}

.subTable .dataTables_wrapper .dataTables_length,.subTable .dataTables_wrapper .dataTables_info{
    display: block !important;
}
.subTable .dataTables_filter{
    display: block !important;
}
.sub-table .dataTables_wrapper .dataTables_filter input{
    display: block !important;
}
.subTable.dataTables_wrapper .dataTables_filter input {
    display: block !important;
}

.greyBg{
    /* background-color: #FFF; */
    /* background-color: #D5F5E3; */
    /* background-color: #FADBD8; */
    /* padding: 30px 12px 10px 12px;
    border-radius: 10px; */
}

.greyBg {
    /* background-color: #FFF; */
    background-color: #1850a41c;
    /* background-color: #FADBD8; */
    padding: 30px 12px 10px 12px;
    border-radius: 10px;
}

.border-bottom{
    border: 1px solid #1850A4;
}

.grayBg h5{
   background-color: #1850a4d4;
    padding: 3px;
    font-size: 18px;
    color: #FFF;
    border-radius: 5px 0px 0 0;
    margin-bottom: 12px;
    display: inline-block;
    height: 25px;
    position: absolute;
    top: 0;
    left: 0;
}
.selectize-control.com-form-control.select2WithoutAdd.single{
    padding-right: 2px;
}
.grayBg{
    padding: 31px 18px 10px 18px;
    position: relative;
}
.greyBg h5{
    /* background-color: #139F5B; */
    background: #1850a4;
    padding: 3px;
    font-size: 18px;
    color: #FFF;
    border-radius: 5px 0px 0 0;
    margin-bottom: 12px;
    display: inline-block;
    height: 22px;
    position: absolute;
    left: 0;
    top: 0 ;
}
.greyBg h5::before{
    color: #fff;
}
.selectize-control.multi .selectize-input>div {
    padding: 0;
    background: #FADBD8 !important;
    color: #03063d !important;
    max-height: 21px;
    font-size: 8px;
}
.blueBg h4{
    font-size: 19px;
    font-weight: 900;
}

.greyBg{
    position: relative;

}


.accordion-button i{
    margin-left: 12px;
}

.bestDeal select.com-form-controlOne{
    width: 46%;
}


/* table.dataTable th:last-child,
table.dataTable td:last-child {
  width: 4% !important;
  min-width: 49px !important;
  max-width: 49px !important;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
} */


table.dataTable th:last-child, table.dataTable td:last-child {
    width: 4% !important;
    /* min-width: 49px !important; */
    /* max-width: 49px !important; */
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.attachment-floor .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover{
    border: none;
}
.attachment-floor .nav-tabs {
    border-bottom: none !important;
}
.attachment-floor .nav-tabs .nav-link.active {
    /* border-color: transparent !important; */
    background-color: transparent;
    color: #3577D8;
    border-bottom: 2px solid #3577D8;
    border-top: none;
    border-left: none;
    border-right: none;
}
.attachment-floor .nav-tabs .nav-link{
    color: #63676D;
    font-size: 13px;
    font-weight: 700;
}
.attachment-floor{
    background: linear-gradient(180deg,rgba(53, 121, 217, 0.23) 0%, rgba(255, 255, 255, 0.28) 39%, rgba(255, 255, 255, 0.24) 62%, rgba(53, 121, 217, 0.22) 100%);
}

#attachment-nav .modal-body{
    padding: 0;
}

#attachment-nav .modal-body .tab-content{
    padding: 1rem;
}



.tablewrap.longTable {
    width: auto;
    overflow-y: auto;
}
.longTable input{
    width: 84px;
}
.addOns .row{
    align-items: center;
}
tfoot tr {
    background: #DBFFED !important;
}
.addOns{
    margin-top: 12px;
}




.inputWrap.bestDeal1.d-flex.gap-2.align-items-center
 {
    width: 118px;
}

th.text-center.checboxell.sorting_disabled {
    width: 3% !important;
}


.longTable input[type="file"] {
    width: 88px;
}


/*==================================================*/
/*==================================================*/

.checks {
	/* border-bottom: 1px solid #ccc; */
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 30px;
	background: #fefdfd;
	box-shadow: 0px 5px 10px -5px #ccc;
	margin-bottom: 5px;
	padding: 0px 20px;
}

.checks .checks-label {
	
	width: 25%;
}

.checks .form-check { width: 20%; }

.selectize-input.items.not-full.has-options {
	width: 100%;
}
.selectize-input.items.full.has-options.has-items {
	width: 100%;
	overflow: hidden;
	height: 20px;
	
}
.selectized .selectize-input.items.not-full.has-options { width: 80px; }

.selectized .selectize-input.items.full.has-options.has-items { width: 80px; }

.selectize-control.single .selectize-input::after { right: 5px !important; }

.selectize-control.com-form-control.select2WithoutAdd.single {
	padding-right: 2px;
	width: 100%;
}

/* .sidemodalWrap {
   height: 400px;
} */

.remove-shift {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	float: right;
	margin: 10px 0px;
}
.trashBtn{
    color: #eb5a5a;
}
.trashBtn:hover{
    color: #ff0000;
}
.table-responsive .selectize-input.items.not-full.has-options {
	width: 65px;
}

.table-responsive .selectize-control.com-form-control.select2WithoutAdd.single {
	width: 90px;
}

.dataTables_length label {font-size: 12px !important;}
.dataTables_info, .paging_simple_numbers {font-size: 12px !important;}
.dataTables_wrapper .dataTables_length select {
    border: 1px solid #1850a4 !important;
    border-radius: 5px !important;
    background-color: transparent;
    padding: 2px 4px !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
    box-sizing: border-box;
    display: inline-block;
    min-width: 25px!important;
    padding: 2px 8px!important;
    margin-left: 1px !important;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    color: #333 !important;
    border: 1px solid transparent;
    border-radius: 6px!important;

}
td.sorting_1 {
    background-color: #f8f9fc !important;
}

.tooltiporder {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  cursor: pointer;
}

.tooltiptextorder {
  visibility: hidden;
  width: 130px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
}

.tooltiporder:hover .tooltiptextorder {
  visibility: visible;
}

.table-responsive #manpowerTable_wrapper .selectize-input.items.not-full.has-options {
    width: 100%;
}
.filterDropDown .filterDropDownBtn{
    padding: 10px;
    background: none;
    outline: none;
    box-shadow: none;
}
.filterDropDown .filterDropDownBtn::after{
    display: none;
}

.filterDropDown .dropdown-menu .dropdown-item{
    font-size: 14px;
    line-height: 1.2;
    background: none;
    box-shadow: none;
    color: #EE6429;
    padding: 10px;
    text-align: left;
    border-radius: 0;
}
.filterDropDown .dropdown-menu .dropdown-item span{
    color: #2E2E2E;
}
.filterDropDown .dropdown-menu .dropdown-item:hover{
    background-image: linear-gradient(to bottom, #fffaf9, #fff0ed, #ffe6e1, #ffddd6, #ffd3ca);
}

.select2WithoutAddmultiple.multi .selectize-input{
    overflow-y: auto;
    max-height: 24px;
}


.inputWrapwithSelect {
    display: flex;
    border: 1px solid #1850a4;
    border-radius: 6px;
    height: 32px;
    overflow: hidden;
}

.inputWrapwithSelect select{
    width: 60px !important;
    border: none;
    height: 100%;
    border: none;
    box-shadow: none;
    border-right: 1px solid #1850a4 !important;
    font-size: 12px;
    line-height: 10px;
    outline: none;
}
.inputWrapwithSelect .com-form-control,
.inputWrapwithSelect input{
    width: calc(100% - 60px);
    border: none;
}

.uploadFileTtl{
    padding: 0;
    margin: 0 0 10px;
}
.uploadFileTtl h4{
    font-family: 'Satoshi';
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    color: #717171;
    padding: 0;
    margin: 0 0 0px;
}

.tabwithtableWrap .advfilterAndExport a{
    min-height: 31px;
}

.detailsformwrap .heading{
    padding: 10px 15px;
    border-radius: 10px;
    background: #f7f7f7;
    height: 100%;
}
.helpStatusPanel{
    padding: 10px 0;
}
.helpStatusPanel ul{
    display: flex;
    gap: 40px;
}
.helpStatusPanel ul li{
    font-family: 'Satoshi';
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    padding: 0;
    margin: 0;
}
.allst{
    color: #3577D8;
}
.newst{
    color: #63676D;
}
.acceptst{
    color: #139F5B;
}
.pendingst{
    color: #EE6429;
}
.rejectst{
    color: #E51A1A;
}

.dateTimewrap{
    border: 1px solid #1850a4;
    border-radius: 6px;
    height: 32px;
    background: white;
    width: 100%;
    outline: none;
    box-shadow: 0px 2px 6px 0px #13124212;
    display: flex;
    overflow: hidden;
}
.dateTimewrap .field{
    width: 50%;
    border: none;
    box-shadow: none;
    outline: none;
    border-radius: 0;
    font-family: 'Satoshi';
    font-weight: 400;
    font-size: 12px;
    line-height: 10px;
    color: #2E2E2E;
    padding: 4px 10px;
}
.dateTimewrap input[type="date"]{
    border-right: 1px solid #1850a4;
}

.inputWrapwithSelect.ltbrd{
    max-width: 108px;
}
.inputWrapwithSelect.ltbrd select{
    border-left: 1px solid #1850a4 !important;
    border-right: none !important;
    width: 44px !important;
}
.inputWrapwithSelect.ltbrd input {
    width: calc(100% - 44px);
}

    