/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.yg-select {
  box-sizing: content-box;
  margin: 0;
  padding: 0;
  color: #333;
  font-size: 12px;
  list-style: none;
  position: relative;
  display: inline-block;
  outline: 0;
}
.yg-select ul,
.yg-select ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.yg-select > ul > li > a {
  padding: 0;
  background-color: #fff;
}
.yg-select-arrow {
  display: inline-block;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 9px;
  margin-top: -6px;
  color: rgba(51, 51, 51, 0.25);
  font-size: 12px;
  line-height: 1;
  transform-origin: 50% 50%;
}
.yg-select-arrow > * {
  line-height: 1;
}
.yg-select-arrow svg {
  display: inline-block;
}
.yg-select-arrow::before {
  display: none;
}
.yg-select-arrow .yg-select-arrow-icon {
  display: block;
}
.yg-select-arrow .yg-select-arrow-icon svg {
  transition: transform 0.3s;
}
.yg-select-selection {
  display: block;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-width: 1px;
  border-radius: 2px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.yg-select-selection:hover {
  border-color: #bababa;
  border-right-width: 1px;
}
.yg-select-focused .yg-select-selection,
.yg-select-selection:focus,
.yg-select-selection:active {
  border-color: #bababa;
  border-right-width: 1px;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.2);
}
.yg-select-selection__clear {
  position: absolute;
  top: 50%;
  right: 9px;
  z-index: 1;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  color: rgba(51, 51, 51, 0.25);
  font-size: 12px;
  font-style: normal;
  line-height: 12px;
  text-align: center;
  text-transform: none;
  background: #fff;
  cursor: pointer;
  opacity: 0;
  transition: color 0.3s ease, opacity 0.15s ease;
  text-rendering: auto;
}
.yg-select-selection__clear::before {
  display: block;
}
.yg-select-selection__clear:hover {
  color: rgba(0, 0, 0, 0.45);
}
.yg-select-selection:hover .yg-select-selection__clear {
  opacity: 1;
}
.yg-select-selection-selected-value {
  float: left;
  max-width: 100%;
  padding-right: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.yg-select-no-arrow .yg-select-selection-selected-value {
  padding-right: 0;
}
.yg-select-disabled {
  color: rgba(51, 51, 51, 0.25);
}
.yg-select-disabled .yg-select-selection {
  background: #f5f5f5;
  cursor: not-allowed;
}
.yg-select-disabled .yg-select-selection:hover,
.yg-select-disabled .yg-select-selection:focus,
.yg-select-disabled .yg-select-selection:active {
  border-color: #ccc;
  box-shadow: none;
}
.yg-select-disabled .yg-select-selection__clear {
  display: none;
  visibility: hidden;
  pointer-events: none;
}
.yg-select-disabled .yg-select-selection--multiple .yg-select-selection__choice {
  padding-right: 10px;
  color: rgba(0, 0, 0, 0.33);
  background: #f5f5f5;
}
.yg-select-disabled .yg-select-selection--multiple .yg-select-selection__choice__remove {
  display: none;
}
.yg-select-selection--single {
  position: relative;
  height: 30px;
  cursor: pointer;
}
.yg-select-selection__rendered {
  position: relative;
  display: block;
  margin-right: 10px;
  margin-left: 10px;
  height: 28px;
  line-height: 28px;
}
.yg-select-selection__rendered::after {
  display: inline-block;
  width: 0;
  visibility: hidden;
  pointer-events: none;
  content: '.';
}
.yg-select-lg {
  font-size: 14px;
}
.yg-select-lg .yg-select-selection--single {
  height: 38px;
}
.yg-select-lg .yg-select-selection__rendered {
  line-height: 36px;
}
.yg-select-lg .yg-select-selection--multiple {
  min-height: 38px;
}
.yg-select-lg .yg-select-selection--multiple .yg-select-selection__rendered li {
  height: 30px;
  line-height: 30px;
}
.yg-select-lg .yg-select-selection--multiple .yg-select-selection__clear,
.yg-select-lg .yg-select-selection--multiple .yg-select-arrow {
  top: 19px;
}
.yg-select-sm .yg-select-selection--single {
  height: 22px;
}
.yg-select-sm .yg-select-selection__rendered {
  margin: 0 7px;
  line-height: 20px;
}
.yg-select-sm .yg-select-selection--multiple {
  min-height: 22px;
}
.yg-select-sm .yg-select-selection--multiple .yg-select-selection__rendered li {
  height: 14px;
  line-height: 12px;
}
.yg-select-sm .yg-select-selection--multiple .yg-select-selection__clear,
.yg-select-sm .yg-select-selection--multiple .yg-select-arrow {
  top: 11px;
}
.yg-select-sm .yg-select-selection__clear,
.yg-select-sm .yg-select-arrow {
  right: 8px;
}
.yg-select-disabled .yg-select-selection__choice__remove {
  color: rgba(51, 51, 51, 0.25);
  cursor: default;
}
.yg-select-disabled .yg-select-selection__choice__remove:hover {
  color: rgba(51, 51, 51, 0.25);
}
.yg-select-search__field__wrap {
  position: relative;
  display: inline-block;
}
.yg-select-selection__placeholder,
.yg-select-search__field__placeholder {
  position: absolute;
  top: 50%;
  right: 9px;
  left: 0;
  max-width: 100%;
  height: 20px;
  margin-top: -10px;
  overflow: hidden;
  color: #ccc;
  line-height: 20px;
  white-space: nowrap;
  text-align: left;
  text-overflow: ellipsis;
}
.yg-select-search__field__placeholder {
  left: 10px;
}
.yg-select-search__field__mirror {
  position: absolute;
  top: 0;
  left: 0;
  white-space: pre;
  opacity: 0;
  pointer-events: none;
}
.yg-select-search--inline {
  position: absolute;
  width: 100%;
  height: 100%;
}
.yg-select-search--inline .yg-select-search__field__wrap {
  width: 100%;
  height: 100%;
}
.yg-select-search--inline .yg-select-search__field {
  width: 100%;
  height: 100%;
  font-size: 100%;
  line-height: 1;
  background: transparent;
  border-width: 0;
  border-radius: 2px;
  outline: 0;
}
.yg-select-search--inline > i {
  float: right;
}
.yg-select-selection--multiple {
  min-height: 30px;
  padding-bottom: 3px;
  cursor: text;
  zoom: 1;
}
.yg-select-selection--multiple::before,
.yg-select-selection--multiple::after {
  content: '';
  display: table;
}
.yg-select-selection--multiple::after {
  clear: both;
}
.yg-select-selection--multiple .yg-select-search--inline {
  position: static;
  float: left;
  width: auto;
  max-width: 100%;
  padding: 0;
}
.yg-select-selection--multiple .yg-select-search--inline .yg-select-search__field {
  width: 0.75em;
  max-width: 100%;
}
.yg-select-selection--multiple .yg-select-selection__rendered {
  height: auto;
  margin-bottom: -3px;
  margin-left: 5px;
  margin-right: 5px;
}
.yg-select-selection--multiple .yg-select-selection__placeholder {
  margin-left: 6px;
}
.yg-select-selection--multiple > ul > li,
.yg-select-selection--multiple .yg-select-selection__rendered > ul > li {
  height: 22px;
  margin-top: 3px;
  line-height: 22px;
}
.yg-select-selection--multiple .yg-select-selection__choice {
  position: relative;
  float: left;
  max-width: 99%;
  margin-right: 4px;
  padding: 0 20px 0 5px;
  overflow: hidden;
  color: #333;
  background-color: #E1EDFF;
  border-radius: 2px;
  cursor: default;
  transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.yg-select-selection--multiple .yg-select-selection__choice__disabled {
  padding: 0 10px;
}
.yg-select-selection--multiple .yg-select-selection__choice__content {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.yg-select-selection--multiple .yg-select-selection__choice__remove {
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 4px;
  color: rgba(0, 0, 0, 0.45);
  font-weight: bold;
  line-height: inherit;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  transform: scale(0.83333333) rotate(0deg);
}
.yg-select-selection--multiple .yg-select-selection__choice__remove > * {
  line-height: 1;
}
.yg-select-selection--multiple .yg-select-selection__choice__remove svg {
  display: inline-block;
}
.yg-select-selection--multiple .yg-select-selection__choice__remove::before {
  display: none;
}
.yg-select-selection--multiple .yg-select-selection__choice__remove .yg-select-selection--multiple .yg-select-selection__choice__remove-icon {
  display: block;
}
:root .yg-select-selection--multiple .yg-select-selection__choice__remove {
  font-size: 12px;
}
.yg-select-selection--multiple .yg-select-selection__choice__remove:hover {
  color: rgba(0, 0, 0, 0.75);
}
.yg-select-selection--multiple .yg-select-selection__clear,
.yg-select-selection--multiple .yg-select-arrow {
  top: 15px;
}
.yg-select-allow-clear .yg-select-selection--single .yg-select-selection-selected-value {
  padding-right: 16px;
}
.yg-select-allow-clear .yg-select-selection--multiple .yg-select-selection__rendered,
.yg-select-show-arrow .yg-select-selection--multiple .yg-select-selection__rendered {
  margin-right: 20px;
}
.yg-select-open .yg-select-arrow-icon svg {
  transform: rotate(180deg);
}
.yg-select-open .yg-select-selection {
  border-color: #bababa;
  border-right-width: 1px;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.2);
}
.yg-select-combobox .yg-select-arrow {
  display: none;
}
.yg-select-combobox .yg-select-search--inline {
  float: none;
  width: 100%;
  height: 100%;
}
.yg-select-combobox .yg-select-search__field__wrap {
  width: 100%;
  height: 100%;
}
.yg-select-combobox .yg-select-search__field {
  position: relative;
  z-index: 1;
  height: 100%;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), height 0s;
}
.yg-select-combobox.yg-select-allow-clear .yg-select-selection:hover .yg-select-selection__rendered,
.yg-select-combobox.yg-select-show-arrow .yg-select-selection:hover .yg-select-selection__rendered {
  margin-right: 20px;
}
.yg-select-dropdown {
  box-sizing: content-box;
  margin: 0;
  padding: 0;
  color: #333;
  list-style: none;
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
  box-sizing: border-box;
  font-size: 12px;
  font-variant: initial;
  background-color: #fff;
  border-radius: 2px;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.yg-select-dropdown.slide-up-enter.slide-up-enter-active.yg-select-dropdown-placement-bottomLeft,
.yg-select-dropdown.slide-up-appear.slide-up-appear-active.yg-select-dropdown-placement-bottomLeft {
  -webkit-animation-name: antSlideUpIn;
          animation-name: antSlideUpIn;
}
.yg-select-dropdown.slide-up-enter.slide-up-enter-active.yg-select-dropdown-placement-topLeft,
.yg-select-dropdown.slide-up-appear.slide-up-appear-active.yg-select-dropdown-placement-topLeft {
  -webkit-animation-name: antSlideDownIn;
          animation-name: antSlideDownIn;
}
.yg-select-dropdown.slide-up-leave.slide-up-leave-active.yg-select-dropdown-placement-bottomLeft {
  -webkit-animation-name: antSlideUpOut;
          animation-name: antSlideUpOut;
}
.yg-select-dropdown.slide-up-leave.slide-up-leave-active.yg-select-dropdown-placement-topLeft {
  -webkit-animation-name: antSlideDownOut;
          animation-name: antSlideDownOut;
}
.yg-select-dropdown-hidden {
  display: none;
}
.yg-select-dropdown-menu {
  max-height: 250px;
  margin-bottom: 0;
  padding-left: 0;
  overflow: auto;
  list-style: none;
  outline: none;
}
.yg-select-dropdown-menu-item-group-list {
  margin: 0;
  padding: 0;
}
.yg-select-dropdown-menu-item-group-list > .yg-select-dropdown-menu-item {
  padding-left: 20px;
}
.yg-select-dropdown-menu-item-group-title {
  height: 32px;
  padding: 0 10px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  line-height: 32px;
}
.yg-select-dropdown-menu-item-group-list .yg-select-dropdown-menu-item:first-child:not(:last-child),
.yg-select-dropdown-menu-item-group:not(:last-child) .yg-select-dropdown-menu-item-group-list .yg-select-dropdown-menu-item:last-child {
  border-radius: 0;
}
.yg-select-dropdown-menu-item {
  position: relative;
  display: block;
  padding: 0px 10px;
  overflow: hidden;
  color: #333;
  font-weight: normal;
  line-height: 30px;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: background 0.3s ease;
}
.yg-select-dropdown-menu-item:hover {
  background-color: #e1edff;
}
.yg-select-dropdown-menu-item:first-child {
  border-radius: 2px 2px 0 0;
}
.yg-select-dropdown-menu-item:last-child {
  border-radius: 0 0 2px 2px;
}
.yg-select-dropdown-menu-item-disabled {
  color: rgba(51, 51, 51, 0.25);
  cursor: not-allowed;
}
.yg-select-dropdown-menu-item-disabled:hover {
  color: rgba(51, 51, 51, 0.25);
  background-color: #fff;
  cursor: not-allowed;
}
.yg-select-dropdown-menu-item-selected,
.yg-select-dropdown-menu-item-selected:hover {
  color: #333;
  font-weight: 600;
  background-color: #fafafa;
}
.yg-select-dropdown-menu-item-active {
  background-color: #e1edff;
}
.yg-select-dropdown-menu-item-divider {
  height: 1px;
  margin: 1px 0;
  overflow: hidden;
  line-height: 0;
  background-color: #ccc;
}
.yg-select-dropdown.yg-select-dropdown--multiple .yg-select-dropdown-menu-item {
  padding-right: 30px;
}
.yg-select-dropdown.yg-select-dropdown--multiple .yg-select-dropdown-menu-item .yg-select-selected-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  color: transparent;
  font-weight: bold;
  font-size: 12px;
  text-shadow: 0 0.1px 0, 0.1px 0 0, 0 -0.1px 0, -0.1px 0;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.yg-select-dropdown.yg-select-dropdown--multiple .yg-select-dropdown-menu-item:hover .yg-select-selected-icon {
  color: rgba(0, 0, 0, 0.87);
}
.yg-select-dropdown.yg-select-dropdown--multiple .yg-select-dropdown-menu-item-disabled .yg-select-selected-icon {
  display: none;
}
.yg-select-dropdown.yg-select-dropdown--multiple .yg-select-dropdown-menu-item-selected .yg-select-selected-icon,
.yg-select-dropdown.yg-select-dropdown--multiple .yg-select-dropdown-menu-item-selected:hover .yg-select-selected-icon {
  display: inline-block;
  color: #00a1ff;
}
.yg-select-dropdown-container-open .yg-select-dropdown,
.yg-select-dropdown-open .yg-select-dropdown {
  display: block;
}
