.app-chat-form-wrapper {
  display: flex;
  align-items: flex-end;
  background: var(--color-gray-fff);
  border-top: 1px solid #d8d8d8;

  .app-chat-form {
    user-select: none;

    display: flex;
    flex-direction: column;

    width: 100%;
    padding: 0 10px;

    .comment-create-input-wrapper {
      display: flex;
      align-items: center;

      .cmf-smiles-button {
        display: flex;
        align-items: center;
      }

      .app-comment-form-field {
        width: 100%;
        padding-left: 5px;
        font-size: 12px;
        word-break: break-word;
      }
    }

    .comment-quote-wrapper {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 10px;

      .comment-icon-close {
        cursor: pointer;
      }

      .comment-quote-item-wraper {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;

        width: 100%;
        padding-bottom: 5px;

        border-bottom: 1px solid #888;

        .comment-quote-text-wrapper {
          .comment-quote-author {
            font-size: 12px;
            color: #8c8c8c;
          }
        }

        .comment-icon-quote {
          position: relative;
          top: 2px;
          padding-right: 5px;
        }
      }
    }

    .app-comment-text-input {
      overflow-y: hidden;
      width: 85%;
      min-height: 20px !important;
    }

    .smile-icon {
      margin-right: 6px;
    }

    mat-icon {
      color: #888;
    }
  }

  .call-button {
    .mat-icon-call {
      display: flex;
      justify-content: center;
    }
  }

  .send[data-priority='0'] mat-icon,
  .set-priority-0 {
    color: #3390ec;
  }

  .send[data-priority='1'] mat-icon,
  .set-priority-1 {
    color: orange;
  }

  .send[data-priority='2'] mat-icon,
  .set-priority-2 {
    color: var(--default-color-red);
  }

  .app-comment-form .reply-icon {
    transform: rotate(90deg);
    margin-right: 12px;
    margin-left: 7px;
  }

  .file-upload {
    display: none;
  }
}

::ng-deep .priority-menu {
  .set-priority-0 {
    color: #3390ec;
  }

  .set-priority-1 {
    color: orange;
  }

  .set-priority-2 {
    color: red;
  }
}

::ng-deep .app-chat-form-wrapper {
  .mce-content-body:not([dir='rtl'])[data-mce-placeholder]:not(.mce-visualblocks)::before {
    left: 10px;
  }
}
