* {
  --color-text-default: #444;
  --color-text-highlight: #111;
  --color-text-gray: #888;
  --color-box-danger-text: #c00;
  --color-box-danger-border: #c00;
  --color-box-danger-background: #fad6d6;
  --color-box-warning-text: #dbac00;
  --color-box-warning-border: #dbac00;
  --color-box-warning-background: #fffcf7;
  --color-box-success-text: #00960c;
  --color-box-success-border: #00960c;
  --color-box-success-background: #ddffe0;
  --color-box-secondary-text: #002896;
  --color-box-secondary-border: #002896;
  --color-box-secondary-background: #eef1fd;
  --color-box-default-text: #eee;
  --color-box-default-border: #eee;
  --color-box-default-background: #fff;
  --color-box-default-background2: #ccc;
  --color-button-default: #444;
  --color-button-default-background: #e6e6e6;
  --color-button-default-background-hover: #f0f0f0;
  --color-button-confirm: #fff;
  --color-button-confirm-background: #0d6efd;
  --color-button-confirm-background-hover: #3986fa;
  --color-button-cancel: var(--color-button-default);
  --color-button-cancel-background: var(--color-button-default-background);
  --color-button-cancel-background-hover: var(--color-button-default-background-hover);
  --color-button-danger: #fff;
  --color-button-danger-background: #700;
  --color-button-danger-background-hover: #811;
  --shadow-box-hover: 0 0 10px rgba(0,0,0,.2);
  /* Tasks */
  --color-task-text: var(--color-box-default-text);
  --color-task-border: var(--color-box-default-border);
  --color-task-background: var(--color-box-default-background);
  --color-task-active-text: var(--color-box-default-text);
  --color-task-active-border: var(--color-box-default-border);
  --color-task-active-background: var(--color-box-default-background);
  --color-task-warning-text: var(--color-box-warning-text);
  --color-task-warning-border: var(--color-box-warning-border);
  --color-task-warning-background: var(--color-box-warning-background);
  --color-task-expired-text: var(--color-box-danger-text);
  --color-task-expired-border: var(--color-box-danger-border);
  --color-task-expired-background: var(--color-box-danger-background);
  --color-user-creator: #8550e6;
  --color-user-write: #21582d;
  --color-user-red: #db0049;
  --color-input: #444;
  --color-input-border: #f6f6f6;
  --color-input-background: #f6f6f6;
  --color-input-focus: #000;
  --color-input-focus-border: rgb(235, 235, 235);
  --color-input-focus-background: #f8f8c8;
  --color-input-disabled: var(--color-text-default);
  --color-input-disabled-border: transparent;
  --color-input-disabled-background: transparent;
  --font-family: SegoeUI, Tahoma, sans-serif;
  --font-size: 14px;
  --font-weight: 300;
  --font-input-size: 14px;
  --font-big-family: var(--font-family);
  --font-big-size: 24px;
  --font-big-weight: 600;
  --font-strong-family: var(--font-family);
  --font-strong-size: 16px;
  --font-strong-weight: 600;
  --font-small-family: var(--font-family);
  --font-small-size: 13px;
  --font-small-weight: 400;
  --font-smalllight-family: var(--font-family);
  --font-smalllight-size: 13px;
  --font-smalllight-weight: 300;
  --font-tiny-family: var(--font-family);
  --font-tiny-size: 10px;
  --font-tiny-weight: 400;
  --color-red: #d00;
  --color-red-dark: #800;
  --color-red-light: #f66;
  --color-blue: #00f;
  --color-blue-light: #44ff;
  --color-blue-dark: #00a;
  --color-green: #161;
  --color-green-light: #6a4;
  --color-green-dark: #040;
  --color-dark: #444;
  --color-dark-light: #666;
  --color-dark-dark: #000;
  --color-orange: #ffc353;
  --color-orange-light: #ffc700;
  --color-orange-dark: #ffae00;
  --background-red: #fad6d6;
  --background-orange: #fff9f0;
  --background-light: #f9f9f9; }
.app-todo {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  height: 100%;
  min-height: 380px;
  /* forms/inputs */ }
  .app-todo *::-webkit-scrollbar {
    width: 6px; }
  .app-todo *::-webkit-scrollbar-track {
    background: #f0f0f0; }
  .app-todo *::-webkit-scrollbar-thumb {
    background: #bbb; }
  .app-todo *::-webkit-scrollbar-thumb:hover {
    background: #777; }
  .app-todo #app {
    height: 100%; }
  .app-todo .btn {
    font-size: var(--font-size); }
  .app-todo .text-gray {
    color: var(--color-text-gray); }
  .app-todo.desktop {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    height: 100%; }
    .app-todo.desktop .desktop-left {
      flex: none;
      width: 360px;
      box-shadow: 0 0 9px -3px #000;
      background: #f0f0f0; }
    .app-todo.desktop .desktop-main {
      flex: 1;
      background-color: #fff;
      height: 100%;
      box-sizing: border-box;
      align-items: flex-start; }
  .app-todo strong,
  .app-todo .font-strong {
    font-size: var(--font-strong-size);
    font-weight: var(--font-strong-weight);
    font-family: var(--font-strong-family); }
  .app-todo small,
  .app-todo .font-small {
    font-size: var(--font-small-size);
    font-weight: var(--font-small-weight);
    font-family: var(--font-small-family); }
  .app-todo a:not([href]) {
    cursor: pointer; }
  .app-todo input, .app-todo button, .app-todo textarea, .app-todo select {
    outline: none;
    font-weight: var(--font-weight); }
  .app-todo h1 {
    margin: .25em 0; }
  .app-todo input,
  .app-todo textarea,
  .app-todo select {
    padding: 4px 5px;
    font-family: var(--font-family);
    font-size: var(--font-input-size);
    line-height: 1.2;
    display: block;
    box-sizing: border-box;
    width: 100%;
    outline: none;
    color: var(--color-input);
    border: 1px solid var(--color-input-border);
    background-color: var(--color-input-background);
    transition: background ease 300ms, border ease 300ms, color ease 300ms; }
    .app-todo input:focus,
    .app-todo textarea:focus,
    .app-todo select:focus {
      color: var(--color-input-focus);
      border: 1px solid var(--color-input-focus-border);
      background-color: var(--color-input-focus-background); }
    .app-todo input:disabled,
    .app-todo textarea:disabled,
    .app-todo select:disabled {
      color: var(--color-input-disabled);
      border: 1px solid var(--color-input-disabled-border);
      background-color: var(--color-input-disabled-background); }
  .app-todo textarea {
    min-height: 80px;
    resize: none; }
  .app-todo label {
    font-size: 8pt;
    color: var(--color-text-gray);
    margin-bottom: .1rem;
    padding-left: 2px; }
  .app-todo .form-inline-group {
    display: flex;
    flex-flow: row nowrap; }
    .app-todo .form-inline-group .form-input {
      flex: 1;
      margin-right: 6px; }
  .app-todo .form-inputs-row {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start; }
  .app-todo .form-input {
    margin-bottom: 6px; }
    .app-todo .form-input .usersel__control-is-focused {
      background-color: #ffffd2; }
  .app-todo .input-checkbox {
    display: block;
    padding: 3px 0 3px 3px; }
    .app-todo .input-checkbox label {
      font-size: var(--font-input-size);
      color: var(--color-input);
      cursor: pointer; }
    .app-todo .input-checkbox input[type="checkbox"] {
      display: inline-block;
      width: 16px;
      height: 16px;
      vertical-align: -3px;
      margin: 0;
      padding: 0; }
      .app-todo .input-checkbox input[type="checkbox"]:focus {
        outline: 4px solid var(--color-input-focus-background); }
    .app-todo .input-checkbox:hover {
      color: var(--color-input-focus);
      background-color: var(--color-input-focus-background); }
  .app-todo .react-select__control {
    border-radius: 0 !important;
    padding: 0 !important;
    min-height: 0px; }
    .app-todo .react-select__control.react-select__control--is-focused {
      background-color: var(--color-input-focus-background) !important;
      border-color: var(--color-input-focus-border) !important;
      box-shadow: none !important; }
    .app-todo .react-select__control .react-select__input-container {
      margin: 1px;
      padding-top: 0;
      padding-bottom: 0; }
    .app-todo .react-select__control .react-select__indicator {
      padding: 4px; }
    .app-todo .react-select__control .react-select__control {
      background-color: var(--color-input-background) !important;
      border-color: var(--color-input-border) !important; }
  .app-todo .react-select__menu {
    min-width: 320px; }
  .app-todo .react-select--is-disabled .react-select__multi-value__remove {
    display: none; }
  .app-todo .react-select--is-disabled .react-select__control {
    background: transparent; }
  .app-todo .react-select__value-container {
    padding: 2px; }
  .app-todo .react-select__multi-value {
    margin: 2px; }
    .app-todo .react-select__multi-value .react-select__multi-value__label {
      padding: 1px 1px 1px 3px; }
  .app-todo .react-select__multi-value--is-disabled {
    background: transparent; }
  .app-todo .context-custom {
    margin: 12px 0; }
    .app-todo .context-custom div {
      background: #e6e6e6;
      padding: 6px 0px 6px 12px;
      transition: background-color ease 200ms;
      cursor: pointer;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      position: relative; }
      .app-todo .context-custom div.selected {
        background: #9a6;
        color: #fff;
        font-weight: bold; }
  .app-todo .todo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.15);
    z-index: 999999;
    pointer-events: all;
    overflow: auto;
    animation: .150ms todo-fadein; }
    .app-todo .todo-modal .todo-modal-content {
      margin: 3% auto;
      max-width: 960px;
      min-width: 320px; }
      .app-todo .todo-modal .todo-modal-content.content-centered {
        display: flex;
        width: 100%;
        height: 100%;
        max-width: none;
        margin: 0;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: center; }
    .app-todo .todo-modal.todo-loading > i {
      position: absolute;
      top: 50%;
      left: 50%;
      margin: -50px 0 0 -50px;
      color: #fff;
      font-size: 100px;
      text-shadow: 0 0 20px rgba(0, 0, 0, 0.4); }
  .app-todo .form-content {
    padding: .75em; }
  .app-todo .form-bottom {
    padding: .75em;
    background-color: var(--color-box-default-background2); }
    .app-todo .form-bottom .form-buttons {
      display: flex;
      flex-flow: row wrap;
      align-content: center; }
      .app-todo .form-bottom .form-buttons .form-buttons-right {
        margin-left: auto; }

@keyframes todo-fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.todo-app-stage .app-todo {
  min-height: auto; }
.taskstatus {
  border: none;
  background: transparent;
  color: #000;
  outline: 0;
  display: inline-block;
  white-space: nowrap;
  padding: 0;
  margin: 2px 0 0 0;
  cursor: pointer; }

.taskstatus > svg {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 3px;
  vertical-align: -3px; }

.taskstatus > div {
  display: inline-block;
  font-size: var(--font-small-size); }

.taskstatus:not(:disabled):hover {
  background-color: var(--color-input-focus-background); }

.taskstatus:disabled {
  cursor: default;
  opacity: .3; }
.task-direction div {
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-width: 7px 9px 7px 9px;
  display: none;
  margin: 0 1px; }
  .task-direction div.dir-assigned {
    border-left-width: 0;
    border-right-color: #333; }
  .task-direction div.dir-created {
    border-right-width: 0;
    border-left-color: #333; }

.task-direction[created=yes] .dir-created {
  display: inline-block; }

.task-direction[assigned=yes] .dir-assigned {
  display: inline-block; }
.action-icon {
  width: 18px;
  height: 18px;
  line-height: 18px;
  cursor: pointer;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  border: 0;
  background-color: transparent; }
  .action-icon > svg {
    width: 100%;
    height: auto; }
.app-todo .task {
  margin: 12px 0;
  transition: background-color ease 400ms, border-color ease 300ms;
  border: 1px solid var(--color-box-default-border);
  border-left-width: 4px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  user-select: none; }
  .app-todo .task:hover:not([deleted="yes"]) {
    box-shadow: 0 0 6px -2px #000a; }
  .app-todo .task .t-body {
    display: flex;
    flex-flow: row nowrap;
    align-content: stretch;
    position: relative; }
    .app-todo .task .t-body .t-id {
      font-size: var(--font-tiny-size);
      color: #000;
      opacity: .25;
      position: absolute;
      bottom: 0;
      right: 2px; }
    .app-todo .task .t-body .t-left {
      flex: 1;
      display: flex;
      flex-flow: column; }
      .app-todo .task .t-body .t-left .t-context {
        font-size: var(--font-tiny-size);
        line-height: 1;
        margin: 4px 0 0 22px; }
      .app-todo .task .t-body .t-left .t-top {
        display: flex;
        flex-flow: row nowrap;
        flex: 1; }
        .app-todo .task .t-body .t-left .t-top .t-direction {
          flex: none;
          padding: 5px 6px 0 6px; }
        .app-todo .task .t-body .t-left .t-top .t-content {
          padding: 4px 0;
          flex: 1; }
        .app-todo .task .t-body .t-left .t-top .t-concl {
          display: flex;
          flex-flow: row nowrap;
          margin-top: 2px;
          font-size: var(--font-size);
          font-weight: bold; }
          .app-todo .task .t-body .t-left .t-top .t-concl .concl-push {
            padding: 0 1px 0 9px;
            flex: none; }
            .app-todo .task .t-body .t-left .t-top .t-concl .concl-push svg {
              vertical-align: -2px; }
      .app-todo .task .t-body .t-left .t-bottom {
        padding: 4px 9px;
        border-top: 1px dotted #f0f0f0;
        display: flex;
        flex-flow: row nowrap;
        align-items: flex-end;
        flex: none; }
    .app-todo .task .t-body .t-right {
      flex: none;
      width: 85px;
      padding: 6px 9px;
      background-color: #fafafa;
      border-radius: 0 4px 4px 0; }
  .app-todo .task .t-user {
    font-size: var(--font-small-size);
    margin-bottom: 4px; }
    .app-todo .task .t-user .t-assign-read {
      color: var(--color-text-gray); }
    .app-todo .task .t-user.t-deleter {
      font-weight: var(--font-strong-weight); }
  .app-todo .task .t-creator {
    color: var(--color-text-gray); }
  .app-todo .task .t-label {
    font-size: var(--font-tiny-size);
    color: var(--color-text-gray); }
  .app-todo .task .t-text {
    margin-bottom: 6px; }
  .app-todo .task .t-icon {
    display: inline-block;
    margin-right: 4px;
    vertical-align: -3px; }
    .app-todo .task .t-icon svg {
      width: 18px;
      height: 18px;
      fill: #000;
      display: block; }
  .app-todo .task .t-chat.t-chat-unread {
    color: var(--color-box-danger-border); }
    .app-todo .task .t-chat.t-chat-unread svg {
      fill: var(--color-box-danger-border); }
  .app-todo .task .t-title {
    font-size: var(--font-strong-size);
    font-weight: var(--font-strong-weight);
    line-height: 1.1; }
  .app-todo .task .t-descr, .app-todo .task .t-creator, .app-todo .task .t-completer {
    font-size: var(--font-small-size); }
  .app-todo .task .t-descr {
    max-height: 120px;
    overflow-y: auto;
    overflow-x: visible; }
  .app-todo .task .t-status {
    flex: 1; }
  .app-todo .task .t-controls {
    opacity: 0;
    transition: opacity ease 300ms;
    flex: none;
    display: flex;
    flex-flow: row nowrap; }
    .app-todo .task .t-controls .task-control {
      background: #fff;
      padding: 1px 4px 3px 4px;
      margin: 4px;
      border-radius: 4px;
      box-shadow: 0 0 14px -8px #000;
      position: relative;
      transition: background ease 300ms; }
      .app-todo .task .t-controls .task-control button svg {
        display: block; }
      .app-todo .task .t-controls .task-control:hover {
        background: #eee; }
  .app-todo .task:hover .t-controls {
    opacity: 1; }
  .app-todo .task .deleted-mark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: all; }
    .app-todo .task .deleted-mark svg {
      stroke: var(--color-box-default-background2);
      stroke-width: .75px;
      width: 100%;
      height: 100%; }

.app-todo .task[active="yes"] {
  border-color: var(--color-box-secondary-border);
  background-color: var(--color-box-secondary-background); }
  .app-todo .task[active="yes"] .deleted-mark svg {
    stroke: var(--color-box-secondary-border); }

.app-todo .task[expired="yes"] {
  border-color: var(--color-box-danger-border);
  background-color: var(--color-box-danger-background); }
  .app-todo .task[expired="yes"] .deleted-mark svg {
    stroke: var(--color-box-danger-border); }

.app-todo .task[deleted="yes"] {
  cursor: not-allowed; }
  .app-todo .task[deleted="yes"] .t-right {
    opacity: .7; }

.app-todo .task[completed="yes"][verified="no"] {
  border-color: var(--color-box-warning-border);
  background-color: var(--color-box-warning-background); }
  .app-todo .task[completed="yes"][verified="no"] .deleted-mark svg {
    stroke: var(--color-box-warning-border); }

.app-todo .task[completed="yes"][verified="yes"] {
  border-color: var(--color-box-success-border);
  background-color: var(--color-box-success-background); }
  .app-todo .task[completed="yes"][verified="yes"] .deleted-mark svg {
    stroke: var(--color-box-success-border); }
.accord {
  margin: 8px 0; }
  .accord .accord-header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: stretch;
    align-content: center;
    cursor: pointer; }
    .accord .accord-header .accord-header-icon {
      flex: none;
      padding-bottom: 4px;
      margin-right: 2px; }
      .accord .accord-header .accord-header-icon svg {
        transform-origin: 11px 11px;
        transition: transform ease 300ms;
        display: block;
        width: 22px;
        height: 22px; }
    .accord .accord-header .accord-header-label {
      flex: 1;
      border-bottom: 1px solid var(--color-box-default-border);
      padding-bottom: 4px;
      margin-right: 3px; }
  .accord .accord-collapsable {
    overflow-y: hidden;
    overflow-x: visible;
    height: 0;
    padding-left: 24px; }
  .accord .accord-collapsable.animated {
    transition: height 300ms ease; }
  .accord.accord-open .accord-header svg {
    transform: rotate(90deg); }
.app-todo .form-task-chklst {
  padding: 9px 0; }
  .app-todo .form-task-chklst .form-task-chklst-item {
    padding: 0 3px;
    margin-bottom: 3px;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start; }
    .app-todo .form-task-chklst .form-task-chklst-item .form-task-chklst-check {
      display: inline-block;
      width: 16px;
      height: 16px;
      flex: none;
      margin: 2px 0;
      cursor: pointer; }
    .app-todo .form-task-chklst .form-task-chklst-item.dragging {
      background-color: #fff;
      box-shadow: 0 0 12px -4px #000; }
  .app-todo .form-task-chklst .form-task-chklst-title {
    font-size: var(--font-small-size);
    margin-left: 6px;
    flex: 1; }
  .app-todo .form-task-chklst .form-task-chklst-edit {
    font-size: var(--font-small-size);
    padding: 1px 3px;
    margin: 0 2px;
    box-sizing: border-box;
    flex: 1; }

.app-todo .form-task-chklst-add {
  padding-left: 4px;
  cursor: pointer; }
  .app-todo .form-task-chklst-add:hover {
    color: var(--color-blue); }
  .app-todo .form-task-chklst-add svg {
    vertical-align: -3px; }

.app-todo .form-task-chklst-header span {
  margin-right: 6px; }

.app-todo .form-task-chklst-header .form-task-chklsthdr-counter {
  font-size: var(--font-tiny-size);
  vertical-align: middle; }

.app-todo .form-task-chklst-drag {
  width: 20px;
  height: 20px;
  padding: 2px;
  margin-right: 2px;
  border-radius: 3px;
  transition: background-color ease 300ms;
  flex: none; }
  .app-todo .form-task-chklst-drag:hover {
    background-color: var(--color-box-secondary-background); }
  .app-todo .form-task-chklst-drag svg {
    display: block; }

.app-todo .form-task-chklst-item.disabled .form-task-chklst-drag {
  display: none; }
.app-todo .task-chat-send-container {
  position: sticky;
  bottom: 0;
  background-color: #fff;
  padding: 1px 1px 5px 1px; }
  .app-todo .task-chat-send-container[disabled] {
    pointer-events: none; }
    .app-todo .task-chat-send-container[disabled]:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.5); }
  .app-todo .task-chat-send-container input[type="file"] {
    visibility: hidden;
    position: absolute;
    z-index: -1; }

.app-todo .task-chat-header .chathdr-label span {
  color: var(--color-text-gray);
  font-size: var(--font-tiny-size); }

.app-todo .task-chat-messages {
  margin-bottom: 90px; }

.app-todo .task-chat-send {
  border: 1px solid var(--color-box-default-border);
  border-radius: 12px;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start; }
  .app-todo .task-chat-send .chat-send-icon {
    flex: none;
    margin: 4px 0 0 8px; }
    .app-todo .task-chat-send .chat-send-icon svg {
      width: 20px;
      height: 20px; }
  .app-todo .task-chat-send .chat-send-control {
    flex: 1;
    padding: 4px;
    width: calc( 100% - 60px); }
    .app-todo .task-chat-send .chat-send-control .form-input {
      flex: 1;
      margin: 0; }
      .app-todo .task-chat-send .chat-send-control .form-input textarea {
        margin: 0;
        min-height: 40px;
        max-height: 200px;
        height: 1px;
        background-color: transparent;
        border: 0;
        resize: none; }
    .app-todo .task-chat-send .chat-send-control .btn-attach {
      padding: 1px 9px;
      font-weight: normal;
      outline: none;
      border-radius: 3px;
      margin: 6px 0 0 0; }
      .app-todo .task-chat-send .chat-send-control .btn-attach svg {
        width: 14px;
        height: 14px;
        margin-right: 4px;
        vertical-align: -3px; }
    .app-todo .task-chat-send .chat-send-control .chat-send-buttons {
      display: flex;
      flex-flow: row nowrap;
      justify-content: flex-end; }
    .app-todo .task-chat-send .chat-send-control button.placeholder {
      padding: 3px;
      border: 0;
      outline: 0;
      display: block;
      color: var(--color-text-gray);
      background-color: transparent;
      width: 100%;
      text-align: left;
      cursor: pointer; }
    .app-todo .task-chat-send .chat-send-control .uploaded-files-item {
      padding: 1px 6px;
      display: flex;
      flex-flow: row nowrap;
      background: #a8f9af;
      border-radius: 5px;
      align-items: center;
      margin-bottom: 3px; }
      .app-todo .task-chat-send .chat-send-control .uploaded-files-item span:first-child {
        flex: 1;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis; }
      .app-todo .task-chat-send .chat-send-control .uploaded-files-item span:last-child {
        flex: none;
        font-size: .9em;
        font-weight: bold; }

.app-todo .task-chat-item {
  padding: 3px 6px 8px 6px;
  transition: background ease 300ms;
  border-radius: 4px; }
  .app-todo .task-chat-item .chat-header {
    display: flex;
    flex-flow: row nowrap;
    font-size: var(--font-small-size);
    align-items: center;
    min-height: 24px; }
    .app-todo .task-chat-item .chat-header .chat-sender {
      margin: 0 4px 0 0;
      font-weight: var(--font-strong-weight); }
    .app-todo .task-chat-item .chat-header .chat-sent {
      color: var(--color-text-gray); }
    .app-todo .task-chat-item .chat-header .chat-notify svg {
      vertical-align: -2px;
      width: 14px;
      height: 14px;
      margin: 0 3px; }
    .app-todo .task-chat-item .chat-header .chat-buttons {
      margin-left: auto;
      opacity: 1;
      transition: opacity 300ms ease;
      display: flex;
      flex-flow: row nowrap;
      align-items: center; }
      .app-todo .task-chat-item .chat-header .chat-buttons .chat-button {
        border-radius: 3px;
        padding: 4px 2px;
        transition: background-color ease 600ms;
        position: relative;
        cursor: pointer; }
        .app-todo .task-chat-item .chat-header .chat-buttons .chat-button svg {
          width: 18px;
          height: 18px; }
        .app-todo .task-chat-item .chat-header .chat-buttons .chat-button .chat-dropdown {
          position: absolute;
          top: 24px;
          right: -5px;
          border: 1px solid #aaa;
          border-radius: 4px;
          box-shadow: 0 0 24px -15px #000;
          background: #fff;
          overflow: hidden; }
          .app-todo .task-chat-item .chat-header .chat-buttons .chat-button .chat-dropdown .chat-dropdown-item {
            white-space: nowrap;
            padding: 6px;
            min-width: 130px;
            transition: background-color ease 600ms; }
            .app-todo .task-chat-item .chat-header .chat-buttons .chat-button .chat-dropdown .chat-dropdown-item:hover {
              background-color: #f0f0d0; }
            .app-todo .task-chat-item .chat-header .chat-buttons .chat-button .chat-dropdown .chat-dropdown-item svg {
              vertical-align: -5px;
              margin-right: 1px; }
        .app-todo .task-chat-item .chat-header .chat-buttons .chat-button.chat-btn-more:hover {
          background-color: #e6e6e6; }
        .app-todo .task-chat-item .chat-header .chat-buttons .chat-button.open {
          background-color: #e6e6e6; }
  .app-todo .task-chat-item .chat-attach-links span {
    font-size: var(--font-tiny-size); }
  .app-todo .task-chat-item .chat-attach-links svg {
    width: 20px;
    height: 20px;
    vertical-align: -5px;
    margin: 0 0 0 4px; }
  .app-todo .task-chat-item:hover {
    background-color: var(--background-light); }
    .app-todo .task-chat-item:hover .chat-buttons {
      opacity: 1; }
  .app-todo .task-chat-item.chat-in-edit {
    background-color: #eefeff; }
    .app-todo .task-chat-item.chat-in-edit .chat-message {
      color: var(--color-text-gray); }

.app-todo .chat-loadprevious {
  margin: 6px 0;
  padding-left: 4px;
  cursor: pointer; }
  .app-todo .chat-loadprevious:hover {
    color: var(--color-blue); }
.app-todo .btn {
  padding: 7px 9px;
  border-radius: 6px;
  border: none;
  color: var(--color-button-default);
  background-color: var(--color-button-default-background);
  display: inline-block;
  margin: .5em .25em;
  font-weight: bold;
  transition: background-color ease 300ms;
  cursor: pointer; }
  .app-todo .btn:hover {
    background-color: var(--color-button-default-background-hover); }
  .app-todo .btn.btn-confirm {
    color: var(--color-button-confirm);
    background-color: var(--color-button-confirm-background); }
  .app-todo .btn.btn.btn-confirm:hover {
    background-color: var(--color-button-confirm-background-hover); }
  .app-todo .btn.btn.btn-danger {
    color: var(--color-button-danger);
    background-color: var(--color-button-danger-background); }
  .app-todo .btn.btn.btn-danger:hover {
    background-color: var(--color-button-danger-background-hover); }
.app-todo .task-editor {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: var(--shadow-box-hover);
  width: calc( 100% - 20px);
  max-width: 960px; }
  .app-todo .task-editor textarea {
    resize: vertical;
    min-height: 60px; }
  .app-todo .task-editor[task-id="0"] textarea {
    min-height: 130px; }
  .app-todo .task-editor .form-content .form-content-middle {
    display: flex;
    flex-flow: row nowrap; }
    .app-todo .task-editor .form-content .form-content-middle .form-task-left {
      flex: 1;
      max-height: calc( 100vh - 260px);
      overflow-y: auto;
      overflow-x: visible;
      padding-right: 4px; }
      .app-todo .task-editor .form-content .form-content-middle .form-task-left .form-task-main {
        position: sticky;
        top: 0;
        border-bottom: 1px solid var(--color-box-default-border);
        background: #fff;
        margin-bottom: 3px;
        z-index: 1; }
        .app-todo .task-editor .form-content .form-content-middle .form-task-left .form-task-main .form-input {
          margin-bottom: 3px; }
    .app-todo .task-editor .form-content .form-content-middle .form-task-right {
      padding: 4px;
      border-left: 1px solid var(--color-box-default-border);
      flex: none;
      width: 280px; }
  .app-todo .task-editor .form-content .form-content-bottom {
    padding: 4px;
    border-top: 1px solid var(--color-box-default-border); }
  .app-todo .task-editor .form-content .form-task-title {
    font-size: var(--font-strong-size);
    font-weight: var(--font-strong-weight);
    margin: 0 3px; }
  .app-todo .task-editor .form-content .form-task-description {
    font-size: var(--font-small-size);
    margin: 0 0 9px 0; }
  .app-todo .task-editor .form-bottom {
    padding: 9px;
    background-color: var(--color-box-default-background2); }
    .app-todo .task-editor .form-bottom .form-buttons {
      display: flex;
      flex-flow: row wrap;
      align-content: center; }
      .app-todo .task-editor .form-bottom .form-buttons .form-buttons-right {
        margin-left: auto; }
  .app-todo .task-editor .form-input.task-input-estimated {
    flex: 3; }
  .app-todo .task-editor .form-input.task-input-priority {
    flex: 2; }
.tasks-container {
  height: 100%;
  display: flex;
  flex-flow: column;
  align-content: stretch; }
  .tasks-container .tasks-header {
    flex: 0;
    font-weight: bold;
    border-bottom: 1px dotted #aaa;
    background: #fff; }
    .tasks-container .tasks-header h1 {
      font-size: var(--font-big-size);
      font-weight: var(--font-big-weight);
      padding: .25em 0;
      margin: 0; }
    .tasks-container .tasks-header small {
      font-weight: normal; }
    .tasks-container .tasks-header .header-top {
      display: flex;
      flex-flow: row nowrap; }
      .tasks-container .tasks-header .header-top .header-left {
        flex: 1; }
      .tasks-container .tasks-header .header-top .header-right {
        flex: none;
        padding: 12px 4px;
        display: flex;
        flex-flow: row wrap;
        align-items: flex-start; }
    .tasks-container .tasks-header .header-bottom {
      padding-bottom: 6px; }
    .tasks-container .tasks-header .header-navigator {
      background-color: var(--color-box-default-border); }
      .tasks-container .tasks-header .header-navigator select {
        padding-left: 0;
        padding-right: 0;
        background-color: transparent;
        border: none;
        width: auto; }
      .tasks-container .tasks-header .header-navigator :focus {
        background: transparent; }
    .tasks-container .tasks-header.tasks-grouped .header-navigator {
      display: block; }
  .tasks-container .tasks-body {
    flex: 1;
    overflow-y: scroll;
    overflow-x: visible; }
    .tasks-container .tasks-body .no-tasks {
      color: #999;
      font-size: var(--font-small-size);
      margin: 12px 4px; }
  .tasks-container .tasks-wrapper {
    padding: 0 12px;
    box-sizing: border-box;
    max-width: 960px;
    margin: 0 auto;
    position: relative; }
    .tasks-container .tasks-wrapper .group-selector {
      position: sticky;
      top: 100px; }
    .tasks-container .tasks-wrapper .task-list-group {
      margin-top: 12px; }
      .tasks-container .tasks-wrapper .task-list-group .group-header {
        font-size: var(--font-strong-size);
        font-weight: var(--font-strong-weight);
        margin: 12px 0;
        border-bottom: 1px solid var(--color-box-default-border); }

.add-task {
  text-decoration: none;
  display: inline-block;
  margin: 9px 0;
  color: #000; }

.add-task svg {
  vertical-align: -2px;
  color: #000081; }
.app-todo .task-list-options {
  font-size: var(--font-smalllight-size);
  font-weight: var(--font-smalllight-weight);
  transition: background-color 200ms ease;
  padding: 2px 4px;
  border-radius: 3px;
  position: relative;
  user-select: none; }
  .app-todo .task-list-options.custom-state .task-list-options-button {
    color: var(--color-box-danger-text);
    font-weight: var(--font-strong-weight); }
  .app-todo .task-list-options:hover:not(.open) {
    cursor: pointer;
    background: var(--color-button-default-background); }
  .app-todo .task-list-options .options-window {
    display: none;
    cursor: default;
    position: absolute;
    z-index: 1;
    right: 0;
    width: auto;
    top: calc( 100% + 2px);
    border: 1px solid var(--color-box-default-border);
    border-radius: 4px;
    background-color: var(--color-box-default-background);
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1); }
    .app-todo .task-list-options .options-window .options-columns {
      display: flex;
      flex-flow: row nowrap; }
      .app-todo .task-list-options .options-window .options-columns .options-column {
        min-width: 170px;
        border-right: 2px solid var(--color-box-default-border); }
        .app-todo .task-list-options .options-window .options-columns .options-column:last-child {
          border-right: none; }
    .app-todo .task-list-options .options-window .options-users {
      width: 420px;
      margin: 0 .5rem .75rem .5rem; }
  .app-todo .task-list-options.open .options-window {
    display: block; }
  .app-todo .task-list-options .options-title {
    font-size: var(--font-strong-size);
    font-weight: var(--font-strong-weight);
    padding: 4px 3px 7px 10px; }
  .app-todo .task-list-options .options-sep {
    margin: 1px 0;
    padding: 1px 0;
    border-bottom: 1px solid var(--color-box-default-border); }
  .app-todo .task-list-options .options-item {
    padding: 5px 4px 5px 12px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    cursor: pointer; }
    .app-todo .task-list-options .options-item span {
      flex: 1;
      line-height: 1.6em; }
    .app-todo .task-list-options .options-item svg {
      flex: none;
      margin-left: 4px;
      font-size: 1.6em; }
    .app-todo .task-list-options .options-item:hover {
      background-color: var(--color-button-default-background); }
    .app-todo .task-list-options .options-item.item-checked span {
      font-weight: var(--font-strong-weight); }
  .app-todo .task-list-options .options-select {
    padding: 0 .5em .5em .5em; }
  .app-todo .task-list-options .options-footer {
    padding: .5em;
    border-top: 1px solid var(--color-box-default-border);
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end; }
    .app-todo .task-list-options .options-footer .options-item {
      padding: 3px 4px; }
      .app-todo .task-list-options .options-footer .options-item span {
        line-height: 1.4; }
  .app-todo .task-list-options .task-list-options-filter .options-item {
    padding-top: 3px;
    padding-bottom: 3px; }
ul.accordion-contexts li.accordion-item {
  margin: 8px 0; }
  ul.accordion-contexts li.accordion-item .accr-header {
    display: flex;
    padding: 3px 6px;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: stretch;
    background: #eaeaea;
    transition: background-color ease 200ms;
    cursor: pointer; }
    ul.accordion-contexts li.accordion-item .accr-header:hover {
      background-color: #dadada; }
    ul.accordion-contexts li.accordion-item .accr-header .accr-header-toggler {
      width: 18px;
      height: 18px;
      overflow: hidden;
      padding-right: 6px;
      display: inline-block;
      box-sizing: content-box;
      cursor: pointer; }
      ul.accordion-contexts li.accordion-item .accr-header .accr-header-toggler svg {
        width: 24px;
        height: 24px;
        margin: -4px 0 0 -4px;
        transition: transform ease 300ms, margin ease 300ms; }
    ul.accordion-contexts li.accordion-item .accr-header .accr-header-label {
      flex: 1;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    ul.accordion-contexts li.accordion-item .accr-header svg {
      flex: none;
      display: inline-block; }
    ul.accordion-contexts li.accordion-item .accr-header .accr-context-edit {
      opacity: 0;
      transition: opacity ease 300ms;
      color: #000;
      margin-right: 9px; }
    ul.accordion-contexts li.accordion-item .accr-header:hover .accr-context-edit {
      opacity: 1; }
  ul.accordion-contexts li.accordion-item .accr-collapsable {
    overflow-y: hidden;
    overflow-x: visible;
    height: 0;
    transition: height 300ms ease; }
    ul.accordion-contexts li.accordion-item .accr-collapsable .accr-filter {
      position: relative; }
      ul.accordion-contexts li.accordion-item .accr-collapsable .accr-filter input {
        padding: 6px 22px 6px 12px; }
        ul.accordion-contexts li.accordion-item .accr-collapsable .accr-filter input::placeholder {
          color: #d6d6d6; }
      ul.accordion-contexts li.accordion-item .accr-collapsable .accr-filter .accr-filter-clear {
        position: absolute;
        top: 3px;
        right: 6px;
        cursor: pointer;
        display: none;
        color: var(--color-text-gray); }
  ul.accordion-contexts li.accordion-item.filtered .accr-filter .accr-filter-clear {
    display: block; }
  ul.accordion-contexts li.accordion-item.filtered .accordion-item-content:empty:after {
    content: 'Nenhum item encontrado para o filtro atual';
    padding: 4px 0 8px 12px;
    font-weight: var(--font-big-weight);
    font-size: .8em; }
  ul.accordion-contexts li.accordion-item.open .accr-collapse {
    display: inline-block; }
  ul.accordion-contexts li.accordion-item.open .accr-header .accr-header-toggler svg {
    transform: rotate(90deg);
    margin-top: -8px; }
  ul.accordion-contexts li.accordion-item.active .accr-header {
    background: #9a6;
    color: #fff; }
  ul.accordion-contexts li.accordion-item.has-active .accr-header-label {
    font-weight: bold; }
  ul.accordion-contexts li.accordion-item .context-item {
    background: #e6e6e6;
    padding: 6px 0px 6px 12px;
    transition: background-color ease 200ms;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    position: relative; }
    ul.accordion-contexts li.accordion-item .context-item small {
      font-size: .7em; }
    ul.accordion-contexts li.accordion-item .context-item .item-text {
      flex: 1; }
    ul.accordion-contexts li.accordion-item .context-item .item-badges {
      flex: none;
      padding: 0 4px; }
    ul.accordion-contexts li.accordion-item .context-item:hover {
      background: #d9d9d9; }
    ul.accordion-contexts li.accordion-item .context-item.selected {
      background: #9a6;
      color: #fff; }
.todo-badge {
  display: inline-block;
  color: green;
  font-size: var(--font-small-size);
  font-weight: bold;
  margin: 0 3px; }
  .todo-badge::before {
    content: "";
    display: inline-block;
    vertical-align: -1px;
    width: 0;
    height: 0;
    border: 0px solid transparent;
    margin: 0 3px; }
  .todo-badge[type="created"]::before {
    border-width: 5px 0px 5px 5px; }
  .todo-badge[type="assigned"]::before {
    border-width: 5px 5px 5px 0px; }
  .todo-badge[status="expired"] {
    color: var(--color-red); }
    .todo-badge[status="expired"][type="created"]::before {
      border-left-color: var(--color-red); }
    .todo-badge[status="expired"][type="assigned"]::before {
      border-right-color: var(--color-red); }
  .todo-badge[status="active"] {
    color: var(--color-box-secondary-text); }
    .todo-badge[status="active"][type="created"]::before {
      border-left-color: var(--color-box-secondary-text); }
    .todo-badge[status="active"][type="assigned"]::before {
      border-right-color: var(--color-box-secondary-text); }
  .todo-badge[status="unverified"] {
    color: var(--color-orange-dark); }
    .todo-badge[status="unverified"][type="created"]::before {
      border-left-color: var(--color-orange-dark); }
    .todo-badge[status="unverified"][type="assigned"]::before {
      border-right-color: var(--color-orange-dark); }
.app-todo .ctx-description-editor input[type="text"] {
  padding: 8px 9px 7px 9px; }
.ctx-settings {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: var(--shadow-box-hover);
  transition: width 300ms ease, height 300ms ease; }
  .ctx-settings.ctx-loading {
    padding: 1.6em;
    font-weight: var(--font-big-weight);
    opacity: .95; }
  .ctx-settings .form-custom-fields {
    padding: .5em; }
    .ctx-settings .form-custom-fields label {
      margin-bottom: 12px; }
    .ctx-settings .form-custom-fields select {
      margin-bottom: .5em; }
    .ctx-settings .form-custom-fields .ctx-settings-field {
      display: flex;
      flex-flow: row nowrap;
      justify-content: stretch;
      align-content: stretch; }
      .ctx-settings .form-custom-fields .ctx-settings-field button {
        outline: none;
        border: 0;
        background: var(--color-box-danger-background);
        color: var(--color-box-danger-text);
        flex: none;
        line-height: 10px;
        padding: 0 6px;
        height: 30px;
        cursor: pointer; }
ul.accordion-contexts {
  list-style-type: none;
  padding: 0;
  margin: 0; }
.todo-notify-button {
  position: relative; }
  .todo-notify-button .notify-icon {
    position: relative; }
    .todo-notify-button .notify-icon .notify-counter {
      position: absolute;
      top: -4px;
      right: -8px;
      display: block;
      font-size: 13px;
      line-height: 13px;
      padding: 1px 3px;
      border-radius: 6px;
      margin: 1px 0;
      font-weight: bold;
      background: #c00;
      color: #fff; }
  .todo-notify-button .notify-list {
    position: absolute;
    top: 26px;
    right: -18px;
    min-width: 180px;
    max-width: 300px;
    min-height: 24px;
    border: 1px solid #d0d0d0;
    box-shadow: 0 0 30px -12px #000;
    border-radius: 4px;
    z-index: 100000;
    background-color: #fff;
    font-size: var(--font-small-size);
    text-align: left;
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: visible;
    padding: 3px 0 3px 3px;
    color: #444;
    cursor: default;
    white-space: normal; }
    .todo-notify-button .notify-list::-webkit-scrollbar {
      width: 5px; }
    .todo-notify-button .notify-list::-webkit-scrollbar-track {
      background: #f0f0f0; }
    .todo-notify-button .notify-list::-webkit-scrollbar-thumb {
      background: #bbb; }
    .todo-notify-button .notify-list::-webkit-scrollbar-thumb:hover {
      background: #777; }
    .todo-notify-button .notify-list .notify-empty {
      padding: 6px 12px;
      font-size: var(--font-tiny-size);
      color: var(--color-text-gray); }
    .todo-notify-button .notify-list .notify-item {
      margin: 4px 3px;
      border: 1px solid #aaa;
      border-left: 4px solid #aaa;
      background-color: #f6f6f6;
      border-radius: 2px;
      transition: background ease 400ms;
      cursor: pointer;
      line-height: 1;
      display: flex;
      flex-flow: row nowrap;
      min-width: 270px; }
      .todo-notify-button .notify-list .notify-item .ntf-icons {
        flex: none;
        width: 24px; }
        .todo-notify-button .notify-list .notify-item .ntf-icons svg {
          width: 16px;
          height: 16px;
          display: block;
          margin: 3px auto; }
      .todo-notify-button .notify-list .notify-item .ntf-details {
        width: calc( 100% - 24px);
        flex: 1;
        padding: 4px 3px; }
        .todo-notify-button .notify-list .notify-item .ntf-details .ntf-from {
          font-weight: var(--font-strong-weight);
          margin: 0 0 6px 0; }
          .todo-notify-button .notify-list .notify-item .ntf-details .ntf-from span {
            color: var(--color-text-gray);
            font-weight: normal; }
        .todo-notify-button .notify-list .notify-item .ntf-details .ntf-status {
          font-size: var(--font-tiny-size);
          font-weight: bold;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          opacity: .45;
          margin: 0 0 8px 0; }
          .todo-notify-button .notify-list .notify-item .ntf-details .ntf-status span {
            font-weight: normal; }
        .todo-notify-button .notify-list .notify-item .ntf-details .ntf-where {
          font-size: var(--font-tiny-size);
          font-weight: bold;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          opacity: .45; }
          .todo-notify-button .notify-list .notify-item .ntf-details .ntf-where span {
            font-weight: normal; }
        .todo-notify-button .notify-list .notify-item .ntf-details .ntf-attach-title {
          margin-top: 6px;
          font-size: var(--font-tiny-size);
          color: var(--color-text-gray); }
        .todo-notify-button .notify-list .notify-item .ntf-details .ntf-attach {
          white-space: nowrap;
          display: flex;
          flex-flow: row nowrap;
          align-items: baseline;
          line-height: normal;
          margin: 4px 0; }
          .todo-notify-button .notify-list .notify-item .ntf-details .ntf-attach div {
            overflow: hidden;
            text-overflow: ellipsis;
            display: inline-block; }
          .todo-notify-button .notify-list .notify-item .ntf-details .ntf-attach span {
            display: inline-block;
            flex: none;
            margin-left: 4px;
            font-size: var(--font-tiny-size); }
        .todo-notify-button .notify-list .notify-item .ntf-details .ntf-title {
          color: #000; }
        .todo-notify-button .notify-list .notify-item .ntf-details .ntf-text {
          font-style: italic; }
        .todo-notify-button .notify-list .notify-item .ntf-details .ntf-type {
          margin: 0 0 8px 0;
          font-size: var(--font-tiny-size); }
      .todo-notify-button .notify-list .notify-item:hover {
        background-color: #eaeaea; }
      .todo-notify-button .notify-list .notify-item.unread {
        border-left-color: var(--color-task-warning-border); }
        .todo-notify-button .notify-list .notify-item.unread .ntf-icons {
          color: var(--color-task-warning-border); }
