@charset "UTF-8";
.tagify {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0;
  cursor: text;
  position: relative;
  transition: 0.1s;
  background-color:#4d4d4d;
  border-radius: 3px;
  font-size: 16px;
}
@keyframes tags--bump {
  30% {
    transform: scale(1.2);
  }
}
.tagify:hover {
  border-color: #CCC;
}
.tagify.tagify--focus {
  border-color: #85C8EA;
}
.tagify[readonly] {
  cursor: default;
}
.tagify[readonly] > .tagify__input {
  visibility: hidden;
  width: 0;
  margin: 5px 0;
}
.tagify[readonly] x {
  display: none;
}
.tagify[readonly] tag > div {
  padding: 0.3em 0.5em;
}
.tagify[readonly] tag > div::before {
  background: linear-gradient(45deg, #d6d6d6 25%, transparent 25%, transparent 50%, #d6d6d6 50%, #d6d6d6 75%, transparent 75%, transparent) 0/5px 5px;
  box-shadow: none;
}
.tagify + input,
.tagify + textarea {
  border: 0;
  display: none;
}
.tagify tag {
  display: inline-block;
  margin: 5px 0 0px 5px;
  position: relative;
  z-index: 1;
  cursor: default;
  transition: 0.13s ease-out;
}
.tagify tag.tagify--editable > div::before {
  box-shadow: 0 0 0 2px #D3E2E2 inset !important;
}
.tagify tag.tagify--editable.tagify--invalid > div::before {
  box-shadow: 0 0 0 2px #D39494 inset !important;
}
.tagify tag > div {
  vertical-align: top;
  position: relative;
  box-sizing: border-box;
  max-width: 100%;
  padding: 6px;
  font-size:14px;
  color: #F77F00;;
  border-radius: 3px;
  user-select: none;
  transition: 0.13s ease-out;
  padding-right: 1.5em;
}
.tagify tag > div > * {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
}
.tagify tag > div > *[contenteditable] {
  outline: none;
}
.tagify tag > div::before {
  content: "";
  position: absolute;
  border-radius: inherit;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #F77F00;
  background-color: rgba(247, 127, 0, 0.2);
  z-index: -1;
  pointer-events: none;
  transition: 120ms ease;
  animation: 0.3s tags--bump 1 ease-out;
}
.tagify tag:hover:not([readonly]) div::before {
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  border: 1px solid #F77F00;
  background-color: rgba(247, 127, 0, 0.0);
}
.tagify tag.tagify--noAnim {
  animation: none;
}
.tagify tag.tagify--hide {
  width: 0 !important;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  opacity: 0;
  transform: scale(0);
  transition: 0.3s;
  pointer-events: none;
}
.tagify tag.tagify--mark div::before {
  animation: none;
}
.tagify tag.tagify--notAllowed div > span {
  opacity: 1;
}
.tagify tag.tagify--notAllowed div::before {
  box-shadow: 0 0 0 20px rgba(214, 40, 40, 0.5) inset !important;
  transition: 0.2s;
}
.tagify tag[readonly] x {
  display: none;
}
.tagify tag[readonly] > div {
  padding: 0.3em 0.5em;
}
.tagify tag[readonly] > div::before {
  background: linear-gradient(45deg, #d6d6d6 25%, transparent 25%, transparent 50%, #d6d6d6 50%, #d6d6d6 75%, transparent 75%, transparent) 0/5px 5px;
  box-shadow: none;
}
.tagify tag x {
  font: 14px/16px Serif;
  width: 14px;
  height: 14px;
  text-align: center;
  border-radius: 50px;
  position: absolute;
  z-index: 1;
  right: calc(0.5em - 2px);
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition: 0.2s ease-out;
}
.tagify tag x::after {
  content: url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 352 512'><path  fill='rgba(247, 127, 0, 1)' d='M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z'/></svg>");
  height:10px;
  width:10px;
  top:0px;
  display:inline-block;
  position: relative;
}
.tagify tag x:hover {
  color: white;
  /* background: #d62828; */
}
.tagify tag x:hover + div > span {
  opacity: 1;
}
.tagify tag x:hover + div::before {
  box-shadow: 0 0 0 20px rgba(214, 40, 40, 0.5) inset !important;
  transition: 0.2s;
}
.tagify__input {
  display: block;
  min-width: 110px;
  margin: 7px 0px 0px 0px;
  padding: 5px;
  position: relative;
}
.tagify__input:empty::before {
  transition: 0.2s ease-out;
  opacity: 0.5;
  transform: none;
}
.tagify__input:focus {
  outline: none;
}
.tagify__input:focus::before {
  transition: 0.2s ease-out;
  opacity: 0;
  transform: translatex(6px);
}
/* @supports (-moz-appearance: none) {
  .tagify__input:focus::before {
    display: none;
  }
} */
.tagify__input:focus:empty::before {
  transition: 0.2s ease-out;
  opacity: 0.3;
  transform: none;
}
/* @supports (-moz-appearance: none) {
  .tagify__input:focus:empty::before {
    display: inline-block;
  }
} */
.tagify__input::before {
  content: attr(data-placeholder);
  line-height: 1.8;
  position: absolute;
  top: 0;
  z-index: 1;
  color: #2d2d2d;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  margin: 1px 0px 0px 0px;
  font-size: 14px;
}
/* @supports (-moz-appearance: none) {
  .tagify__input::before {
    line-height: inherit;
    position: relative;
  }
} */
.tagify__input::after {
  content: attr(data-suggest);
  color: black;
  opacity: 0.3;
  pointer-events: none;
}
.tagify__input tag {
  margin: 0 2.5px;
}
.tagify__input tag > div {
  padding-top: 0;
  padding-bottom: 0;
}
.tagify__input tag > div::before {
  top: -3px;
  bottom: -3px;
}
.tagify__input tag:hover:not([readonly]) > div::before {
  top: -3px;
  bottom: -3px;
  left: 0;
  right: 0;
}
.tagify--mix .tagify__input {
  padding: 5px;
  margin: 0;
  width: 100%;
  height: 100%;
}
.tagify__dropdown {
  position: absolute;
  z-index: 999;
  background: #4d4d4d;
  max-height: 100px;
  overflow: auto;
  box-sizing: border-box;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.tagify__dropdown__item {
  box-sizing: inherit;
  padding: 6px 6px;
  margin: 2px;
  cursor: pointer;
  border-radius: 3px;
  border: 1px solid ##4d4d4d;;
  position: relative;
  color:#adadad;
}
.tagify__dropdown__item--active {
  display: flex;
  align-items: center;
  padding: 6px 6px;
  margin: 2px;
  border: 1px solid #F77F00;
  background-color: rgba(247, 127, 0, 0.2);
  color:#F77F00;
}
.tagify__dropdown__item:active {
  margin:5px;
  border: 1px solid #F77F00;
  background-color: rgba(247, 127, 0, 0.2);
  color:#F77F00;
}









.tagify--select::after {
    /* content: ">";
    opacity: 0.5;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    font: 16px monospace;
    line-height: 8px;
    height: 8px;
    pointer-events: none;
    transform: translate(-150%, -50%) scaleX(1.2) rotate(90deg);
    transition: 0.2s ease-in-out; */
}
/* .tagify--select[aria-expanded="true"]::after {
    transform: translate(-150%, -50%) rotate(270deg) scaleY(1.2);
} */
.tagify--select .tagify__tag {
    position: absolute;
    top: -4px;
    right: 0;
    bottom: 0;
}
.tagify--select .tagify__tag div {
    display: none;
}
.tagify--select .tagify__input {
    font-size: 14px;
    width: 100%;
    min-height: 24px;
}
