.task-table {
  width: 100%;
  border-collapse: collapse;
}

.task-table th,
.task-table td {
  border: 1px solid var(--vz-border-color);
  padding: 12px;
  text-align: left;
  background: var(--vz-secondary-bg);
  ;
  white-space: nowrap;
  font-size: 15px;
  color: var(--vz-heading-color);
}

.group-header {
  background-color: #f5f5f5;
  cursor: pointer;
  font-weight: bold;
}

.task-row {
  display: none;
}

.status-pending {
  color: #d97706;
  background: #fef3c7;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  font-size: 15px
}

.assignee {
  background-color: #7c3aed;
  color: var(--vz-secondary-bg);
  ;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  margin-right: 5px;
  cursor: pointer;
}

.due-date {
  color: green;
}

.arrow-icon {
  width: 11px;
  margin-right: 12px;
  filter: var(--vz-black-filter);
}

.character-img {
  display: flex;
  align-items: center;
  /* color: var(--vz-heading-color); */
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.ml-15 {
  margin-left: 15px;
}

.task-name {
  font-size: 15px;
}

.date-text {
  font-size: 15px;
}

.assigned-by {
  font-size: 15px;
}

.assigned-to {
  font-size: 15px;
}

.table-scroll {
  overflow: scroll;
  scrollbar-width: thin;
}

.task-table th:nth-child(1) {
  width: 500px;
}

.task-table th:nth-child(2) {
  width: 300px;
}

.task-table th:nth-child(3) {
  width: 210px;
}

.task-table th:nth-child(4) {
  width: 175px;
}

.task-table th:nth-child(5) {
  width: 225px;
}

.task-table th:nth-child(6) {
  width: 150px;
}

.task-table th:nth-child(7) {
  width: 150px;
}

.task-table {
  width: 100%;
  table-layout: fixed;
  /* Prevents auto-adjustment of column width */
  border-collapse: collapse;
}

.task-table th {
  background: var(--vz-body-bg);
}

.kanbe-box {
  padding: 15px 15px 0 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.l-task-name {
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
  flex: 1;
  min-width: 0;
}

.comment-icon {
  cursor: pointer;
  justify-content: flex-end;
  width: 60px;
  display: flex !important;
}

.comment-icon a i {
  color: var(--vz-heading-color);
}

.apto-dropdown-wrapper {
  width: 45px;
  height: 45px;
  float: left;
  position: relative;
}

.apto-trigger-dropdown {
  width: 45px;
  height: 45px;
  background-color: var(--vz-secondary-bg);
  border: 0;
  padding: 0 10px;
  transition: 0.2s ease-in;
  cursor: pointer;
}

.apto-trigger-dropdown:hover {
  background-color: var(--vz-body-bg);
}

.apto-trigger-dropdown .fa-caret-down {
  float: right;
  line-height: 22px;
}

.apto-trigger-dropdown svg {
  width: 25px;
  float: left;
  height: 25px;
}

.custom-drop.dropdown-menu {
  width: 100px;
  display: none;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 45px;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  padding: 0;
}

.custom-drop.dropdown-menu.show {
  display: block;
}

.custom-drop .dropdown-item i {
  float: left;
  margin-right: 10px;
  color: var(--vz-heading-color);
}

.custom-drop .dropdown-item {
  width: 100%;
  height: 30px;
  border: 0;
  padding: 0 10px;
  cursor: pointer;
  transition: 0.2s ease-in;
  background-color: var(--vz-secondary-bg);
  color: var(--vz-heading-color);
  text-align: left;
}

.custom-drop .dropdown-item:hover {
  background-color: var(--vz-body-bg);
}

.task-comment {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}




/*# sourceMappingURL=custom.min.css.map */