/* #region DEFAULT */
div.TableWithFilter {
  clear: both;
  min-width: 800px;
  position: relative;
}

.historyDialog table {
  width: 100%;
}

.mainAssignmentTable th,
.mainAssignmentTable td {
  text-align: center;
}

.mainAssignmentTable th.hidden,
.mainAssignmentTable td.hidden {
  display: none;
}

.mainAssignmentTable.grid-table th.name-cell,
.mainAssignmentTable.grid-table td.name-cell {
  text-align: left;
}

.mainAssignmentTable.grid-table td.interval-cell {
  white-space: nowrap;
}

.TableWithFilter .mainAssignmentTable.grid-table td.type-cell {
  padding: 0;
}

.mainAssignmentTable.grid-table .action-column button {
  background-color: transparent;
  border: none;
  padding: 0;
  outline: none !important;
}

.mainAssignmentTable.grid-table .action-column button span {
  font-size: 2rem;
  color: #4d4d4d;
}

.mainAssignmentTable.grid-table .action-column button:hover span {
  color: #129cdd;
}

.mainAssignmentTable.grid-table .action-column button:disabled span {
  color: #b3b3b3;
}

.mainAssignmentTable tbody div.history,
.mainAssignmentTable tbody div.comment {
  background-image: url("/Themes/Base/images/icons/buttonicons/task_edit_icons.png");
  background-repeat: no-repeat;
  height: 30px;
  width: 30px;
  cursor: pointer;
  display: inline-block;
}
.mainAssignmentTable tbody div.history[disabled],
.mainAssignmentTable tbody div.comment[disabled] {
  opacity: 0.5;
}

.mainAssignmentTable tbody div.history {
  background-position: -180px 0;
}

.mainAssignmentTable tbody div.history:hover {
  background-position: -240px 0;
}

.mainAssignmentTable tbody div.history.disabled {
  background-position: -210px 0;
  cursor: default;
}

.mainAssignmentTable tbody div.comment {
  background-position: -90px;
}

.mainAssignmentTable tbody div.comment:hover {
  background-position: -150px;
}

.mainAssignmentTable thead.th th:first-child {
  border-left: none;
}

.mainAssignmentTable tr td a.boldText {
  font-weight: bold;
  padding: 0 5px;
  display: inline-block;
  text-decoration: underline;
  color: #4d4d4d;
  text-align: left;
  display: block;
  word-break: break-all;
}

.mainAssignmentTable tr td a.boldText span.bold {
  font-weight: normal;
}

.mainAssignmentTable td span.grayed {
  color: #b3b3b3;
}
@keyframes blink {
  0% {
    opacity: 0.2;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.mainAssignmentTable .animated-dots span {
  letter-spacing: 1.5px;
  animation-name: blink;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.mainAssignmentTable .animated-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.mainAssignmentTable .animated-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

/* #endregion */
/* #region FILTERING */
div .filter-table #assignmentNameFilter {
  padding-left: 30px;
  padding-right: 8px;
  background-image: url("/Themes/Base/images/icons/search.png");
  background-repeat: no-repeat;
  width: 30%;
  vertical-align: top;
}

div.filter-table .assigmentMultiButtonFilterWrapper {
  width: auto;
  padding: 5px 20px 20px;
  left: auto;
  right: -46px;
}

.filter-table .assigmentMultiButtonFilterWrapper .multiButtonFilter {
  display: inline-block;
  margin-right: 1rem;
}

.filter-table .assigmentMultiButtonFilterWrapper .multiButtonFilter p {
  margin-bottom: 2px;
  font-size: 11px;
}

.filter-table .modal-button-container {
  display: none;
}

div.filter-table .btnCloseOrReopenTask {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("/Themes/Base/images/icons/buttonicons/delete_icons_30x30.png") !important;
  background-color: transparent !important;
  background-position: 0 0;
  border-radius: 0px;
  border: none;
  text-transform: none;
  padding: 0;
  outline: none !important;
  vertical-align: top;
}

div.filter-table .btnCloseOrReopenTask:hover {
  background-position: -60px 0;
}

input.btnCloseOrReopenTask.reopenVersion {
  background-image: url("/Themes/Base/images/icons/buttonicons/reopen_icons_30x30.png") !important;
}

input.btnCloseOrReopenTask.reopenVersion:disabled,
input.btnCloseOrReopenTask.reopenVersion:disabled:hover,
input.btnCloseOrReopenTask:disabled,
input.btnCloseOrReopenTask:disabled:hover {
  background-position: -30px 0;
}

input.btnCloseOrReopenTask.reopenVersion:enabled,
input.btnCloseOrReopenTask:enabled {
  animation: pulse 1s linear 3;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.6);
  }
  70% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
/* #endregion */
/* #region EMPTY PLACEHOLDER */
div.TableWithFilter .emptyTablePlaceholder {
  text-align: center;
  display: none;
}

/* #endregion */
/* #region DIALOGS */
.commentsDialog {
  display: none;
}

.commentsDialog .previousTaskComments {
  max-height: 500px;
  overflow-y: auto;
}

/* #endregion */
/* #region LOADING */
div.TableWithFilter.loading:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.7;
  border-radius: 5px;
}

div.TableWithFilter.loading .assignmenttable-spinner {
  display: block;
  position: absolute;
  top: 0;
  left: 0%;
  right: 0%;
  z-index: 1;
}

div.TableWithFilter.loading .assignmenttable-spinner .spinner-border {
  width: 3rem;
  height: 3rem;
  color: #b3b3b3;
}

div.TableWithFilter .assignmenttable-spinner,
body.longRunningPostback div.TableWithFilter.loading .assignmenttable-spinner,
body.longRunningAjax div.TableWithFilter.loading .assignmenttable-spinner {
  display: none; /* hide grey loading ring in assignment table when central loading ring is visible */
}

/* #endregion */