/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
:root {
  --primary-color: #1890FF;
  --component-background: #ffffff;
  --text-color: rgba(0, 0, 0, 0.65);
  --text-color-secondary: rgba(0, 0, 0, 0.45);
  --text-color-inverse: #fff;
  --icon-color: inherit;
  --icon-color-hover: rgba(0, 0, 0, 0.75);
  --heading-color: rgba(0, 0, 0, 0.85);
  --heading-color-dark: #ffffff;
  --text-color-dark: rgba(255, 255, 255, 0.85);
  --text-color-secondary-dark: rgba(255, 255, 255, 0.65);
  --text-selection-bg: #1890FF;
  --font-size-base: 12px;
  --font-size-lg: 14px;
  --font-size-sm: 12px;
  --line-height-base: 1.5;
  --border-radius-base: 4px;
  --border-radius-sm: 2px;
  --item-active-bg: rgba(0, 0, 0, 0.1);
  --item-hover-bg: rgba(0, 0, 0, 0.05);
  --item-hover-color: rgba(0, 0, 0, 0.65);
  --link-color: #1890ff;
  --link-hover-color: #40a9ff;
  --link-active-color: #096dd9;
  --link-decoration: none;
  --link-hover-decoration: none;
  --border-color-base: #d9d9d9;
  --border-color-split: #e8e8e8;
  --border-color-inverse: #fff;
  --border-width-base: 1px;
  --border-style-base: solid;
  --outline-blur-size: 0;
  --outline-width: 2px;
  --outline-color: #1890ff;
  --background-color-light: #fafafa;
  --background-color-base: #f5f5f5;
  --disabled-color: rgba(0, 0, 0, 0.25);
  --disabled-bg: #f5f5f5;
  --disabled-color-dark: rgba(255, 255, 255, 0.35);
  --shadow-color: rgba(0, 0, 0, 0.15);
  --shadow-color-inverse: #fff;
  --box-shadow-base: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-1-up: 0 -2px 8px rgba(0, 0, 0, 0.15);
  --shadow-1-down: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-1-left: -2px 0 8px rgba(0, 0, 0, 0.15);
  --shadow-1-right: 2px 0 8px rgba(0, 0, 0, 0.15);
  --shadow-2: 0 4px 12px rgba(0, 0, 0, 0.15);
  --btn-default-color: #000000;
  --btn-default-bg: #fff;
  --btn-default-border-color: rgba(0, 0, 0, 0.2);
  --btn-danger-bg: #ff4d4f;
  --error-8: #a8071a;
}
.gant-toolbar {
  width: 100%;
  background: var(--component-background);
  padding: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gant-toolbar:after {
  content: '';
  display: block;
  clear: both;
}
.gant-toolbar-left {
  float: left;
}
.gant-toolbar-left button {
  margin-right: 10px;
}
.gant-toolbar-right {
  float: right;
}
.gant-toolbar-right button {
  margin-left: 10px;
}
.gant-toolbar-space {
  -webkit-box-flex: 1;
  -webkit-flex: auto;
      -ms-flex: auto;
          flex: auto;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  height: 1px;
}
.gant-toolbar-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  -webkit-box-shadow: 0 -1px 2px rgba(128, 128, 128, 0.03);
          box-shadow: 0 -1px 2px rgba(128, 128, 128, 0.03);
  border-top: 1px solid rgba(128, 128, 128, 0.1);
  z-index: 9;
}
