.searchContainer {
  .searchContent {
    display: flex;
    justify-content: space-between;
    align-items: center;

    .breadcrumb {
      margin-left: -24px;
      margin-right: 24px;
      width: max-content;

      &>div {
        height: auto;
      }
    }

    .settings {
      display: flex;
      gap: 10px;
      align-items: center;
      flex: 1;
    }
  }
}

.iconWrap {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  transition: all 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;

  &:hover {
    background: rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(217, 237, 254, 0.25);
  }
}

.filterNumber {
  position: absolute;
  top: 1px;
  right: 1px;
  background: #ff4d4f;
  color: #fff;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  scale: 0.8;
}

.formItem {
  :global {
    .ant-form-item-control {
      width: var(--formItemWidth);
    }
  }
}