.ResponsibleSelect {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 100%;
  min-width: 0;
}
.ResponsibleSelect__title {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ResponsibleSelect__control {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.ResponsibleSelect__option {
  display: block;
  min-width: 0;
  color: rgba(0, 0, 0, 0.88);
  font-size: 12px;
  line-height: 16px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.ResponsibleSelect__option--virtual {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ResponsibleSelect--cell {
  width: min(156px, 100%);
  max-width: 100%;
}
.ResponsibleSelect--cell .ResponsibleSelect__control {
  width: 100%;
  max-width: 100%;
}
.ResponsibleSelect--cell .ant-select-selector {
  min-height: 30px;
  height: auto !important;
  padding: 2px 7px !important;
  background: #fff !important;
  border-color: #e0e0e0 !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.ResponsibleSelect--cell .ant-select-selection-wrap {
  align-self: stretch;
  min-width: 0;
}
.ResponsibleSelect--cell .ant-select-selection-search {
  inset-inline-start: 7px !important;
  inset-inline-end: 7px !important;
}
.ResponsibleSelect--cell .ant-select-selection-placeholder,
.ResponsibleSelect--cell .ant-select-selection-item {
  min-width: 0;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.88);
  font-size: 12px;
  line-height: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ResponsibleSelect--cell .ant-select-selection-placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.ResponsibleSelect--cell .ant-select-arrow,
.ResponsibleSelect--cell .ant-select-clear,
.ResponsibleSelect--cell .ant-select-selection-item-remove {
  color: rgba(0, 0, 0, 0.45);
}
.ResponsibleSelect--cell .ant-select:not(.ant-select-disabled):hover .ant-select-selector {
  background: #f9fafb !important;
  border-color: #91caff !important;
}
.ResponsibleSelect--cell .ant-select-focused .ant-select-selector,
.ResponsibleSelect--cell .ant-select-open .ant-select-selector {
  background: #f5faff !important;
  border-color: #4096ff !important;
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.08) !important;
}
.ResponsibleSelect--cell .ant-select-disabled .ant-select-selector {
  background: #f5f5f5 !important;
  border-color: #f0f0f0 !important;
}
.ResponsibleSelect--cell .ant-select-disabled .ant-select-selection-placeholder,
.ResponsibleSelect--cell .ant-select-disabled .ant-select-selection-item {
  color: rgba(0, 0, 0, 0.35);
}
.ResponsibleSelect__cell-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  min-height: 28px;
  height: 28px;
  padding: 2px 7px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.ResponsibleSelect__cell-trigger:not(:disabled):hover {
  background: #f9fafb;
  border-color: #91caff;
}
.ResponsibleSelect__cell-trigger:focus-visible, .ResponsibleSelect__cell-trigger--open {
  background: #f5faff;
  border-color: #4096ff;
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.08);
}
.ResponsibleSelect__cell-trigger:disabled {
  background: #f5f5f5;
  border-color: #f0f0f0;
}
.ResponsibleSelect__cell-value {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.88);
  font-size: 12px;
  line-height: 14px;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ResponsibleSelect__cell-value--placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.ResponsibleSelect__cell-icon {
  flex: none;
  color: rgba(0, 0, 0, 0.45);
  font-size: 10px;
  transition: transform 0.2s ease;
}
.ResponsibleSelect__cell-icon--open {
  transform: rotate(180deg);
}
.ResponsibleSelect__custom-dropdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: min(280px, 100vw - 16px);
  min-width: 0;
}
.ResponsibleSelect__search.ant-input-affix-wrapper, .ResponsibleSelect__search.ant-input {
  height: 28px;
  padding: 0 8px;
  font-size: 11px;
  border-color: #e0e0e0;
  border-radius: 6px;
  box-shadow: none;
}
.ResponsibleSelect__search.ant-input-affix-wrapper:hover, .ResponsibleSelect__search.ant-input-affix-wrapper:focus, .ResponsibleSelect__search.ant-input-affix-wrapper:focus-within, .ResponsibleSelect__search.ant-input:hover, .ResponsibleSelect__search.ant-input:focus, .ResponsibleSelect__search.ant-input:focus-within {
  border-color: #91caff;
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.08);
}
.ResponsibleSelect__virtual-list {
  min-width: 0;
  max-height: min(320px, 100vh - 120px);
  max-height: min(320px, 100dvh - 120px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #b1c4df #fff;
  scrollbar-width: thin;
}
.ResponsibleSelect__virtual-list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  border-radius: 15px;
}
.ResponsibleSelect__virtual-list::-webkit-scrollbar-track {
  background: white;
  border-radius: 15px;
}
.ResponsibleSelect__virtual-list::-webkit-scrollbar-corner {
  border-radius: 33px;
}
.ResponsibleSelect__virtual-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #b1c4df;
}
.ResponsibleSelect__virtual-spacer {
  position: relative;
  min-width: 0;
}
.ResponsibleSelect__virtual-items {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  min-width: 0;
}
.ResponsibleSelect__option-button {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  min-width: 0;
  padding: 4px 7px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}
.ResponsibleSelect__option-button:hover, .ResponsibleSelect__option-button:focus-visible {
  background: #f5faff;
  outline: none;
}
.ResponsibleSelect__option-button--selected {
  background: #e6f4ff;
}
.ResponsibleSelect__option-button--selected .ResponsibleSelect__option {
  color: #0958d9;
  font-weight: 600;
}
.ResponsibleSelect__empty, .ResponsibleSelect__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 8px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 11px;
  line-height: 14px;
  text-align: center;
}

.ResponsibleSelect__custom-popover .ant-popover-inner {
  padding: 8px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.ResponsibleSelect__custom-popover .ant-popover-inner-content {
  padding: 0;
}

.ResponsibleSelect__dropdown {
  min-width: min(190px, 100vw - 16px);
  max-width: calc(100vw - 16px);
  padding: 4px !important;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.ResponsibleSelect__dropdown .rc-virtual-list,
.ResponsibleSelect__dropdown .rc-virtual-list-holder {
  max-height: min(320px, 100vh - 24px) !important;
  max-height: min(320px, 100dvh - 24px) !important;
}
.ResponsibleSelect__dropdown .rc-virtual-list-holder {
  overflow-y: auto !important;
  overflow-x: hidden;
  overscroll-behavior: contain;
}
.ResponsibleSelect__dropdown .ant-select-item {
  min-height: 28px;
  padding: 5px 7px;
  border-radius: 6px;
}
.ResponsibleSelect__dropdown .ant-select-item-option-content {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.ResponsibleSelect__dropdown .ant-select-item-option-active:not(.ant-select-item-option-disabled) {
  background: #f5faff;
}
.ResponsibleSelect__dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
  background: #e6f4ff;
}
.ResponsibleSelect__dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled) .ResponsibleSelect__option {
  color: #0958d9;
  font-weight: 600;
}
.ResponsibleSelect__dropdown .ant-empty-small {
  margin-block: 8px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
}
.ResponsibleSelect__dropdown--cell {
  width: min(280px, 100vw - 16px) !important;
  min-width: min(280px, 100vw - 16px) !important;
}
.ResponsibleSelect__dropdown--cell .rc-virtual-list-holder::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  border-radius: 15px;
}
.ResponsibleSelect__dropdown--cell .rc-virtual-list-holder::-webkit-scrollbar-track {
  background: white;
  border-radius: 15px;
}
.ResponsibleSelect__dropdown--cell .rc-virtual-list-holder::-webkit-scrollbar-corner {
  border-radius: 33px;
}
.ResponsibleSelect__dropdown--cell .rc-virtual-list-holder::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #b1c4df;
}
.TagsModal__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}
.TagsModal__search {
  width: 100%;
}
.TagsModal__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  line-height: 16px;
}
.TagsModal__list {
  height: 360px;
  overflow-y: auto;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  background: #fff;
}
.TagsModal__spacer {
  position: relative;
}
.TagsModal__visible-rows {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
.TagsModal__row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 40px;
  align-items: center;
  height: 42px;
  min-width: 0;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
}
.TagsModal__row:hover {
  background: #fafafa;
}
.TagsModal__row:focus-visible {
  outline: 2px solid #1677ff;
  outline-offset: -2px;
}
.TagsModal__row--disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.TagsModal__checkbox-cell, .TagsModal__info-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.TagsModal__tag-cell {
  min-width: 0;
  overflow: hidden;
}
.TagsModal__tag {
  max-width: 100%;
  margin: 0;
}
.TagsModal__info-icon {
  font-size: 18px;
  color: #1677ff;
}
.TagsModal__loader, .TagsModal__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
}

/*# sourceMappingURL=main~17.0ff03ca8.css.map*/