.archive-tab {
  padding: 3px;
  border-radius: 4px;
  background-color: #f81d22;
  width: max-content;
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
  line-height: 10px;
  text-align: center;
}
.FilterMenuShell {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(320px, 100vw - 16px);
  min-width: min(240px, 100vw - 16px);
  max-width: calc(100vw - 16px);
  max-height: calc(100vh - 24px);
  max-height: calc(100dvh - 24px);
  padding: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.FilterMenuShell__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  padding-bottom: 2px;
}
.FilterMenuShell__title {
  min-width: 0;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.88);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.FilterMenuShell__meta {
  flex: 0 0 auto;
  color: rgba(0, 0, 0, 0.45);
  font-size: 10px;
  font-weight: 600;
  line-height: 14px;
  white-space: nowrap;
}
.FilterMenuShell__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  overflow: hidden;
}
.FilterMenuShell__footer {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}
@media screen and (max-width: 550px) {
  .FilterMenuShell {
    width: calc(100vw - 16px);
    min-width: 0;
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
  }
  .FilterMenuShell__footer .ant-btn {
    flex: 1 1 auto;
  }
}

.FilterMenuShellPopover {
  max-width: calc(100vw - 8px);
}
.FilterMenuShellPopover .ant-popover-inner {
  padding: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 8px;
  box-shadow: none;
}
.FilterMenuShellPopover .ant-popover-inner-content {
  padding: 0;
}
.filters-accordion {
  width: 100%;
  min-width: 0;
}
.filters-accordion__toggle {
  display: none;
  text-align: left;
}
@media screen and (max-width: 550px) {
  .filters-accordion {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .filters-accordion__toggle {
    display: flex;
    align-items: center;
  }
  .filters-accordion__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .filters-accordion__content--open {
    grid-template-rows: 1fr;
  }
  .filters-accordion__content > * {
    min-height: 0;
    overflow: hidden;
  }
}
.multi-select {
  max-width: 100%;
}
.multi-select__fixed-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.multi-select__fixed-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 16px;
  height: 16px;
  padding: 0 5px;
  color: #0958d9;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  background: #fff;
  border: 1px solid #91caff;
  border-radius: 999px;
}
.multi-select__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  background: #f0f0f0;
  border-radius: 4px;
  padding: 2px 6px;
  line-height: 1;
}
.multi-select__tag__text {
  display: inline-block;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.multi-select__tag__close {
  cursor: pointer;
  opacity: 0.6;
}
.multi-select__tag__close:hover {
  opacity: 1;
}
.multi-select__popup-wrapper {
  box-sizing: border-box;
  width: fit-content;
  max-width: min(420px, 100vw - 16px) !important;
  height: auto;
  max-height: calc(100vh - 24px) !important;
  max-height: calc(100dvh - 24px) !important;
  padding: 0 !important;
  overflow: auto;
  overflow-x: hidden;
  background: transparent !important;
  border-radius: 8px;
  box-shadow: none !important;
  overscroll-behavior: contain;
}
.multi-select__popup-wrapper::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  border-radius: 15px;
}
.multi-select__popup-wrapper::-webkit-scrollbar-track {
  background: white;
  border-radius: 15px;
}
.multi-select__popup-wrapper::-webkit-scrollbar-corner {
  border-radius: 33px;
}
.multi-select__popup-wrapper::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #b1c4df;
}
.multi-select__popup {
  box-sizing: border-box;
  width: min(420px, 100vw - 16px);
  min-width: min(420px, 100vw - 16px);
  max-width: calc(100vw - 16px);
  max-height: calc(100vh - 24px);
  max-height: calc(100dvh - 24px);
}
.multi-select__popup .FilterMenuShell__body {
  min-height: 0;
}
.multi-select__popup .FilterMenuShell__footer {
  justify-content: center;
}
.multi-select__popup .FilterMenuShell__footer .ant-btn {
  height: 28px;
  font-size: 11px;
  font-weight: 600;
}
.multi-select__groups {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  max-height: calc(100vh - 104px);
  max-height: calc(100dvh - 104px);
  padding-right: 4px;
  overflow: auto;
  overflow-x: hidden;
}
.multi-select__groups::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  border-radius: 15px;
}
.multi-select__groups::-webkit-scrollbar-track {
  background: white;
  border-radius: 15px;
}
.multi-select__groups::-webkit-scrollbar-corner {
  border-radius: 33px;
}
.multi-select__groups::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #b1c4df;
}
.multi-select__group {
  box-sizing: border-box;
  min-width: 0;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  padding: 8px;
  background: #fff;
}
.multi-select__group__delete {
  flex: 0 0 32px;
  min-width: 32px !important;
  width: 32px !important;
}
.multi-select__group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  margin-bottom: 8px;
}
.multi-select__group__header .full-width {
  width: 100%;
  min-width: 0;
}
.multi-select__group__header .ant-flex {
  flex-wrap: wrap;
}
.multi-select__group__header .ant-input-affix-wrapper {
  flex: 1 1 220px;
  min-width: 0;
}
.multi-select__group__logic {
  flex: 0 0 auto;
  max-width: 100%;
}
.multi-select__group__logic .ant-segmented-item-selected {
  font-weight: 600;
}
.multi-select__group__tools {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin-bottom: 8px;
}
.multi-select__group__actions {
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
}
.multi-select__group__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
  max-height: 220px;
  overflow: auto;
  overflow-x: hidden;
  padding-right: 4px;
}
.multi-select__group__list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  border-radius: 15px;
}
.multi-select__group__list::-webkit-scrollbar-track {
  background: white;
  border-radius: 15px;
}
.multi-select__group__list::-webkit-scrollbar-corner {
  border-radius: 33px;
}
.multi-select__group__list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #b1c4df;
}
.multi-select__between {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.multi-select__between__segmented {
  margin-left: auto;
}
.multi-select__option {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 28px;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
.multi-select__option:hover {
  background: #f5faff;
}
.multi-select__option__label {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.multi-select__option__label .ant-space {
  max-width: 100%;
}
.multi-select__option__label .ant-space-item {
  min-width: 0;
}
.multi-select__option__label .ant-space-item:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.multi-select__option__label--deleted {
  color: #f81d22;
}
.multi-select__deleted-flag {
  color: #d4380d;
}
.multi-select__empty {
  color: rgba(0, 0, 0, 0.45);
  font-size: 11px;
  line-height: 14px;
  padding: 12px 2px;
  text-align: center;
}
.multi-select__divider {
  margin: 8px 0 0;
}
.multi-select__footer {
  position: sticky;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  margin-top: 12px;
  padding-top: 8px;
  background: #fff;
}

@media (max-width: 576px) {
  .multi-select__popup-wrapper {
    max-width: calc(100vw - 8px) !important;
    max-height: calc(100vh - 8px) !important;
    max-height: calc(100dvh - 8px) !important;
  }
  .multi-select__popup {
    width: calc(100vw - 8px);
    min-width: 0;
    max-width: calc(100vw - 8px);
    max-height: calc(100vh - 8px);
    max-height: calc(100dvh - 8px);
    padding: 8px;
  }
  .multi-select__groups {
    max-height: calc(100vh - 88px);
    max-height: calc(100dvh - 88px);
    padding-right: 2px;
  }
  .multi-select__group {
    padding: 8px;
  }
  .multi-select__group__header .ant-input-affix-wrapper {
    flex: 1 1 100%;
  }
  .multi-select__group__logic {
    flex: 1 1 calc(100% - 40px);
    min-width: 0;
  }
  .multi-select__group__logic .ant-segmented-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }
  .multi-select__group__logic .ant-segmented-item {
    min-width: 0;
    text-align: center;
  }
  .multi-select__group__logic .ant-segmented-item-label {
    padding-inline: 6px;
  }
  .multi-select__group__tools {
    align-items: stretch;
  }
  .multi-select__group__actions {
    width: 100%;
  }
  .multi-select__group__actions .ant-space-item {
    flex: 1 1 140px;
    min-width: 0;
  }
  .multi-select__group__actions .ant-btn {
    width: 100%;
  }
  .multi-select__group__list {
    max-height: 40vh;
    max-height: 40dvh;
  }
  .multi-select__between {
    justify-content: stretch;
  }
  .multi-select__between__segmented {
    width: 100%;
    margin-left: 0;
  }
  .multi-select__between__segmented .ant-segmented-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
  .multi-select__between__segmented .ant-segmented-item {
    text-align: center;
  }
  .multi-select__footer .ant-btn {
    width: 100%;
  }
}
@media (max-width: 360px) {
  .multi-select__popup-wrapper {
    max-width: calc(100vw - 4px) !important;
  }
  .multi-select__popup {
    width: calc(100vw - 4px);
    max-width: calc(100vw - 4px);
    padding: 6px;
  }
  .multi-select__group {
    padding: 6px;
  }
  .multi-select__group__logic .ant-segmented-item-label {
    padding-inline: 4px;
    font-size: 12px;
  }
}
.range_container {
  display: flex;
  width: auto;
  align-items: center;
  gap: 12px;
  max-width: max-content !important;
}
.range_label {
  width: fit-content;
  white-space: nowrap;
}
.range_inputs {
  display: flex;
  flex-direction: row;
  gap: 12px;
  box-sizing: border-box;
  justify-content: flex-start;
  align-items: center;
  max-width: 300px;
}
.TruncatedHeaderText {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  -webkit-box-orient: vertical;
}
.TruncatedHeaderText__tooltip {
  padding: 2px 4px !important;
  min-width: 3px !important;
  min-height: 3px !important;
  font-size: 11px !important;
  line-height: 1.1 !important;
  text-align: center !important;
}
.TruncatedHeaderText--lines-1 {
  -webkit-line-clamp: 1;
}
.TruncatedHeaderText--lines-2 {
  -webkit-line-clamp: 2;
}
.TruncatedHeaderText--lines-3 {
  -webkit-line-clamp: 3;
}
.Tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
}
.Tag__icon {
  flex: none;
  margin-right: 4px;
}
.Tag__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
}
.social-warn {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 26px 1fr 16px;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: #ffe6e6;
  border: 1px solid #f6bcbc;
  cursor: pointer;
  user-select: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
  width: 230px;
}
.social-warn--small {
  width: 86px;
  margin: 4px 0 4px 0;
}
.social-warn__text {
  display: flex;
  flex-direction: column;
}
.social-warn__icon {
  font-size: 20px;
  color: #a63a3a;
}
.social-warn__title {
  font-size: 16px;
  font-weight: 600;
}
.social-warn__subtitle {
  font-size: 12px;
  color: #333;
}
.social-warn__chevron {
  color: #333;
}

/*# sourceMappingURL=main~132.bf7c43d4.css.map*/