/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors */
.ui-select {
  font-family: Roboto, Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #525866;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  position: relative;
}
.ui-select ul,
.ui-select ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ui-select > ul > li > a {
  padding: 0;
  background-color: #fff;
}
.ui-select__arrow {
  display: inline-block;
  font-style: normal;
  vertical-align: baseline;
  text-align: center;
  text-transform: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 15px;
  line-height: 1;
  margin-top: -7.5px;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  color: #a1a7b3;
  font-size: 15px;
}
.ui-select__arrow:before {
  display: block;
  font-family: "anticon" !important;
}
.ui-select__arrow * {
  display: none;
}
.ui-select__arrow:before {
  content: '\e61d';
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}
.ui-select-selection {
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #c2c5cc;
  border-top-width: 1.02px;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ui-select-selection:hover {
  border-color: #1eba35;
}
.ui-select_focused .ui-select-selection,
.ui-select-selection:focus,
.ui-select-selection:active {
  border-color: #1eba35;
  outline: 0;
  -webkit-box-shadow: 0 0 0 1px #00ad21;
          box-shadow: 0 0 0 1px #00ad21;
}
.ui-select-selection__clear {
  display: inline-block;
  font-style: normal;
  vertical-align: baseline;
  text-align: center;
  text-transform: none;
  text-rendering: auto;
  opacity: 0;
  position: absolute;
  right: 15px;
  z-index: 1;
  background: #fff;
  top: 50%;
  font-size: 15px;
  color: #a1a7b3;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  line-height: 12px;
  cursor: pointer;
  -webkit-transition: color 0.3s ease, opacity 0.15s ease;
  transition: color 0.3s ease, opacity 0.15s ease;
}
.ui-select-selection__clear:before {
  display: block;
  font-family: 'anticon';
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e62e";
}
.ui-select-selection__clear:hover {
  color: #a1a7b3;
}
.ui-select-selection:hover .ui-select-selection__clear {
  opacity: 1;
}
.ui-select_disabled {
  color: #a1a7b3;
}
.ui-select_disabled .ui-select-selection {
  background: #edeff2;
  cursor: not-allowed;
}
.ui-select_disabled .ui-select-selection:hover,
.ui-select_disabled .ui-select-selection:focus,
.ui-select_disabled .ui-select-selection:active {
  border-color: #c2c5cc;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ui-select_disabled .ui-select-selection__clear {
  display: none;
  visibility: hidden;
  pointer-events: none;
}
.ui-select_disabled .ui-select-selection_multiple .ui-select-choice {
  background: #edeff2;
  color: #aaa;
  padding-right: 10px;
}
.ui-select_disabled .ui-select-selection_multiple .ui-select-choice__remove {
  display: none;
}
.ui-select-selection_single {
  height: 40px;
  position: relative;
  cursor: pointer;
}
.ui-select-rendered {
  display: block;
  margin-left: 15px;
  margin-right: 15px;
  position: relative;
  line-height: 38px;
}
.ui-select-rendered__value {
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  padding-right: 20px;
}
.ui-select-rendered:after {
  content: '.';
  visibility: hidden;
  pointer-events: none;
  display: inline-block;
  width: 0;
}
.ui-select-lg {
  font-size: 16px;
}
.ui-select-lg .ui-select-selection_single {
  height: 40px;
}
.ui-select-lg .ui-select-rendered {
  line-height: 38px;
}
.ui-select-lg .ui-select-selection_multiple {
  min-height: 40px;
}
.ui-select-lg .ui-select-selection_multiple .ui-select-rendered li {
  height: 32px;
  line-height: 32px;
}
.ui-select-lg .ui-select-selection_multiple .ui-select-selection__clear {
  top: 20px;
}
.ui-select-sm .ui-select-selection_single {
  height: 40px;
}
.ui-select-sm .ui-select-rendered {
  line-height: 38px;
  margin: 0 7px;
}
.ui-select-sm .ui-select-selection_multiple {
  min-height: 40px;
}
.ui-select-sm .ui-select-selection_multiple .ui-select-rendered li {
  height: 32px;
  line-height: 30px;
}
.ui-select-sm .ui-select-selection_multiple .ui-select-selection__clear {
  top: 20px;
}
.ui-select-sm .ui-select-selection__clear,
.ui-select-sm .ui-select__arrow {
  right: 8px;
}
.ui-select_disabled .ui-select-choice__remove {
  color: #a1a7b3;
  cursor: default;
}
.ui-select_disabled .ui-select-choice__remove:hover {
  color: #a1a7b3;
}
.ui-select-field-wrap {
  display: inline-block;
  position: relative;
}
.ui-select-selection__placeholder,
.ui-select-field-wrap__field__placeholder {
  position: absolute;
  top: 50%;
  left: 0;
  right: 9px;
  color: #bfbfbf;
  line-height: 20px;
  height: 20px;
  max-width: 100%;
  margin-top: -10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}
.ui-select-field-wrap__field__placeholder {
  left: 16px;
}
.ui-select-field-wrap__field-mirror {
  position: absolute;
  top: 0;
  left: -9999px;
  white-space: pre;
  pointer-events: none;
}
.ui-select-search_inline {
  position: absolute;
  height: 100%;
  width: 100%;
}
.ui-select-search_inline .ui-select-field-wrap {
  width: 100%;
  height: 100%;
}
.ui-select-search_inline .ui-select-field-wrap__field {
  border-width: 0;
  font-size: 100%;
  height: 100%;
  width: 100%;
  background: transparent;
  outline: 0;
  border-radius: 4px;
  line-height: 1;
}
.ui-select-search_inline > i {
  float: right;
}
.ui-select-selection_multiple {
  min-height: 40px;
  cursor: text;
  padding-bottom: 3px;
  zoom: 1;
}
.ui-select-selection_multiple:before,
.ui-select-selection_multiple:after {
  content: " ";
  display: table;
}
.ui-select-selection_multiple:after {
  clear: both;
  visibility: hidden;
  font-size: 0;
  height: 0;
}
.ui-select-selection_multiple .ui-select-search_inline {
  float: left;
  position: static;
  width: auto;
  padding: 0;
  max-width: 100%;
}
.ui-select-selection_multiple .ui-select-search_inline .ui-select-field-wrap__field {
  max-width: 100%;
  width: 0.75em;
}
.ui-select-selection_multiple .ui-select-rendered {
  margin-left: 5px;
  margin-bottom: -3px;
  height: auto;
}
.ui-select-selection_multiple .ui-select-selection__placeholder {
  margin-left: 6px;
}
.ui-select-selection_multiple > ul > li,
.ui-select-selection_multiple .ui-select-rendered > ul > li {
  margin-top: 3px;
  height: 32px;
  line-height: 30px;
}
.ui-select-selection_multiple .ui-select-choice {
  color: #525866;
  background-color: #fafafa;
  border: 1px solid #c2c5cc;
  border-radius: 2px;
  cursor: default;
  float: left;
  margin-right: 4px;
  max-width: 99%;
  position: relative;
  overflow: hidden;
  -webkit-transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  padding: 0 20px 0 10px;
}
.ui-select-selection_multiple .ui-select-choice__disabled {
  padding: 0 10px;
}
.ui-select-selection_multiple .ui-select-choice__content {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  -webkit-transition: margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ui-select-selection_multiple .ui-select-choice__remove {
  font-style: normal;
  vertical-align: baseline;
  text-align: center;
  text-transform: none;
  line-height: 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #a1a7b3;
  line-height: inherit;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-size: 15px;
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  -webkit-transform: scale(0.83333333) rotate(0deg);
      -ms-transform: scale(0.83333333) rotate(0deg);
          transform: scale(0.83333333) rotate(0deg);
  position: absolute;
  right: 4px;
}
.ui-select-selection_multiple .ui-select-choice__remove:before {
  display: block;
  font-family: "anticon" !important;
}
:root .ui-select-selection_multiple .ui-select-choice__remove {
  font-size: 15px;
}
.ui-select-selection_multiple .ui-select-choice__remove:hover {
  color: #404040;
}
.ui-select-selection_multiple .ui-select-choice__remove:before {
  content: "\e633";
}
.ui-select-selection_multiple .ui-select-selection__clear {
  top: 20px;
}
.ui-select_allow-clear .ui-select-selection_multiple .ui-select-rendered {
  margin-right: 20px;
}
.ui-select_open .ui-select__arrow:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.ui-select_open .ui-select-selection {
  border-color: #1eba35;
  outline: 0;
  -webkit-box-shadow: 0 0 0 1px #00ad21;
          box-shadow: 0 0 0 1px #00ad21;
}
.ui-select_combobox .ui-select__arrow {
  display: none;
}
.ui-select_combobox .ui-select-search_inline {
  height: 100%;
  width: 100%;
  float: none;
}
.ui-select_combobox .ui-select-field-wrap {
  width: 100%;
  height: 100%;
}
.ui-select_combobox .ui-select-field-wrap__field {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ui-select_combobox.ui-select_allow-clear .ui-select-selection:hover .ui-select-rendered {
  margin-right: 20px;
}
.ui-select-dropdown {
  font-family: Roboto, Roboto, sans-serif;
  line-height: 1.6;
  color: #525866;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1050;
  left: -9999px;
  top: -9999px;
  position: absolute;
  outline: none;
  font-size: 15px;
}
.ui-select-dropdown.slide-up-enter.slide-up-enter-active.ui-select-dropdown-placement-bottomLeft,
.ui-select-dropdown.slide-up-appear.slide-up-appear-active.ui-select-dropdown-placement-bottomLeft {
  -webkit-animation-name: antSlideUpIn;
          animation-name: antSlideUpIn;
}
.ui-select-dropdown.slide-up-enter.slide-up-enter-active.ui-select-dropdown-placement-topLeft,
.ui-select-dropdown.slide-up-appear.slide-up-appear-active.ui-select-dropdown-placement-topLeft {
  -webkit-animation-name: antSlideDownIn;
          animation-name: antSlideDownIn;
}
.ui-select-dropdown.slide-up-leave.slide-up-leave-active.ui-select-dropdown-placement-bottomLeft {
  -webkit-animation-name: antSlideUpOut;
          animation-name: antSlideUpOut;
}
.ui-select-dropdown.slide-up-leave.slide-up-leave-active.ui-select-dropdown-placement-topLeft {
  -webkit-animation-name: antSlideDownOut;
          animation-name: antSlideDownOut;
}
.ui-select-dropdown-hidden {
  display: none;
}
.ui-select-dropdown-menu {
  outline: none;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  max-height: 250px;
  overflow: auto;
}
.ui-select-dropdown-menu-item-group-list {
  margin: 0;
  padding: 0;
}
.ui-select-dropdown-menu-item-group-list > .ui-select-dropdown-menu-item {
  padding-left: 20px;
}
.ui-select-dropdown-menu-item-group-title {
  color: #a1a7b3;
  padding: 0 16px;
  height: 32px;
  line-height: 32px;
  font-size: 15px;
}
.ui-select-dropdown-menu-item {
  position: relative;
  display: block;
  padding: 5px 16px;
  line-height: 22px;
  font-weight: normal;
  color: #525866;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.ui-select-dropdown-menu-item:hover {
  background-color: #e1e2e6;
}
.ui-select-dropdown-menu-item_disabled {
  color: #a1a7b3;
  cursor: not-allowed;
}
.ui-select-dropdown-menu-item_disabled:hover {
  color: #a1a7b3;
  background-color: #fff;
  cursor: not-allowed;
}
.ui-select-dropdown-menu-item-selected,
.ui-select-dropdown-menu-item-selected:hover {
  background-color: #fafafa;
  font-weight: 600;
  color: #525866;
}
.ui-select-dropdown-menu-item-active {
  background-color: #e1e2e6;
}
.ui-select-dropdown-menu-item-divider {
  height: 1px;
  margin: 1px 0;
  overflow: hidden;
  background-color: #c2c5cc;
  line-height: 0;
}
.ui-select-dropdown.ui-select-dropdown_multiple .ui-select-dropdown-menu-item:after {
  font-family: 'anticon';
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e632";
  color: transparent;
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  -webkit-transform: scale(0.83333333) rotate(0deg);
      -ms-transform: scale(0.83333333) rotate(0deg);
          transform: scale(0.83333333) rotate(0deg);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
  font-weight: bold;
  text-shadow: 0 0.1px 0, 0.1px 0 0, 0 -0.1px 0, -0.1px 0;
}
:root .ui-select-dropdown.ui-select-dropdown_multiple .ui-select-dropdown-menu-item:after {
  font-size: 15px;
}
.ui-select-dropdown.ui-select-dropdown_multiple .ui-select-dropdown-menu-item:hover:after {
  color: #ddd;
}
.ui-select-dropdown.ui-select-dropdown_multiple .ui-select-dropdown-menu-item_disabled:after {
  display: none;
}
.ui-select-dropdown.ui-select-dropdown_multiple .ui-select-dropdown-menu-item-selected:after,
.ui-select-dropdown.ui-select-dropdown_multiple .ui-select-dropdown-menu-item-selected:hover:after {
  color: #00ad21;
  display: inline-block;
}
.ui-select-dropdown-container-open .ui-select-dropdown,
.ui-select-dropdown_open .ui-select-dropdown {
  display: block;
}
