.NewClientsListPage {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}
.NewClientsListPage__filters {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 12px;
}
.NewClientsListPage__type {
  width: 50px !important;
  max-width: 50px !important;
  min-width: 50px !important;
  height: 32px !important;
  max-height: 32px !important;
  min-height: 32px !important;
  border-radius: 4px;
  border: 1px dashed #dfdfdf;
  display: flex;
  align-items: center;
  justify-content: center;
}
.NewClientsListPage__type--hide {
  border: 1px solid transparent;
}
.NewClientsListPage__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: auto;
  gap: 8px;
}
.NewClientsListPage__row__title {
  width: 90px;
  margin: 0 !important;
  line-height: 32px !important;
  white-space: nowrap;
  align-self: first baseline;
}
.NewClientsListPage__row__segments {
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
}
.NewClientsListPage__row__segment-button {
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.NewClientsListPage__row__segment-button--selected {
  font-weight: 600;
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.12);
}
.NewClientsListPage__row__tooltip {
  color: rgb(55, 58, 60) !important;
  text-align: center !important;
}
.NewClientsListPage__filter-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}
.NewClientsListPage__filter-wrapper__divider {
  margin: 8px 0;
}
.NewClientsListPage__filter-wrapper__confirm-button {
  align-self: flex-end;
}
.NewClientsListPage__radio-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 6px;
  padding: 0px 4px;
}
.NewClientsListPage__checkbox-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 6px;
  padding: 0px 4px;
}
.NewClientsListPage__tag {
  border-radius: 4px;
  padding: 4px 4px;
  font-size: 11px;
  line-height: 100%;
  width: max-content;
}
.NewClientsListPage__tags {
  padding-left: 8px;
}
.NewClientsListPage__range-inputs {
  width: 220px;
}
.NewClientsListPage__tags-container {
  max-height: 250px;
  overflow-y: auto;
}
.NewClientsListPage__tags-container::-webkit-scrollbar {
  height: 5px;
  width: 5px;
  border-radius: 15px;
}
.NewClientsListPage__tags-container::-webkit-scrollbar-track {
  background: white;
  border-radius: 15px;
}
.NewClientsListPage__tags-container::-webkit-scrollbar-corner {
  border-radius: 33px;
}
.NewClientsListPage__tags-container::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #b1c4df;
}
.NewClientsListPage__tree-container {
  max-height: 350px;
  overflow-y: auto;
}
.NewClientsListPage__tree-container::-webkit-scrollbar {
  height: 5px;
  width: 5px;
  border-radius: 15px;
}
.NewClientsListPage__tree-container::-webkit-scrollbar-track {
  background: white;
  border-radius: 15px;
}
.NewClientsListPage__tree-container::-webkit-scrollbar-corner {
  border-radius: 33px;
}
.NewClientsListPage__tree-container::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #b1c4df;
}
.NewClientsListPage__tags-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 6px;
}
.NewClientsListPage__record-tags-divider {
  margin: 0;
}
.NewClientsListPage__tag {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.NewClientsListPage__range-picker {
  width: 240px;
}
.NewClientsListPage__buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-self: last baseline;
  justify-content: flex-end;
}
.NewClientsListPage__buttons__item {
  min-width: 140px;
}
.NewClientsListPage__filters-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}
.NewClientsListPage__filters-list__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 8px;
}
.NewClientsListPage__filters-list__item__button {
  width: 32px !important;
  max-width: 32px !important;
  min-width: 32px !important;
}
.MultiFilter__popup {
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-sizing: border-box;
  padding: 8px;
  list-style-type: none;
  background-color: #ffffff;
  background-clip: padding-box;
  border-radius: 8px;
  outline: none;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.MultiFilter__input {
  cursor: pointer;
}
.MultiFilter__input__field {
  cursor: pointer;
}
.MultiFilter__input__icon {
  transition: transform 0.3s;
  color: #d9d9d9;
  font-size: 12px;
}
.MultiFilter__input__icon--open {
  transform: rotate(180deg);
}
.MultiFilter__footer {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.MultiFilter__divider {
  margin: 8px 0;
}
.MultiFilter__popover-body {
  padding: 8px !important;
}
.MultiFilter__row {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.MultiFilter__row:hover {
  background-color: #f5f5f5;
}
.MultiFilter__row__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 4px;
}
.MultiFilter__row__icon {
  transform: rotate(270deg);
  color: #d9d9d9;
  font-size: 12px;
}
.bc-edit-client {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
.bc-edit-client .ant-tabs-tabpane {
  margin-top: 0px !important;
}
.bc-edit-client .bc-add-client {
  padding-bottom: 24px;
}
.bc-edit-client > .bc-global-tab-styles {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.bc-edit-client .ant-tabs-left {
  height: auto;
}
.bc-edit-client .ant-tabs-left .ant-tabs-content-holder {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  overflow: auto;
}
.bc-edit-client .ant-tabs-left .ant-tabs-content {
  height: 100%;
  min-height: 0;
}
.bc-edit-client .ant-tabs-left .ant-tabs-content .ant-tabs-tabpane {
  height: 100%;
  min-height: 0;
}
.bc-edit-client__lead-card-pane {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  overflow: hidden;
}
.bc-edit-client__lead-card-tab {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}
.bc-edit-client .ant-collapse-header .ant-collapse-header-text {
  font-weight: 600;
}
.bc-edit-client > .ant-tabs-nav {
  display: flex;
  flex: 0 0 auto;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  margin-bottom: 16px;
  overflow: hidden;
}
.bc-edit-client .ant-tabs-left > .ant-tabs-nav {
  max-width: 200px;
  min-width: 200px;
}
.bc-edit-client .ant-tabs-left > .ant-tabs-nav .ant-tabs-tab {
  padding: 8px 40px 8px 0;
}
@media screen and (max-width: 834px) {
  .bc-edit-employee .ant-tabs-nav .ant-tabs-tab {
    padding: 8px 24px 8px 24px;
  }
  .bc-edit-employee .ant-tabs-content-holder {
    margin-top: 0;
  }
}
.excel-window_wrapper {
  max-width: 600px;
  width: 100%;
}
.excel-window_wrapper .import-complete-icon {
  color: rgb(22, 119, 255);
}
.excel-window_wrapper .description-text {
  font-weight: 600;
  font-size: 24px;
}
.excel-window_wrapper .changed-count {
  color: rgb(22, 119, 255);
}
.excel-window_wrapper .skipped-count {
  color: #ff4d4f;
}
.excel-window_wrapper .added-count {
  color: #52c41a;
}
.excel-window_wrapper .excel-window_container .upload-success .cancel-button {
  margin-top: 20px;
}
.excel-window_wrapper .excel-window_container .upload-success h4 {
  margin-top: 0;
}
.excel-window_wrapper .excel-window_container .upload-success h4 .anticon {
  margin-right: 10px;
}
.excel-window_wrapper .excel-window_container .upload-success .info-panel {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.excel-window_wrapper .excel-window_container .upload-success .info-panel .info-item {
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  padding-top: 10px;
}
.excel-window_wrapper .excel-window_container .upload-success .info-panel .green {
  background-color: #f6ffed;
  border: 1px solid #b7eb8f;
}
.excel-window_wrapper .excel-window_container .upload-success .info-panel .blue {
  background-color: #e6f4ff;
  border: 1px solid #91caff;
}
.excel-window_wrapper .excel-window_container .upload-success .info-panel .red {
  background-color: #fff2f0;
  border: 1px solid #ffccc7;
}
.excel-window_wrapper .excel-window_container .upload-success .errors {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.excel-window_wrapper .excel-window_container .upload-success .errors .ant-typography {
  margin-top: 16px;
}
.excel-window_wrapper .excel-window_container .upload-success .errors .list {
  margin: 0;
  width: 100%;
  padding: 0;
}
.excel-window_wrapper .excel-window_container .upload-success .errors .list .list-item {
  margin-bottom: 20px;
  text-align: initial;
  width: 100%;
}
.excel-window_wrapper .excel-window_container .upload-success .errors .list .list-item .ant-card-head {
  background-color: #fafafa;
  min-height: 46px;
}
.excel-window_wrapper .excel-window_container .upload-success .errors .list .list-item .ant-card-body {
  padding: 10px 15px;
  display: flex;
}
.excel-window_wrapper .excel-window_container .upload-success .errors .list .list-item .ant-card-body .anticon-warning {
  align-self: flex-start;
  margin-right: 5px;
  margin-top: 3px;
}
.excel-window_wrapper .excel-window_container .upload-success .errors .list .list-item .ant-card-body .ant-typography {
  margin-top: 0;
  min-width: fit-content;
  margin-right: 20px;
}
.excel-window_wrapper .excel-window_container .ant-spin-nested-loading {
  position: absolute;
  width: -webkit-fill-available;
  top: 50%;
}

/*# sourceMappingURL=main~49.47a1ee78.css.map*/