@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');

:root {
  --primary-color: #3b332f;
  --secondary-color: #bebebe;
  --background-color: #fbfbfb;
  --side-bg: rgba(48, 133, 254, 0.2196078431);
  --text-color: #000000;
}

#root {
  height: 100vh;
}

* {
  padding: 0rem;
  margin: 0rem;
  box-sizing: border-box;
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: 'Poppins', 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  -webkit-overflow-scrolling: touch;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

.header {
  width: calc(100% - 240px);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
}

.header .navbar {
  padding: 1rem 2rem;
  height: 5.8rem;
  background-color: #ffffff;
  border-bottom: 0.1rem solid #eceff3;
}

.navbar-collapse .btn {
  background-color: #f4f9ff;
  color: #0047ab;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
}

.responsive_dropdown .btn {
  background-color: #f4f9ff;
  color: #0047ab;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
}

.responsive_dropdown .btn:hover {
  background-color: #f4f9ff !important;
  color: #0047ab !important;
  border-color: 1px solid #0047ab !important;
}

.header .navbar-toggler {
  padding: 1;
  border: 0;
}

.navbar-collapse .btn svg {
  width: 1.6rem;
  height: 1.6rem;
}

.navbar-collapse .btn:active {
  border-color: transparent;
}

.navbar-collapse .btn.dropdown-toggle {
  font-size: 1.4rem;
}

.navbar-collapse .btn.dropdown-toggle::after {
  content: none;
}

.navbar-collapse .btn.dropdown-toggle:active {
  border-color: transparent;
}

.navbar-collapse .dropdown .dropdown-menu.show {
  right: 0 !important;
  left: inherit !important;
  margin-top: 1.2rem;
}

.navbar-collapse .dropdown .dropdown-menu {
  border: 0rem;
  border-radius: 0rem;
  padding: 1rem 0rem;
  min-width: 15rem;
  max-height: 33rem;
  overflow: auto;
}

.navbar-collapse .dropdown .dropdown-menu a {
  font-size: 1.4rem;
  display: block;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  color: #0047ab;
}

.navbar-collapse .dropdown .dropdown-menu a svg path {
  fill: #0047ab;
}

.navbar-collapse .dropdown .dropdown-menu a:hover {
  background: #0047ab;
  color: #ffffff;
}

.navbar-collapse .dropdown .dropdown-menu a:hover svg path {
  fill: #ffffff;
}

.navbar-collapse .dropdown .dropdown-menu a:active {
  background: #0047ab;
  color: #ffffff;
}

.navbar-collapse .dropdown .dropdown-menu a:active svg path {
  fill: #ffffff;
}

.navbar-collapse .header-nav .form-group {
  background-color: #ffffff;
  border-radius: 0.8rem;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  -ms-border-radius: 0.8rem;
  -o-border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navbar-collapse .header-nav .form-group .form-control {
  min-width: 20rem;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.3rem 1.3rem;
}

.navbar-collapse .header-nav .form-group .btn.form-label svg path {
  fill: #0047ab;
}

.sidebar-wrapper {
  width: 24rem;
  height: 100vh;
  position: fixed;
  z-index: 99;
  background: linear-gradient(
    159deg,
    rgba(0, 71, 171, 1) 0%,
    rgba(19, 20, 20, 1) 100%
  );
  transform: translateX(-100%);
  transition: 0.3s ease;
}

.sidebar-wrapper.open {
  transform: translateX(0%);
}

.sidebar-wrapper .main-logo {
  width: 90%;
}

.sidebar-wrapper .sidebar-content {
  padding: 0.5rem 1rem 1rem;
}

.sidebar-wrapper .sidebar-content .aside-nav {
  max-height: calc(100vh - 9rem);
  overflow: overlay;
  padding: 0rem 0.6rem;
}

.sidebar-wrapper .sidebar-content .aside-nav ul {
  list-style: none;
  margin-bottom: 0rem;
  padding: 0rem;
}

.sidebar-wrapper .sidebar-content .aside-nav ul li:not(:last-child) {
  margin-bottom: 0.8rem;
}

.sidebar-wrapper .sidebar-content .aside-nav ul li .menu-title {
  display: block;
  font-size: 1.4rem;
  color: #ffffff;
  padding: 0rem 0.8rem 0.8rem;
}

.sidebar-wrapper .sidebar-content .aside-nav ul li .drop-link {
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #ffffff;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  text-decoration: none;
  padding: 0.8rem;
  border-radius: 0.6rem;
}

.sidebar-wrapper .sidebar-content .aside-nav ul li .drop-link:hover {
  background: rgba(255, 255, 255, 0.415);
}

.sidebar-wrapper .sidebar-content .aside-nav ul li .drop-link svg path {
  fill: #ffffff;
}

.sidebar-wrapper .sidebar-content .aside-nav ul li .drop-link svg.chevron path {
  stroke: #ffffff;
  fill: none;
}

.sidebar-wrapper .sidebar-content .aside-nav ul li .drop-link .dropdown {
  transform: Rotate(0deg);
  -webkit-transform: Rotate(0deg);
  -moz-transform: Rotate(0deg);
  -ms-transform: Rotate(0deg);
  -o-transform: Rotate(0deg);
}

.sidebar-wrapper .sidebar-content .aside-nav ul li .drop-link .dropdown.rotate {
  transform: Rotate(180deg);
  -webkit-transform: Rotate(180deg);
  -moz-transform: Rotate(180deg);
  -ms-transform: Rotate(180deg);
  -o-transform: Rotate(180deg);
}

.sidebar-wrapper .sidebar-content .aside-nav ul li .drop-link span {
  margin-left: 1rem;
  display: flex;
  line-height: 1.2rem;
}

.sidebar-wrapper .sidebar-content .aside-nav ul li .drop-link:active {
  background: rgba(255, 255, 255, 0.415);
  border-radius: 0.6rem;
  font-weight: 600;
  color: #ffffff;
}

.sidebar-wrapper .sidebar-content .aside-nav ul li .drop-link:active svg path {
  fill: #ffffff;
}

.sidebar-wrapper
  .sidebar-content
  .aside-nav
  ul
  li
  .drop-link:active
  svg.chevron
  path {
  stroke: #ffffff;
  fill: none;
}

.sidebar-wrapper .sidebar-content .aside-nav ul li .drop-link.active {
  background: rgba(255, 255, 255, 0.415);
  border-radius: 0.6rem;
  font-weight: 600;
  color: #ffffff;
}

.sidebar-wrapper .sidebar-content .aside-nav ul li .drop-link.active svg path {
  fill: #ffffff;
}

.sidebar-wrapper
  .sidebar-content
  .aside-nav
  ul
  li
  .drop-link.active
  svg.chevron
  path {
  stroke: #ffffff;
  fill: none;
}

.sidebar-wrapper .sidebar-content .aside-nav ul li .sub-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0px 4px;
  background-color: rgba(255, 255, 255, 0);
  transform: translateY(-10px);
  transition: all 0.4s ease;
  border-bottom-left-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
}

.sidebar-wrapper .sidebar-content .aside-nav ul li .sub-menu.menu-open {
  max-height: 554px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(0);
  padding: 1rem 0px;
}

.sidebar-wrapper .sidebar-content .aside-nav ul li .sub-menu.inner {
  padding: 1.2rem 10px;
  border-bottom-left-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
}

.sidebar-wrapper .sidebar-content .aside-nav ul li .sub-menu .drop-link {
  padding: 0rem;
  position: relative;
}

.sidebar-wrapper .sidebar-content .aside-nav ul li .sub-menu .drop-link.inner {
  margin: 0px 5px;
  padding: 0.8rem;
}

.sidebar-wrapper
  .sidebar-content
  .aside-nav
  ul
  li
  .sub-menu
  .drop-link.inner:hover {
  background: rgba(255, 255, 255, 0.415);
}

.sidebar-wrapper .sidebar-content .aside-nav::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1058823529);
  border-radius: 9rem;
  -webkit-border-radius: 9rem;
  -moz-border-radius: 9rem;
  -ms-border-radius: 9rem;
  -o-border-radius: 9rem;
}

.sidebar-wrapper .sidebar-content .aside-nav::-webkit-scrollbar {
  background-color: rgba(255, 255, 255, 0.1568627451);
  width: 0.5rem;
  border-radius: 9rem;
}

.sidebar-wrapper .sidebar-content .aside-nav::-webkit-scrollbar-thumb {
  background-color: #f6f6f6;
  border-radius: 9rem;
  -webkit-border-radius: 9rem;
  -moz-border-radius: 9rem;
  -ms-border-radius: 9rem;
  -o-border-radius: 9rem;
}

.sidebar-wrapper .sidebar-content .navbar-brand {
  gap: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-wrapper .sidebar-content .navbar-brand .logo-icon {
  display: none;
  max-width: 7rem;
}

.sidebar-wrapper.sidebar-wrapper.side-wrapper-w {
  width: 10rem;
}

.sidebar-wrapper.sidebar-wrapper.side-wrapper-w
  .sidebar-content
  .aside-nav
  ul
  li
  .drop-link {
  justify-content: center;
}

.sidebar-wrapper.sidebar-wrapper.side-wrapper-w
  .sidebar-content
  .aside-nav
  ul
  li
  .drop-link
  span,
.sidebar-wrapper.sidebar-wrapper.side-wrapper-w
  .sidebar-content
  .aside-nav
  ul
  li
  .drop-link
  .fa-chevron-down,
.sidebar-wrapper.sidebar-wrapper.side-wrapper-w
  .sidebar-content
  .aside-nav
  ul
  li
  .drop-link
  .chevron {
  display: none;
}

.sidebar-wrapper.sidebar-wrapper.side-wrapper-w
  .sidebar-content
  .aside-nav
  ul
  li
  .sub-menu
  li
  .drop-link {
  padding: 0.8rem;
}

.card {
  background: #ffffff;
  box-shadow: 0 0.3rem 0.9rem rgba(0, 0, 0, 0.0705882353);
  margin: 0 0 2.4rem;
  display: inline-block;
  width: 100%;
  border: 0;
  border-radius: 0.6rem;
  -webkit-border-radius: 0.6rem;
  -moz-border-radius: 0.6rem;
  -ms-border-radius: 0.6rem;
  -o-border-radius: 0.6rem;
}

.card .card-body {
  position: relative;
  padding: 1.5rem;
}

.card .card-body .card-head {
  padding: 0rem 0rem 1rem;
  border-bottom: 0.1rem solid #b2b2b2;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card .card-body .card-head .card-title {
  font-size: 1.6rem;
  margin-bottom: 0rem;
}

.card .card-body .logs {
  max-height: 36rem;
  overflow: auto;
}

.card .card-body .logs::-webkit-scrollbar {
  display: none;
}

.card .card-body .logs li .user {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: #ebedf8;
  border: 0.1rem solid #1e3e5f;
  border-radius: 50%;
  position: relative;
}

.card .card-body .logs li .user .dot {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 0%;
  right: 0%;
}

.card .card-body .logs li:not(:last-child) {
  border-bottom: 0.1rem solid #b2b2b2;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
}

.card .card-body .logs li span {
  font-size: 1.2rem;
}

.card .card-body .logs li p {
  font-size: 1.4rem;
}

.card .card-body .img-uploader .form-label {
  width: 100%;
  height: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem dashed #818898;
  cursor: pointer;
}

.card .card-body .img-uploader .form-label .placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card .card-body .btn-more {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  padding: 0rem;
}

.card .card-body .detail-img {
  max-width: 10rem;
}

.card .card-body .card-footer {
  padding: 0rem 0rem 1rem;
  border-bottom: 0.1rem solid #b2b2b2;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0rem;
  padding: 1rem 0rem 0rem;
  margin: 1rem 0rem 0rem;
  border-top: 0.1rem solid #b2b2b2;
  background: transparent;
}

.card .card-body .logo .form-group {
  position: relative;
}

.card .card-body .logo .form-group .form-label {
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--side-bg);
  border-radius: 1rem;
  margin: 0 auto;
  font-size: 2.2rem;
  color: #0047ab;
  z-index: 1;
  position: relative;
}

.card .card-body .logo .form-group::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.01rem;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  background-color: #b2b2b2;
  z-index: 0;
}

.card .card-body .d-text {
  color: #0047ab;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 171.429%;
  letter-spacing: -0.014rem;
  margin-bottom: 0rem;
}

.top-cards-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.3rem;
}

.custom-col {
  width: 20%;
}

.card.dash-cards {
  border-bottom: 3px solid #07326f;
  width: calc(25% - 1rem);
}

.card.dash-cards .card-body h1 {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.card.dash-cards .card-body .heading_title {
  max-width: 92px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card.dash-cards .card-body h2 {
  font-size: 2.2rem;
  font-weight: 600;
}

.card.dash-cards .card-body p {
  font-size: 1rem;
  color: #878a99;
}

.card.dash-cards .dash-count {
  margin-left: 1rem;
}

.card.dash-card2 ul li span {
  color: #b3b3b3;
  font-size: 1.3rem;
  font-weight: 600;
}

.card.dash-cards .dash-count .dash-title {
  font-size: 1.4rem;
  color: #878a99;
}

.card.dash-cards .dash-count p {
  font-weight: 500;
  font-size: 2.2rem;
  color: #000000;
  margin: 0 0 0;
}

.card.dash-cards .progress.progress-sm {
  height: 0.3rem;
  background: #ebedf8;
}

.card.dash-cards .progress.progress-sm .progress-bar {
  background: #25476a;
}

.card.dash-cards p.text-muted {
  font-size: 1.2rem;
}

.form-control,
.form-label,
.form-select {
  font-size: 1.4rem;
}

.form-control,
.form-select {
  padding: 0.8rem;
  background-color: #fafafa;
  border-radius: 0.6rem;
  -webkit-border-radius: 0.6rem;
  -moz-border-radius: 0.6rem;
  -ms-border-radius: 0.6rem;
  -o-border-radius: 0.6rem;
}

.form-label {
  font-weight: 500;
}

.form-label.label-img {
  display: flex;
  justify-content: center;
  border: 0.2rem dashed #dee2e6;
  padding: 2.4rem 1rem;
}

.form-label.label-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 16rem;
}

.form-label.placeholder-label {
  cursor: pointer;
  width: 100%;
  padding: 2rem;
  border: 0.1rem dashed #dadde1;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}

.form-label.placeholder-label p {
  color: #949ca9;
}

.form-label.placeholder-label img {
  object-fit: contain;
  width: 100%;
  height: 12rem;
}

.card.check-in .card-body {
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
}

.card.check-in .card-body h2 {
  margin: 0;
  font-size: 2.4rem;
}

.card.check-in .card-body button {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline-offset: 4px;
  transition: filter 250ms;
  user-select: none;
  touch-action: manipulation;
}

.card.check-in .card-body button:hover {
  filter: brightness(110%);
}

.card.check-in .card-body button:hover .front {
  transform: translateY(-6px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.card.check-in .card-body button:hover .shadow {
  transform: translateY(4px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.card.check-in .card-body button:active .front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.card.check-in .card-body button:active .shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.card.check-in .card-body button:focus:not(:focus-visible) {
  outline: none;
}

.card.check-in .card-body button.active .front {
  background: #33cd48;
}

.card.check-in .card-body button.active .edge {
  background: linear-gradient(
    to left,
    hsl(115.2, 100%, 16%) 0%,
    hsl(115, 100%, 32%) 8%,
    hsl(115, 100%, 32%) 92%,
    hsl(115, 100%, 16%) 100%
  );
}

.card.check-in .card-body .shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: hsla(0, 0%, 0%, 0.25);
  will-change: transform;
  transform: translateY(2px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.card.check-in .card-body .edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(
    to left,
    hsl(218, 100%, 16%) 0%,
    hsl(218, 100%, 32%) 8%,
    hsl(218, 100%, 32%) 92%,
    hsl(218, 100%, 16%) 100%
  );
}

.card.check-in .card-body .front {
  display: block;
  position: relative;
  padding: 12px 27px;
  border-radius: 12px;
  font-size: 1.1rem;
  color: white;
  background: #0047ab;
  will-change: transform;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.card.check-in .card-body .time-data {
  row-gap: 0.6rem;
}

.card.check-in .card-body .time-data p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #000000;
  margin: 0;
  line-height: 1;
}

.card.check-in .card-body .time-data span {
  font-size: 1.2rem;
  font-weight: 500;
  color: #505050;
}

.dropdown .btn.dropdown-toggle::after {
  content: none;
}

.dropdown .dropdown-menu.show {
  right: 0 !important;
  left: inherit !important;
  margin-top: 1.2rem;
}

.dropdown .dropdown-menu {
  border: 0rem;
  border-radius: 1.2rem;
  -webkit-border-radius: 1.2rem;
  -moz-border-radius: 1.2rem;
  -ms-border-radius: 1.2rem;
  -o-border-radius: 1.2rem;
  padding: 1rem 0rem;
  min-width: 15rem;
}

.dropdown .dropdown-menu a {
  font-size: 1.4rem;
  display: block;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  color: #0047ab;
}

.dropdown .dropdown-menu a svg path {
  fill: #0047ab;
}

.dropdown .dropdown-menu a:hover {
  background: #0047ab;
  color: #ffffff;
}

.dropdown .dropdown-menu a:hover svg path {
  fill: #ffffff;
}

.dropdown .dropdown-menu a:active {
  background: #0047ab;
  color: #ffffff;
}

.dropdown .dropdown-menu a:active svg path {
  fill: #ffffff;
}

.dropdown .dropdown-menu .input-group {
  width: 28rem;
}

.dropdown .dropdown-menu.notification-dropdown {
  width: 40rem;
  padding: 1.4rem;
}

.dropdown .dropdown-menu.notification-dropdown li:last-of-type {
  margin: 0;
  padding: 0;
  border: none;
}

.dropdown .dropdown-menu.notification-dropdown .footer a {
  background-color: rgb(0 71 171);
  color: white;
  padding: 0.6rem;
}

.dropdown .dropdown-menu.notification-dropdown .footer a:hover {
  background-color: rgb(0 71 171);
  color: white;
  padding: 0.6rem;
}

.dropdown .dropdown-menu.notification-dropdown li:not(:last-of-type) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #e7e7e7;
}

.dropdown .dropdown-menu.notification-dropdown p {
  font-size: 1.3rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 1rem 0rem 0rem 0rem;
}

.dropdown .dropdown-menu.notification-dropdown .time {
  width: 55%;
  display: inline-block;
  text-align: end;
}

.dropdown .dropdown-menu.notification-dropdown .title {
  font-size: 1.3rem;
}

.dropdown .dropdown-menu.notification-dropdown a {
  all: unset;
  cursor: pointer;
}

.dropdown .dropdown-menu.notification-dropdown a:hover {
  all: unset;
  cursor: pointer;
}

.dropdown.action-drop .dropdown-menu {
  border: 1px solid #e7e7e7;
  min-width: 100%;
}

.dropdown.action-drop .dropdown-menu li:last-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.dropdown.action-drop .dropdown-menu li:not(:first-of-type) {
  padding-top: 0.5rem;
}

.dropdown.action-drop .dropdown-menu .dropdown-item {
  justify-content: center;
}

.dropdown.action-drop .dropdown-menu .dropdown-item .badge {
  width: 100%;
}

.dropdown.action-drop .dropdown-menu a:hover {
  background: transparent;
}

.dropdown.action-drop .dropdown-menu a:hover span {
  box-shadow: 0px 0px 5px;
}

.btn {
  font-size: 1.4rem;
  border-radius: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.6rem 1.6rem;
}

.btn span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.btn-primary {
  background-color: #0047ab;
  color: #ffffff;
  border: 0.1rem solid #0047ab;
}

.btn.btn-primary:hover {
  background-color: #0047ab;
  border: 0.1rem solid #0047ab;
}

.btn.btn-primary:active {
  background-color: #0047ab;
  border: 0.1rem solid #0047ab;
}

.btn.btn-outline-primary {
  border: 0.1rem solid #0047ab !important;
  color: #0047ab !important;
  background-color: transparent !important;
}

.btn.btn-outline-primary:hover {
  background-color: #0047ab !important;
  border: 0.1rem solid #0047ab;
  color: #fff !important;
  text-decoration: none;
}

.btn.btn-outline-primary:hover svg path {
  stroke: #ffffff;
  fill: #ffffff;
}

.btn.btn-secondary {
  background-color: var(--secondary-color);
  color: #ffffff;
  border: 0.1rem solid var(--secondary-color);
}

.btn.btn-secondary:hover {
  background-color: #bebebe;
  border: 0.1rem solid #bebebe;
}

.btn.btn-secondary:hover svg path {
  stroke: #ffffff;
  fill: #ffffff;
}

.btn.btn-secondary:active {
  background-color: #b1b1b1;
  border: 0.1rem solid #bebebe;
}

.btn.btn-secondary:active svg path {
  stroke: #ffffff;
  fill: #ffffff;
}

.text-primary {
  color: #0047ab !important;
}

.bg-primary {
  background: #0047ab !important;
}

.btn.btn-link-2 {
  color: #0047ab;
  padding: 0rem;
  text-decoration: underline;
  font-weight: 500;
}

.action-btns .btn.btn-link {
  background: #eee;
  color: #545454;
  height: 2.6rem;
  padding: 0.2rem;
  width: 2.6rem;
}

.action-btns .btn.btn-link:hover {
  background: #dcdcdc;
  color: #000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.action-btns .btn.btn-link:active {
  background: #c7c7c7;
  transform: scale(0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
}

.custom-tool {
  background-color: #0047ab;
  color: #ffffff;
  font-size: 1.4rem;
}

table {
  table-layout: auto;
}

.status {
  width: 0px;
}

.table-head {
  margin-bottom: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.table-head .search-icon {
  position: absolute;
  top: 45%;
  left: 3%;
  transform: translateY(-50%);
}

.table-head .form-control.search-control {
  padding-left: 3.8rem;
  min-width: 30rem;
  border-radius: 0.6rem;
  -webkit-border-radius: 0.6rem;
  -moz-border-radius: 0.6rem;
  -ms-border-radius: 0.6rem;
  -o-border-radius: 0.6rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.table-head .form-control.search-control,
.table-head .form-select {
  border-radius: 0.6rem;
  -webkit-border-radius: 0.6rem;
  -moz-border-radius: 0.6rem;
  -ms-border-radius: 0.6rem;
  -o-border-radius: 0.6rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.select-wrapper {
  max-width: 160px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
}

.select-wrapper select {
  width: 100%;
  padding-right: 28px;
}

select:focus {
  outline: none;
}

.table-head .btn.btn-outline-primary.filter-btn {
  align-items: center;
  display: flex;
  justify-content: center;
}

.form-select:disabled {
  background-color: #e9ecef;
  background-color: var(--bs-secondary-bg);
}

select:disabled {
  opacity: 1;
}

.status-dropdown {
  min-width: 130px;
  padding-bottom: 0.5rem;
  padding-right: 26px !important;
  padding-top: 0.5rem;
}

.table-head h5 {
  color: #25476a;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0rem;
}

table th,
table td {
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

table thead th {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.8rem 1.2rem !important;
  height: 3.6rem;
  background-color: #f6f8fa !important;
  color: #666d80 !important;
}

table tr td {
  font-size: 1.3rem;
  padding: 0.8rem 1.2rem !important;
}

table tr td .dropdown .btn::after {
  content: none;
}

table tr td .btn {
  color: black;
  background-color: #eee;
  padding: 7px;
}

table tr td .attendance {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem;
  border-radius: 0.6rem;
  border: 0.1rem solid;
  font-size: 1rem;
  text-align: start;
  min-width: 14rem;
}

table tr td .attendance span {
  color: #666d80;
  font-size: 0.8rem;
}

table tr td .attendance p {
  margin-bottom: 0rem;
}

table tr td .attendance .attendance-type .title {
  width: 3rem;
  height: 4rem;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 0.4rem;
}

table tr td .attendance.sun {
  background-color: #f3fbff;
  color: #61caff;
}

table tr td .attendance.sun .attendance-type .title {
  background-color: #89d3f8;
  color: #f3fbff;
}

table tr td .attendance.mon {
  background-color: #ffeff6;
  color: #fc1885;
}

table tr td .attendance.mon .attendance-type .title {
  background-color: #f694bf;
  color: #ffeff6;
}

table.time-table .btn.btn-time {
  width: 6rem;
  height: 4rem;
}

table.inner-table {
  margin: 0;
}

table.inner-table > :not(caption) > * > * {
  background: #f6f8fa;
}

table td.wrapper {
  background: #f6f8fa;
  padding: 0 !important;
  border: none;
}

.table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0rem;
}

.table-footer .sorted {
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
}

.table-footer .sorted .dropdown .dropdown-menu {
  min-width: 100%;
}

.table-footer .sorted .dropdown .btn {
  color: #36394a;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 142.857%;
  padding: 0.8rem 1rem;
  border-radius: 0.6rem;
  -webkit-border-radius: 0.6rem;
  -moz-border-radius: 0.6rem;
  -ms-border-radius: 0.6rem;
  -o-border-radius: 0.6rem;
  display: flex;
  align-items: center;
  column-gap: 0.6rem;
}

.table-footer .sorted .dropdown .btn::after {
  content: none;
}

.table-footer .sorted .dropdown .btn span {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-footer .sorted h5 {
  color: #25476a;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0rem;
}

.dropdown.short .dropdown-menu.show {
  position: absolute !important;
  inset: auto auto 0px 0px !important;
  margin: 0px !important;
  transform: translate3d(0px, -36.8px, 0px) !important;
}

.dropdown.short .dropdown-menu {
  border: 1px solid #e2e2e2;
  font-size: 1.4rem;
  min-width: 100%;
}

.user {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  text-align: start;
}

.user .user-icon {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    #ffffff;
  box-shadow:
    0px 0px 0px 1px rgba(18, 55, 105, 0.08),
    0px 1px 2px 0px rgba(164, 172, 185, 0.24);
  border-radius: 99rem;
  -webkit-border-radius: 99rem;
  -moz-border-radius: 99rem;
  -ms-border-radius: 99rem;
  -o-border-radius: 99rem;
  color: #666d80;
  text-align: center;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user .title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0rem;
}

.user p {
  color: #666d80;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 157.143%;
  letter-spacing: -0.014rem;
  font-size: 1rem;
}

.nav-pills {
  background: #f2f2f2;
  display: inline-flex;
  padding: 0.6rem;
  border-radius: 0rem;
}

.nav-pills .nav-link {
  border-radius: 0rem;
  color: #0047ab;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0.8rem 2rem;
  line-height: normal;
}

.nav-tab-link {
  border: 1px solid #0047ab !important;
  color: #0047ab !important;
  padding: 0.6rem 1.6rem;
}

.nav-tab-link.active {
  background: #0047ab !important;
  color: #ffffff !important;
}

.nav-tab-link:hover {
  background: #0047ab !important;
  color: #ffffff !important;
}

.nav-pills .nav-link .active {
  background: #0047ab !important;
  color: #ffffff !important;
}

.wizard-tabs {
  min-height: fit-content;
  overflow: auto hidden;
  scrollbar-width: none;
}

.wizard-tabs .nav {
  column-gap: 2.4rem;
  align-items: center;
  padding: 0rem;
  background: transparent;
  border-radius: 0rem;
  -webkit-border-radius: 0rem;
  -moz-border-radius: 0rem;
  -ms-border-radius: 0rem;
  -o-border-radius: 0rem;
  flex-wrap: nowrap;
  text-wrap: nowrap;
}

.wizard-tabs .nav .nav-item .border-top-item {
  width: 1rem;
  border: 0.1rem dashed #a4acb9;
  border-radius: 0.2rem;
}

.wizard-tabs .nav .nav-item .nav-link {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  column-gap: 1.2rem;
  padding: 0rem;
  border-radius: 0rem;
  -webkit-border-radius: 0rem;
  -moz-border-radius: 0rem;
  -ms-border-radius: 0rem;
  -o-border-radius: 0rem;
  position: relative;
}

.wizard-tabs .nav .nav-item .nav-link::before {
  bottom: -0.4rem;
  content: '';
  display: block;
  height: 0.2rem;
  width: 100%;
  left: 0;
  position: absolute;
  background: rgb(255, 255, 255);
  transition:
    width 0.3s ease 0s,
    left 0.3s ease 0s;
  border-radius: 0.2rem;
  -webkit-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  -ms-border-radius: 0.2rem;
  -o-border-radius: 0.2rem;
}

.wizard-tabs .nav .nav-item .nav-link::after {
  bottom: 0rem;
  content: '';
  display: block;
  height: 0.2rem;
  left: 50%;
  position: absolute;
  background: #0047ab;
  transition:
    width 0.3s ease 0s,
    left 0.3s ease 0s;
  width: 0;
  border-radius: 0.2rem;
}

.wizard-tabs .nav .nav-item .nav-link h6 {
  color: #818898;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 166.667%;
  letter-spacing: -0.024rem;
  margin-bottom: 0rem;
  text-align: start;
}

.wizard-tabs .nav .nav-item .nav-link h5 {
  color: #000000;
  font-style: normal;
  font-weight: 400;
  line-height: 171.429%;
  letter-spacing: -0.014rem;
  margin-bottom: 0rem;
  text-align: start;
}

.wizard-tabs .nav .nav-item .nav-link.active {
  background: transparent;
}

.wizard-tabs .nav .nav-item .nav-link.active::after {
  width: 100%;
  left: 0;
}

.wizard-tabs .nav .nav-item .nav-link.active h6 {
  color: #0047ab;
  font-weight: 600;
}

.wizard-tabs .nav .nav-item .nav-link.active h5 {
  color: #0047ab;
  font-weight: 600;
}

.paggination-nav .paggination {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.4rem;
  list-style: none;
}

.paggination-nav .paggination .page-item .page-link {
  padding: 0.8rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0047ab;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 171.429%;
  letter-spacing: -0.014rem;
}

.paggination-nav .paggination .page-item .page-link.active {
  border-radius: var(--radius-full, 9999px);
  background: #fff;
  box-shadow:
    0px 0px 0px 1px rgba(18, 55, 105, 0.08),
    0px 1px 2px 0px rgba(164, 172, 185, 0.24);
}

.welcome-login {
  color: rgb(75, 74, 74);
}

.form-control {
  background-color: #fafafa;
}

.auth .form-control {
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0.8rem 0.8rem 0.8rem 3rem;
}

.auth.auth-password {
  width: 30%;
}

.form-control::placeholder {
  color: #b2b2b2;
}

.form-label {
  font-size: 1.4rem;
  font-weight: 400;
}

.otp-input {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.otp-input .form-control {
  padding: 0.8rem;
  text-align: center;
  width: 5rem;
  height: 5rem;
}

.auth .icon-input svg {
  position: absolute;
  bottom: 50%;
  left: 0.9rem;
  transform: translateY(50%);
}

.auth .icon-input svg path {
  fill: #0047ab;
}

.auth .icon-input i {
  position: absolute;
  bottom: 50%;
  left: 0.9rem;
  transform: translateY(50%);
}

.auth .icon-input .password-show {
  position: absolute;
  bottom: 50%;
  right: 3%;
  transform: translateY(50%);
}

.auth .icon-input .password-show svg {
  position: relative;
  bottom: inherit;
  left: 0;
  transform: none;
}

.auth .icon-input .password-show i {
  position: relative;
  bottom: inherit;
  left: 0;
  transform: none;
}

.btns .outlook {
  width: 30px;
}

.auth .form-group input.form-control {
  padding-left: 25px;
}

.btns .btn.btn-microsoft {
  border-color: #a3a4a4;
  color: #5f6060;
}

.btns .btn.btn-microsoft:hover {
  color: #0047ab;
  border-color: #0047ab;
}

.form-control:focus {
  border-color: #0047ab;
}

.user-role {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 1.8rem;
  padding: 1.8rem;
}

.modal .modal-content .modal-body .icon {
  align-items: center;
  background: #ffd4d4;
  border-radius: 99rem;
  box-shadow: 0 0 8px 3px #ffd7d7;
  color: red;
  display: flex;
  height: 6rem;
  justify-content: center;
  padding: 0rem;
  width: 6rem;
}

.modal .modal-content .modal-body .icon-g {
  align-items: center;
  background: #dbf6ae;
  border-radius: 99rem;
  box-shadow: 0 0 8px 3px #e1fadb;
  color: green;
  display: flex;
  height: 6rem;
  justify-content: center;
  padding: 1rem;
  width: 6rem;
}

.modal .modal-content .modal-body {
  padding: 3rem 2rem 2rem;
}

.modal .modal-content .modal-body p {
  color: #9a9a9a;
  margin: 0;
}

.modal .dlt-modal .modal-body .dlt-icon {
  border: 0.1rem solid #eceff3;
  background: linear-gradient(180deg, #f8fafb 0%, rgba(248, 250, 251, 0) 120%);
  -webkit-backdrop-filter: blur(0.25rem);
  backdrop-filter: blur(0.25rem);
  border-radius: 999rem;
  -webkit-border-radius: 999rem;
  -moz-border-radius: 999rem;
  -ms-border-radius: 999rem;
  -o-border-radius: 999rem;
  padding: 1.2rem;
  display: inline-block;
}

.modal .policy-list {
  font-size: 14px;
}

.modal .dlt-modal .modal-body .dlt-icon span {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    #ffffff;
  box-shadow:
    0px 0px 0px 1px rgba(18, 55, 105, 0.08),
    0px 1px 2px 0px rgba(164, 172, 185, 0.24),
    0px 9px 16px -4px rgba(0, 0, 0, 0.13),
    0px -7px 10px -5px rgba(0, 0, 0, 0.06) inset;
  border-radius: 99rem;
  -webkit-border-radius: 99rem;
  -moz-border-radius: 99rem;
  -ms-border-radius: 99rem;
  -o-border-radius: 99rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
}

.table-responsive-wrapper {
  overflow-x: auto;
  position: relative;
}

.table .fixed-column {
  position: sticky;
  left: 0;
}

.table thead th.fixed-column {
  top: 0;
  z-index: 1;
}

.modal-content {
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  border: none;
}

.modal .policy_p {
  font-size: 1.5rem !important;
}

.modal .terms_text {
  font-size: 1.4rem;
}

.level-1 {
  width: 50%;
  margin: 0 auto 40px;
  text-align: center;
}

.level-1.level-0 {
  margin-bottom: 20px;
}

.level-1::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background: #d8d8d8;
}

.level-2-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.level-2-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 25%;
  width: 50%;
  height: 1px;
  background: #d8d8d8;
}

.level-2-wrapper::after {
  display: none;
  content: '';
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: calc(100% + 20px);
  height: 1px;
  background: #d8d8d8;
}

.level-2-wrapper li {
  position: relative;
}

.level-2-wrapper li::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background: #d8d8d8;
}

.level-2 {
  width: 70%;
  margin: 0 auto 40px;
  text-align: center;
}

.level-2::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background: #d8d8d8;
}

.level-2::after {
  display: none;
  content: '';
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-100%, -50%);
  width: 20px;
  height: 1px;
  background: #d8d8d8;
}

.level-3-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  width: 90%;
  margin: 0 auto;
}

.level-3-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: calc(25% - 5px);
  width: calc(50% + 10px);
  height: 1px;
  background: #d8d8d8;
}

.level-3-wrapper > li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 1px;
  height: 20px;
  background: #d8d8d8;
}

.level-3 {
  margin-bottom: 20px;
  text-align: center;
}

.level-4-wrapper {
  position: relative;
  width: 80%;
  margin-left: auto;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background-color: transparent;
}

.level-4-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 1px;
  height: calc(100% + 20px);
  background: #d8d8d8;
}

.level-4-wrapper li + li {
  margin-top: 20px;
}

.level-4-wrapper li + li {
  margin-top: 20px;
}

.level-4 {
  font-weight: normal;
  text-align: center;
}

.level-4::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-100%, -50%);
  width: 20px;
  height: 1px;
  background: #d8d8d8;
}

.main-content-wrapper .back-arrow {
  width: 3rem;
  height: 3rem;
  justify-content: center;
  display: flex;
  align-items: center;
  color: white !important;
  background: #ffffff;
  box-shadow: 0 0 13px 0 rgba(82, 63, 105, 0.05);
  padding: 0.6rem !important;
}

.btn-arrow {
  width: 2rem;
  height: 3rem;
  font-size: 1.4rem;
  background-color: transparent !important;
  border: 0 !important;
}

.main-view-content {
  padding: 8rem 2rem 4.6rem;
  margin-left: 24rem;
}

.main-view-content.main-wrapper-w {
  margin-left: 10rem;
}

input[type='number'] {
  appearance: textfield;
  -moz-appearance: textfield;
}

input[type='number']::-webkit-outer-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

input[type='number']::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

input.form-control:focus {
  box-shadow: none;
  outline: 0;
  border-color: #0047ab;
}

input.form-control:focus-visible {
  box-shadow: none;
  outline: 0;
}

input.form-control:active {
  box-shadow: none;
  outline: 0;
}

.form-check-input[type='checkbox'] {
  border-radius: 0rem;
  cursor: pointer;
  -webkit-border-radius: 0rem;
  -moz-border-radius: 0rem;
  -ms-border-radius: 0rem;
  -o-border-radius: 0rem;
}

.form-check-input:checked {
  background-color: #0047ab;
  border-color: #0047ab;
}

.form-check-input:focus {
  border-color: #0047ab;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(37, 79, 142, 0.2509803922);
}

span.badge {
  align-items: center;
  display: inline-flex;
  font-size: 1.2rem;
  font-style: normal;
  justify-content: center;
  line-height: 1.6rem;
  padding: 0 0.8rem;
  text-align: center;
  vertical-align: middle;
  width: fit-content;
}

table td,
table th {
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

span.badge.bg-green-25 {
  background: #ddf3ef;
  color: #198754;
  border: 0.1rem solid #198754;
}

span.badge.bg-red-25 {
  background: #fadbe1;
  color: #dc3545;
  border: 0.1rem solid #dc3545;
}

span.badge.bg-yellow-25 {
  background: #fff6db;
  color: #ffc107;
  border: 0.1rem solid #ffc107;
}

span.badge.bg-aqua-25 {
  background: #d1f0fa;
  color: #0c4e6e;
  border: 0.1rem solid #0c4e6e;
}

span.badge.bg-blue-25 {
  background: #d6dde4;
  color: #25476a;
  border: 0.1rem solid #25476a;
}

span.badge.bg-purple-25 {
  background: #e9ddf3;
  color: #6f42c1;
  border: 0.1rem solid #6f42c1;
}

span.badge.bg-pink-25 {
  background: #fce4ec;
  color: #d63384;
  border: 0.1rem solid #d63384;
}

span.badge.bg-teal-25 {
  background: #d9f2f0;
  color: #20c997;
  border: 0.1rem solid #20c997;
}

span.badge.bg-orange-25 {
  background: #ffe9d6;
  color: #fd7e14;
  border: 0.1rem solid #fd7e14;
}

span.badge.bg-brown-25 {
  background: #eaddd0;
  color: #795548;
  border: 0.1rem solid #795548;
}

span.badge.bg-silver-25 {
  background: #f2f2f2;
  color: #6c757d;
  border: 0.1rem solid #6c757d;
}

.white-space-nowrap {
  white-space: nowrap;
}

.min-w-20 {
  min-width: 20rem;
}

.footer-left {
  color: #a6a6a6;
  font-size: 1.2rem;
  margin-left: 24rem;
}

.loading-skeleton h1,
.loading-skeleton h2,
.loading-skeleton h3,
.loading-skeleton h4,
.loading-skeleton h5,
.loading-skeleton h6,
.loading-skeleton p,
.loading-skeleton li,
.loading-skeleton span,
.loading-skeleton div,
.loading-skeleton image,
.loading-skeleton a,
.loading-skeleton select,
.loading-skeleton .btn,
.loading-skeleton label,
.loading-skeleton .form-text,
.loading-skeleton .form-control,
.loading-skeleton .form-select,
.loading-skeleton .nav-link,
.loading-skeleton .fileUploadBox {
  color: transparent !important;
  -moz-appearance: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-color: #eee !important;
  border-color: #eee !important;
  box-shadow: none !important;
  background-image: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.loading-skeleton h1::-moz-placeholder,
.loading-skeleton h2::-moz-placeholder,
.loading-skeleton h3::-moz-placeholder,
.loading-skeleton h4::-moz-placeholder,
.loading-skeleton h5::-moz-placeholder,
.loading-skeleton h6::-moz-placeholder,
.loading-skeleton p::-moz-placeholder,
.loading-skeleton li::-moz-placeholder,
.loading-skeleton span::-moz-placeholder,
.loading-skeleton a::-moz-placeholder,
.loading-skeleton select::-moz-placeholder,
.loading-skeleton .btn::-moz-placeholder,
.loading-skeleton label::-moz-placeholder,
.loading-skeleton .form-text::-moz-placeholder,
.loading-skeleton .form-control::-moz-placeholder,
.loading-skeleton .form-select::-moz-placeholder,
.loading-skeleton .nav-link::-moz-placeholder,
.loading-skeleton .fileUploadBox::-moz-placeholder {
  color: #eee;
}

.loading-skeleton h1::placeholder,
.loading-skeleton h2::placeholder,
.loading-skeleton h3::placeholder,
.loading-skeleton h4::placeholder,
.loading-skeleton h5::placeholder,
.loading-skeleton h6::placeholder,
.loading-skeleton p::placeholder,
.loading-skeleton li::placeholder,
.loading-skeleton span::placeholder,
.loading-skeleton a::placeholder,
.loading-skeleton select::placeholder,
.loading-skeleton .btn::placeholder,
.loading-skeleton label::placeholder,
.loading-skeleton .form-text::placeholder,
.loading-skeleton .form-control::placeholder,
.loading-skeleton .form-select::placeholder,
.loading-skeleton .nav-link::placeholder,
.loading-skeleton .fileUploadBox::placeholder {
  color: #eee;
}

@keyframes loading-skeleton {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

.loading-skeleton {
  pointer-events: none;
  animation: loading-skeleton 1s infinite alternate;
}

.loading-skeleton .form-check-input:checked[type='checkbox'] {
  display: none;
}

.loading-skeleton label.form-label {
  height: 1.5rem;
}

.loading-skeleton span svg {
  visibility: hidden !important;
}

.embed-map-responsive {
  position: relative;
  text-align: right;
  width: 100%;
  height: 0;
  padding-bottom: 66.6667%;
}

.embed-map-container {
  overflow: hidden;
  background: none !important;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.embed-map-frame {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.iconLoaderProgress {
  display: flex;
  align-items: center;
  justify-content: center;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: rotateLoader;
  scale: 0.35;
}

.iconLoaderProgress svg {
  stroke-width: 16px;
  fill: none;
  transform-origin: center;
  z-index: 999;
}

.iconLoaderProgressFirst circle,
.iconLoaderProgressSecond circle,
.iconLoaderProgressFirst,
.iconLoaderProgressSecond {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.iconLoaderProgressFirst circle,
.iconLoaderProgressSecond circle {
  animation-duration: 3s;
  border-radius: 15px;
}

.iconLoaderProgressFirst,
.iconLoaderProgressSecond {
  position: absolute;
  animation-duration: 6s;
}

.iconLoaderProgressFirst circle {
  animation-name: circleFirst;
  stroke-dasharray: 628, 628;
  stroke-dashoffset: 0;
  stroke: #0047ab;
  stroke-linecap: round;
}

.fullpage-loader {
  margin-left: 100px;
}

.iconLoaderProgressSecond {
  transform: rotate(-14deg);
}

.iconLoaderProgressSecond circle {
  animation-name: circleSecond;
  stroke-dasharray: 628, 628;
  stroke-dashoffset: 0;
  stroke: #a7cbff;
  stroke-linecap: round;
}

.attStatus {
  width: 6% !important;
}

.auth-container {
  max-width: 1100px;
  width: 100%;
  border-radius: 33px;
  height: 580px;
}

.auth-hero {
  min-height: 420px;
}

.auth-hero-image {
  width: 100% !important;
  object-fit: cover;
  filter: brightness(0.55);
}

.auth-hero-logo {
  top: 18px;
  left: 18px;
  width: 50% !important;
}

.auth-card {
  height: 580px;
  overflow: hidden;
}

.auth-card-body {
  height: 100%;
}

.auth .form-group input.form-control {
  padding-left: 37px;
}

.auth .form-group svg,
.form-group i {
  position: absolute;
  left: 14px;
  top: 35%;
  transform: translateY(-10%);
  pointer-events: none;
}

.auth .password-group .password-show {
  position: absolute;
  right: 40px !important;
  top: 35%;
  transform: translateY(-10%);
  cursor: pointer;
}

.auth .password-group input.form-control {
  padding-right: 42px;
}

.day-type-size {
  font-size: 13.5px;
}

.bg {
  background-color: #f2f2f2;
  min-height: 100vh;
  height: 100%;
}

.ck-editor__editable {
  min-height: 100px;
  max-height: none;
  overflow-y: hidden;
  height: auto;
  padding: 10px;
  white-space: pre-wrap;
}

.card {
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.icon_span {
  background-color: #034096 !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
}

.react-calendar {
  background: #fff;
  border: 1px solid #a0a096;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.125em;
  max-width: 100%;
  width: 100%;
}

.react-calendar.table.time-table {
  border-radius: 1rem;
  margin-bottom: 0;
  overflow: hidden;
  width: 100%;
}

.react-calendar__navigation {
  background: #0000;
  border-bottom: 1px solid #b3b3b3;
  border-top-left-radius: 0.6rem;
  border-top-right-radius: 0.6rem;
  gap: 0.6rem;
  height: max-content;
  margin-bottom: 0;
  padding: 1rem;
}

.react-calendar__navigation {
  display: flex;
  flex-wrap: nowrap;
  height: 44px;
  margin-bottom: 1em;
}

.react-calendar__navigation
  .react-calendar__navigation__label__labelText.react-calendar__navigation__label__labelText--from {
  background: #0000;
  color: #0047ab;
  font-size: 1.8rem;
  font-weight: 700;
}

.react-calendar__tile--now {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
}

.react-calendar__tile--now,
.react-calendar__tile--now abbr,
.react-calendar__tile--now:enabled:hover,
.react-calendar__tile--now:enabled:focus {
  color: #ffffff !important;
}

.react-calendar__navigation .react-calendar__navigation__arrow {
  background: #fff;
  border-radius: 99rem;
  height: 26px;
  min-width: 26px;
  padding: 0;
}

.react-calendar__month-view__weekdays {
  font: inherit;
  font-size: 0.75em;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.react-calendar__month-view__weekdays__weekday {
  align-items: center;
  display: flex;
  height: 60px;
  justify-content: center;
  padding: 0.5em;
}

.react-calendar__month-view__weekdays__weekday abbr {
  text-decoration: none;
}

.react-calendar__tile {
  border: 6px solid #fff !important;
  border-radius: 99rem;
  font-size: 1.4rem !important;
}

.react-calendar__month-view__days .react-calendar__tile {
  height: auto !important;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.react-calendar__tile--now {
  background: #0047ab !important;
  border-radius: 99rem;
  color: #fff;
}

.react-calendar__tile:enabled:hover {
  background: #0047ab !important;
  color: #fff !important;
}

.react-calendar__month-view__days__day--weekend {
  color: #000 !important;
}

.react-calendar__month-view__days__day:nth-child(7n) {
  background-color: #d7d7d7;
}

.react-calendar__month-view__days__day--neighboringMonth {
  color: #757575 !important;
}

.react-calendar__tile {
  height: 56px;
  font-size: 1.4rem;
  border-radius: 99rem;
}

.react-calendar__tile--holiday {
  background: #35dca1 !important;
  color: #fff !important;
}

.react-calendar__tile--holiday:enabled:hover,
.react-calendar__tile--holiday:enabled:focus {
  background: #21936b;
}

.react-calendar__tile
  .react-calendar__month-view__days__day
  .react-calendar__month-view__days__day--weekend:hover {
  color: #fff !important;
}

.react-calendar__tile--now .react-calendar__month-view__days__day {
  color: #fff !important;
}

.react-calendar__tile:enabled:hover,
.react-calendar__tile:enabled:focus {
  background-color: #e6e6e6 !important;
  color: #000 !important;
}

.react-calendar__year-view .react-calendar__tile,
.react-calendar__decade-view .react-calendar__tile,
.react-calendar__century-view .react-calendar__tile {
  padding: 1em 0.5em !important;
}

.cardView_img {
  width: 50px !important;
  height: 50px !important;
}

.cardView_img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  border: 1px solid rgb(195 216 222);
}

.custom-dd .dropdown-item {
  font-size: 14px !important;
}

.custom-dd .dropdown-item:hover {
  background-color: #0047ab;
  color: #fff;
}

.card_view_td {
  max-width: 1rem;
  width: 100%;
}

input[type='radio'] {
  accent-color: #0047ab !important;
}

.card_view_grid {
  font-size: 14px !important;
}

.colored-bar {
  width: 4px;
  height: 100%;
  background: #4f46e5;
  border-radius: 6px;
  position: absolute;
  left: 0;
  top: 0;
}

.profile-card {
  font-size: 14px !important;
  border-left: 4px solid #0047ab !important;
}

.gridCard_dropdown {
  transform: translate(-6px, 4px) !important;
}

.access-wrapper {
  min-height: 100vh;
}

.brand {
  font-weight: 600;
  font-size: 1.25rem;
}

.illustration {
  max-width: 420px;
}

.access-title {
  font-weight: 600;
  color: #1f2a44;
}

.access-text {
  color: #5f6b7a;
  max-width: 420px;
}

.btn-primary {
  background-color: #3b6df6;
  border-color: #3b6df6;
}

.btn-outline-secondary {
  border-color: #d0d5dd;
  color: #344054;
}

.blocker-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  background-color: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(4px);
}

/* The main modal container */
.blocker-content {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 40px;
  max-width: 448px;
  width: 90%;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Icon styling */
.access_icon-container {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.access_icon-wrapper {
  border-radius: 9999px;
  padding: 16px;
  background-color: #fee2e2;
  border: 1px solid #f87171;
}

.access_icon {
  width: 48px;
  height: 48px;
  color: #dc2626;
  stroke-width: 2;
}

.access_title {
  font-size: 30px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 8px;
}

.access_message {
  color: #6b7280;
  margin-bottom: 32px;
  font-size: 16px;
}

.chip {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 1.158rem;
}

.chip strong {
  font-weight: 700;
  color: #212529;
}

.chip.present {
  background: rgba(25, 135, 84, 0.15);
  color: #198754;
}

.chip.absent {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

.chip.pending {
  background: rgba(255, 193, 7, 0.25);
  color: #9a6a00;
}

.chip.total {
  background: #e7f1ff;
  color: #0d6efd;
  font-weight: 600;
}

@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 1035px) {
  .otp-input .form-control {
    padding: 0.8rem;
    text-align: center;
    width: 4.7rem;
    height: 4.7rem;
  }
}

@media screen and (max-width: 1000px) {
  .auth.auth-password {
    width: 50% !important;
  }

  .card.check-in .card-body {
    padding: 2rem;
  }
}

@media screen and (max-width: 992px) {
  .auth-card {
    height: 100% !important;
    box-shadow: none !important;
  }
}

@media screen and (min-width: 500px) and (max-width: 600px) {
  .header {
    width: 100%;
  }

  .main-view-content {
    margin-left: 0;
  }

  .otp-input .form-control {
    width: 4rem !important;
    height: 4rem !important;
  }
}

@media screen and (min-width: 200px) and (max-width: 500px) {
  .header {
    width: 100%;
  }

  .main-view-content {
    margin-left: 0;
  }

  .auth-container {
    max-width: 1100px;
    width: 100% !important;
    border-radius: 33px;
  }

  .auth.auth-password {
    width: 90% !important;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .card.dash-cards {
    width: calc(50% - 1rem);
  }
}

@media screen and (min-width: 701px) and (max-width: 1024px) {
  .card.dash-cards {
    width: calc(50% - 1rem);
  }
}

@media screen and (max-width: 700px) {
  .auth-container {
    max-width: 1100px;
    width: 100% !important;
    border-radius: 33px;
  }

  .auth.auth-password {
    width: 60% !important;
  }

  .otp-input .form-control {
    padding: 0.4rem;
    text-align: center;
    width: 5rem;
    height: 5rem;
  }

  .level-1,
  .level-2 {
    width: 100%;
  }

  .level-1 {
    margin-bottom: 20px;
  }

  .level-1::before,
  .level-2-wrapper > li::before {
    display: none;
  }

  .level-2-wrapper,
  .level-2-wrapper::after,
  .level-2::after {
    display: block;
  }

  .level-2-wrapper {
    width: 90%;
    margin-left: 10%;
  }

  .level-2-wrapper::before {
    left: -20px;
    width: 2px;
    height: calc(100% + 40px);
  }

  .level-2-wrapper > li:not(:first-child) {
    margin-top: 50px;
  }

  .table-head .form-control.search-control {
    min-width: 17rem;
  }

  card.dash-cards {
    width: 100%;
  }

  .header .navbar {
    padding: 1rem;
  }
}

@media screen and (min-width: 600px) and (max-width: 1025px) {
  .react-calendar__month-view__weekdays__weekday {
    height: 16px !important;
  }
}

@media screen and (max-width: 600px) {
  .footer-left {
    margin-left: 0;
  }
}

@media screen and (min-width: 992px) {
  .sidebar-wrapper {
    transform: translateX(0) !important;
  }
}

@media screen and (max-width: 991px) {
  .header {
    width: 100% !important;
  }

  .main-view-content {
    margin-left: 0 !important;
  }
}

@media screen and (max-width: 420px) {
  .otp-input .form-control {
    padding: 0.4rem;
    text-align: center;
    width: 4rem;
    height: 4rem;
  }

  .auth .title {
    font-size: 2.6rem;
  }

  .react-calendar__navigation__label {
    font-size: 1.6rem !important;
    white-space: nowrap !important;
  }

  .react-calendar__navigation button {
    min-width: 30px !important;
  }

  .react-calendar__navigation
    .react-calendar__navigation__label__labelText.react-calendar__navigation__label__labelText--from {
    font-size: 1.15rem;
  }

  .react-calendar__tile {
    font-size: 1.1rem;
    white-space: nowrap;
  }

  .react-calendar__tile {
    padding: 3px 2.6667px !important;
  }
}

.skeleton {
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 37%, #e5e7eb 63%);
  background-size: 400% 100%;
  animation: skeleton-loading 1.4s ease infinite;
  border-radius: 8px;
}

.skeleton-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.skeleton-text {
  height: 14px;
  width: 100%;
}

.skeleton-chip {
  height: 24px;
  width: 80px;
  border-radius: 12px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.manage-table:focus {
  outline: none;
}
.table_text p {
  font-size: 13px;
}

.select__control {
  width: 100%;
}

.css-174g9ve-control {
  width: 100% !important;
}

.bg-light-primary {
  background-color: #0047ab !important;
  /* 0 0 8px 3px #ffd7d7 */
}
