@charset "UTF-8";
/* stylelint-disable selector-type-no-unknown */
tags {
  display: block;
  border: 1px solid #ddd;
  padding-right: 0.3em 0.5em;
  cursor: text;
  overflow: hidden;
  background: white;
}
tags:hover {
  border-color: #ccc;
}
@-webkit-keyframes tags--bump {
  30% {
    box-shadow: 0 0 0 4px #e5e5e5;
  }
}
@keyframes tags--bump {
  30% {
    box-shadow: 0 0 0 4px #e5e5e5;
  }
}
tags tag {
  display: inline-block;
  margin: 5px 0 5px 5px;
  vertical-align: top;
  position: relative;
  z-index: 1;
  cursor: default;
  transition: 0.13s ease-out;
  -webkit-animation: 0.3s tags--bump 1 ease-out;
          animation: 0.3s tags--bump 1 ease-out;
}
tags tag > div {
  vertical-align: top;
  position: relative;
  box-sizing: border-box;
  max-width: 100%;
  padding: 0.3em 0.5em;
  color: black;
  transition: 0.13s ease-out;
  padding-right: 1.5em;
}
tags tag > div > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  transition: 0.1s;
}
tags tag > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #e5e5e5;
  border-radius: 3px;
  z-index: -1;
  pointer-events: none;
  transition: 80ms ease;
}
tags tag:hover div::before {
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  background: #d3e2e2;
  box-shadow: 0 0 0 0 #d39494 inset;
}
tags tag.tagify--noAnim {
  -webkit-animation: none;
          animation: none;
}
tags 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;
}
@-webkit-keyframes tagify--pulse {
  25% {
    background: rgba(211, 148, 148, 0.6);
  }
}
@keyframes tagify--pulse {
  25% {
    background: rgba(211, 148, 148, 0.6);
  }
}
tags tag.tagify--mark div::before {
  -webkit-animation: 0.3s tagify--pulse 2 ease-out;
          animation: 0.3s tagify--pulse 2 ease-out;
}
tags tag.tagify--notAllowed div span {
  opacity: 0.5;
}
tags tag.tagify--notAllowed div:before {
  background: rgba(211, 148, 148, 0.44);
  transition: 0.2s;
}
tags tag x {
  font: 14px/14px 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;
}
tags tag x::after {
  content: "×";
}
tags tag x:hover {
  color: white;
  background: #c77777;
}
tags tag x:hover + div > span {
  opacity: 0.5;
}
tags tag x:hover + div:before {
  background: rgba(211, 148, 148, 0.44);
  transition: 0.2s;
}
tags.readonly {
  cursor: default;
}
tags.readonly > div {
  visibility: hidden;
  width: 0;
  margin: 5px 0;
}
tags.readonly x {
  display: none;
}
tags.readonly tag > div {
  padding: 0.3em 0.5em;
}
tags input,
tags textarea {
  border: 0;
  display: none;
}
tags input::-webkit-calendar-picker-indicator {
  display: none;
}
tags > div {
  display: inline-block;
  min-width: 10px;
  margin: 5px;
  padding: 0.3em 0.5em;
  position: relative;
  vertical-align: top;
}
tags > div > input {
  display: block;
  min-width: 130px;
}
tags > div > input:focus {
  outline: none;
}
tags > div > input.placeholder ~ span {
  opacity: 0.5;
  transform: none;
}
tags > div > span {
  opacity: 0;
  line-height: 1.8;
  position: absolute;
  top: 0;
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
  transform: translatex(6px);
  transition: 0.15s ease-out;
}
