@import url(./icons.css);
/*
  Table of Contents

  1. Global Styles
  2. Components
    2.1. Navigation Bar
    2.2. Hamburger Menu Icon
    2.3. Sidebar
    2.4. Filters
    2.5. Task Grid
    2.6. Alerts
    2.7. Login Controls
    2.8. Forms
    2.9. Links
    2.10. Logos
    2.11. General Button Styles
    2.12. Comments
  3. Miscellaneous
  4. Keyframes
  5. Charts and Data Display
  6. Fonts
*/

/* ======== Global Styles ======== */

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  color: #082222;
  background-color: #f7f7f7;
  overflow: hidden;
}

html {
  display: flex;
  flex-direction: column;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Roboto Condensed", "Roboto", Helvetica, Arial, Lucida, sans-serif;
  align-self: center;
  align-content: center;
  padding-left: 55px;
  padding-top: 55px;
  overflow-x: hidden;
  width: calc(100% - 55px);
  position: relative;
}

textarea {
  font-family: "Roboto Condensed", "Roboto", Helvetica, Arial, Lucida, sans-serif;
}

.overscroll-behavior-contain, .overscroll-behavior-contain * {
  overscroll-behavior: contain;
}

.gridRow.active .cardModeGridCell, .gridRow.activeForModal .cardModeGridCell {
  background-color: #ccc;
}

@media only screen and (max-width: 700px) {
  body {
    padding-left: 0;
    width: 100%;
  }
  body .swal2-container .swal2-popup {
    min-height: 100%;
  }

  .highlightGridRow .cardModeGridCell {
    background: #CCCCCC !important;
    /*color: #FFFFFF !important;*/
  }
}

@media (min-width: 701px) {
  .gridRow.active > div, .gridRow.activeForModal > div {
    background-color: #ccc;
  }

  .highlightGridRow {
    background: #CCCCCC !important;
    /*color: #FFFFFF !important;*/
  }
}

.hidden {
  display: none !important;
}

.loading {
  overflow: hidden;
}

.loading > * {
  visibility: hidden;
}

.componentLoading::after, .loading::after {
  content: '';
  display: block;
  position: absolute !important;
  border-radius: 50% !important;
  border: 4px solid transparent;
  border-top-color: #272727;
  border-bottom-color: #272727;
  opacity: 0;
  animation: spin .6s ease-in-out infinite, fadeIn .4s ease-in-out forwards;
  animation-delay: .2s;
  background-color: transparent !important;
  padding: 0 0 0 0 !important;
  pointer-events: none;
}

.loading::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px !important;
  height: 40px !important;
}

.componentLoading::after {
  border-width: 2px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 15px !important;
  height: 15px !important;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

i {
  color: white;
}

input:focus {
  color: #082222;
  box-shadow: 0 0 6px gray;
}

/* implicitly set font for inputs */
input {
  font-family: inter;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]:invalid.dirty {
  background-color: #ffebeb;
  border-color: darkred;
}

select {
  background: #fff;
}

input[disabled] {
    pointer-events: none;
    background-color: #eee;
    color: #999;
}

select[disabled] {
    pointer-events: none;
    background-color: #eee;
}

textArea[disabled] {
    pointer-events: none;
    background-color: #eee;
    color: #999;
    resize: none;
}
textArea[disabled]::placeholder {
    color: #999;
}

::placeholder {
  color: #ccc;
  opacity: 80%;
}

:focus {
  outline: #082222;
}

.disabledIndicator {
    background-color: #656d78;
    color: #656d78;
}

/* ===== Filters ===== */
.filtersToggleContainer {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 10px;
}

.filtersToggleContainerButton {
  margin: 0;
}

#filterPopup {
    display: flex;
    justify-content: center;
}

#searchContainer {
    display: flex;
}

.selectArrowLeft {
    position: absolute;
    left: 130px;
    color: #082222 !important;
}
.selectArrowRight {
    position: absolute;
    left: 280px;
    color: #082222 !important;
}

.filterButtonContainer {
    border-radius: 8px;
    padding: 10px;
    box-sizing: border-box;
    background-color: white;
    filter: drop-shadow(0px 0px 5px #08222233);
}

.filterButtonContainer > div:first-child {
  overflow-y: auto;
  height: calc(100% - 40px);
  margin-right: calc(var(--gap) / -1.5);
  padding-right: calc(var(--gap) / 1.5);
  scrollbar-width: thin;
  margin-bottom: 10px;
}
@media only screen and (max-width: 700px) {
  .filterButtonContainer > div:first-child {
    margin-right: 0;
    padding-right: 0;
  }
}

.filtersSelect {
    margin-left: 10px;
}

.filtersActions {
  clear: both;
  float: right;
  display: flex;
  gap: 10px;
}

.checkboxFilterContainer {
    max-height: 250px;
    overflow: auto;
    scrollbar-width: thin;
}

.toggleAllBlock,
.checkboxFilterContainer > div {
  display: flex;
  align-items: start;
  gap: 3px;
  padding-left: 4px;
  border-radius: 4px;
}

.toggleAllBlock {
  padding-bottom: 3px;
  margin-bottom: 3px;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
}

.toggleAllBlock label {
  flex: 1;
}

.checkboxFilterContainer > :not(.checkboxGroup,label):hover {
  background-color: #eee;
}

.filtersSelect input[type=checkbox] {
  transform: scale(1.2);
  box-shadow: unset;
}

.checkboxFilterContainer input {
  margin-top: 6px;
}

.checkboxFilterContainer label {
  flex: 1;
  align-self: stretch;
  line-height: 28px;
  line-height: 1.2;
  margin-top: 5px;
  margin-bottom: 2px;
}

.filterLabel {
  padding-right: 10px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
}

/* ===== Search ===== */
.searchToggleContainer {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}

.searchSelectContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: 0 0 6px rgba(0, 0, 0, .2);
    border-radius: 8px;
    padding: 16px;
    box-sizing: border-box;
    margin-top: 24px;
    flex-direction: column;
}

.searchSelectContainer select,
.searchSelectContainer input {
  box-sizing: border-box;
  width: 100%;
}

#searchBtn {
    border-radius: 6px;
    cursor: pointer;
    padding: 5px 20px;
    height: 24px;
    line-height: 0;
}

@media only screen and (max-width: 1024px) {
  .searchSelectContainer {
    flex-direction: row;
    gap: 24px;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .searchSelectContainer > div {
      flex: 1;
      max-width: 250px;
  }
}

.searchLabel {
    padding-right: 10px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
}

#searchBtn {
    border: none !important;
    background-color: #082222;
    color: white;
    font-weight: 600;
}

label.required::after {
  content: "*";
  color: #d30000;
  margin-left: 5px;
}

span.required::after {
    content: "*";
    color: #d30000;
    margin-left: 5px;
}

/* ===== Task Grid ===== */
.gridMainArea {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 48px 48px 48px;
  gap: 16px;
}

.gridContainer {
  position: relative;
  width: 100%;
  /*overflow: auto;*/
  height: 35%;
}

.gridHeader {
  position: sticky;
  top: 0;
  background-color: #082222;
  color: #FFFFFF;
  border-color: #082222 !important;
  z-index: 1;
  width: 101%;
}

.grid-header a {
  color: #082222;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.7vh;
  letter-spacing: 0.1em;
}

.defaultGrid {
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
  z-index: 0;
  min-height: 200px;
}

.flynn-grid-move-left-btn,
.flynn-grid-move-right-btn {
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  color: white;
  font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', 'Verdana', sans-serif;
  font-weight: 900;
  cursor: pointer;
  margin: 0 !important;
}

.flynn-grid-move-left-btn {
  border-right-width: 1px;
  border-radius: 6px 0 0 6px;
}

.flynn-grid-move-right-btn {
  border-left-width: 1px;
  border-radius: 0 6px 6px 0;
}

.quickActionPopup {
  display: flex;
  position: absolute;
  z-index: 100;
  border-radius: 8px;
  max-height: calc(100% - 20px);
}

.quickActionPopup [icon] {
  --size: 24px;
}

.quickActionPopup .closeButton {
  position: absolute;
  right: 0;
  top: 0;
  --size: 20px;
  padding: 5px;
  cursor: pointer;
  background: #ccc;
}

.quickActionPopup .closeButton:hover {
  background: #f27474;
}

.quickActionBg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.gridRow:hover .gridCell {
  background-color: #eee;
}

.gridRow .cardModeCellFrame {
  cursor: pointer;
  min-height: 188px;
}

/*#gridLoader {*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  transform: translate(-50%, -50%);*/
/*  width: 40px;*/
/*  height: 40px;*/
/*  border-radius: 50%;*/
/*  border: 4px solid transparent;*/
/*  border-top-color: #272727;*/
/*  border-bottom-color: #272727;*/
/*  animation: spin .6s ease-in-out infinite;*/
/*}*/

/* ===== Alerts ===== */
.errorLabel {
  display: none;
  font-family: "Roboto Condensed", "Roboto", Helvetica, Arial, Lucida, sans-serif;
  /* background-color: #fc031322; */
  /* border: 1px solid #ff0313; */
  border-radius: 5px;
  font-size: 20px !important;
  color: #ff0313 !important;
  font-weight: 500;
  margin: 10px 0;
  /* width: 42%; */
  /* text-align: center; */
  cursor: pointer;
  /* margin: 1% auto auto; */
}

/* ===== Login Controls ===== */
.loginControls {
  display: block;
  margin: auto;
  width: 20%;
}

.loginControls::placeholder {
  color: #082222;
  text-align: center;
}

/* ===== Forms ===== */
.formContainer {
  width: 20%;
  clear: both;
  margin: auto;
}

@media only screen and (max-width: 1024px) {
  .formContainer {
    width: 60%;
  }
}

.formContainer input {
  width: 100%;
  clear: both;
}

.formContainer select {
  width: 100%;
  clear: both;
}

.requiredFieldNotFilled {
    border: #d30000 2px solid !important;
}

.formDivider {
    color: #082222;
}

.inlineControls {
    width: 50%  !important;
    max-width: 150px;
    display: inline-flex;
    margin-right: 2%;
}

.inlineLabel {
    font-size: 16px;
    padding: 2px;
}

.rangeBayLabels {
    word-break: break-word;
    font-weight: 600;
}

.singleCharacterSelect {
    width: 16% !important;
    max-width: 50px;
    word-break: initial;
}

.settingsFormLabel {
    font-weight: 600;
}

#StickyTaskCreationSettingSelect {
    /* Basic styles to give the select a nice look */
    font-size: 1rem;
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background-color: white;
}


.environmentNotesContainer {
    background: #082222;
    color: #fff;
    margin-bottom: 10px;
    height: 20px;
    padding: 5px;
    opacity: .8;
}

.taskTypeWidthLimit {
    max-width: 300px;
}

/* ===== Logos ===== */
.logo {
  height: 1.4em;
}

#logo {
  width: 50%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.growmentumTextAndRocketLogo {
    padding-bottom: 15px;
}

.growmentumTextAndRocketLogoWelcomePage {
    display: block;
    margin: auto;
    padding-top: 15%;
    max-width: 450px;
    width: 40%;
}


/* ===== General Button Styles ===== */
.button, .notificationCenterButton {
  padding: 0.25rem 0.75rem;
  width: auto;
  background-color: #082222;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  flex-shrink: 0;
}

.button {
  display: flex;
  gap: 8px;
}

.button > [icon] {
  background: #fff !important;
}

.button {
  white-space: nowrap;
}

button.button {
  border: none;
}

.button.active {
  background-color: #324243;
}

.button.secondary {
  background-color: #fff;
  color: #082222;
  border-radius: 6px;
  border: 1px solid #082222;
  padding: calc(0.25rem - 1px) 0.75rem;
}

.button.secondary:hover {
  background-color: #ddd;
}

.button:hover,
.button.visible,
.button:focus {
  background-color: #324243;
  cursor: pointer;
}

.button[disabled] {
    pointer-events: none;
    opacity: 0.4;
}

.textButton {
  border: 0;
  background: unset;
  cursor: pointer;
  color: #42526e;
  text-decoration: underline;
}

.textButton:hover {
  color: #6178a1;
}

.refreshSubtasksGridButton {
    width: 40%;
    max-width: 180px;
}

/* ======== Comments Section ======== */
.commentInputWrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

#taskForm #updatesBlock [icon=account_circle] {
  --size: 3em;
}

.commentInputWrapper .textEditorContainer {
  flex: 1;
}

.commentInputWrapper #updateBtn.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.commentInput {
  flex: 100%;
  min-width: 0;
  display: block;
  resize: none;
}

.commentContainer {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  margin-top: 10px;
}

.commentContainer + .commentContainer {
  margin-top: 20px;
}

.commentContainer .attachmentsContainer {
  display: contents;
}

.commentContainer .attachmentsList {
  grid-column: span 2;
}

.authorContainer {
  grid-area: author;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 600;
  color: #082222;
  white-space: nowrap;
}

.creationDateContainer {
  white-space: nowrap;
  grid-area: datetime;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  opacity: 0.4;
}

.comment {
  display: grid;
  grid-template-areas: "avatar author datetime"
                       "avatar comment comment"
                       "avatar actions actions";
  grid-template-rows: 24px 1fr;
  grid-template-columns: 3em auto 1fr;
  box-sizing: border-box;
  gap: 8px;
}

.comment .commentActions {
  grid-area: actions;
    text-align: left;
}

.comment .commentButton {
  color: #42526e;
  cursor: pointer;
}

.comment .commentButton + .commentButton::before {
  content: "·";
  padding: 0 5px;
  cursor: default;
}

.comment .avatar {
  grid-area: avatar;
  background: #454a59;
  --size: 3em;
}

.commentEditor {
  grid-area: comment;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  scroll-margin-top: 40px;
  scroll-margin-bottom: 10px;
}

.commentEditor .saveButton.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.commentEditor .textEditorContainer {
  flex: 100%;
}

.commentText {
  /* grid-area: comment; */ /* removed because it caused comments to center in quick actions tab*/
  overflow-wrap: anywhere;
  font-weight: 400 !important;
  color: #082222 !important;
  text-align: left;
  grid-column: span 2;
}

#historyBlock .comment {
  grid-template-columns: 1.5em auto 1fr;
}

.historyRow .arrow {
  margin: 0 4px;
}

.historyRow .oldValue, .historyRow .newValue {
  padding: 3px 5px;
  border-radius: 4px;
  margin: 4px 0;
  display: inline-block;
  white-space: pre-wrap;
}

.historyRow .oldValue:empty, .historyRow .newValue:empty {
  display: inline;
}

.historyRow .mentionPill {
  background-color: #ddd;
  margin-bottom: 0;
}

.historyRow .oldValue {
  color: #ff5630;
  background-color: #ffebe6;
}

.historyRow .newValue {
  color: #006644;
  background-color: #e3fcef;
}

#commentLabel {
  font-size: 24px;
  font-weight: 600;
}

#commentHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 48px 0 0 0;
  padding: 16px;
  /* border-bottom: #082222 1px solid; */
}

/* ======== Miscellaneous ======== */

.body-container {
  margin-top: 40px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 25%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 750px) {
    #unitsSubtotalDiv{
        display: none;
    }
}


.taskQuickActionsSmallModal {
    min-width: 200px;
}
/*This is to set the swal popup to a smaller size instead of the 80% they add to the element.  It has to be !important
b/c any style added to the element overrides any css class applied.  */
body .swal2-popup {
    width: initial;
}

div:where(.swal2-html-container) {
 padding: 0 !important;
}

.swal2-html-container {
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(155, 155, 155, 0.5);
    border-radius: 20px;
    border: transparent;
}

.swal2-container .label-div {
  width: 100%;
  margin: 0;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }

  .swal2-container {
    padding: 0;
  }

  .swal2-container .main-div {
    width: 100%;
  }

  .swal2-container .response-div {
    justify-content: center;
    width: 100%;
  }

  .swal2-container .defaultInput,
  .swal2-container .defaultSelect {
    width: 100%;
  }

  .swal2-container .button-div {
    gap: 12px;
    padding: 0;
  }

  .swal2-container .button-div .button {
    padding: 4px 12px;
    margin: 8px 0;
    width: 50%;
  }

  .swal2-container .swal2-popup {
    border-radius: 0;
    min-height: 100vh;
    overflow: visible;
  }

  .swal2-backdrop-show {
    padding: 0 !important;
    background: #fff !important;
  }
}

.swal2-styled.swal2-confirm {
    background-color: #d30000 !important;
    box-shadow: 0 0 0 3px #d30000 !important;
}

/* remove border around close button */
body .swal2-close:focus {
  outline: none;
  box-shadow: none;
}

.growmentumTitle {
  display: block;
  margin: auto;
  font-size: 72px;
}

@media only screen and (max-width: 500px) {

    .growmentumTitle {
        display: block;
        margin: auto;
        font-size: 42px;
    }

}


.mainArea {
  display: flex;
  overflow-y: auto;
  height: 90%;
}

.groupNameTitle {
    align-content: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    color: #082222;
    font-size: 24px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

.taskTag {
  text-align: left;
  margin-top: -15px;
  color: #999;
}

/* ======== Keyframes ======== */
@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(180deg);
  }
}

/* ======== Charts and Data Display ======== */

.mins-difference {
    margin: 0.25rem auto;
}
.mins-difference.over span {
    background: #ffe4e4;
    color: #d30000;
    border-radius: 2px;
    padding: 0.125rem;
}
.mins-difference.under span {
    background: #eaffe4;
    color: #007f00;
    border-radius: 2px;
    padding: 0.125rem;
}
.mins-difference.equal span {
  display: none;
}
.mins-difference.equal::after {
  content: '---';
}
.reopenedStatus {
    background: #ff3c00c7;
    color: #e9e9e9;
    border-radius: 2px;
    padding: 0.125rem;
}

.tooltipBg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}

.tooltip {
  position: absolute;
  padding: 20px;
  box-sizing: border-box;
  filter: drop-shadow(0px 0px 5px #08222233);
  background: #fff;
  border-radius: 5px;
  max-height: 300px;
  min-width: 80px;
  max-width: min(600px, calc(100% - 60px));
  overflow-y: auto;
  z-index: 10000;
}

html:has(.tooltip) {
  touch-action: none;
  -webkit-user-select: none;
}

.tooltip.loading {
  min-height: 50px;
  min-width: 50px !important;
  overflow: hidden;
}

.aiPoweredLabel {
  color: #9e9e9e;
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 4px;
}

.aiPoweredLabel i[icon="flare"] {
  --size: 16px !important;
  background: #9e9e9e !important;
}

/*6 .Fonts*/

/*These were downloaded from Google Fonts so we don't have to load them everytime. */

/* latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url(../font/InterFontLatin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url(../font/InterFontLatin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url(../font/InterFontLatin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url(../font/InterFontLatin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
