/* body > header.header , body > aside{
  display: none !important;
} */
body > main.main#main{
  margin: 0px;
  padding: 0px;
}
body > footer.footer{
  padding: 8px;
  margin-top: -38px;

  display: none !important;
}










/* utility classes css START */
.mt-10px{
  margin-top: 10px;
}
.mt-16px{
  margin-top: 16px;
}
.mt-20px{
  margin-top: 20px;
}
.mt-32px{
  margin-top: 32px;
}

.mb-4px{
  margin-bottom: 4px;
}
.mb-20px{
  margin-bottom: 20px;
}
.mb-32px{
  margin-bottom: 32px;
}

.mr-4px{
  margin-right: 4px;
}
.mr-8px{
  margin-right: 8px;
}
.mr-16px{
  margin-right: 16px;
}

.ml-4px{
  margin-left: 4px;
}
.ml-8px{
  margin-left: 8px;
}
.ml-16px{
  margin-left: 16px;
}

.p-12px{
  padding: 12px;
}


.font-10px{
  font-size: 10px;
}
.font-12px{
  font-size: 12px;
}
.font-14px{
  font-size: 14px;
}
.font-16px{
  font-size: 16px;
}
.font-18px{
  font-size: 18px;
}
.font-20px{
  font-size: 20px;
}
.font-22px{
  font-size: 20px;
}
.font-24px{
  font-size: 20px;
}
.font-100px{
  font-size: 100px;
}

.weight-400{
  font-weight: 400;
}
.weight-500{
  font-weight: 500;
}
.weight-600{
  font-weight: 600;
}
.weight-700{
  font-weight: 700;
}
.weight-800{
  font-weight: 800;
}

.w-fit-content{
  width: fit-content;
}
.wd-20{
  width: 20%;
}
.wd-33-33{
  width: 33.33% !important;
}
.wd-40{
  width: 40%;
}
.wd-100{
  width: 100%;
}
.wd-200px{
  width: 200px;
}
.wd-250px{
  width: 250px;
}
.wd-300px{
  width: 300px;
}

.color-blackType{
  color: #18181B;
}
.color-blackType-imp{
  color: #18181B !important;
}
.color-black{
  color: black;
}
.color-darkGrey{
  color: #525B75;
}
.color-text-grey{
  color: #899bbd;
}
.color-blue{
  color: #007bff;
}
.color-blue-imp{
  color: #007bff !important;
}
.color-redType{
  color: #dc3545;
}
.color-red{
  color: red;
}

.bg-blackType{
  background-color: #18181B;
}
.bg-black{
  background-color: black;
}
.bg-darkGrey{
  background-color: #525B75;
}
.bg-lightGrey{
  background-color: #F9F9F9;
}
.bg-blue{
  background-color: #007bff;
}
.bg-blueType{
  background-color: #cce5ff;
}
.bg-transparent{
  background-color: transparent;
}
.bg-transparent-imp{
  background-color: transparent !important;
}

.tagType{
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  color: white;
  border-radius: 3px;
  background-color: #3699FF;
  padding: 4px 10px;
  margin-bottom: 8px;
  width: -moz-fit-content;
  width: fit-content;
}
.whiteTagType{
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 3px;
  background-color: white;
  border: 1px solid #E0E2E1;
  color: black;
  padding: 4px 10px;
  margin-bottom: 0px;
  width: -moz-fit-content;
  width: fit-content;
}

.text-decoration-underline{
  text-decoration: underline;
}

.redBorder{
  border: 1px solid red;
}

.cursor_pointer{
  cursor: pointer;
}

.disabled{
  opacity: 0.5;
  pointer-events: none;
}

.underlineTabs-container{
  width: 100%;
}
.underlineTabs-header{
  width: 100%;
  /* max-width: 100%; */
  display: flex;
  border-bottom: 1px solid #dee2e6;
}
.underlineTabs-header-item{
  padding: 6px 8px;
  margin: 0px 4px;
  position: relative;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #18181B;
}
.underlineTabs-header-item:hover{
  color: #007bff;
}
.underlineTabs-header-item.active{
  color: #007bff;
}
.underlineTabs-header-item:first-child{
  margin-left: 0px;
}
.underlineTabs-header-item:last-child{
  margin-right: 0px;
}
.underlineTabs-header-item.active::after{
  content: '';
  position: absolute;
  left: 0px;
  height: 3px;
  width: 100%;
  background-color: #007bff;
  bottom: -2px;
}
.underlineTabs-content{
  width: 100%;
  padding: 16px;
}

.underlineTabs-header.withScrollButtons{
  position: relative;
  padding: 0px 40px;
  background-color: #f6f9ff;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
}
.underlineTabs-header-inner{
  display: flex;
  list-style: none;
  overflow-x: clip;
  overflow-y: hidden;

  scroll-behavior: smooth;
  max-width: 100%;
}
.underlineTabs-header-inner .underlineTabs-header-item{
  min-width: fit-content;
  margin: 0px 32px;
}
.withScrollButtons-btn{
  position: absolute;
  top: 0px;
  border: 1px solid #dee2e6;
  border-radius: 4px 4px 0px 0px;
  height: 32px;
  width: 32px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: white;
}
.withScrollButtons-btn.leftBtn{
  left: 0px;
}
.withScrollButtons-btn.rightBtn{
  right: 0px;
}



.table.newTable thead tr th{
  background-color: transparent;
  color: #18181B;
  text-align: left;
  border-bottom-width: 1px;
  border-top-width: 0px;
  font-size: 14px;
}
.table.newTable tbody tr td{
  background-color: transparent;
  color: #18181B;
  text-align: left;
  font-size: 14px;
}
.table.newTable tbody tr:hover{
  background-color: #cce5ff;
}
.table.newTable tbody tr.tr-bg-lightRed{
  background-color: #FAE3E3;
}
.table.newTable tbody tr.tr-bg-lightRed td{
  color: #FE3B3B;
}


.collapseAble-container{
  padding: 16px;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #dee2e6;
  background-color: white;
}
.collapseAble-header{
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #18181B;
}
.collapseAble-body{
  margin-top: 16px;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  color: #18181B;
}

.myProfile-picture{
  width: 220px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  background-color: white;
}
.myProfile-signature{
  padding: 16px;
  width: 220px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  background-color: white;
}

.myProfile-schedule-section{
  margin: 20px auto;
  width: 90%;
}

/* utility classes css END */










*{
  box-sizing: border-box;
  font-family: Poppins, serif, Times;
  line-height: 1.3;
}
h1, h2, h3, h4, h5, h6{
  font-family: Poppins, serif, Times;
}
.mainContainer{
  display: grid;
  grid-template-columns: 250px calc(100% - 250px);
  grid-template-rows: 60px calc(100% - 60px);
  grid-template-areas: 
    'topBar             topBar'
    'sideBar            content'
  ;
  height: 100%;
  width: 100%;
  overflow: hidden;
  transition: all 0.1s ease-in-out;
}
.mainContainer .logo{
  width: 180px;
}
/* sidebar minimzed version that has only icons and text is invisible (START) */
.mainContainer.toggle-sidebar{
  grid-template-columns: 60px calc(100% - 60px);
  transition: all 0.1s ease-in-out;
}
.mainContainer.toggle-sidebar .mainSidebar.sidebar .mainSidebar-inner{
  padding: 16px 8px;
}
.mainContainer.toggle-sidebar .mainSidebar.sidebar .nav-heading{
  font-size: 0px;
  height: 14.3px;
  opacity: 0;
}
.mainContainer.toggle-sidebar .mainSidebar.sidebar .sidebar-nav .nav-item{
  display: flex;
  justify-content: center;
}
.mainContainer.toggle-sidebar .mainSidebar.sidebar .sidebar-nav .nav-item .nav-link .mainSidebar-ul-text{
  display: none;
}
.mainContainer.toggle-sidebar .mainSidebar.sidebar .sidebar-nav .nav-item .nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  padding: 8px;
  border-radius: 4px;
}
.mainContainer.toggle-sidebar .mainSidebar.sidebar .sidebar-nav .nav-item .nav-link i {
  font-size: 24px;
  transition: font-size 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mainContainer.toggle-sidebar .mainSidebar.sidebar .sidebar-nav .nav-item .nav-link i::before {
  font-size: 24px;
  transition: font-size 0.3s ease-in-out;
}
/* sidebar minimzed version that has only icons and text is invisible (END) */

/* top bar css START */
.mainHeader.header{
  grid-area: topBar;
  box-shadow: 0px 2px 0px rgba(1, 41, 112, 0.1);
  background-color: #fff;
  padding-left: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mainHeader-rightSide{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* .mainHeader-leftSide{  } */
/* top bar css END */


/* side bar css START */
.mainSidebar.sidebar{
  grid-area: sideBar;
  background-color: #18181B;
  min-height: calc(100vh - 60px);
  max-height: calc(100vh - 60px);
  height: auto;

  position: relative;
  top: unset;
  left: unset;
  bottom: unset;
  width: 100%;
  z-index: unset;
  transition: all 0.3s;
  padding: unset;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  box-shadow: unset;
}
.mainSidebar-inner{
  padding: 16px 0px;
  width: 100%;
}
.mainSidebar-ul{
  list-style: none;
  padding: 0px;
  margin: 0px;
  width: 100%;
}
.mainSidebar .mainSidebar-inner .mainSidebar-ul a.nav-link{
  width: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 10px 10px 10px 12px;
  cursor: pointer;
  margin-bottom: 4px;
  border-radius: 0px;
}
.mainSidebar .mainSidebar-inner .mainSidebar-ul a:hover , .mainSidebar .mainSidebar-inner .mainSidebar-ul a.active{
  background-color: #007bff;
}
.mainSidebar .mainSidebar-inner .mainSidebar-ul a i{
  margin-right: 0px;
}
.mainSidebar .mainSidebar-inner .mainSidebar-ul a i::before{
  font-size: 18px;
  color: white;
}
.mainSidebar .mainSidebar-inner .mainSidebar-ul a .mainSidebar-ul-text{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: white;
}
/* side bar css END */


/* main content css START */
.main{
  grid-area: content;
  max-height: calc(100vh - 60px);
  height: calc(100vh - 60px);
  overflow-y: auto;
  background-color: rgb(249, 249, 249);
}
.mainBody-inner{
  width: 100%;
  height: 100%;
  padding: 24px;
  max-height: 100%;
  overflow-y: auto;
}
.mainBody-heading{
  font-size: 32px;
  font-weight: bold;
  color: #18181B;
}
.mainBody-text{
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #899bbd;
}
.mainBody-text.red{
  color: red;
}
.mainBody-subHeading{
  font-size: 24px;
  font-weight: bold;
  color: #18181B;
}
.blueBoxes-container{
  display: flex;
  gap: 16px;
  /* flex-wrap: wrap; */
}
.blueBoxes{
  padding: 16px;
  background-color: #cce5ff;
  width: calc(50% - 8px);
  border-radius: 4px;
  border: 1px solid #b8daff;
}
.blueBoxes-inner{
  display: flex;
}
.blueBoxes-inner-leftSide{
  width: 25%;
  min-width: 150px;
  display: flex;
  justify-content: center;
}
.blueBoxes-inner-leftSide img{
  width: 100%;
  max-width: 100px;
  margin: 0px auto;
}
.blueBoxes-inner-leftSide i{
  width: 100%;
  max-width: 100px;
  font-size: 120px;
  color: black;
  height: 100px;
  margin: 0px auto;
  background-color: #F9F9F9;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blueBoxes-inner-leftSide i::before{
  width: 100%;
  max-width: 100px;
  font-size: 70px;
  color: black;
  height: 100px;
  margin: 0px auto;
  background-color: #F9F9F9;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blueBoxes-inner-rightSide{
  width: 75%;
  padding-right: 16px
}
.blueBoxes p{
  font-size: 14px;
}
.redBoxes{
  padding: 16px;
  border-radius: 4px;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

.maxWidth768px-withMarginAuto{
  width: 100%;
  max-width: 768px;
  margin: 0px auto;
}
.maxWidth80-withMarginAuto{
  max-width: 80%;
  margin: 0px auto;
}

.fullWidthBox{
  padding: 16px;
  width: 100%;
  border-radius: 4px;
  margin-bottom: 16px;
}
.fullWidthBox.blue{
  background-color: #cce5ff;
  border: 1px solid #b8daff;
}
.fullWidthBox.red{
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}
.fullWidthBox.white{
  background-color: white;
}
.fullWidthBox:last-child{
  margin-bottom: 0px;
}

.ID-status-container{
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  width: 100%;
  display: flex;
  align-items: center;
}
.ID-status-container.green::before{
  content: '';
  height: 14px;
  width: 14px;
  min-width: 14px;
  min-height: 14px;
  border-radius: 50%;
  background-color: green;
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 0px;
}
.ID-status-container.red::before{
  content: '';
  height: 14px;
  width: 14px;
  min-width: 14px;
  min-height: 14px;
  border-radius: 50%;
  background-color: red;
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 0px;
}


/* input css START */
.newInput,.newInput[type='text']{
  background-color: white;
  border-radius: 4px;
  border: 1px solid #dee2e6;
  min-width: 200px;
}
.newInput[disabled]{
  pointer-events: none;
  opacity: 0.5;
}
.newInput.min-width-unset{
  min-width: auto;
}
.newInput-label{
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}
.newInput-label.mb-10px{
  margin-bottom: 10px;
}
.newTextarea{
  background-color: white;
  border-radius: 4px;
  min-height: 180px;
  border: 1px solid #dee2e6;
  min-width: 200px;
}
.newInput-withIcon-container{
  position: relative;
}
.newInput-withIcon-container input.newInput{
  position: relative;
  padding-right: 32px;
}
.newInput-withIcon-container i{
  position: absolute;
  font-size: 16px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.newInput.min-width-110px {
  min-width: 110px;
}
.newInput.wd-110px{
  width: 110px;
}
.newInput[type="file"]{
  background-color: white;
  border-radius: 4px;
  border: 1px solid #dee2e6;
  min-width: 200px;
  height: 42px;
  padding-top: 6px;
  padding-right: 0.75rem;
  padding-bottom: 6px;
  padding-left: 6px;
  display: flex;
  align-items: center;
}
.newInput[type="file"]::-webkit-file-upload-button{
  height: 28px;
  margin-top: 0px;
  margin-bottom: 0px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  margin-inline-end: 16px;
  color: #fff;
  background-color: #007bff;
  padding-inline: 12px;
}
/* input css END */

/* dropdown css START */
.dropdown.mainDropdown .btn.btn-secondary.dropdown-toggle{
  background-color: white;
  border-radius: 4px;
  border: 1px solid #dee2e6;
  color: black;
  height: 42px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 220px;
}
.dropdown.mainDropdown .btn.btn-secondary.dropdown-toggle::after{
  height: 16px;
  width: 16px;
  border: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-chevron-down'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 16px;
}
.dropdown.mainDropdown .dropdown-menu.show{
  min-width: 220px;
}
select.mainDropdown{
  background-color: white;
  border-radius: 4px;
  border: 1px solid #dee2e6;
  color: black;
  height: 42px;
  padding-left: 16px;
  padding-right: 8px;
}

/* dropdown css END */


/* modal css START */
.mainModal.modal {
  width: 100vw;
  height: 100vh;
  margin-top: 0px;
  margin-bottom: 0px;
  max-width: 100vw;
  max-height: 100vh;
}
.mainModal.modal.show {
  display: flex;
}
.mainModal.modal .modal-dialog{
  max-width: 50vw;
  width: 50vw;
  margin: auto;
}
.mainModal.modal .modal-dialog .modal-header{
  padding: 16px 24px; 
}
.mainModal.modal .modal-dialog .modal-title{
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3; 
}
.mainModal.modal .modal-dialog .modal-content{
  background-color: #fff; 
  border-radius: 10px; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
  max-width: 600px; 
  width: 90%; 
  height: auto; 
  max-height: calc(100vh - 50px); 
  overflow-y: unset;
  width: 100%;
  max-width: 100%;
}
.mainModal.modal .modal-dialog .modal-content .modal-body{
  padding: 24px;
}
.mainModal.modal .innerForm-scrollableSection.withCancelButton{
  max-height: calc(90vh - 45px - 45px - 45px - 45px - 0px);
  overflow-y: auto;
  padding-right: 12px;
  padding-left: 4px;
}
.mainModal.modal .innerForm-scrollableSection{
  max-height: calc(90vh - 45px - 45px - 45px - 0px);
  overflow-y: auto;
  padding-right: 12px;
  padding-left: 4px;
}
/* modal css END */





/* main content css END */


























.login-leftSide{
  width: 75%;
  max-width: calc(100% - 480px);
}
.login-rightSide{
  width: 25%;
  min-width: calc(480px);
}