/* [project]/src/src/features/specialist/DevListPopup/DevListPopup.scss.css [app-client] (css) */
.is-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.clear, .clear:before, .clear:after {
  display: block;
  clear: both;
  content: "";
}

.DevListPopup {
  position: fixed;
  bottom: 0;
  z-index: 99;
  display: flex;
  width: 100%;
  max-width: 90vw;
  padding: 10px 30px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 17px;
  color: #fff;
  background: #252942;
  border-radius: 5px 5px 0 0;
  opacity: 0;
  transition: all .2s ease-out;
  transform: translateY(64px);
}

@media (width <= 768px) {
  .DevListPopup {
    flex-direction: column;
    padding: 10px 20px;
  }
}

.DevListPopup_shown {
  opacity: 1;
  transition: transform .2s ease-in, opacity .2s ease-in;
  transform: translateY(0);
}

.DevListPopup_mobile {
  left: 0;
  width: 100vw;
  max-width: none;
}

.DevListPopup__avatar {
  width: 30px;
  height: 30px;
  margin: auto 15px auto 0;
  border-radius: 50%;
}

.DevListPopup__close {
  width: 20px;
  height: 20px;
  margin: auto 0 auto 10px;
  cursor: pointer;
  background: url("../media/Close.7fd80319.svg");
  border-radius: 50%;
  transition: background-color .175s ease-in-out;
}

@media (width <= 768px) {
  .DevListPopup__close {
    position: fixed;
    top: 16px;
    right: 14px;
    margin-left: auto;
  }
}

.DevListPopup__list:not(:empty) {
  display: flex;
  align-items: center;
}

@media (width <= 768px) {
  .DevListPopup__list:not(:empty) {
    padding-top: 6px;
    padding-bottom: 20px;
  }
}

.DevListPopup__close:hover {
  background-color: #444967;
}

.DevListPopup__wrapper {
  display: flex;
}

.DevListPopup__avatar-image {
  width: 30px;
  height: 30px;
  border: 1px solid #cbcbcb;
  border-radius: 50%;
}

.DevListPopup__Button-wrapper {
  display: flex;
  margin-left: auto;
}

.DevListPopup__Button-wrapper .Button {
  height: 42px;
  margin: auto 0;
}

@media (width >= 601px) {
  .DevListPopup__Button-wrapper .Button:first-child {
    margin-right: 25px;
  }
}

@media (width <= 600px) {
  .DevListPopup__Button-wrapper .Button:first-child {
    margin-right: 15px;
  }
}

@media (width <= 413px) {
  .DevListPopup__Button-wrapper .Button {
    padding: 10px 15px;
  }
}

@media (width <= 359px) {
  .DevListPopup__Button-wrapper .Button {
    padding: 10px 11px;
  }
}

@media (width <= 768px) {
  .DevListPopup__Button-wrapper {
    margin: 10px auto auto;
  }
}

@media (width <= 600px) {
  .DevListPopup__Button-wrapper {
    gap: 0;
    margin: 4px 0;
  }
}

.DevListPopup__list-wrapper {
  display: grid;
  grid-template-columns: 1fr 40px;
  margin: auto 0;
}

@media (width <= 768px) {
  .DevListPopup__list-wrapper {
    width: inherit;
  }
}

.DevListPopup__image {
  float: right;
}


/* [project]/src/src/features/specialist/DevTable/DevTable.scss.css [app-client] (css) */
.DevTable__ColorLabel-wrapper {
  width: 71px;
  margin: auto;
}

.DevTable__salary {
  color: #252942;
}

.DevTable__salary_bolder {
  font-weight: 600;
}

.DevTable__gradeIndex {
  display: none;
}

.DevTable__disc_salary {
  font-weight: 600;
}

.DevTable__booking-link {
  display: block;
}

@media (width >= 1600px) {
  .DevTable__salary, .DevTable__disc_salary, .DevTable__booking-link {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.DevTable__narrow-width {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}

.DevTable__booking-link, .DevTable__salary-link {
  color: #007fdb;
  text-decoration: none;
  cursor: pointer;
}

.DevTable__booking-link:hover, .DevTable__salary-link:hover {
  color: #007fdb;
  text-decoration: underline;
}

.DevTable__head-cell-wrapper_id_exp {
  max-width: 150px;
}

.DevTable__head-cell-wrapper_id_busy {
  width: 180px;
}

.DevTable__head-cell-wrapper_id_booking {
  width: 140px;
}

.DevTable__body-cell-wrapper-stack {
  max-width: 14vw;
}


/* [project]/src/src/shared/ui/Filter/Filter.scss.css [app-client] (css) */
.is-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.clear, .clear:before, .clear:after {
  display: block;
  clear: both;
  content: "";
}

.Filter {
  position: relative;
  overflow: hidden;
  border: 1px solid #606f89;
  border-radius: 5px;
  width: 100%;
}

.Filter:before {
  position: absolute;
  top: 4px;
  right: 1px;
  z-index: 2;
  width: 40px;
  height: calc(100% - 8px);
  content: "";
  background-color: #fff;
  border-radius: 5px;
  box-shadow: -10px 0 5px #fff;
}

.Filter:after {
  position: absolute;
  top: calc(50% - 1px);
  right: 11px;
  z-index: 3;
  width: 27px;
  height: 27px;
  content: "";
  background: url("../media/search.7a0359e8.svg");
  transform: translateY(-50%);
}

@media (width <= 600px) {
  .Filter {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 31;
    justify-content: center;
    width: 90vw;
    margin: 0 auto 15px;
    background: #fff;
  }
}

.Filter__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  align-items: center;
  justify-content: space-between;
  border: none;
  list-style: none;
}

.Filter__item-input {
  flex: 1;
  min-height: 50px;
}

.Filter__item-input_minWidth {
  min-width: 280px;
}

.Filter__item-select_minWidth {
  min-width: 320px;
}

@media (width <= 600px) {
  .Filter__item-select {
    width: 90vw;
    margin: 0 auto 15px;
  }

  .Filter__item-select .BusyComboBox2 {
    justify-content: center;
  }
}

.Filter__item-select_rightAlignment {
  display: flex;
  justify-content: flex-end;
}

.Filter .tagify {
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  padding-right: 16px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  border: none;
  --placeholder-color: #606f89;
  --tag-border-radius: 20px;
  --tag-pad: .215em 1.5em;
  --tag-remove-btn-bg--hover: #ffc0c0;
}

.Filter .tagify > span[contenteditable] {
  display: flex;
}

.Filter .tags-input {
  position: relative;
  color: #252942;
  height: 100%;
}

.Filter .tags-input .tagify {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.Filter .tags-input .tagify::-webkit-scrollbar {
  display: none;
}

.Filter .tags-input .tagify__tag > div:before {
  --tag-inset-shadow-size: 100px;
}

.Filter .tagify__tag {
  margin: 13px 0 13px 16px;
  --tag-text-color: #252942;
  --tag-remove-btn-bg--hover: #ffc0c0;
}

.Filter .tagify__input {
  width: 0;
  height: 24px;
  min-width: 0;
  padding: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 22px;
}

.Filter .tagify__input:before {
  max-width: 100%;
  height: 24px;
  overflow: hidden;
  line-height: 22px;
  text-overflow: ellipsis;
}

.Filter .tagify--noTags .tagify__input {
  margin: 15px 42px 11px 16px;
}

:root .tagify__tag__removeBtn:hover + div > span {
  opacity: 1;
}

:root .tagify__tag__removeBtn {
  margin-right: 6px;
  margin-left: -8px;
  font-family: Montserrat, Arial, sans-serif;
  font-style: normal;
  font: 14px Arial;
}

:root .tagify__tag__removeBtn:hover {
  box-shadow: 1px 0px 0px 4.5px var(--tag-remove-btn-bg--hover), -1px 0px 0px 4.5px var(--tag-remove-btn-bg--hover);
  border-radius: 100px;
}

:root .tagify__tag:hover:not([readonly]) div:before {
  --tag-bg-inset: 0px;
}

:root .tagify__tag:hover {
  --tag-hover: #e5e5e5;
  --tag-text-color: #252942;
}

:root .tagify__tag-text:before {
  --tag-text-color: #252942;
}

:root .tagify__tag__removeBtn:hover {
  color: #252942;
}

:root .tagify__tag__removeBtn:hover + div:before {
  transition: box-shadow .2s;
  --tag-remove-bg: #ffdcdc;
  --tag-text-color: #252942;
  box-shadow: 0 0 0 var(--tag-inset-shadow-size) var(--tag-remove-bg, #d394944d) inset !important;
}

:root .tagify__tag__removeBtn:after {
  content: "╳";
}


/* [project]/src/src/shared/ui/TableViewToggle/TableViewToggle.scss.css [app-client] (css) */
.TableViewToggle {
  display: flex;
}

.TableViewToggle__toggle {
  width: 32px;
  height: 28px;
  cursor: pointer;
  filter: opacity(.2) grayscale();
  transition: filter .2s;
}

.TableViewToggle__toggle:hover {
  filter: opacity() grayscale(0);
}

.TableViewToggle__toggle_active {
  filter: opacity() grayscale(0);
}

.TableViewToggle__toggle_table {
  margin-right: 10px;
  background: url("../media/table-view.c1751374.svg") 50% no-repeat;
  background-size: cover;
}

.TableViewToggle__toggle_cards {
  background: url("../media/cards-view.442f524b.svg") 50% no-repeat;
  background-size: cover;
}


/* [project]/src/src/pages/TablePage/TablePage.scss.css [app-client] (css) */
.is-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.clear, .clear:before, .clear:after {
  display: block;
  clear: both;
  content: "";
}

.TablePage {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 25px 0 0;
  margin-bottom: 73px;
}

@media (width <= 600px) {
  .TablePage {
    padding: 30px 0 0;
  }
}

.TablePage__title {
  color: #252942;
  font-size: 45px;
  font-weight: 300;
  line-height: 55px;
  font-family: Montserrat;
  text-align: center;
  margin-bottom: 27px;
}

@media (width <= 600px) {
  .TablePage__title {
    font-size: 32px;
    font-weight: 300;
    line-height: 35px;
    font-family: Montserrat;
    margin: 0 auto 22px;
    max-width: 320px;
  }
}

.TablePage__TestView {
  width: 90vw;
  margin: 0 auto 10px;
}

.TablePage__TestView_view {
  cursor: pointer;
}

.TablePage__IsManager {
  width: 90vw;
  margin: 0 auto 10px;
}

.TablePage__Select {
  display: flex;
  width: 90vw;
  margin: 10px auto 15px;
}

.TablePage__Select .DropDown__button {
  color: #252942;
}

.TablePage__Filter-wrapper {
  padding-top: 9px;
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
  z-index: 20;
  background-color: #fff;
}

.TablePage__Filter {
  width: 90vw;
  margin: 0 auto 15px;
}

.TablePage__MegaTagList {
  display: flex;
  justify-content: space-between;
  width: 90vw;
  padding-top: 10px;
  margin: 0 auto 20px;
  flex-wrap: nowrap;
}

@supports not (translate: 100px) {
  .TablePage__MegaTagList > * {
    margin-left: 10px;
    margin-right: 10px;
  }

  .TablePage__MegaTagList > :first-child {
    margin-left: 0;
  }

  .TablePage__MegaTagList > :last-child {
    margin-right: 0;
  }
}

@supports (translate: 100px) {
  .TablePage__MegaTagList {
    gap: 20px;
  }
}

.TablePage__MegaTagList .MegaTagList {
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.TablePage__MegaTagList .MegaTagList::-webkit-scrollbar {
  display: none;
}

@media (width <= 600px) {
  .TablePage__MegaTagList {
    justify-content: center;
  }

  .TablePage__MegaTagList .MegaTagList {
    overflow-x: scroll;
  }
}

.TablePage__more-dev {
  box-sizing: border-box;
  height: 100%;
  padding: 9px 20px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 100%;
  color: #007fdb;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: 1px solid #007fdb;
  border-radius: 50px;
}

.TablePage__tables {
  display: block;
  width: 90vw;
  margin: 0 auto;
}

@media screen and (width <= 600px) {
  .TablePage__tables {
    width: 90vw;
  }
}

.TablePage__wrapper {
  display: block;
  max-width: 90vw;
  margin: 10px auto auto;
  overflow: auto;
}

@media (width <= 1920px) {
  .TablePage__wrapper {
    min-height: 220px;
  }
}

.TablePage .AdaptiveTable__body-cell:nth-child(4), .TablePage .AdaptiveTable__body-cell:nth-child(9) {
  padding-left: 29px;
}


/* [project]/node_modules/@yaireo/tagify/dist/tagify.css [app-client] (css) */
:root {
  --tagify-dd-color-primary: #3595f6;
  --tagify-dd-bg-color: white;
  --tagify-dd-item-pad: .3em .5em;
  --tagify-dd-max-height: 300px;
}

.tagify {
  --tags-disabled-bg: #f1f1f1;
  --tags-border-color: #ddd;
  --tags-hover-border-color: #ccc;
  --tags-focus-border-color: #3595f6;
  --tag-border-radius: 3px;
  --tag-bg: #e5e5e5;
  --tag-hover: #d3e2e2;
  --tag-text-color: black;
  --tag-text-color--edit: black;
  --tag-pad: .3em .5em;
  --tag-inset-shadow-size: 1.1em;
  --tag-invalid-color: #d39494;
  --tag-invalid-bg: #d3949480;
  --tag--min-width: 1ch;
  --tag--max-width: 100%;
  --tag-hide-transition: .3s;
  --tag-remove-bg: #d394944d;
  --tag-remove-btn-color: black;
  --tag-remove-btn-bg: none;
  --tag-remove-btn-bg--hover: #c77777;
  --input-color: inherit;
  --placeholder-color: #0006;
  --placeholder-color-focus: #00000040;
  --loader-size: .8em;
  --readonly-striped: 1;
  display: inline-flex;
  align-items: flex-start;
  flex-wrap: wrap;
  border: 1px solid var(--tags-border-color);
  padding: 0;
  line-height: 0;
  cursor: text;
  outline: 0;
  position: relative;
  box-sizing: border-box;
  transition: all .1s;
}

@keyframes tags--bump {
  30% {
    transform: scale(1.2);
  }
}

@keyframes rotateLoader {
  to {
    transform: rotate(1turn);
  }
}

.tagify:hover:not(.tagify--focus):not(.tagify--invalid) {
  --tags-border-color: var(--tags-hover-border-color);
}

.tagify[disabled] {
  background: var(--tags-disabled-bg);
  filter: saturate(0);
  opacity: .5;
  pointer-events: none;
}

.tagify[disabled].tagify--select, .tagify[readonly].tagify--select {
  pointer-events: none;
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select), .tagify[readonly]:not(.tagify--mix):not(.tagify--select) {
  cursor: default;
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select) > .tagify__input, .tagify[readonly]:not(.tagify--mix):not(.tagify--select) > .tagify__input {
  visibility: hidden;
  width: 0;
  margin: 5px 0;
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div, .tagify[readonly]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div {
  padding: var(--tag-pad);
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div:before, .tagify[readonly]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div:before {
  animation: readonlyStyles 1s calc(-1s * (var(--readonly-striped)  - 1)) paused;
}

@keyframes readonlyStyles {
  0% {
    background: linear-gradient(45deg, var(--tag-bg) 25%, transparent 25%, transparent 50%, var(--tag-bg) 50%, var(--tag-bg) 75%, transparent 75%, transparent) 0 / 5px 5px;
    box-shadow: none;
    filter: brightness(.95);
  }
}

.tagify[disabled] .tagify__tag__removeBtn, .tagify[readonly] .tagify__tag__removeBtn {
  display: none;
}

.tagify--loading .tagify__input > br:last-child {
  display: none;
}

.tagify--loading .tagify__input:before {
  content: none;
}

.tagify--loading .tagify__input:after {
  content: "";
  vertical-align: middle;
  opacity: 1;
  width: .7em;
  height: .7em;
  width: var(--loader-size);
  height: var(--loader-size);
  min-width: 0;
  border: 3px solid;
  border-color: #eee #bbb #888 #0000;
  border-radius: 50%;
  animation: .4s linear infinite rotateLoader;
  margin: -2px 0 -2px .5em;
  content: "" !important;
}

.tagify--loading .tagify__input:empty:after {
  margin-left: 0;
}

.tagify + input, .tagify + textarea {
  position: absolute !important;
  left: -9999em !important;
  transform: scale(0) !important;
}

.tagify__tag {
  display: inline-flex;
  align-items: center;
  max-width: calc(var(--tag--max-width)  - 10px);
  margin-inline: 5px 0;
  margin-block: 5px;
  position: relative;
  z-index: 1;
  outline: 0;
  line-height: normal;
  cursor: default;
  transition: all .13s ease-out;
}

.tagify__tag > div {
  vertical-align: top;
  box-sizing: border-box;
  max-width: 100%;
  padding: var(--tag-pad);
  color: var(--tag-text-color);
  line-height: inherit;
  border-radius: var(--tag-border-radius);
  white-space: nowrap;
  transition: all .13s ease-out;
}

.tagify__tag > div > * {
  white-space: pre-wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  min-width: var(--tag--min-width);
  max-width: var(--tag--max-width);
  transition: all .8s, color .1s;
}

.tagify__tag > div > [contenteditable] {
  outline: 0;
  -webkit-user-select: text;
  user-select: text;
  cursor: text;
  margin: -2px;
  padding: 2px;
  max-width: 350px;
}

.tagify__tag > div:before {
  content: "";
  position: absolute;
  border-radius: inherit;
  inset: var(--tag-bg-inset, 0);
  z-index: -1;
  pointer-events: none;
  transition: all .12s;
  animation: .3s ease-out tags--bump;
  box-shadow: 0 0 0 var(--tag-inset-shadow-size) var(--tag-bg) inset;
}

.tagify__tag:focus div:before, .tagify__tag:hover:not([readonly]) div:before {
  --tag-bg-inset: -2.5px;
  --tag-bg: var(--tag-hover);
}

.tagify__tag--loading {
  pointer-events: none;
}

.tagify__tag--loading .tagify__tag__removeBtn {
  display: none;
}

.tagify__tag--loading:after {
  --loader-size: .4em;
  content: "";
  vertical-align: middle;
  opacity: 1;
  width: .7em;
  height: .7em;
  width: var(--loader-size);
  height: var(--loader-size);
  min-width: 0;
  border: 3px solid;
  border-color: #eee #bbb #888 #0000;
  border-radius: 50%;
  animation: .4s linear infinite rotateLoader;
  margin: 0 .5em 0 -.1em;
}

.tagify__tag--flash div:before {
  animation: none;
}

.tagify__tag--hide {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  opacity: 0;
  transform: scale(0);
  transition: var(--tag-hide-transition);
  pointer-events: none;
  width: 0 !important;
}

.tagify__tag--hide > div > * {
  white-space: nowrap;
}

.tagify__tag.tagify--noAnim > div:before {
  animation: none;
}

.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div > span {
  opacity: .5;
}

.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div:before {
  --tag-bg: var(--tag-invalid-bg);
  transition: all .2s;
}

.tagify__tag[readonly] .tagify__tag__removeBtn {
  display: none;
}

.tagify__tag[readonly] > div:before {
  animation: readonlyStyles 1s calc(-1s * (var(--readonly-striped)  - 1)) paused;
}

@keyframes readonlyStyles {
  0% {
    background: linear-gradient(45deg, var(--tag-bg) 25%, transparent 25%, transparent 50%, var(--tag-bg) 50%, var(--tag-bg) 75%, transparent 75%, transparent) 0 / 5px 5px;
    box-shadow: none;
    filter: brightness(.95);
  }
}

.tagify__tag--editable > div {
  color: var(--tag-text-color--edit);
}

.tagify__tag--editable > div:before {
  box-shadow: 0 0 0 2px var(--tag-hover) inset !important;
}

.tagify__tag--editable > .tagify__tag__removeBtn {
  pointer-events: none;
}

.tagify__tag--editable > .tagify__tag__removeBtn:after {
  opacity: 0;
  transform: translateX(100%)translateX(5px);
}

.tagify__tag--editable.tagify--invalid > div:before {
  box-shadow: 0 0 0 2px var(--tag-invalid-color) inset !important;
}

.tagify__tag__removeBtn {
  order: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  cursor: pointer;
  font: 14px / 1 Arial;
  background: var(--tag-remove-btn-bg);
  color: var(--tag-remove-btn-color);
  width: 14px;
  height: 14px;
  margin-inline: auto 4.66667px;
  overflow: hidden;
  transition: all .2s ease-out;
}

.tagify__tag__removeBtn:after {
  content: "×";
  transition: all .3s, color;
}

.tagify__tag__removeBtn:hover {
  color: #fff;
  background: var(--tag-remove-btn-bg--hover);
}

.tagify__tag__removeBtn:hover + div > span {
  opacity: .5;
}

.tagify__tag__removeBtn:hover + div:before {
  transition: box-shadow .2s;
  box-shadow: 0 0 0 var(--tag-inset-shadow-size) var(--tag-remove-bg, #d394944d) inset !important;
}

.tagify:not(.tagify--mix) .tagify__input br {
  display: none;
}

.tagify:not(.tagify--mix) .tagify__input * {
  display: inline;
  white-space: nowrap;
}

.tagify__input {
  flex-grow: 1;
  display: inline-block;
  min-width: 110px;
  margin: 5px;
  padding: var(--tag-pad);
  line-height: normal;
  position: relative;
  white-space: pre-wrap;
  color: var(--input-color);
  box-sizing: inherit;
}

.tagify__input:empty:before {
  position: static;
}

.tagify__input:focus {
  outline: 0;
}

.tagify__input:focus:before {
  transition: all .2s ease-out;
  opacity: 0;
  transform: translateX(6px);
}

@supports (-ms-ime-align: auto) {
  .tagify__input:focus:before {
    display: none;
  }
}

.tagify__input:focus:empty:before {
  transition: all .2s ease-out;
  opacity: 1;
  transform: none;
  color: #00000040;
  color: var(--placeholder-color-focus);
}

@-moz-document url-prefix() {
  .tagify__input:focus:empty:after {
    display: none;
  }
}

.tagify__input:before {
  content: attr(data-placeholder);
  height: 1em;
  line-height: 1em;
  margin: auto 0;
  z-index: 1;
  color: var(--placeholder-color);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  position: absolute;
}

.tagify__input:after {
  content: attr(data-suggest);
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  min-width: calc(100% - 1.5em);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre;
  color: var(--tag-text-color);
  opacity: .3;
  pointer-events: none;
  max-width: 100px;
}

.tagify__input .tagify__tag {
  margin: 0 1px;
}

.tagify--mix {
  display: block;
}

.tagify--mix .tagify__input {
  padding: 5px;
  margin: 0;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  display: block;
}

.tagify--mix .tagify__input:before {
  height: auto;
  display: none;
  line-height: inherit;
}

.tagify--mix .tagify__input:after {
  content: none;
}

.tagify--select:after {
  content: ">";
  opacity: .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: all .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: 0;
  right: 1.8em;
  bottom: 0;
}

.tagify--select .tagify__tag div {
  display: none;
}

.tagify--select .tagify__input {
  width: 100%;
}

.tagify--empty .tagify__input:before {
  transition: all .2s ease-out;
  opacity: 1;
  transform: none;
  display: inline-block;
  width: auto;
}

.tagify--mix .tagify--empty .tagify__input:before {
  display: inline-block;
}

.tagify--focus {
  --tags-border-color: var(--tags-focus-border-color);
  transition: all;
}

.tagify--invalid {
  --tags-border-color: #d39494;
}

.tagify__dropdown {
  position: absolute;
  z-index: 9999;
  transform: translateY(-1px);
  border-top: 1px solid var(--tagify-dd-color-primary);
  overflow: hidden;
}

.tagify__dropdown[dir="rtl"] {
  transform: translate(-100%, -1px);
}

.tagify__dropdown[placement="top"] {
  margin-top: 0;
  transform: translateY(-100%);
}

.tagify__dropdown[placement="top"] .tagify__dropdown__wrapper {
  border-top-width: 1.1px;
  border-bottom-width: 0;
}

.tagify__dropdown[position="text"] {
  box-shadow: 0 0 0 3px rgba(var(--tagify-dd-color-primary), .1);
  font-size: .9em;
}

.tagify__dropdown[position="text"] .tagify__dropdown__wrapper {
  border-width: 1px;
}

.tagify__dropdown__wrapper {
  max-height: var(--tagify-dd-max-height);
  overflow: hidden;
  overflow-x: hidden;
  background: var(--tagify-dd-bg-color);
  border: 1px solid;
  border-color: var(--tagify-dd-color-primary);
  border-bottom-width: 1.5px;
  border-top-width: 0;
  box-shadow: 0 2px 4px -2px #0003;
  transition: all .3s cubic-bezier(.5, 0, .3, 1), transform .15s;
  animation: 0s .3s forwards dd-wrapper-show;
}

@keyframes dd-wrapper-show {
  to {
    overflow-y: auto;
  }
}

.tagify__dropdown__header:empty {
  display: none;
}

.tagify__dropdown__footer {
  display: inline-block;
  margin-top: .5em;
  padding: var(--tagify-dd-item-pad);
  font-size: .7em;
  font-style: italic;
  opacity: .5;
}

.tagify__dropdown__footer:empty {
  display: none;
}

.tagify__dropdown--initial .tagify__dropdown__wrapper {
  max-height: 20px;
  transform: translateY(-1em);
}

.tagify__dropdown--initial[placement="top"] .tagify__dropdown__wrapper {
  transform: translateY(2em);
}

.tagify__dropdown__item {
  box-sizing: border-box;
  padding: var(--tagify-dd-item-pad);
  margin: 1px;
  white-space: pre-wrap;
  cursor: pointer;
  border-radius: 2px;
  position: relative;
  outline: 0;
  max-height: 60px;
  max-width: 100%;
}

.tagify__dropdown__item--active {
  background: var(--tagify-dd-color-primary);
  color: #fff;
}

.tagify__dropdown__item:active {
  filter: brightness(105%);
}

.tagify__dropdown__item--hidden {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0 1px;
  pointer-events: none;
  overflow: hidden;
  max-height: 0;
  transition: var(--tagify-dd-item--hidden-duration, .3s) !important;
}

.tagify__dropdown__item--hidden > * {
  transform: translateY(-100%);
  opacity: 0;
  transition: inherit;
}


/*# sourceMappingURL=_8d92fd._.css.map*/
