.select-filter-box {
  display: inline-block;
  margin-left: 30px;
}

tr.deadline {
  background-color: #fffeae;
  border-color: #d8c196;
}

tr.deadline td {
  border-color: #d8c196;
}

tr.close-deadline {
  background-color: #ffdbae;
  border-color: #d8ab96;
}

tr.close-deadline td {
  border-color: #d8ab96;
}

tr.calendar-event {
  background-color: #a2effa;
  border-color: #82abc4;
}

tr.calendar-event td {
  border-color: #82abc4;
}

.td-task {
  font-size: 125%;
}

.td-client, .td-project {
  position: relative;
}

.task-box {
  border-radius: 6px;
  padding: 4px 8px;
  background-color: rgba(100, 102, 105, 0.2);
}

.task-details {
  font-size: 80%;
  color: #888;
}

.btn-new-task {
  position: absolute;
  top: 8px;
  right: 6px;
  min-width: 14px;
  height: 18px;
  line-height: 18px !important;
  padding: 0 3px !important;
  border-radius: 3px !important;
  text-align: center;
  font-size: 11px !important;
}

td.td-project .btn-new-task, td.td-client .btn-new-task {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.6s ease;
  pointer-events: none;
}

td.td-project:hover .btn-new-task, td.td-client:hover .btn-new-task {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* MEDIA QUERIES *//*# sourceMappingURL=admin-custom-style.css.map */