/*Workflow & task colors*/
/*Other workflow variables*/
/*Task tiles*/
.taskTile {
  padding: 5px;
  width: 300px;
  height: 100px;
  border-radius: 5px;
  margin: 5px;
  text-align: center;
  font-size: 16px;
  box-sizing: border-box;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2); }
  .taskTile .taskTileTitle {
    display: block;
    width: 100%;
    font-weight: bold;
    font-size: 115%;
    text-align: center;
    padding-bottom: 10px; }
    .taskTile .taskTileTitle .taskTileTitleWarning {
      display: none;
      padding-right: 7px;
      vertical-align: middle; }
    .taskTile .taskTileTitle .taskTileTitleText {
      display: inline-block;
      vertical-align: middle; }
  .taskTile.invalid .taskTileTitleWarning {
    display: inline-block; }
  .taskTile .taskTileDate {
    display: none; }
    .taskTile .taskTileDate .taskTileDateText {
      text-decoration: underline;
      cursor: pointer;
      vertical-align: middle;
      display: inline-block; }
    .taskTile .taskTileDate .taskTileDateWarning {
      display: none;
      padding-left: 7px;
      vertical-align: middle; }
    .taskTile .taskTileDate.invalid .taskTileDateWarning {
      display: inline-block; }
  .taskTile .taskTileAssignee {
    display: none; }
    .taskTile .taskTileAssignee .taskTileAssigneeText {
      text-decoration: underline;
      cursor: pointer;
      vertical-align: middle;
      display: inline-block; }
  .taskTile .taskTileFieldLabel {
    display: inline-block;
    padding-right: 7px;
    font-size: 90%;
    font-style: italic;
    vertical-align: middle; }
  .taskTile:hover {
    box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.35); }
  .taskTile.color-1 {
    background-color: #225fc1;
    background: radial-gradient(farthest-side at 80% 80%, #3a78dc, #225fc1);
    color: white; }
  .taskTile.color-2 {
    background-color: #61109d;
    background: radial-gradient(farthest-side at 80% 80%, #7e15cb, #61109d);
    color: white; }
  .taskTile.color-3 {
    background-color: #ae5603;
    background: radial-gradient(farthest-side at 80% 80%, #e06f04, #ae5603);
    color: white; }
  .taskTile.color-4 {
    background-color: #a8a521;
    background: radial-gradient(farthest-side at 80% 80%, #d3cf29, #a8a521);
    color: white; }
  .taskTile.color-5 {
    background-color: #c13422;
    background: radial-gradient(farthest-side at 80% 80%, #dc4c3a, #c13422);
    color: white; }
  .taskTile.color-6 {
    background-color: #017d09;
    background: radial-gradient(farthest-side at 80% 80%, #01b00d, #017d09);
    color: white; }
  .taskTile.disabled {
    background-color: white;
    color: #bbb;
    border: 2px solid #bbb;
    box-shadow: none; }
    .taskTile.disabled:hover {
      box-shadow: none; }

.taskListItem .taskTile {
  height: 50px;
  padding-top: 25px; }
  .taskListItem .taskTile .taskTileTitle {
    padding: 0px;
    margin-top: -0.6em; }

.workflowLayout {
  display: table;
  width: 100%; }

.workflowStepLabel {
  display: table-cell;
  font-weight: bold;
  color: #225fc1;
  font-size: 18px;
  width: 100px;
  border-bottom: 1px solid #bbb;
  vertical-align: middle; }

.workflowStepTasks {
  display: table-cell;
  height: 125px;
  padding: 5px;
  text-align: center;
  border-bottom: 1px solid #bbb;
  box-sizing: border-box; }
  .workflowStepTasks .taskTile {
    display: inline-block; }
    .workflowStepTasks .taskTile .taskTileDate {
      display: block; }
    .workflowStepTasks .taskTile .taskTileAssignee {
      display: block; }

.workflowStep {
  display: table-row; }
  .workflowStep.emptyStep .workflowStepLabel {
    color: #bbb; }
  .workflowStep.invalidStep {
    color: red; }
    .workflowStep.invalidStep .workflowStepLabel {
      color: red; }

.workflowStepSpacer {
  display: table-row; }
  .workflowStepSpacer .workflowStepSpacerInner {
    border-bottom: 1px solid #bbb;
    display: table-cell;
    text-align: center; }
    .workflowStepSpacer .workflowStepSpacerInner .workflowStepSpacerImg {
      margin-top: 5px; }

.workflowDeleteTaskOverlay {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 -4px 4px 0 rgba(0, 0, 0, 0.3); }
  .workflowDeleteTaskOverlay.active .taskTile.disabled {
    color: red;
    border: 2px solid red; }

/*snackbars*/
.snackbar {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-width: 1px;
  border-style: solid;
  padding: 7px; }
  .snackbar.info {
    border-color: #225fc1;
    background: #a6c2ef; }
  .snackbar.error {
    border-color: red;
    background: #ff9999; }
  .snackbar.success {
    border-color: #017d09;
    background: #33fd40; }
  .snackbar .snackbarMessage {
    font-weight: bold;
    font-size: 18px;
    text-align: center; }

/*Badges*/
.icc-badge {
  font-size: 80%;
  padding: 1px 4px;
  background: red;
  color: white;
  text-shadow: none;
  border-radius: 5px; }

/*list modifications*/
.listActionButton {
  float: right; }
  .listActionButton:hover {
    color: red; }
