:root {
  --primary-background-color: #2a54c2;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #2a54c2;
  border-radius: 30px;
}
::-webkit-scrollbar-thumb:hover {
  background: #000;
}
table.dataTable {
  font-size: 14px;
}
table.dataTable .btn {
  font-weight: normal;
}
div.dt-container .dt-paging .dt-paging-button.current,
div.dt-container .dt-paging .dt-paging-button.current:hover,
div.dt-container .dt-paging .dt-paging-button:hover {
  background-color: #2a54c2;
  background: #2a54c2;
  color: #fff !important;
}
div.dt-container .dt-paging .dt-paging-button {
  border-radius: 5px;
}
body {
  font-size: 15px;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
}
.dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 14px;
}
a {
  text-decoration: none;
}
.rounded-10 {
  border-radius: 10px;
}
.form-control,
.form-select {
  font-size: 14px;
  box-shadow: none !important;
}
.logregform .form-control {
  min-height: 44px;
}
.form-control:focus,
.form-select:focus {
  border-color: #4b5768;
}
.logregform .btn {
  min-height: 44px;
  box-shadow: none !important;
}
.btn {
  font-size: 14px;
  font-weight: 600;
}
.btn-primary {
  color: #fff;
  background-color: #2a54c2;
  border-color: #2a54c2;
}
.btn-primary:hover,
.btn-primary:focus {
  color: #fff;
  background-color: #07b1d9;
  border-color: #07b1d9;
}
.btn-primary-outline,
.btn-outline-primary {
  background-color: transparent;
  border-color: #2a54c2;
  color: #2a54c2;
}
.or {
  z-index: 2;
}
.or:after {
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  right: 10%;
  background-color: #d2d5d9;
  height: 1px;
  position: absolute;
  z-index: -1;
}
.or span {
  background-color: #f4f5f7;
}
.btn-ass {
  color: #000;
  background-color: #e6e6e6;
}
.text-black {
  color: #000;
}
.text-gray {
  color: #8a8a8a;
}
.pagewrap {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 100vh;
  height: 100vh;
}
.content-wrap {
  display: grid;
  grid-template-rows: 60px 1fr 0;
  height: 100vh;
}
.sidebar-inner {
  display: grid;
  grid-template-rows: 60px 1fr 61px;
  height: 99.9vh;
}
.topbar-header {
  background-color: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}
/*.content-body{
    background-color: #F1F2F6;
    overflow-y: auto;
}*/
.hdrNoti {
  transform: none !important;
  right: 0 !important;
  left: inherit !important;
  top: 100% !important;
}

@media screen and (max-width: 768px) {
  .content-body {
    overflow-y: scroll; /* Ensures scrolling works */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .content-body::-webkit-scrollbar {
    display: none;
  }
}
.lrgLogo {
  display: block;
}
.smlLogo {
  display: none;
}
.sidebar {
  background-color: #0f1728;
  border-radius: 0 10px 10px 0;
  width: 250px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.sidebar.active {
  width: 80px;
}
.sidebar.active .lrgLogo {
  display: none;
}
.sidebar.active .smlLogo {
  display: block;
}
.sidebar.active .sidebar-footer .btn span {
  display: none;
}
.sidebar-footer.border-top {
  border-top-color: #2a54c2 !important;
}
.sidebar-header.border-bottom {
  border-bottom-color: #2a54c2 !important;
}
.mainmenu {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mainmenu > li {
  position: relative;
}
.mainmenu > li.has-submenu > a {
  position: relative;
}
.mainmenu > li.has-submenu > a:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 15px;
  width: 15px;
  height: 10px;
  background-image: url(../images/down-arrow-white.svg);
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: center center;
  transform: rotate(180deg);
  transition: all 0.2s ease-in-out;
}
.mainmenu > li.has-submenu > a.collapsed:after {
  transform: rotate(0);
}
.mainmenu > li > a {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 10px;
  padding: 10px;
  font-size: 12px;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
}
.mainmenu > li > a.active,
.mainmenu > li:hover > a {
  background-color: #2a54c2;
}
.mainmenu > li > a > i {
  max-width: 18px;
  min-width: 18px;
  line-height: 0;
}
.mainmenu > li > a > i small {
  display: none;
  font-style: normal;
  font-size: 8px;
  line-height: 1;
  margin-top: 4px;
  overflow: hidden;
  white-space: nowrap;
}
.sidebar.active .mainmenu > li > a > i small {
  display: block;
}
.sidebar.active .mainmenu > li > a > i > svg,
.sidebar.active .mainmenu > li > a > i > img {
  display: inline-flex;
}
.mainmenu > li > a > i svg {
  transition: all 0.3s ease-in-out;
}
.sidebar.active .mainmenu > li > a > i {
  max-width: 40px;
  min-width: 40px;
  text-align: center;
}
.sidebar.active .mainmenu > li > a > i svg {
  height: 22px;
  width: 22px;
}
.mainmenu > li > a > span {
  white-space: nowrap;
}
.sidebar.active .mainmenu > li > a > span {
  display: none;
}
.sidebar.active .mainmenu > li > a:after {
  display: none;
}
.submenu {
  padding: 0;
  margin: 0 0 0 1.2rem;
  position: relative;
  list-style: none;
}
.submenu:after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 5px;
  width: 1px;
  background-color: #2a54c2;
}
.submenu > li > a {
  display: flex;
  padding: 10px 15px 10px 20px;
  color: #fff;
  font-size: 13px;
  transition: all 0.2s ease-in-out;
}
.submenu > li:hover > a,
.submenu > li > a.active {
  color: #5183ff;
}
    .mainmenu .submenu>li.has-submenu>a {
        position: relative;
    }

    .mainmenu .submenu>li.has-submenu>a:after {
        content: "";
        position: absolute;
        right: 10px;
        top: 15px;
        width: 15px;
        height: 10px;
        background-image: url(../images/down-arrow-white.svg);
        background-repeat: no-repeat;
        background-size: 15px auto;
        background-position: center center;
        transform: rotate(180deg);
        transition: all 0.2s ease-in-out;
    }

    .mainmenu .submenu>li.has-submenu>a.collapsed:after {
        transform: rotate(0);
    }
.btnico {
  display: inline-flex;
  align-items: center;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0;
  background-color: transparent !important;
}
.searchbar .form-control {
  min-height: 40px;
  background-color: #f6f6f6;
  border-radius: 0 8px 8px 0;
  border-left: none !important;
  padding-left: 0;
  border-color: #dbdbdb !important;
}
.searchbar .input-group-text {
  border-radius: 8px 0 0 8px;
  background-color: #f6f6f6;
  border-color: #dbdbdb;
}
.btn-round {
  height: 40px;
  width: 40px;
  min-height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eeeeee;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0;
}
.headeraccbtn {
  padding: 5px 15px 5px 5px;
  border-radius: 30px;
  background-color: #eeeeee;
  display: flex;
  align-items: center;
  gap: 5px;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.04) !important;
}
.display-6,
.display-5,
.display-4,
.display-3,
.display-2,
.display-1 {
  font-weight: 400;
  line-height: 1.2;
  font-size: 2.3rem;
}
.text-blue {
  color: #2a54c2;
}
.nav-active .sidebar {
  left: 0;
}
.nav-active .sidebaroverly {
  right: 0;
  transition: all 0.4s ease 0.2s;
}
.footermnu > li {
  width: 20%;
}
.footermnu > li > a {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  position: relative;
  z-index: 2;
  color: #1d1c1c;
}
.footermnu > li > a.active {
  color: #2a54c2;
}
.footermnu > li > a > span {
  font-size: 12px;
  font-weight: 500;
}
.centerbg {
  left: 40%;
  transform: translateX(-44%);
  z-index: -1;
  top: -13px;
}
.leavcrd {
  border-radius: 0 15px 15px 0;
  background-color: #d9d9d9;
  height: 20px;
}
.nosrchtable .dt-layout-table {
  margin-top: 0 !important;
}
.nosrchtable .dt-layout-row {
  margin: 0 !important;
}
.nosrchtable .dt-info {
  display: none !important;
}
#chartWrapper {
  width: 100%;
  max-width: 800px;
}
#attendanceChart {
  width: 100%;
  height: 400px;
}
.cardTabHeader .nav-link {
  padding: 15px 20px;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 3px solid transparent;
  color: #717171;
  background-color: transparent;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  top: 2px;
}
.cardTabHeader .nav-link.active {
  background-color: transparent;
  color: #2a54c2;
  border-bottom-color: #2a54c2;
}
.fontsize16 {
  font-size: 16px;
}
.fontsize14 {
  font-size: 14px;
}
#moremnu {
  border-radius: 15px 15px 0 0;
  height: 40vh;
}
#moremnu .offcanvas-footer {
  background-color: var(--primary-background-color);
  height: 45px;
}
.moremnuclsbtn {
  z-index: 2;
  top: -5px;
}
.moremnuclsbtn .clsbtnbg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -22px;
}
.clsbtnico {
  position: relative;
  top: -10px;
}
#moremnu .col-4 a {
  color: #0f1728;
}
#moremnu .col-4 a.active {
  color: #2a54c2;
}
.footermnu {
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.2);
  position: relative;
}
.dt-container > .dt-layout-row:first-child label {
  display: none;
}
.dt-container > .dt-layout-row:first-child {
  margin: 0 0 10px !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.imagePreview {
  width: 70px;
  height: 70px;
  background-position: center center;
  background-size: 60px auto;
  background-repeat: no-repeat;
}
.uploadavatar {
  border: 3px dashed #2a54c2;
  border-radius: 10px;
  padding: 30px;
}
.addwork {
  background-color: #6d92f5cf;
}
.work-shift-tbh {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #8a8a8a;
}
.modal-backdrop {
  background-color: #6d92f5cf !important;
}
.work-shift-btn {
  font-size: 16px;
  font-weight: 400;
  padding: 10px 0px 0px 0px;
  border-radius: 10px 0px 0px 0px;
  opacity: 0px;
}
.cProfileNav .nav-link {
  border-radius: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fff;
  color: #1d1c1c;
  border-left: none;
  border-top: none;
  border-bottom: none;
  border-right: 5px solid transparent;
  text-align: left;
}
.cProfileNav .nav-link.active {
  background-color: #d5e1ff;
  color: #11338b;
  border-right-color: #2a54c2;
}
.fw-medium,
.fw-500 {
  font-weight: 500;
}
.fw-semibold,
.fw-600 {
  font-weight: 600;
}
.UploadLogo {
  min-height: 150px;
  min-width: 150px;
  max-height: 150px;
  max-width: 150px;
  border: 1px solid #000;
}
.UploadLogo img {
  height: 100px;
  height: 100px;
  object-fit: cover;
}
.UploadLogo input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 1;
}
.UploadLogo i {
  position: absolute;
  bottom: -5px;
  right: -5px;
}
.modal-open > .select2-container {
  z-index: 9999;
}
.mbsc-ios.mbsc-datepicker-inline {
  border: none;
}
#demo-1-week .mbsc-calendar-button {
  padding-left: 0;
  font-size: 18px;
  color: #000;
  font-weight: 500;
  opacity: 1;
  height: 26px;
  position: relative;
  top: -5px;
}
.mbsc-calendar-cell > div:first-child {
  display: none !important;
}
.summery-calendar .profile-column {
  border-left: 1px solid var(--base-color);
}
.summery-calendar .profile-column .column-header {
  align-items: center;
  background-color: #f9f9f9;
  display: flex;
  height: 50px;
  justify-content: center;
}
.summery-calendar .total-hour-column .column-header {
  align-items: center;
  border-bottom: 1px solid #f9f9f9;
  border-top: 1px solid #f9f9f9;
  display: flex;
  height: 50px;
  justify-content: center;
}
.summery-calendar .total-hour-column .column-content {
  border-bottom: 1px solid #f9f9f9;
  border-right: 1px solid #f9f9f9;
  display: flex;
  height: 200px;
  justify-content: center;
}
.summery-calendar .profile-column .profile-box {
  align-items: center;
  border-bottom: 1px solid #f9f9f9;
  border-right: 1px solid #f9f9f9;
  display: flex;
  flex-direction: column;
  height: 200px;
  justify-content: center;
  width: 200px;
}
.summery-calendar .date-column {
  flex-grow: 1;
  max-width: 100%;
  overflow-x: auto;
}
.summery-calendar .date-column .date {
  align-items: center;
  background-color: #f9f9f9;
  color: #787d88;
  display: flex;
  height: 50px;
  justify-content: center;
  padding: 0 1.2rem;
  white-space: nowrap;
}
.summery-calendar .date-column .date-hour-wrapper {
  border-bottom: 5px solid #f9f9f9;
  border-right: 1px solid #f9f9f9;
  display: flex;
  flex-direction: column;
  height: 200px;
  justify-content: space-between;
}
.summery-calendar .date-column .date-hour-wrapper .date-hour {
  align-items: center;
  border-bottom: 1px solid #f9f9f9;
  color: #afb1b6;
  display: flex;
  height: 100%;
  justify-content: center;
}
.avatars-w-50 img {
  height: 50px;
  width: 50px;
}
.summery-calendar .total-hour-column .column-content .hour-title,
.summery-calendar .total-hour-column .column-content .hour-value {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.summery-calendar .total-hour-column .column-content .hour-title {
  border-right: 1px solid #f9f9f9;
}
.summery-calendar .total-hour-column .column-content .hour-title .hour-value,
.summery-calendar .total-hour-column .column-content .hour-value .hour-value {
  align-items: center;
  color: #afb1b6;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 0 2rem;
}
.summery-calendar .total-hour-column .column-content .hour-title,
.summery-calendar .total-hour-column .column-content .hour-value {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.btn-orange {
  background-color: #f87823 !important;
  color: #fff !important;
}
.content-body {
  background-color: #f1f2f6;
  overflow-y: auto;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.accordion-button.bg-white:after {
  position: absolute;
  right: 15px;
  top: 24px;
  height: 16px;
  width: 16px;
  background-size: 16px auto;
}
button,
.btn {
  box-shadow: none !important;
}
#previewContainer > div {
  border-radius: 6px;
  border: 1px solid #dee2e6;
}
#previewContainer > div > img {
  height: 100px;
  width: 100px;
  object-fit: cover;
}
input[type="date"].dateInputIcon::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
}

input[type="date"].dateInputIcon {
  -moz-appearance: textfield;
}
.dateInputIcon {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/date-icon.svg);
  background-repeat: no-repeat;
  background-position: 95% center;
  background-size: 15px auto;
  border: 1px solid #b1b1b1;
  height: 40px;
  border-radius: 6px;
  background-color: transparent;
}
.custmselect {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/custom-select-icon.svg);
  background-repeat: no-repeat;
  background-position: 92% center;
  background-size: 15px auto;
  border: 1px solid #b1b1b1;
  height: 40px;
  border-radius: 6px;
  background-color: transparent;
  font-size: 14px;
  padding: 10px;
}
.tablightblue.nav-pills {
  border-radius: 6px;
  overflow: hidden;
  display: inline-flex;
}
.tablightblue.nav-pills .nav-link {
  background-color: #fff;
  color: #6c757d;
  border-radius: 0;
}
.tablightblue.nav-pills .nav-link.active {
  color: #2a54c2;
  background-color: #dce6ff;
}
.tabblue.nav-pills .nav-link {
  background-color: #e5e7eb;
  color: #6b7280;
}
.tabblue.nav-pills .nav-link.active {
  color: #fff;
  background-color: #2a54c2;
}
.tabvrtcl.nav-pills .nav-link {
  color: #1d1c1c;
  font-size: 18px;
  border-radius: 0;
  box-shadow: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: 8px solid transparent;
  background-color: #fff;
  padding: 15px;
  width: 100%;
  text-align: left;
}
.tabvrtcl.nav-pills .nav-link.active {
  background-color: #d5e1ff;
  color: #11338b;
  border-right: 8px solid #2a54c2;
}
.searchbar .select2-container--default .select2-selection--multiple {
  background-color: #f6f6f6;
  border-radius: 0 10px 10px 0;
  border-right: 1px solid #dbdbdb !important;
  border-top: 1px solid #dbdbdb !important;
  border-bottom: 1px solid #dbdbdb !important;
  border-left: none !important;
  min-height: 44px;
}
.searchbar .select2-search {
  line-height: 2;
}
.searchbar .select2-container .select2-search--inline .select2-search__field {
  height: 26px;
}
.searchbar
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  background-color: #0f1728;
  border: 1px solid #0f1728;
}
.searchbar
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__display {
  color: #fff;
  padding-bottom: 2px;
  font-size: 14px;
  display: block;
}
.btnCheckBoxGroup .btn-outline-primary {
  border: 1px solid #bdbdbd !important;
  color: #000;
}
.btnCheckBoxGroup .btn-check:active + .btn-outline-primary,
.btnCheckBoxGroup .btn-check:checked + .btn-outline-primary,
.btnCheckBoxGroup .btn-outline-primary.active,
.btnCheckBoxGroup .btn-outline-primary.dropdown-toggle.show,
.btnCheckBoxGroup .btn-outline-primary:active,
.btnCheckBoxGroup .btn-outline-primary:hover {
  color: #2a54c2;
  background-color: #e3eafe;
  border-color: #bdbdbd;
}
div.dt-container.dt-empty-footer .dt-scroll-body {
  min-height: 200px;
}
.rounded-10 {
  border-radius: 10px;
}
.logregform input.form-control:-webkit-autofill {
  background-color: #f8f9fa !important;
  -webkit-box-shadow: 0 0 0px 1000px #f8f9fa inset !important;
  box-shadow: 0 0 0px 1000px #f8f9fa inset !important;
  transition: background-color 5000s ease-in-out 0s;
}
.btn-secondary {
  color: #fff;
  /* background-color: #07B1D9; */
  background-color: #2a54c2;
  border-color: #07b1d9;
}
.btn-secondary:hover,
.btn-secondary:focus {
  /* background-color: #2A54C2; */
  background-color: #07b1d9;
  color: #fff;
  border-color: #2a54c2;
}

@media screen and (max-width: 767px) {
  #workDeskLocation {
    width: 100%;
  }
  .cardTabHeader .nav-link {
    font-size: 12px;
  }
  .dateInputIcon,
  .custmselect {
    width: 100%;
  }
  .cProfileNav .nav-link {
    border: none !important;
    border-radius: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: center;
  }
  .dt-container {
    font-size: 14px;
  }
  .dt-container > .dt-layout-row:first-child {
    display: flex !important;
    margin: 0 !important;
  }
  .pagewrap {
    grid-template-columns: inherit;
  }
  .content-wrap {
    grid-template-rows: 60px 1fr 60px;
  }
  .sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    height: 100%;
    transition: 0.3s;
    z-index: 50;
  }
  .sidebaroverly {
    position: fixed;
    right: 100%;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: 0.3s;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease 0.2s;
  }
  .infocard .h5 {
    font-size: 1rem;
  }
  .leavinfo .text-nowrap.ps-0 {
    font-size: 14px;
  }


}
