@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");
:root, .light {
  --color-background: #FFFFFF;
  --color-primary: #405189;
  --color-secondary: #f5f5f5;
  --color-header-text: #000000;
  --color-default-text: #000000;
  --color-hightlight-text: #405189;
  --color-shadow-dark-opacity: rgba(0, 0, 0, 0.15);
  --color-scrollbar: rgba(0, 0, 0, 0.15);
  --color-header: #405189;
  --color-teams-header: #E0E7EC;
  --color-teams-header-text: #000000CF;
  --color-dropzone: #f5f5f5;
  --color-highlight-light: #d5deff;
  --color-border-light: rgba(0,0,0,0.15);
}

.dark {
  --color-background: #405189;
  --color-primary: #405189;
  --color-secondary: #1f2937;
  --color-header-text: #FFFFFF;
  --color-default-text: #FFFFFF;
  --color-hightlight-text: #43c3f1;
  --color-scrollbar: rgba(255, 255, 255, 0.15);
  --color-header: #405189;
  --color-dropzone: #1f2937;
  --color-highlight-light: #1f2937;
  --color-border-light: rgba(255,255,255,0.15);
}

#search-site {
  height: calc(100vh - 57px);
}
#search-site img {
  background-color: var(--color-primary);
}
#search-site .worklog-input-row {
  height: 90%;
}
#search-site #search-history {
  min-height: 95%;
  max-height: 95%;
}
#search-site #search-history .search-query {
  padding: 10px;
  margin: 10px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 10px;
  border-bottom-right-radius: 3px;
}
#search-site #search-history .search-answer {
  width: 75%;
  padding: 10px;
  margin: 10px;
  background-color: var(--color-secondary);
  border-radius: 10px;
  border-bottom-left-radius: 3px;
}
#search-site #search-history .search-answer h3 {
  font-size: 1.25rem !important;
}
#search-site #search-history .search-answer .list-group-item {
  word-wrap: break-word;
}
#search-site #search-history .search-answer .list-group-item:focus, #search-site #search-history .search-answer .list-group-item:hover {
  background-color: var(--color-secondary);
}
#search-site #search-history .search-answer .list-group-item:active {
  background-color: var(--color-highlight-light);
}
#search-site #search-history .search-answer .list-group-item p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#search-site #pdf-container {
  overflow-y: scroll;
  height: calc(100vh - 230px);
  max-height: calc(100vh - 230px);
}
#search-site #pdf-control {
  position: absolute;
  top: 20px;
  right: 20px;
}
#search-site button.btn-primary {
  max-height: 38px;
  margin: auto;
}

.btn:active, .btn:focus {
  box-shadow: 0 0 0;
  border: none;
}

body {
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
body .btn-primary {
  margin: 0;
  list-style: none;
  background: var(--color-header);
  border-color: var(--color-header);
  color: #FFFFFF;
}
body button:active, body button:focus {
  border: 0;
  box-shadow: 0 0 0;
  outline: none;
}
body .header {
  background: var(--color-header);
  display: flex;
  align-items: center;
  height: 56px;
}
body .header a {
  color: #FFFFFF;
  text-decoration: none;
  margin-top: 1px;
}
body .header .nav-link {
  color: #FFFFFF;
  margin-left: 15px !important;
  padding: 0;
  font-size: 14px;
}
body .header .margin-left-auto {
  margin-left: auto;
  align-items: center;
}
body .header .running-task-name {
  margin: 0 10px 0 0;
  color: #FFFFFF;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
}
body .header .timer-container {
  color: white;
  display: flex;
  align-items: center;
}
body .header .timer-container h5 {
  margin: 0 10px 0 0;
}
body .header .timer-container .btn-stop {
  background: url(../images/timer-white.svg) no-repeat;
  color: #FFFFFF;
  padding: 0;
  text-align: center;
  line-height: 8px;
  width: 28px;
  height: 32px;
  background-size: contain;
  font-size: 13px;
  padding-top: 5px;
}
body .header .main-menu-list {
  padding: 0;
  margin: 0;
}
body .header .main-menu-list li {
  display: inline-block;
  list-style: none;
  padding: 0 5px;
}
body .header .main-menu-list li a {
  color: #FFFFFF;
  cursor: pointer;
}
body .header .main-menu-list li a:hover {
  color: #FFFFFF;
}
body .teams-header {
  background: var(--color-teams-header);
  display: flex;
  align-items: center;
  height: 36px;
}
body .teams-header a {
  color: var(--color-teams-header-text);
  text-decoration: none;
  margin-top: 1px;
}
body .teams-header .nav-link {
  color: var(--color-teams-header-text);
  margin-left: 15px !important;
  padding: 0;
  font-size: 14px;
}
body .teams-header .margin-left-auto {
  margin-left: auto;
  align-items: center;
}
body .teams-header .running-task-name {
  margin: 0 10px 0 0;
  color: var(--color-teams-header-text);
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
}
body .teams-header .timer-container {
  color: var(--color-teams-header-text);
  display: flex;
  align-items: center;
}
body .teams-header .timer-container h5 {
  margin: 0 10px 0 0;
}
body .teams-header .timer-container .btn-stop {
  background: url(../images/timer-black.svg) no-repeat;
  color: var(--color-teams-header-text);
  padding: 0;
  text-align: center;
  line-height: 8px;
  width: 28px;
  height: 32px;
  background-size: contain;
  font-size: 13px;
  padding-top: 5px;
}
body .teams-header .main-menu-list {
  padding: 0 15px;
  margin: 0;
}
body .teams-header .main-menu-list li {
  display: inline-block;
  list-style: none;
  padding: 0 5px;
}
body .teams-header .main-menu-list li a {
  color: var(--color-teams-header-text);
  cursor: pointer;
}
body .teams-header .main-menu-list li a:hover {
  color: var(--color-teams-header-text);
}
body .teams-header .main-menu-list li.active a {
  color: var(--color-teams-header-text);
  font-weight: bold;
}
body .teams-header .notification .notification-icon {
  color: #000000;
}
body .teams-header .notification .notification-icon:hover {
  color: #000000;
}
body .teams-header .version {
  color: #000000;
}
body .teams-header .btn .badge {
  top: 2px;
  font-size: 65%;
}
body .sidebar {
  background: var(--color-secondary) !important;
  position: relative !important;
  z-index: 1;
  height: calc(100vh - 57px) !important;
  width: 250px;
  transition: all 0.2s ease-out;
  /*&::before {
      background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.25));
      content: "";
      height: 100%;
      opacity: 0.2;
      pointer-events: none;
      position: absolute;
      right: 0;
      width: 0.8rem;
      z-index: 2;
  }*/
}
body .sidebar nav .nav-item {
  padding: 0 1rem !important;
}
body .sidebar nav .nav-item a {
  color: var(--color-default-text) !important;
  padding: 0 !important;
}
body .sidebar .top-row {
  background: var(--color-header) !important;
}
body .sidebar .add-project {
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
}
body .sidebar .project-list {
  height: calc(100vh - 114px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 5px 0;
}
body .sidebar .project-list::-webkit-scrollbar {
  width: 10px;
}
body .sidebar .project-list::-webkit-scrollbar-track {
  background: var(--color-secondary);
}
body .sidebar .project-list::-webkit-scrollbar-thumb {
  background-color: var(--color-header);
}
body .sidebar .project-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body .sidebar .project-list ul li {
  display: flex;
  justify-content: space-between;
  padding: 8px 5px 8px 15px;
  flex-direction: column;
  cursor: pointer;
}
body .sidebar .project-list ul li.active ul li {
  font-weight: normal;
  color: var(--color-default-text);
  min-height: 36px;
}
body .sidebar .project-list ul li.active ul li.active {
  font-weight: bold;
  color: var(--color-header);
}
body .sidebar .project-list ul li ul li {
  padding: 6px 0 0 20px;
  font-weight: normal;
  display: flex;
  flex-direction: row;
  align-items: center;
}
body .sidebar .project-list ul li ul li .options-toggle .dropdown-toggle {
  line-height: 1;
}
body .sidebar .project-list ul li ul li .options-toggle .dropdown-toggle::after {
  display: none;
}
body .sidebar .project-list ul li ul li .options-toggle .dropdown-menu {
  left: auto;
  right: 0;
  padding: 0;
  margin: 0;
}
body .sidebar .project-list ul li ul li .options-toggle .dropdown-menu .dropdown-divider {
  margin: 0;
}
body .sidebar .project-list ul li ul li .options-toggle .dropdown-menu .dropdown-item {
  padding: 5px 10px;
  font-size: 14px;
}
body .sidebar .project-list ul li ul li .options-toggle .dropdown-menu .dropdown-item i {
  margin-right: 10px;
}
body .sidebar .project-list ul li ul li .options-toggle .dropdown-menu a {
  color: var(--color-default-text);
}
body .sidebar .project-list ul li .project-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .sidebar .project-list ul li .project-details .project-title {
  font-size: 14px;
  display: flex;
  line-height: 1.25;
  word-break: break-word;
}
body .sidebar .project-list ul li .project-details .project-title i {
  margin-right: 5px;
  padding-top: 3px;
}
body .sidebar .project-list ul li .project-details .project-options {
  display: flex;
  align-items: center;
  width: 78px;
  justify-content: flex-end;
}
body .sidebar .project-list ul li .project-details .project-options button {
  padding: 0 5px;
}
body .sidebar .project-list ul li .project-details .project-options .options-toggle .dropdown-toggle {
  line-height: 1;
}
body .sidebar .project-list ul li .project-details .project-options .options-toggle .dropdown-toggle::after {
  display: none;
}
body .sidebar .project-list ul li .project-details .project-options .options-toggle .dropdown-menu {
  left: auto;
  right: 0;
  padding: 0;
  margin: 0;
}
body .sidebar .project-list ul li .project-details .project-options .options-toggle .dropdown-menu .dropdown-divider {
  margin: 0;
}
body .sidebar .project-list ul li .project-details .project-options .options-toggle .dropdown-menu .dropdown-item {
  padding: 5px 10px;
  font-size: 14px;
}
body .sidebar .project-list ul li .project-details .project-options .options-toggle .dropdown-menu .dropdown-item i {
  margin-right: 10px;
}
body .sidebar .project-list ul li .project-details .project-options .options-toggle .dropdown-menu a {
  color: var(--color-header);
  display: block;
}
body .sidebar .project-list ul li .project-details .project-options .options-toggle .dropdown-menu a:hover {
  text-decoration: none;
}
body .sidebar .project-list ul li .collection-details .project-options button {
  padding: 0 5px;
}
body .main {
  display: flex;
}
body .main .top-row {
  background: var(--color-header) !important;
  border: 0 !important;
  padding: 0 1em !important;
  font-size: 14px;
}
body .main .top-row a {
  color: #FFFFFF;
}
body .main .top-row .nav-link {
  color: #FFFFFF;
  margin-left: 15px !important;
  padding: 0;
  font-size: 14px;
}
body .teams-main {
  display: flex;
}
body .teams-main .top-row {
  background: var(--color-header) !important;
  border: 0 !important;
  padding: 0 1em !important;
  font-size: 14px;
}
body .teams-main .top-row a {
  color: #FFFFFF;
}
body .teams-main .top-row .nav-link {
  color: #FFFFFF;
  margin-left: 15px !important;
  padding: 0;
  font-size: 14px;
}
body .teams-main .calendar-view {
  top: 36px;
  height: calc(100vh - 36px) !important;
}
body .teams-main .main-container {
  height: calc(100vh - 36px) !important;
}
body .teams-main .bg-image {
  top: 40px;
  height: calc(100vh - 40px) !important;
}
body .teams-main .sidebar {
  height: calc(100vh - 36px) !important;
}
body .teams-main .task-list {
  height: calc(100vh - 206px) !important;
}
body .main-container {
  width: calc(100vw - 250px);
  float: right;
  padding: 1rem !important;
  height: calc(100vh - 56px);
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 0 !important;
}
body .main-container .card-filter {
  margin: 5px;
  width: 160px;
  display: inline-block;
  float: right;
}
body .main-container .card-filter.card-filter-dropdown {
  width: 115px;
}
body .main-container .custom-search {
  height: 33.5px;
  border-radius: 5px;
  width: 150px;
  font-size: 13px;
}
body .main-container .custom-select {
  font-size: 13px;
}
body .main-container .user-latest-tasks {
  margin: -10px 0 10px;
}
body .main-container .user-latest-tasks .user-latest-tasks-list {
  padding: 0;
  margin: 0;
  height: auto;
  overflow: hidden;
  display: flex;
}
body .main-container .user-latest-tasks .user-latest-tasks-list li {
  margin: 0;
  display: inline-block;
  width: calc(25% - 7px);
  background: #f2f3f5;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  margin-right: 10px;
  height: 52px;
}
body .main-container .user-latest-tasks .user-latest-tasks-list li:last-child {
  margin: 0;
}
body .main-container .user-latest-tasks .user-latest-tasks-list li .information {
  width: calc(100% - 40px);
}
body .main-container .user-latest-tasks .user-latest-tasks-list li .information h4 {
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: normal;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body .main-container .user-latest-tasks .user-latest-tasks-list li .information h6 {
  margin: 0;
  font-size: 13px;
  font-weight: normal;
}
body .main-container .user-latest-tasks .user-latest-tasks-list li .action {
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .main-container .user-latest-tasks .user-latest-tasks-list li .action .start-button,
body .main-container .user-latest-tasks .user-latest-tasks-list li .action .stop-button {
  float: left;
}
body .main-container .user-latest-tasks .user-latest-tasks-list li .action .start-button .btn-action,
body .main-container .user-latest-tasks .user-latest-tasks-list li .action .stop-button .btn-action {
  background: url("../images/timer.svg") no-repeat;
  height: 25px;
  color: #FFFFFF;
  padding: 0;
  width: 25px;
  text-align: center;
  line-height: 8px;
  width: 28px;
  height: 32px;
  background-size: contain;
}
body .main-container .user-latest-tasks .user-latest-tasks-list li .action .start-button .btn-action i,
body .main-container .user-latest-tasks .user-latest-tasks-list li .action .stop-button .btn-action i {
  font-size: 11px;
  color: #000000;
}
body .main-container .user-latest-tasks .user-latest-tasks-list li .action .start-button .btn-action.btn-start,
body .main-container .user-latest-tasks .user-latest-tasks-list li .action .stop-button .btn-action.btn-start {
  padding-left: 2px;
  padding-top: 4px;
}
body .main-container .user-latest-tasks .user-latest-tasks-list li .action .start-button .btn-action.btn-stop,
body .main-container .user-latest-tasks .user-latest-tasks-list li .action .stop-button .btn-action.btn-stop {
  padding-left: 0;
  padding-top: 5px;
}
body .main-container .btn.reset-colors {
  padding: 0;
  width: 24px;
  height: 24px;
  line-height: 24px;
  margin: 5px;
}
body .main-container .color-group {
  margin-left: 15px;
}
body .main-container .color-group .btn {
  border-radius: 0;
  margin-right: 5px;
  height: 25px;
  width: 25px;
  font-size: 0;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 20px !important;
}
body .main-container .color-group .btn:nth-child(1) {
  background-color: #dbf6fd;
}
body .main-container .color-group .btn:nth-child(2) {
  background-color: #fee4cb;
}
body .main-container .color-group .btn:nth-child(3) {
  background-color: #e9e7fd;
}
body .main-container .color-group .btn:nth-child(4) {
  background-color: #ffd3e2;
}
body .main-container .color-group .btn:nth-child(5) {
  background-color: #c8f7dc;
}
body .main-container .color-group .btn:nth-child(6) {
  background-color: #d5deff;
}
body .main-container .color-group .btn:nth-child(7) {
  background-color: #FFFA97;
}
body .main-container .color-group .btn:nth-child(8) {
  background-color: #E0E7Ec;
}
body .main-container .color-group .btn.active {
  border-color: rgba(0, 0, 0, 0) !important;
}
body .main-container .color-group .btn.active:nth-child(1) {
  background-color: #dbf6fd;
}
body .main-container .color-group .btn.active:nth-child(2) {
  background-color: #fee4cb;
}
body .main-container .color-group .btn.active:nth-child(3) {
  background-color: #e9e7fd;
}
body .main-container .color-group .btn.active:nth-child(4) {
  background-color: #ffd3e2;
}
body .main-container .color-group .btn.active:nth-child(5) {
  background-color: #c8f7dc;
}
body .main-container .color-group .btn.active:nth-child(6) {
  background-color: #d5deff;
}
body .main-container .color-group .btn.active:nth-child(7) {
  background-color: #FFFA97;
}
body .main-container .color-group .btn.active:nth-child(8) {
  background-color: #E0E7Ec;
}
body .main-container .color-group .btn.active::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
  text-indent: 0;
  font-size: 12px;
  height: 20px;
  line-height: 20px;
  width: 20px;
  padding: 0;
  color: #000000;
}
body .main-container .task-container {
  width: 100%;
  display: flex;
  overflow-x: scroll;
  padding-bottom: 0;
}
body .main-container .task-container::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
body .main-container .task-container::-webkit-scrollbar-track {
  background: transparent;
}
body .main-container .task-container::-webkit-scrollbar-thumb {
  background-color: darkgrey;
}
body .main-container .task-container .task-status {
  width: calc(33.33% - 5px);
  min-width: 200px;
  max-width: calc(33.33% - 5px);
  margin-right: 10px;
}
body .main-container .task-container .task-status:last-child {
  margin: 0;
}
body .main-container .task-container .task-status.has-task {
  min-width: 420px;
}
body .main-container .task-container .task-status .task-list {
  height: calc(100vh - 226px);
  background: #f2f3f5;
  overflow-y: scroll;
  overflow-x: hidden;
}
body .main-container .task-container .task-status .task-list::-webkit-scrollbar {
  width: 12px;
}
body .main-container .task-container .task-status .task-list::-webkit-scrollbar-track {
  background: #f2f3f5;
}
body .main-container .task-container .task-status .task-list::-webkit-scrollbar-thumb {
  background-color: darkgrey;
}
body .main-container .task-container .task-status .task-list ul {
  padding: 8px 1px 8px 12px;
  margin: 0;
  list-style: none;
  min-height: calc(100vh - 228px);
}
body .main-container .task-container .task-status .task-list ul.can-drop {
  border: 2px dashed rgba(0, 0, 0, 0.2);
}
body .main-container .task-container .task-status .task-list ul .add-task-item {
  background: #E0E7Ec;
  padding: 0 20px;
  width: 100%;
  height: 42px;
  cursor: pointer;
  text-align: center;
  margin-bottom: 5px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .main-container .task-container .task-status .task-list ul .draggable {
  margin-bottom: 8px;
  padding: 10px 12px;
  cursor: grab;
  background: #E0E7Ec;
  color: #000000;
  border-radius: 5px;
  width: 100%;
  text-align: left;
  display: inline-block;
  position: relative;
}
body .main-container .task-container .task-status .task-list ul .draggable.High {
  border-left: 3px solid #FF7E00;
}
body .main-container .task-container .task-status .task-list ul .draggable.Urgent {
  border-left: 3px solid #FF0000;
}
body .main-container .task-container .task-status .task-list ul .draggable.archived-task {
  background: #bbc7cc;
}
body .main-container .task-container .task-status .task-list ul .draggable .dropdown .dropdown-menu {
  top: -2px;
  right: 15px;
  border: 0;
  left: auto;
  background: #FFFFFF;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}
body .main-container .task-container .task-status .task-list ul .draggable .dropdown .dropdown-menu a i {
  width: 18px;
}
body .main-container .task-container .task-status .task-list ul .draggable .dropdown .dropdown-menu a:hover {
  background: #30474f;
  color: #FFFFFF;
}
body .main-container .task-container .task-status .task-list ul .draggable .dropdown .dropdown-menu a:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
body .main-container .task-container .task-status .task-list ul .draggable .dropdown .dropdown-menu a:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
body .main-container .task-container .task-status .task-list ul .draggable.task-running {
  background: #eefbff;
}
body .main-container .task-container .task-status .task-list ul .draggable:active {
  cursor: grabbing;
}
body .main-container .task-container .task-status .task-list ul .task-priority {
  display: flex;
  position: absolute;
  left: -11px;
  top: -6px;
}
body .main-container .task-container .task-status .task-list ul .task-priority i {
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 12px;
  border-radius: 22px;
  color: #FFFFFF;
  margin-right: 13px;
}
body .main-container .task-container .task-status .task-list ul .task-priority i.Normal {
  display: none;
}
body .main-container .task-container .task-status .task-list ul .task-priority i.High {
  background-color: #FF7E00;
}
body .main-container .task-container .task-status .task-list ul .task-priority i.Urgent {
  background-color: #FF0000;
}
body .main-container .task-container .task-status .task-list ul .task-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
}
body .main-container .task-container .task-status .task-list ul .task-title h4 {
  font-size: 16px;
  font-weight: normal;
  margin-right: 5px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.25;
  word-break: break-word;
  width: calc(100% - 55px);
}
body .main-container .task-container .task-status .task-list ul .task-title .dropdown button {
  padding: 0;
  height: 20px;
  font-size: 15px;
  width: 25px;
  border-radius: 0;
  float: right;
  text-align: right;
}
body .main-container .task-container .task-status .task-list ul .task-title .dropdown button:after {
  display: none;
}
body .main-container .task-container .task-status .task-list ul .task-title .dropdown .dropdown-menu {
  padding: 0;
}
body .main-container .task-container .task-status .task-list ul .task-title .dropdown .dropdown-menu .dropdown-item {
  padding: 0.35rem 0.75rem;
  font-size: 15px;
}
body .main-container .task-container .task-status .task-list ul .task-title .dropdown .dropdown-menu .dropdown-item i {
  margin-right: 5px;
}
body .main-container .task-container .task-status .task-list ul .task-description {
  font-size: 13px;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  line-height: 1.25;
  max-height: 52px;
}
body .main-container .task-container .task-status .task-list ul .task-description span,
body .main-container .task-container .task-status .task-list ul .task-description p {
  font-size: 13px !important;
  line-height: 15px;
}
body .main-container .task-container .task-status .task-list ul .task-description blockquote {
  font-size: 13px;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body .main-container .task-container .task-status .task-list ul .task-description ul {
  height: auto;
  min-height: 0;
  padding: 0;
}
body .main-container .task-container .task-status .task-list ul .task-description ul li {
  font-size: 13px;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.25;
}
body .main-container .task-container .task-status .task-list ul .task-description img {
  width: auto;
  max-width: 100%;
}
body .main-container .task-container .task-status .task-list ul .task-options {
  display: block;
  align-items: center;
  margin-top: 8px;
}
body .main-container .task-container .task-status .task-list ul .task-options .priority {
  float: left;
  background: rgba(0, 0, 0, 0.15);
  float: left;
  padding: 0 10px;
  line-height: 1;
  font-size: 13px;
  border-radius: 15px;
  color: #000000;
  font-weight: 600;
  height: 25px;
  line-height: 25px;
  margin-top: 5px;
  /*&.High {
      background: $amber;
  }

  &.Urgent {
      background: $red;
  }*/
}
body .main-container .task-container .task-status .task-list ul .task-options .persona {
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.14);
  text-align: center;
  border-radius: 15px;
  font-size: 14px;
  line-height: 28px;
  font-weight: bold;
  float: right;
  margin-top: 3px;
  text-transform: uppercase;
}
body .main-container .task-container .task-status .task-list ul .task-options .total-worklog {
  float: right;
  margin-right: 10px;
  font-size: 18px;
  line-height: 32px;
}
body .main-container .task-container .task-status .task-list ul .task-options .start-button,
body .main-container .task-container .task-status .task-list ul .task-options .stop-button {
  margin-right: 10px;
  float: left;
}
body .main-container .task-container .task-status .task-list ul .task-options .start-button button,
body .main-container .task-container .task-status .task-list ul .task-options .stop-button button {
  background: url("../images/timer.svg") no-repeat;
  height: 25px;
  color: #FFFFFF;
  padding: 0;
  width: 25px;
  text-align: center;
  line-height: 8px;
  width: 28px;
  height: 32px;
  background-size: contain;
}
body .main-container .task-container .task-status .task-list ul .task-options .start-button button i,
body .main-container .task-container .task-status .task-list ul .task-options .stop-button button i {
  font-size: 11px;
  color: #000000;
}
body .main-container .task-container .task-status .task-list ul .task-options .start-button button.btn-start,
body .main-container .task-container .task-status .task-list ul .task-options .stop-button button.btn-start {
  padding-left: 2px;
  padding-top: 6px;
}
body .main-container .task-container .task-status .task-list ul .task-options .start-button button.btn-stop,
body .main-container .task-container .task-status .task-list ul .task-options .stop-button button.btn-stop {
  padding-left: 0;
  padding-top: 5px;
}
body .file-list-item {
  display: flex;
  justify-content: space-between;
}
body .file-list-item .image-icon {
  width: 24px;
  height: 24px;
  overflow: hidden;
  margin-right: 10px;
}
body .file-list-item .image-icon img {
  width: 24px;
  height: auto;
}
body .preview-container {
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
}
body .preview-container .preview-wrapper button {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 21px;
  color: #FFFFFF;
}
body .task-image-list {
  padding: 0;
  margin: 0;
}
body .task-image-list li {
  list-style: none;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  background: #f2f3f5;
  padding: 10px;
}
body .task-image-list li:last-child {
  margin: 0;
}
body .project-list {
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}
body .project-list .cardlist {
  margin-bottom: 30px;
  cursor: pointer;
  position: relative;
  height: 275px;
  --offset-multiplier: 4px;
  transition: transform 0.6s ease;
  --translate: 0;
  transform: translate(var(--translate), var(--translate));
}
body .project-list .cardlist:hover {
  --offset-multiplier: 6px;
}
body .project-list .cardlist:hover {
  --translate: calc(-1px * (var(--cards) - 1));
  transition: transform 0.3s ease;
}
body .project-list .child {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  background: var(--color-dropzone);
  box-shadow: 0px 4px 8px var(--color-shadow-dark-opacity);
  border-radius: 6px;
  transition: inherit;
  --translate: calc(var(--offset) * var(--offset-multiplier));
  transform: translate(var(--translate), var(--translate));
  z-index: 5;
}
body .project-list .child.color-block-wrapper {
  padding: 10px;
}
body .project-list .child:nth-child(1) {
  --offset: 0;
  z-index: 4;
}
body .project-list .child:nth-child(2) {
  --offset: 1.25;
  z-index: 3;
}
body .project-list .child:nth-child(3) {
  --offset: 2.5;
  z-index: 2;
}
body .project-list .child:nth-child(4) {
  --offset: 3.75;
  z-index: 1;
}
body .calendar-view {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 56px;
  height: calc(100vh - 56px);
}
body .modal.show .modal-dialog {
  width: 80%;
  max-width: 1600px;
}
body .modal.show .modal-dialog .modal-content {
  border-radius: 10px;
}
body .modal.show .modal-dialog .modal-content .modal-header {
  border-bottom: 0;
  justify-content: center;
  padding-bottom: 0;
}
body .modal.show .modal-dialog .modal-content .modal-header .btn-cancel {
  background: #DDDDDD;
  border: 4px solid #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 0;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 1;
}
body .modal.show .modal-dialog .modal-content .modal-footer {
  border-top: 0;
  padding-top: 0;
  justify-content: center;
}
body .modal.show .modal-dialog .modal-content .modal-footer .btn-custom {
  font-weight: bold;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  width: 76px;
  height: 76px;
  border-radius: 50% !important;
  border: 0;
  background: var(--color-hightlight-text);
  font-size: 24px;
  border: 10px solid #FFFFFF;
  margin-bottom: -38px;
  color: #FFFFFF;
}
body .color-changer {
  float: left;
  width: 15px;
  height: 32px;
  margin-right: 6px;
  padding-top: 8px;
  cursor: pointer;
  display: block;
}
body .color-changer .color-selected {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: relative;
  border: 8px solid rgba(0, 0, 0, 0.15);
}
body .color-changer .color-selected:hover .color-list {
  display: block;
}
body .color-changer .color-list {
  background: #FFF;
  width: 176px;
  position: relative;
  z-index: 9;
  margin-left: 8px;
  margin-top: -16px;
  padding: 5px 8px;
  border-radius: 5px;
  display: none;
}
body .color-changer .color-list .color-group {
  margin: 0;
}
body .color-changer .color-list .color-group .btn {
  width: 16px;
  height: 16px;
}
body .color-changer .color-list .color-group .btn.active::before {
  font-size: 8px;
  height: 12px;
  line-height: 12px;
  width: 10px;
}
body .custom-modal {
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
}
body .custom-modal .modal-dialog {
  width: 80%;
  max-width: 1600px;
}
body .custom-modal .modal-dialog.small-modal {
  max-width: 600px;
}
body .custom-modal .modal-dialog .modal-content {
  border: 0;
  border-radius: 10px;
  max-width: 100% !important;
  color: #000000;
}
body .custom-modal .modal-dialog .modal-content .modal-header {
  background: #FFFFFF;
  border: 0;
  padding: 10px 15px;
  text-align: center;
  justify-content: center;
  position: relative;
  border-radius: 10px;
}
body .custom-modal .modal-dialog .modal-content .modal-header h4 {
  font-size: 21px;
}
body .custom-modal .modal-dialog .modal-content .modal-header .cancel-btn {
  background: #DDDDDD;
  border: 4px solid #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 0;
  display: block;
  position: absolute;
  right: -12px;
  top: -12px;
}
body .custom-modal .modal-dialog .modal-content .modal-body {
  padding: 0 1rem;
  max-height: calc(100vh - 215px);
  overflow: auto;
  overflow-x: hidden;
}
body .custom-modal .modal-dialog .modal-content .modal-body .confirm-message {
  padding: 20px 0;
  text-align: center;
  font-size: 18px;
}
body .custom-modal .modal-dialog .modal-content .modal-body textarea {
  min-height: 60px;
  height: 60px;
}
body .custom-modal .modal-dialog .modal-content .modal-footer {
  border: 0;
  width: 100%;
  text-align: center;
  display: flex;
  padding: 0;
  justify-content: center;
}
body .custom-modal .modal-dialog .modal-content .modal-footer .btn-custom {
  font-weight: bold;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  width: 76px;
  height: 76px;
  border-radius: 50% !important;
  border: 0;
  background: var(--color-hightlight-text);
  font-size: 24px;
  border: 10px solid #FFFFFF;
  margin-bottom: -38px;
  color: #FFFFFF;
}
body .file-upload {
  display: flex;
  align-items: center;
}
body .file-upload input {
  display: block;
  position: relative;
  width: 200px;
  margin: 5px 15px 5px 0;
  cursor: pointer;
  border: 0;
  height: 40px;
  border-radius: 5px;
  outline: 0;
}
body .file-upload input:hover:after {
  background: #5978f8;
}
body .file-upload input:after {
  transition: 200ms all ease;
  border-bottom: 3px solid rgba(0, 0, 0, 0.2);
  background: var(--color-header);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 16px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "Upload Files";
  line-height: 40px;
  border-radius: 5px;
}
body .color-group {
  margin-left: 15px;
}
body .color-group .btn {
  border-radius: 0;
  margin-right: 10px;
  height: 28px;
  width: 28px;
  font-size: 0;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 20px !important;
}
body .color-group .btn:nth-child(1) {
  background-color: #dbf6fd;
}
body .color-group .btn:nth-child(2) {
  background-color: #fee4cb;
}
body .color-group .btn:nth-child(3) {
  background-color: #e9e7fd;
}
body .color-group .btn:nth-child(4) {
  background-color: #ffd3e2;
}
body .color-group .btn:nth-child(5) {
  background-color: #c8f7dc;
}
body .color-group .btn:nth-child(6) {
  background-color: #d5deff;
}
body .color-group .btn:nth-child(7) {
  background-color: #FFFA97;
}
body .color-group .btn:nth-child(8) {
  background-color: #E0E7Ec;
}
body .color-group .btn.active {
  border-color: rgba(0, 0, 0, 0) !important;
  z-index: 0;
}
body .color-group .btn.active:nth-child(1) {
  background-color: #dbf6fd;
}
body .color-group .btn.active:nth-child(2) {
  background-color: #fee4cb;
}
body .color-group .btn.active:nth-child(3) {
  background-color: #e9e7fd;
}
body .color-group .btn.active:nth-child(4) {
  background-color: #ffd3e2;
}
body .color-group .btn.active:nth-child(5) {
  background-color: #c8f7dc;
}
body .color-group .btn.active:nth-child(6) {
  background-color: #d5deff;
}
body .color-group .btn.active:nth-child(7) {
  background-color: #FFFA97;
}
body .color-group .btn.active:nth-child(8) {
  background-color: #E0E7Ec;
}
body .color-group .btn.active::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
  text-indent: 0;
  font-size: 14px;
  height: 22px;
  line-height: 22px;
  width: 22px;
  padding: 0;
  color: #000000;
}
body .active-project-name {
  font-size: 1rem;
  font-weight: bold;
}
body .create-new-project-block {
  height: calc(100vh - 57px);
  padding: 50px 100px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: calc(100vw - 250px);
}
body .primary-button {
  margin: 0;
  list-style: none;
  background: var(--color-header);
  border-color: var(--color-header);
  color: #FFFFFF;
}
body .view-edit-task-form {
  padding: 20px;
  width: 100%;
}
body .view-edit-task-form .card {
  padding: 0;
  border: 0;
}
body .view-edit-task-form .card .card-body {
  padding: 0;
}
body .view-edit-task-form p {
  margin-bottom: 10px;
}
body .view-edit-task-form p strong {
  min-width: 200px;
}
body .view-edit-task-form .text-left {
  margin: 0;
}
body .view-edit-task-form .text-left h5 {
  margin: 0;
}
body .view-edit-task-form .text-right {
  margin: 0;
  justify-content: flex-end;
}
body .view-edit-task-form .text-right h5 {
  margin: 0;
}
body .view-edit-task-form .custom-table {
  margin-top: 15px;
}
body .view-edit-task-form .custom-table th {
  background: var(--color-header);
  color: #FFFFFF;
  padding: 0.5rem;
}
body .view-edit-task-form .custom-table tr {
  padding: 0.5rem;
}
body .save-input-on-top {
  /*        position: absolute;
  right: 80px;
  top: -40px;*/
}
body .work-logs {
  background: #F2F3F5;
  padding: 10px;
  margin-bottom: 10px;
}
body .rz-event-content {
  color: #000000;
}
body .bg-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 56px;
  bottom: 0;
  height: calc(100vh - 56px);
  overflow: auto;
  overflow-x: hidden;
}
body .bg-image::-webkit-scrollbar {
  width: 14px;
}
body .bg-image::-webkit-scrollbar-track {
  background: #eaeaf1;
}
body .bg-image::-webkit-scrollbar-thumb {
  background-color: darkgrey;
}
body .bg-image .project-list {
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
body .bg-image .project-list::-webkit-scrollbar {
  display: none;
}
body .bg-image .project-list .project-item {
  margin: 0 18px 18px 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0, 1);
  background: rgb(242, 242, 242);
  border: 1px solid rgb(220, 220, 220);
  width: 275px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 13px 10px -7px rgba(0, 0, 0, 0.1);
  padding: 0;
  border-radius: 5px;
}
body .bg-image .project-list .project-item .project-chart {
  height: 275px;
  width: 260px;
  padding-left: 35px;
  padding-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .bg-image .project-list .project-item .project-info {
  color: var(--color-header);
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
}
body .bg-image .project-list .project-item .project-info h5 {
  margin: 0;
  line-height: 24px;
  word-break: break-all;
  font-size: 16px;
}
body .bg-image .project-list .project-item .project-info .fa-eye {
  margin-right: 10px;
}
body .bg-image .project-list .project-item .project-info i {
  font-size: 20px;
  line-height: 24px;
}
body .bg-image .project-list .project-item .project-info p {
  text-align: justify;
  margin: 0;
}
body .table-view-accordion .card {
  border: 0;
}
body .collection-block {
  margin-bottom: 10px;
}
body .collection-block .card-header {
  padding: 0.5rem 0.75rem;
  border: 1px solid #DDDDDD;
}
body .collection-block .card-header .collection-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .collection-block .card-header .collection-block-header .collection-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
body .collection-block .card-header .collection-block-header .collection-toggle h5 {
  margin: 0 0 0 15px;
  padding: 0;
}
body .collection-block .card-body {
  padding: 0;
  border: 1px solid #DDDDDD;
}
body .collection-block .card-body .table-view {
  display: flex;
  border-left-width: 3px;
  border-left-style: solid;
  padding: 10px;
  border-bottom: 1px solid #EDEDED;
}
body .collection-block .card-body .table-view .task-name {
  width: calc(100% - 440px);
  margin-right: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body .collection-block .card-body .table-view .task-name a {
  cursor: grab;
}
body .collection-block .card-body .table-view .task-assignee {
  width: 200px;
  overflow: hidden;
}
body .collection-block .card-body .table-view .task-progress {
  width: 120px;
}
body .collection-block .card-body .table-view .task-priority {
  width: 120px;
}
body .custom-members-table .superior-row {
  background: var(--color-header);
  color: #FFFFFF;
}
body .blazored-typeahead {
  width: calc(100% - 42px);
}
body .notification .notification-icon {
  color: #FFFFFF;
}
body .notification .notification-icon:hover {
  color: #FFFFFF;
}
body .notification .notification-icon:active {
  outline: none;
}
body .notification .notification-icon .badge {
  background: red;
  color: #FFFFFF;
  position: absolute;
}
body .notification .notification-icon:after {
  display: none;
}
body .notification .dropdown-menu {
  color: var(--color-default-text);
  padding: 0;
  width: 350px;
  left: auto;
  right: 0;
}
body .notification .dropdown-menu .dropdown-item {
  white-space: unset;
}
body .notification .dropdown-menu .notification-block {
  color: var(--color-default-text);
  padding: 5px 15px;
}
body .notification .dropdown-menu .notification-block .notification-item {
  display: flex;
}
body .notification .dropdown-menu .notification-block .notification-item i {
  margin-right: 6px;
  text-align: center;
  width: 20px;
}
body .overflow-unset {
  overflow: unset !important;
}
body .accept-project {
  height: 30px;
  padding: 3px 10px;
  text-align: center;
  font-size: 14px;
  display: flex;
  align-items: center;
}
body .accept-project i {
  font-size: 15px !important;
  line-height: 24px;
  margin-right: 6px;
}
body .toggle-sidebar button:focus, body .toggle-sidebar button:active {
  outline: none;
  border: 0;
  box-shadow: 0 0 0;
}
body .time-error {
  color: red;
}
body .sidebar-collapsed {
  width: 100%;
  overflow: hidden;
}
body .sidebar-collapsed .sidebar {
  width: 50px;
  box-shadow: 0 0 0;
}
body .sidebar-collapsed .sidebar .add-project {
  display: none;
}
body .sidebar-collapsed .sidebar .project-list {
  opacity: 0;
  display: none;
}
body .sidebar-collapsed .main-container, body .sidebar-collapsed .create-new-project-block {
  width: calc(100vw - 50px);
}
body .empty-zone {
  padding: 15px;
  border: 1px dashed #CCCCCC;
  position: relative;
}
body .empty-zone::before {
  content: "Your collection is empty";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  font-size: 13px;
  align-items: center;
  display: flex;
  justify-content: center;
  color: #777777;
}
body .version {
  color: #FFFFFF;
  padding: 0 0 0 10px;
}
body .task-view-wrapper {
  padding-bottom: 15px;
}
body .task-view-wrapper .task-option-label {
  margin-bottom: 10px;
  font-weight: bold;
}
body .task-view-wrapper .task-description {
  font-weight: bold;
}
body .divpriority {
  float: left;
}
body .rz-html-editor-dialog-item:nth-child(4) {
  display: none;
}
body .cursor-pointer {
  cursor: pointer;
}
body .mobile-view .task-progress-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  overflow-x: scroll;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: visible;
}
body .mobile-view .task-progress-bar::-webkit-scrollbar {
  display: none;
}
body .mobile-view .task-progress-bar li {
  width: fit-content;
  word-break: keep-all;
  flex-shrink: 0;
  margin-right: 6px;
}
body .mobile-view .task-progress-bar li:last-child {
  margin: 0;
}
body .mobile-view .task-container ul {
  list-style: none;
}
body .mobile-view .task-container ul li {
  margin-bottom: 8px;
  padding: 10px 12px;
  background: #E0E7Ec;
  color: #000000;
  border-radius: 5px;
  width: 100%;
  text-align: left;
  display: inline-block;
  position: relative;
}
body .mobile-view .task-container ul .task-priority {
  display: flex;
  position: absolute;
  left: -11px;
  top: -6px;
}
body .mobile-view .task-container ul .task-priority i {
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 12px;
  border-radius: 22px;
  color: #FFFFFF;
  margin-right: 13px;
}
body .mobile-view .task-container ul .task-priority i.Normal {
  display: none;
}
body .mobile-view .task-container ul .task-priority i.High {
  background-color: #FF7E00;
}
body .mobile-view .task-container ul .task-priority i.Urgent {
  background-color: #FF0000;
}
body .mobile-view .task-container ul .task-options {
  display: block;
  align-items: center;
  margin-top: 8px;
}
body .mobile-view .task-container ul .task-options .priority {
  float: left;
  background: rgba(0, 0, 0, 0.15);
  float: left;
  padding: 0 10px;
  line-height: 1;
  font-size: 13px;
  border-radius: 15px;
  color: #000000;
  font-weight: 600;
  height: 25px;
  line-height: 25px;
  margin-top: 5px;
}
body .mobile-view .task-container ul .task-options .persona {
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.14);
  text-align: center;
  border-radius: 15px;
  font-size: 14px;
  line-height: 28px;
  font-weight: bold;
  float: right;
  margin-top: 3px;
  text-transform: uppercase;
}
body .mobile-view .task-container ul .task-options .total-worklog {
  float: right;
  margin-right: 10px;
  font-size: 18px;
  line-height: 32px;
}
body .mobile-view .task-container ul .task-options .start-button,
body .mobile-view .task-container ul .task-options .stop-button {
  margin-right: 10px;
  float: left;
}
body .mobile-view .task-container ul .task-options .start-button button,
body .mobile-view .task-container ul .task-options .stop-button button {
  background: url("../images/timer.svg") no-repeat;
  height: 25px;
  color: #FFFFFF;
  padding: 0;
  width: 25px;
  text-align: center;
  line-height: 8px;
  width: 28px;
  height: 32px;
  background-size: contain;
}
body .mobile-view .task-container ul .task-options .start-button button i,
body .mobile-view .task-container ul .task-options .stop-button button i {
  font-size: 11px;
  color: #000000;
}
body .mobile-view .task-container ul .task-options .start-button button.btn-start,
body .mobile-view .task-container ul .task-options .stop-button button.btn-start {
  padding-left: 2px;
  padding-top: 4px;
}
body .mobile-view .task-container ul .task-options .start-button button.btn-stop,
body .mobile-view .task-container ul .task-options .stop-button button.btn-stop {
  padding-left: 0;
  padding-top: 5px;
}
body .mobile-view .task-container .task-title {
  display: flex;
  margin-bottom: 2px;
}
body .mobile-view .task-container .task-title h4 {
  font-size: 16px;
  font-weight: normal;
  margin-right: 5px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.25;
  word-break: break-word;
}
body .mobile-view .task-container .task-description {
  font-size: 13px;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  max-height: 52px;
  text-align: justify;
}
body .mobile-view .color-group {
  margin: 0;
}
body .mobile-view .color-group .btn {
  width: 22px;
  height: 22px;
}
body .mobile-view .color-group .btn.active::before {
  font-size: 12px;
  height: 20px;
  line-height: 18px;
  width: 20px;
}
body .mobile-view label.btn.btn-secondary {
  height: 22px;
  width: 22px;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body .main-container .custom-search {
    width: 85px;
  }
  body .sidebar {
    width: 180px;
  }
  body .main-container {
    width: calc(100vw - 180px);
  }
  body .main-container .color-group .btn {
    margin-right: 3px;
    height: 22px;
    width: 22px;
  }
  body .main-container .btn.reset-colors {
    width: 22px;
    height: 22px;
    line-height: 22px;
    margin-left: 3px;
  }
  body .main-container .task-container .task-status .task-list ul .task-title .dropdown .dropdown-menu .dropdown-item {
    font-size: 12px;
  }
  .dropdown-menu {
    min-width: 1rem;
  }
}
.project-list-table .table tr {
  padding: 5px 0;
}
.project-list-table .table tr th {
  background: var(--color-header);
  color: var(--color-background);
}
.project-list-table .table tr td {
  border-bottom: 1px solid #dee2e6;
}
.project-list-table .table tr:nth-child(even) {
  background: var(--color-secondary);
}

.project-list-filter .priority-list {
  display: flex;
  align-items: center;
  border: 1px solid #DDDDDD;
  border-radius: 10px;
}
.project-list-filter .priority-list h6 {
  background: #EDEDED;
  margin: 0;
  padding: 10px 20px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  font-weight: bold;
}
.project-list-filter .priority-list .checkbox-list {
  padding: 0 10px;
  margin: 0;
  list-style: none;
  display: flex;
}
.project-list-filter .priority-list .checkbox-list li {
  margin-right: 15px;
}
.project-list-filter .priority-list .checkbox-list li label {
  margin: 0 0 0 2px;
}
.project-list-filter .filter {
  margin: 5px;
  width: 160px;
  display: inline-block;
  float: right;
}
.project-list-filter .filter .custom-select {
  font-size: 13px;
}

.negative-time {
  color: red;
}
.negative-time h5 {
  color: red !important;
}

.custom-roleselect {
  min-height: 150px;
}
.custom-roleselect option {
  padding: 2px 0;
}

.task-tags {
  margin: 10px 0;
}
.task-tags .tag {
  padding: 5px 10px 6px;
  background: rgba(0, 0, 0, 0.1);
  margin-right: 5px;
  border-radius: 15px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 5px;
}

.custom-badge {
  width: 100px;
}
.custom-badge.Critical, .custom-badge.Danger {
  background: red;
}
.custom-badge.UAT {
  background: orange;
}
.custom-badge.Closed {
  background: deepskyblue;
}
.custom-badge.OutOfContract {
  background: grey;
}

.project-box-wrapper {
  width: calc(25% - 20px);
  max-width: 360px;
  margin: 0 20px 20px 0;
  display: inline-block;
}
.project-box-wrapper .project-box {
  background: rgb(242, 242, 242);
  border: 1px solid rgb(220, 220, 220);
  border-radius: 12px;
  padding: 15px;
}
.project-box-wrapper .project-box.default-red {
  background: rgb(254, 242, 242);
  border: 1px solid rgb(254, 202, 202);
}
.project-box-wrapper .project-box.default-amber {
  background: rgb(255, 247, 237);
  border: 1px solid rgb(254, 215, 170);
}
.project-box-wrapper .project-box.default-blue {
  background: rgb(239, 246, 255);
  border: 1px solid rgb(191, 219, 254);
}
.project-box-wrapper .project-box.default-green {
  background: rgb(240, 253, 244);
  border: 1px solid rgb(187, 247, 208);
}
.project-box-wrapper .project-box .project-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.project-box-wrapper .project-box .project-box-content-header {
  margin-bottom: 10px;
}
.project-box-wrapper .project-box .project-box-content-header .box-content-header {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin: 0;
}
.project-box-wrapper .project-box .box-progress-header {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  margin: 0;
}
.project-box-wrapper .project-box .box-progress-bar {
  width: 100%;
  height: 4px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #fff;
  margin: 8px 0;
}
.project-box-wrapper .project-box .box-progress-bar .box-progress {
  display: block;
  height: 4px;
  border-radius: 6px;
  background-color: var(--color-header);
}
.project-box-wrapper .project-box .box-progress-bar .box-progress.default-red {
  background: rgb(220, 38, 38);
}
.project-box-wrapper .project-box .box-progress-bar .box-progress.default-amber {
  background: rgb(234, 88, 12);
}
.project-box-wrapper .project-box .box-progress-bar .box-progress.default-blue {
  background: rgb(37, 99, 235);
}
.project-box-wrapper .project-box .box-progress-bar .box-progress.default-green {
  background: rgb(122, 163, 74);
}

.card-switcher {
  float: right;
  margin-left: 20px;
  font-size: 20px;
}
.card-switcher i {
  margin: 0 10px;
}

.Table-View .fa-bars {
  color: #AAAAAA;
}
.Table-View .fa-th-large {
  color: var(--color-header);
}

.Card-View .fa-bars {
  color: var(--color-header);
}
.Card-View .fa-th-large {
  color: #AAAAAA;
}

.table.Table-View td span {
  display: none;
}
.table.Card-View th {
  display: none;
}
.table.Card-View tbody {
  display: flex;
  flex-wrap: wrap;
}
.table.Card-View tbody tr {
  display: flex;
  flex-direction: column;
  max-width: 320px;
  width: calc(25% - 10px);
  margin: 5px;
  background: rgb(239, 246, 255);
  border: 1px solid rgb(191, 219, 254);
  border-radius: 10px;
}
.table.Card-View tbody tr td {
  border: 0;
  padding: 5px 15px;
}
.table.Card-View tbody tr td span {
  min-width: 110px;
  display: inline-block;
}
.table.Card-View tbody tr td:first-child {
  font-weight: bold;
  font-size: 16px;
  word-break: break-all;
}

.custom-modal .title-block {
  width: 98%;
  margin-bottom: 10px;
}

.custom-search-project {
  height: 40px;
  border-radius: 20px;
  width: calc(100% - 78px);
}

.ganttchart {
  position: relative;
  overflow-x: scroll;
}
.ganttchart svg {
  width: 100%;
}
.ganttchart #tag {
  color: white;
  background: #242424;
  width: 150px;
  position: absolute;
  display: none;
  padding: 3px 6px;
  margin-left: -80px;
  font-size: 11px;
  border-radius: 5px;
}
.ganttchart #tag::before {
  border: solid transparent;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  width: 0;
  border-width: 10px;
  border-bottom-color: #242424;
  top: -20px;
}
.ganttchart .grid .tick line {
  stroke: #DDDDDD;
}
.ganttchart .grid .domain {
  stroke: #DDDDDD;
}

.container-title {
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.container-title .badge-primary {
  background: var(--color-header);
  margin-left: 5px;
}

body .main-container .color-minimised {
  padding: 5px 0;
  margin-right: 5px;
}
body .main-container .color-minimised .color-group {
  margin-left: 5px;
}
body .main-container .color-minimised .color-group .btn {
  width: 20px;
  height: 20px;
}

.task-title span, .task-type span {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 18px;
  height: 18px;
  color: #FFFFFF;
  border-radius: 4px;
  font-size: 11px;
  margin-right: 8px;
  display: inline-block;
  padding: 2px;
  text-align: center;
  float: left;
  margin-top: 1px;
}
.task-title span.UserStory, .task-type span.UserStory {
  background: #45cb44;
}
.task-title span.UserStory:before, .task-type span.UserStory:before {
  content: "\f007";
}
.task-title span.Ticket, .task-type span.Ticket {
  background: #f6a530;
}
.task-title span.Ticket:before, .task-type span.Ticket:before {
  content: "\f02e";
}
.task-title span.Bug, .task-type span.Bug {
  background: #f13838;
}
.task-title span.Bug:before, .task-type span.Bug:before {
  content: "\f188";
}
.task-title span.Task, .task-title span.no-type, .task-type span.Task, .task-type span.no-type {
  background: #4BADE8;
}
.task-title span.Task:before, .task-title span.no-type:before, .task-type span.Task:before, .task-type span.no-type:before {
  content: "\f00c";
}
.task-title span.Epic, .task-type span.Epic {
  background: #904EE2;
}
.task-title span.Epic:before, .task-type span.Epic:before {
  content: "\f005";
}

.mobile-footer {
  background: var(--color-header) !important;
  padding-bottom: 10px;
}
.mobile-footer li a {
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobile-footer li a:focus, .mobile-footer li a:active {
  text-decoration: none;
}
.mobile-footer li a i {
  margin-bottom: 5px;
}

#mySidenav {
  width: 80%;
}

.mobile-view {
  padding: 15px 0;
}
.mobile-view .nav-link {
  border-radius: 8px;
  background: var(--color-secondary);
  margin-right: 5px;
  padding: 10px 15px;
}
@media screen and (max-device-width: 576px) {
  body .sidenav {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  }
  body .sidenav a {
    font-size: 16px;
    padding: 15px 25px;
  }
  body .teams-header {
    background: var(--color-header);
    height: 40px;
  }
  body .teams-header .sidenav {
    top: 40px;
  }
  body .worklog-modal .modal-dialog {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
  body .worklog-modal .modal-dialog .modal-content .modal-body textarea {
    height: 120px;
  }
  body .task-modal.show .modal-dialog {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
  body .task-modal.show .modal-dialog .modal-content {
    height: calc(100vh - 30px);
  }
  body .task-modal.show .modal-dialog .modal-content .modal-body {
    max-height: calc(100vh - 135px);
  }
  body .task-modal.show .modal-dialog .modal-content .modal-body .rz-html-editor-toolbar {
    display: none;
  }
  body .task-modal.show .modal-dialog .modal-content .modal-body .blazored-typeahead {
    width: 100%;
  }
  body .task-modal.show .modal-dialog .modal-content .modal-body .file-upload {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  body .task-modal.show .modal-dialog .modal-content .modal-body .file-upload input {
    width: 100%;
    margin: 5px 0;
  }
  body .rz-view-header .rz-slot-hour-header {
    width: 50px;
  }
  body .bg-image .projectrow {
    margin-bottom: 0 !important;
  }
  body .bg-image .projectrow .project-list {
    margin: 0 !important;
    width: 100% !important;
    padding: 0 !important;
  }
  body .bg-image .projectrow .project-list.project-list-mobile {
    display: block;
    height: calc(100vh - 116px);
    overflow-y: scroll;
  }
  body .bg-image .projectrow .project-list .project-item {
    margin: 0 0 2px !important;
    border: 0;
    box-shadow: 0 0 0;
    border-radius: 0;
    width: 100% !important;
    height: 60px !important;
    align-items: flex-start;
    padding: 0 15px;
    background: #F2F5FF;
  }
  body .bg-image .projectrow .project-list .project-item .project-info {
    justify-content: flex-start !important;
    display: flex;
    align-items: center;
    justify-content: space-between !important;
  }
  body .bg-image .projectrow .project-list .project-item i {
    color: var(--color-header);
    font-size: 16px;
  }
  body .bg-image .collection-list {
    margin: 0 !important;
    width: 100% !important;
    padding: 0 !important;
  }
  body .bg-image .collection-list .collection-item {
    margin: 0 0 2px !important;
    border: 0;
    box-shadow: 0 0 0;
    border-radius: 0;
    width: 100% !important;
    height: 60px !important;
    align-items: flex-start;
    padding: 0 15px;
    background: #F2F5FF;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  body .bg-image .collection-list .collection-item h5 {
    margin: 0;
    line-height: 24px;
    word-break: break-all;
    font-size: 16px;
    color: var(--color-header);
  }
  body .bg-image .collection-list .collection-item i {
    color: var(--color-header);
    font-size: 16px;
  }
  body .blazored-toast {
    margin: 10px;
    width: calc(100% - 20px);
  }
  body .project-model .project-progress {
    display: none;
  }
}
.mobile-timer {
  display: flex;
  justify-content: space-between;
  margin: 0;
  align-items: center;
}
.mobile-timer h5, .mobile-timer .running-task-name {
  font-size: 16px;
  color: #FFFFFF !important;
}
.mobile-timer .timer-container {
  display: flex;
  align-items: center;
}
.mobile-timer .timer-container .btn-stop {
  background: url(../images/timer-white.svg) no-repeat;
  color: #FFFFFF !important;
  padding: 0;
  text-align: center;
  line-height: 8px;
  width: 28px;
  height: 32px;
  background-size: contain;
  font-size: 13px;
  padding-top: 5px;
  margin: -5px 0 0 10px;
}
.mobile-timer .timer-container .btn-stop i {
  color: #FFFFFF;
}

.create-task {
  padding: 15px 15px 75px;
  width: 100%;
}
.create-task .desc {
  min-height: 200px;
  margin-bottom: 8px;
}
.create-task .form-group {
  margin-bottom: 0.75rem;
}
.create-task label {
  font-size: 13px;
}
.create-task .custom-select {
  font-size: 13px;
}
.create-task p {
  margin: 0;
  font-size: 13px;
}
.create-task button {
  font-size: 13px;
}

.mobile-header-center {
  width: calc(100% - 100px);
}

.close-task {
  float: right;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  border-radius: 20px;
  margin-top: 2px;
}

.mobile-view .color-changer .color-list {
  width: 206px;
}

.no-data {
  padding: 20px;
  border: 1px solid #dee2e6;
  text-align: center;
  width: 100%;
}

.ellipsis-icon {
  width: 20px;
}

.main-menu-list li {
  height: 56px;
  line-height: 56px;
  position: relative;
  margin: 0 5px;
}
.main-menu-list li.active a {
  font-weight: bold;
}
.main-menu-list li.active:before {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #FFFFFF;
  content: "";
  bottom: 0;
  left: 0;
}
.main-menu-list li:hover:before {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #FFFFFF;
  content: "";
  bottom: 0;
  left: 0;
}

body .main-container .user-latest-tasks .user-latest-tasks-list li.active {
  background: #d5deff;
}
body .main-container .user-latest-tasks .user-latest-tasks-list li.active .information {
  width: calc(100% - 120px);
}
body .main-container .user-latest-tasks .user-latest-tasks-list li.active .action {
  width: 120px;
}
body .main-container .user-latest-tasks .user-latest-tasks-list li.active .action .timer-container {
  display: flex;
  align-items: center;
}
body .main-container .user-latest-tasks .user-latest-tasks-list li.active .action .timer-container h5 {
  margin: 0 8px 0 0;
  width: 90px;
}

.countdown-input input {
  width: 100px;
  margin-right: 10px;
  text-align: center;
}

.countdown-value h5 {
  color: #FFFFFF;
  margin: 0 10px 0 0;
}

.report-chart {
  background: #FFFFFF;
  border: 1px solid rgb(240, 240, 240);
  position: relative;
  box-shadow: 0px 13px 10px -7px rgba(0, 0, 0, 0.1);
  padding: 20px 10px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: center;
}

@media only screen and (min-width: 1280px) and (max-width: 1366px) {
  body .main-container .card-filter.card-filter-dropdown, body .main-container .custom-search {
    width: 100px;
  }
}
.custom-dropdown-container {
  margin-top: 10px;
}
.custom-dropdown-container .custom-dropdown-search {
  width: 100%;
  margin-bottom: 10px;
}
.custom-dropdown-container .custom-dropdown-search .blazored-typeahead {
  width: 100%;
}
.custom-dropdown-container .dropdown-selection {
  border: 1px solid #DDDDDD;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
}
.custom-dropdown-container .dropdown-selection .accordion-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 15px;
  cursor: pointer;
  font-size: 16px;
}
.custom-dropdown-container .dropdown-selection .accordion-item.expanded {
  background-color: #F1F2F3;
}
.custom-dropdown-container .dropdown-selection .accordion-content {
  padding-left: 20px;
}

#instruct-page {
  height: calc(100vh - 57px);
  padding: 0;
}
#instruct-page .instruct-container {
  height: 100%;
}
#instruct-page .instruct-container .folder-collections {
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #DDDDDD;
  padding: 50px 15px 15px;
  float: left;
  background: #F2F3F5;
  overflow: auto;
}
#instruct-page .instruct-container .folder-collections::-webkit-scrollbar {
  width: 10px;
}
#instruct-page .instruct-container .folder-collections::-webkit-scrollbar-track {
  background: var(--color-secondary);
}
#instruct-page .instruct-container .folder-collections::-webkit-scrollbar-thumb {
  background-color: var(--color-header);
}
#instruct-page .instruct-container .folder-collections h5 {
  font-weight: bold;
}
#instruct-page .instruct-container .folder-collections p {
  color: #7a7a7a;
}
#instruct-page .instruct-container .folder-collections ul {
  padding: 10px 0 0 0;
  margin: 0;
  list-style: none;
  width: 100%;
}
#instruct-page .instruct-container .folder-collections ul li {
  margin-bottom: 5px;
}
#instruct-page .instruct-container .folder-collections ul li p {
  display: flex;
  border: none;
  color: #000000;
  font-size: 16px;
  padding: 12px 15px;
  text-decoration: none;
  border-radius: 6px;
  margin-bottom: 0;
  cursor: pointer;
  transition: all ease 0.3s;
  background: transparent;
  justify-content: space-between;
  position: relative;
}
#instruct-page .instruct-container .folder-collections ul li p:hover .collection-options {
  display: block;
}
#instruct-page .instruct-container .folder-collections ul li p.active {
  background-color: #405189;
  color: #FFFFFF;
}
#instruct-page .instruct-container .folder-collections ul li p.active .collection-options {
  display: block;
}
#instruct-page .instruct-container .folder-collections ul li p.active .collection-options .options-toggle .dropdown-toggle {
  color: #FFFFFF;
}
#instruct-page .instruct-container .folder-collections ul li p .collection-title {
  word-break: break-all;
  padding-right: 15px;
}
#instruct-page .instruct-container .folder-collections ul li p .collection-options {
  display: none;
  width: 24px;
  height: 24px;
  text-align: center;
  z-index: 1;
}
#instruct-page .instruct-container .folder-collections ul li p .collection-options button {
  padding: 0;
  margin: 0;
}
#instruct-page .instruct-container .folder-collections ul li p .collection-options .options-toggle .dropdown-toggle {
  line-height: 1;
}
#instruct-page .instruct-container .folder-collections ul li p .collection-options .options-toggle .dropdown-toggle::after {
  display: none;
}
#instruct-page .instruct-container .folder-collections ul li p .collection-options .options-toggle button i {
  margin-right: 0;
}
#instruct-page .instruct-container .folder-collections ul li p .collection-options .options-toggle .dropdown-menu {
  left: auto;
  right: 0;
  padding: 0;
  margin: 0;
}
#instruct-page .instruct-container .folder-collections ul li p .collection-options .options-toggle .dropdown-menu .dropdown-divider {
  margin: 0;
}
#instruct-page .instruct-container .folder-collections ul li p .collection-options .options-toggle .dropdown-menu .dropdown-item {
  padding: 5px 10px;
  font-size: 14px;
}
#instruct-page .instruct-container .folder-collections ul li p .collection-options .options-toggle .dropdown-menu .dropdown-item i {
  margin-right: 10px;
}
#instruct-page .instruct-container .folder-collections ul li p .collection-options .options-toggle .dropdown-menu a {
  color: var(--color-header);
  display: block;
}
#instruct-page .instruct-container .folder-collections ul li p .collection-options .options-toggle .dropdown-menu a:hover {
  text-decoration: none;
}
#instruct-page .instruct-container .folder-collections ul li .progress {
  height: 6px;
  margin: 10px 10px 5px;
}
#instruct-page .instruct-container .folder-collections ul li .progress .progress-bar {
  background-color: #405189;
}
#instruct-page .instruct-container .folder-collections ul li button {
  margin-top: 15px;
  border: 0;
  color: #405189;
  font-size: 16px;
  background: transparent;
}
#instruct-page .instruct-container .folder-collections ul li button i {
  margin-right: 10px;
}
#instruct-page .instruct-container .instruct-results {
  width: calc(100% - 300px);
  float: left;
}
#instruct-page .instruct-container .instruct-results .progress-container {
  width: 100%;
  height: calc(100vh - 60px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 16px;
}
#instruct-page .instruct-container .instruct-results .progress-container .progress {
  width: 280px;
  height: 8px;
  margin: 10px 10px 10px;
}
#instruct-page .instruct-container .instruct-results .progress-container .progress .progress-bar {
  background-color: #405189;
}
#instruct-page .instruct-container .instruct-results .progress-container h5 {
  font-weight: bold;
}
#instruct-page .instruct-container .instruct-results .progress-container p {
  color: #7a7a7a;
}
#instruct-page .instruct-container .instruct-results .progress-container button {
  background: #405189;
  color: #FFFFFF;
  border-radius: 6px;
}
#instruct-page .instruct-container .instruct-results #search-site {
  max-width: 100%;
}
#instruct-page .instruct-container .instruct-results #search-site .search-container {
  max-width: 960px;
  margin: 0 auto;
  justify-content: space-between;
}
#instruct-page .instruct-container .instruct-results #search-site .search-container .search-header {
  padding-top: 120px;
}
#instruct-page .instruct-container .instruct-results #search-site .search-container .search-header h2 {
  color: #C2C2C2;
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 30px;
}
#instruct-page .instruct-container .instruct-results #search-site .search-container .search-header ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
#instruct-page .instruct-container .instruct-results #search-site .search-container .search-header ul li {
  margin-right: 10px;
  border-radius: 8px;
  border: 1px solid #DDDDDD;
  padding: 15px;
  width: 100%;
}
#instruct-page .instruct-container .instruct-results #search-site .search-container .search-header ul li h6 {
  font-weight: 600;
  color: #405189;
  margin-bottom: 5px;
}
#instruct-page .instruct-container .instruct-results #search-site .search-container .search-header ul li p {
  margin: 0;
}
#instruct-page .instruct-container .instruct-results #search-site .search-container .timanage-logo {
  background-color: #FFFFFF !important;
}
#instruct-page .instruct-container .instruct-results #search-site .search-container .ai-search-wrapper {
  background: #f2f3f5;
  padding: 5px 15px;
  border-radius: 30px;
}
#instruct-page .instruct-container .instruct-results #search-site .search-container .ai-search-wrapper textarea {
  min-height: 40px !important;
  border-radius: 20px;
  border: 0;
  background: transparent;
  padding-top: 8px;
  resize: none;
}
#instruct-page .instruct-container .instruct-results #search-site .search-container .ai-search-wrapper textarea:focus {
  outline: none;
  box-shadow: 0 0 0;
}
#instruct-page .instruct-container .instruct-results #search-site .search-container .ai-search-wrapper .btn-primary {
  background: transparent;
  border-color: transparent;
  height: 40px;
  max-height: 40px;
  padding: 5px 10px;
  font-size: 18px;
  color: #000000;
}
#instruct-page .instruct-container .instruct-results #search-site .search-container .ai-search-wrapper .btn-primary.disabled {
  opacity: 0.25;
}
#instruct-page .instruct-container .instruct-results #search-site .worklog-input-row {
  height: calc(100% - 100px);
}
#instruct-page .instruct-container .instruct-results #search-site .search-answer {
  width: 100%;
}
#instruct-page .instruct-container .instruct-results #search-site .search-answer p {
  margin: 5px 0;
}
#instruct-page .instruct-container .instruct-results #search-site #search-history {
  min-height: 100%;
  max-height: 100%;
}
#instruct-page .instruct-container .instruct-results #search-site #search-history::-webkit-scrollbar {
  width: 12px;
}
#instruct-page .instruct-container .instruct-results #search-site #search-history::-webkit-scrollbar-track {
  background: transparent;
}
#instruct-page .instruct-container .instruct-results #search-site #search-history::-webkit-scrollbar-thumb {
  background-color: #727272;
}
#instruct-page .instruct-container .instruct-results #search-site #pdf-container, #instruct-page .instruct-container .instruct-results #search-site #viewer {
  height: calc(100vh - 300px);
  max-height: calc(100vh - 300px);
  overflow-x: hidden;
  width: 100%;
  margin: 0 auto;
}
#instruct-page .create-new-folder-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

body .custom-modal.folder-modal {
  background: rgba(255, 255, 255, 0.9);
}
body .custom-modal.folder-modal .modal-dialog .modal-content {
  box-shadow: -5px 8px 15px rgba(0, 0, 0, 0.12);
}
body #search-site #search-history .search-answer .list-group-item p {
  -webkit-line-clamp: 2;
}
body #search-site #search-history .search-answer .list-group-item a {
  color: #405189;
}
body #search-site #search-history .search-answer .list-group-item a h6 {
  font-weight: bold;
}
body #viewer .docx-wrapper .docx {
  width: 100% !important;
}
body #viewer .docx-wrapper .docx .highlight {
  background-color: yellow;
  color: black;
}

/*# sourceMappingURL=style.css.map */
