@import url('font.css');
@import url('root.css');
@import url('default.css');
@import url('avatar.css');
@import url('dropdown.css');
@import url('icon.css');
@import url('card.css');
@import url('input.css');
@import url('table.css');
@import url('labels.css');
@import url('button.css');
@import url('image.css');
@import url('breadcrumb.css');
@import url('pagination.css');
@import url('navtab.css');
@import url('accordion.css');
@import url('modal.css');
@import url('color.css');
@import url('border.css');
@import url('display.css');
@import url('spacing.css');
@import url('size.css');
@import url('ticket.css');


/* Components */

@import url('progress.css');
@import url('kanban.css');
@import url('attachment.css');

/* Theme Toggle */
.themeToggle {
  --theme-toggle-width: 2.25em;
  --theme-toggle-height: 1.25em;
  --theme-toggle-diameter: 1em;
  --theme-toggle-offset: calc((var(--theme-toggle-height) - var(--theme-toggle-diameter)) / 2);
  --theme-toggle-shadow: 10px;
  --theme-toggle-wider: 3em;
  --theme-toggle-light: var(--text-100);
  --theme-toggle-dark: var(--text-100);
  --theme-toggle-round: var(--bg-100);
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

.themeToggleBtn {
  display: inline-block;
  width: var(--theme-toggle-width);
  height: var(--theme-toggle-height);
  background-color: var(--theme-toggle-light);
  border-radius: calc(var(--theme-toggle-height) / 2);
  position: relative;
  transition: 0.3s all ease-in-out;
}

.themeToggleBtn::after {
  content: "";
  display: inline-block;
  width: var(--theme-toggle-diameter);
  height: var(--theme-toggle-diameter);
  background-color: var(--theme-toggle-round);
  border-radius: calc(var(--theme-toggle-diameter) / 2);
  position: absolute;
  top: var(--theme-toggle-offset);
  transform: translateX(var(--theme-toggle-offset));
  box-shadow: var(--theme-toggle-shadow) 0 calc(var(--theme-toggle-shadow) * 4) rgba(0, 0, 0, 0.1);
  transition: 0.3s all ease-in-out;
}

.themeToggle.dark .themeToggleBtn {
  background-color: var(--theme-toggle-dark);
}

.themeToggle.dark .themeToggleBtn::after {
  transform: translateX(calc(var(--theme-toggle-width) - var(--theme-toggle-diameter) - var(--theme-toggle-offset)));
  box-shadow: calc(var(--theme-toggle-shadow) * -1) 0 calc(var(--theme-toggle-shadow) * 4) rgba(0, 0, 0, 0.1);
}


/* Layout */
.layout-sidebar {
  width: var(--sidebar-width);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}


/* dashboard */
.dashboard {

  background-color: #F5F6F9;
  width: 100%;
  height: auto;
}


.top-control .tabs {
  padding: 20px;
  display: flex;

}

.top-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0px;
  background: #F5F6FA;
  border-radius: 6px;
  margin-bottom: 15px;
  margin: 0;
}

.left-tabs button,
.right-tabs button {
  background: white;
  border: 1px solid #ddd;
  padding: 4px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  cursor: pointer;
  line-height: 1.5;
}

.right-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.left-tabs button:hover,
.right-tabs button:hover {
  background: #f0f0f0;
}

.left-wrapper {
  padding: 10px 0 20px 20px;
}

.left-conatiner {
  width: 210px;
  height: 864px;
  border-radius: 12px;
  background: #FFFFFF;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}




.layout-dashboard {
  padding-left: var(--sidebar-width);
  /* padding-left:30px; */
}

/* Sidebar */
.sidebar-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sidebar-container {
  padding: 0;
  width: 100%;
  height: 100%;
}

.sidebar-content {
  width: 100%;
  height: 100%;
  border-radius: 0;

  background: linear-gradient(to bottom, #1B2C55, #1C4193, #6C85B9);


  padding: var(--space-xs);
  overflow-y: auto;
}



.sidebar-header {
  position: sticky;
  top: -10px;
  background-color: var(--bg-200);
  z-index: 9;
}

.sidebar-brand {
  width: 100%;
  display: block;
  padding: 0 24px;
}

.sidebar-brand img {
  width: 100%;
  height: 55px;
  object-fit: contain;
}

.sidebar-item-wrap {

  margin: 0;
  display: grid;
  gap: 10px;
}

/* .sidebar-layout {
  width: 66px;
  background-color: #101010;
  display: flex;
  flex-direction: column;
} */

.sidebar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #FFFFFF;
  cursor: pointer;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  width: 100%;
  padding: var(--space-xs);
  border-radius: var(--radius-xs);
}

.sidebar-link span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-link:hover {
  background: var(--bg-300);
}

.sidebar-link:active,
.sidebar-link:focus {
  background: var(--bg-300);
  color: var(--text-100);
}

.sidebar-link.active {
  background-color: var(--bg-300);
}

.sidebar-submenu {
  list-style: none;
  margin: 0;
  padding: var(--space-sm) var(--space);
  border-radius: var(--radius-sm);
  background-color: var(--bg-300);
}

.sidebar-submenu-item {
  margin-bottom: 0;
}

.sidebar-submenu-link {
  display: block;
  padding: var(--space-xs) 0;
}

.sidebar-toggle-mob {
  display: none;
  position: absolute;
  top: 26px;
  right: 0;
  transform: translateX(20%);
  z-index: 1000;
}

.dash-navbar-wrap {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  /* padding-top: var(--space-sm); */
  background: var(--bg-100);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.dash-navbar {
  width: 100%;
  padding: var(--space-xxs);
  border-radius: var(--radius-sm);

  display: flex;
  align-items: center;
  justify-content: space-between;
}


.dash-navbar-right {
  margin-left: auto;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.dashboard-wrap {
  /* padding-top: var(--space); */
}

.dash-heading {
  margin-bottom: var(--space);
}

/* Notification */
.icon-text-flex {
  display: flex;
  align-items: center;
}

.icon-text-start {
  display: flex;
  align-items: start;
}

.icon-text-content {
  flex: 1;
  font-size: var(--font-size-sm);
}

.icon-text-content p {
  flex: 1;
  font-size: var(--font-size-sm)
}

.notification-dropdown .dash-dropdown-item {
  padding: var(--space-sm) var(--space-xs);
  margin: 0 0 var(--space-xs);
  border-radius: var(--radius-sx);
}

.notification-dropdown .dash-dropdown-item .icon-text-flex {
  align-items: flex-start;
}

.notification-dropdown .dash-dropdown-item:hover {
  background-color: var(--bg-200);
}

.notification-box {
  display: block;
  width: 100%;
  border: 1px solid var(--border-100);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  line-height: 1.5;
}

.noti-status-change {
  display: flex;
  align-items: center;
  gap: var(--space);
  width: 100%;
}

/* Animation */
@keyframes slideUp {
  from {
    transform: translateY(50px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    transform: translateX(50px);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    transform: translateX(-50px);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes slideFarUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes slideFarDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes slideFarLeft {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes slideFarRight {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}




/* Login page */
.login-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding: 0 50px;
  background-color: #101010;
  animation: none;
}

.input-style-otp {
  width: 16.6667%;
  height: 37px;
  gap: 2px;
}

.input-style-otp {
  align-items: center;
  text-align: center;
  /* font-size: 23px; */

}

.info {
  display: flex;
  gap: 1%;
  margin-bottom: 2%;

}

.info .icon {
  width: 19px;

}

.error-text {
  color: #D22424;
  font-weight: 400;
  font-size: var(--font-size-p);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9;

}

.error-text-otp {
  color: #D22424;
  font-weight: 400;
  font-size: var(--font-size-p);

  top: 100%;
  left: 0;
  z-index: 9;
}

.imp {
  color: #D22424;
  /* font-size: var(--font-size-sm); */
}

.otp-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
}

.input-with-icon {
  position: relative;
  /* color: #1C4193; */

}

.input-with-icon .input-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  color: black;
}



.login-form {
  width: 100%;

  height: 590px;
  max-height: 90vh;
  max-width: 420px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: center;
}



.darkimg-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  height: 60%;
  object-fit: cover;
  object-position: top;

}

.microsoft-btn {
  background-color: #F0F0F0;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: black;
  padding: 1px;


}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mico-img img {
  width: 24px;
  height: 24px;
  margin-top: 4px;
}

.login-text {
  max-width: 480px;
}

.login-wrap .container {}

.login-wrap .container {
  z-index: 9;
}

.img-logo {
  height: 24.31999969482422;
  width: 64px;
}








/* Chat Css */
.chat-wrap .card {
  height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
}

.chat-wrap .card-header {
  flex-shrink: 1;
}

.chat-wrap .card-body {
  flex-grow: 1;
  overflow: auto;
}

.chat-list-item {
  margin-bottom: 16px;
}

.chat-list-item.right {
  text-align: right;
}

.chat-text {
  display: inline-flex;
  gap: 8px;
}

.chat-content {
  display: flex;
  flex-direction: column;
}

.left .chat-content {
  align-items: start;
}

.right .chat-content {
  align-items: end;
}

.chat-content p {
  background-color: var(--text-100);
  color: var(--bg-100);
  padding: var(--space-sm) var(--space);
  max-width: 360px;
  margin-bottom: var(--space-xs);
  display: inline-block;
  text-align: left;
}

.chat-content p a {
  color: var(--accent-info);
  word-break: break-all;
  display: block;
}

.chat-content p a:hover {
  text-decoration: underline;
}

.right .chat-content p {
  border-radius: var(--radius) 0 0 var(--radius);
}

.right .chat-content p:last-of-type {
  border-radius: var(--radius) 0 var(--radius) var(--radius);
}

.left .chat-content p {
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--bg-300);
  color: var(--text-100);
}

.left .chat-content p:last-of-type {
  border-radius: 0 var(--radius) var(--radius) var(--radius);
}

.img-grid {
  max-width: 360px;
  padding: var(--space-sm);
  border-radius: var(--radius);
}

.left .img-grid {
  background: var(--bg-300);
}

.right .img-grid {
  background: var(--text-100);
}

.img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.chat-type {
  line-height: 0;
}

.chat-type .input-style {
  max-height: 120px;
  min-height: 48px;
  height: 48px;
  transition: none;
  line-height: 1.8;
}

.chat-type.input-with-icon .icon-btn {
  top: auto;
  bottom: 8px;
  transform: none;
}

/* Audio Player */

.audio-player-wrap {
  padding: var(--space-sm) var(--space);
  background: var(--bg-300);
  border-radius: var(--radius);
  text-align: left;
}

.audio-player {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space);
}

.audio-line {
  display: block;
  width: 200px;
  height: 2px;
  background: var(--text-300);
  margin-bottom: var(--space-sm);
  position: relative;
}

.audio-line:before {
  content: "";
  display: block;
  width: 20%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--accent-info);
}

.audio-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.right .audio-player-wrap {
  background: var(--text-100);
  color: var(--bg-100);
}

.chat-file-wrap {
  padding: var(--space-sm);
  background: var(--bg-300);
  border-radius: var(--radius);
  text-align: left;
}

.chat-file {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  width: 200px;
}

.right .chat-file-wrap {
  background: var(--text-100);
  color: var(--bg-100);
}

.day-divider {
  display: flex;
  align-items: center;
  gap: var(--space);
  font-size: var(--font-size-sm);
  color: var(--text-300);
  padding: var(--space) 0;
}

.day-divider:before,
.day-divider:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border-100);
}


.employee-list span+span {
  margin-left: -16px;
}







/* Timeline component */
.timeline-card {
  display: flex;
  gap: var(--space-sm);
  position: relative;
  padding-bottom: var(--space);
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-100);
}

.timeline-card:last-child::before {
  display: none;
}

.timeline-img {
  flex-shrink: 0;
  position: relative;
}

.timeline-content {
  flex-grow: 1;
}

.timeline-content-wrap {
  width: 100%;
  background: var(--bg-200);
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space);
}

.timeline-detail {
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space);
}

.timeline-detail-head {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.timeline-detail-head * {
  flex-shrink: 0;
}

.timeline-detail-head .timeline-project {
  flex-shrink: unset;
  width: 100%;
  background: var(--bg-100);
}

.timeline-indicator {
  flex-shrink: 0;
}

.timeline-desc {
  background-color: var(--bg-100);
  margin-bottom: var(--space-xxs);
  display: block;
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid var(--border-100);
  border-radius: var(--radius-sm);
  line-height: 1.7;
}

.timeline-action {
  display: flex;
  align-items: center;
}

@media only screen and (min-width:992px) {

  /* Sidebar Minimize */
  .layout-wrap.open {
    --sidebar-width: 80px
  }

  .layout-wrap.open .sidebar-link span {
    display: none;
  }

  .layout-wrap.open .sidebar-link span+i {
    display: none;
  }

  .layout-wrap.open .sidebar-brand {
    padding: 0;
  }


  .layout-wrap.open .sidebar-wrap,
  .layout-wrap.open .sidebar-content {
    overflow: unset;
  }

  .layout-wrap.open .sidebar-item {
    position: relative;
  }

  .layout-wrap.open .sidebar-item .sidebar-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    width: auto;
    min-width: 150px;
    border: 1px solid var(--border-100);
    box-shadow: var(--shadow-sm);
    background: var(--bg-100);
    max-height: 600px;
    overflow: auto;
    border-radius: var(--radius-md);
    padding: var(--space-sm);
  }

  .layout-wrap.open .sidebar-item:hover .sidebar-submenu {
    display: block;
  }

  .layout-wrap.open .sidebar-submenu-link {
    padding: var(--space-sm) var(--space);
    border-radius: var(--radius-sm);
  }

  .layout-wrap.open .sidebar-submenu-link:hover {
    background-color: var(--bg-200);
    color: var(--text-100);
  }

  .sidebar-toggle-btn.open i {
    transform: rotate(180deg);
  }
}

@media only screen and (max-width:991px) {
  .layout-dashboard {
    padding-left: 0;
  }

  .sidebar-wrap {
    overflow: unset;
    position: relative;
  }

  .sidebar-content {
    background-color: var(--bg-100);
    box-shadow: 8px 0 25px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-100);
  }

  .sidebar-icon {
    color: #FFFFFF;
  }

  .layout-wrap .layout-sidebar {
    transform: translateX(-110%);
  }

  .layout-wrap.open .layout-sidebar {
    transform: none;
  }

  .sidebar-toggle-mob {
    display: block;
  }

  .sidebar-toggle-btn i {
    transform: rotate(180deg);
  }

  .sidebar-toggle-btn.open i {
    transform: unset;
  }
}
.has-submenu .submenu {
  padding-left: 20px;
}

.submenu-title {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.arrow.down::after {
  content: "▼";
}

.arrow.up::after {
  content: "▲";
}
.sidebar-item .sidebarColor a{
  color:#FFFFFF !important;
}
/* Parent active */
.sidebar-icon.active-home {
  background-color: #fff;
  color: #101010;
  border-radius: 8px;
}

/* Child active */
.submenu-link.active-submenu {
  background-color: #fff;
  color: #101010;
  border-radius: 6px;
}

/* Default */
.sidebar-icon,
.submenu-link {
  color:  #fff;
}

hr{
      margin: 1rem 0;
    color: #d9dee3;
    border: 0;
    border-top: 1px solid;
    opacity: 1;
}
.tenatView{
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}
.gap-3{
  gap: 0.5rem !important;
}
.d-flex{
  display: flex;
}
.mb-2{
  margin-top:15px;
}
.modal-wrap 
{
  width:600px !important
}
.p-2{
padding:8px;
}