@keyframes antCheckboxEffect {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.cy-cascader-checkbox {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 13px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  top: 0.2em;
  line-height: 1;
  white-space: nowrap;
  outline: none;
  cursor: pointer;
}
.cy-cascader-checkbox-wrapper:hover .cy-cascader-checkbox-inner,
.cy-cascader-checkbox:hover .cy-cascader-checkbox-inner,
.cy-cascader-checkbox-input:focus + .cy-cascader-checkbox-inner {
  border-color: #00bb78;
}
.cy-cascader-checkbox-checked::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #00bb78;
  border-radius: 2px;
  visibility: hidden;
  animation: antCheckboxEffect 0.36s ease-in-out;
  animation-fill-mode: backwards;
  content: '';
}
.cy-cascader-checkbox:hover::after,
.cy-cascader-checkbox-wrapper:hover .cy-cascader-checkbox::after {
  visibility: visible;
}
.cy-cascader-checkbox-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  direction: ltr;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  border-collapse: separate;
  transition: all 0.3s;
}
.cy-cascader-checkbox-inner::after {
  position: absolute;
  top: 50%;
  left: 21.5%;
  display: table;
  width: 5.71428571px;
  height: 9.14285714px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(0) translate(-50%, -50%);
  opacity: 0;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  content: ' ';
}
.cy-cascader-checkbox-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.cy-cascader-checkbox-checked .cy-cascader-checkbox-inner::after {
  position: absolute;
  display: table;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(1) translate(-50%, -50%);
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  content: ' ';
}
.cy-cascader-checkbox-checked .cy-cascader-checkbox-inner {
  background-color: #00bb78;
  border-color: #00bb78;
}
.cy-cascader-checkbox-disabled {
  cursor: not-allowed;
}
.cy-cascader-checkbox-disabled.cy-cascader-checkbox-checked .cy-cascader-checkbox-inner::after {
  border-color: rgba(0, 0, 0, 0.25);
  animation-name: none;
}
.cy-cascader-checkbox-disabled .cy-cascader-checkbox-input {
  cursor: not-allowed;
  pointer-events: none;
}
.cy-cascader-checkbox-disabled .cy-cascader-checkbox-inner {
  background-color: #f5f5f5;
  border-color: #d9d9d9 !important;
}
.cy-cascader-checkbox-disabled .cy-cascader-checkbox-inner::after {
  border-color: #f5f5f5;
  border-collapse: separate;
  animation-name: none;
}
.cy-cascader-checkbox-disabled + span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.cy-cascader-checkbox-disabled:hover::after,
.cy-cascader-checkbox-wrapper:hover .cy-cascader-checkbox-disabled::after {
  visibility: hidden;
}
.cy-cascader-checkbox-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 13px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-flex;
  align-items: baseline;
  line-height: unset;
  cursor: pointer;
}
.cy-cascader-checkbox-wrapper::after {
  display: inline-block;
  width: 0;
  overflow: hidden;
  content: '\a0';
}
.cy-cascader-checkbox-wrapper.cy-cascader-checkbox-wrapper-disabled {
  cursor: not-allowed;
}
.cy-cascader-checkbox-wrapper + .cy-cascader-checkbox-wrapper {
  margin-left: 8px;
}
.cy-cascader-checkbox-wrapper.cy-cascader-checkbox-wrapper-in-form-item input[type='checkbox'] {
  width: 14px;
  height: 14px;
}
.cy-cascader-checkbox + span {
  padding-right: 8px;
  padding-left: 8px;
}
.cy-cascader-checkbox-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 13px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
}
.cy-cascader-checkbox-group-item {
  margin-right: 8px;
}
.cy-cascader-checkbox-group-item:last-child {
  margin-right: 0;
}
.cy-cascader-checkbox-group-item + .cy-cascader-checkbox-group-item {
  margin-left: 0;
}
.cy-cascader-checkbox-indeterminate .cy-cascader-checkbox-inner {
  background-color: #fff;
  border-color: #d9d9d9;
}
.cy-cascader-checkbox-indeterminate .cy-cascader-checkbox-inner::after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #00bb78;
  border: 0;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  content: ' ';
}
.cy-cascader-checkbox-indeterminate.cy-cascader-checkbox-disabled .cy-cascader-checkbox-inner::after {
  background-color: rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.25);
}
.cy-cascader {
  width: 184px;
}
.cy-cascader-checkbox {
  top: 0;
  margin-right: 8px;
}
.cy-cascader-menus {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.cy-cascader-menus.cy-cascader-menu-empty .cy-cascader-menu {
  width: 100%;
  height: auto;
}
.cy-cascader-menu {
  flex-grow: 1;
  min-width: 111px;
  height: 180px;
  margin: 0;
  margin: -4px 0;
  padding: 4px 0;
  overflow: auto;
  vertical-align: top;
  list-style: none;
  border-right: 1px solid #f0f0f0;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.cy-cascader-menu-item {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 5px 12px;
  overflow: hidden;
  line-height: 22px;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: all 0.3s;
}
.cy-cascader-menu-item:hover {
  background: #f5f5f5;
}
.cy-cascader-menu-item-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.cy-cascader-menu-item-disabled:hover {
  background: transparent;
}
.cy-cascader-menu-empty .cy-cascader-menu-item {
  color: rgba(0, 0, 0, 0.25);
  cursor: default;
  pointer-events: none;
}
.cy-cascader-menu-item-active:not(.cy-cascader-menu-item-disabled),
.cy-cascader-menu-item-active:not(.cy-cascader-menu-item-disabled):hover {
  font-weight: 600;
  background-color: #e1faed;
}
.cy-cascader-menu-item-content {
  flex: auto;
}
.cy-cascader-menu-item-expand .cy-cascader-menu-item-expand-icon,
.cy-cascader-menu-item-loading-icon {
  margin-left: 4px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 10px;
}
.cy-cascader-menu-item-disabled.cy-cascader-menu-item-expand .cy-cascader-menu-item-expand-icon,
.cy-cascader-menu-item-disabled.cy-cascader-menu-item-loading-icon {
  color: rgba(0, 0, 0, 0.25);
}
.cy-cascader-menu-item-keyword {
  color: #ff4d4f;
}
.cy-cascader-compact-item:not(.cy-cascader-compact-last-item):not(.cy-cascader-compact-item-rtl) {
  margin-right: -1px;
}
.cy-cascader-compact-item:not(.cy-cascader-compact-last-item).cy-cascader-compact-item-rtl {
  margin-left: -1px;
}
.cy-cascader-compact-item:hover,
.cy-cascader-compact-item:focus,
.cy-cascader-compact-item:active {
  z-index: 2;
}
.cy-cascader-compact-item[disabled] {
  z-index: 0;
}
.cy-cascader-compact-item:not(.cy-cascader-compact-first-item):not(.cy-cascader-compact-last-item).cy-cascader {
  border-radius: 0;
}
.cy-cascader-compact-item.cy-cascader.cy-cascader-compact-first-item:not(.cy-cascader-compact-last-item):not(.cy-cascader-compact-item-rtl) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cy-cascader-compact-item.cy-cascader.cy-cascader-compact-last-item:not(.cy-cascader-compact-first-item):not(.cy-cascader-compact-item-rtl) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.cy-cascader-compact-item.cy-cascader.cy-cascader-compact-item-rtl.cy-cascader-compact-first-item:not(.cy-cascader-compact-last-item) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.cy-cascader-compact-item.cy-cascader.cy-cascader-compact-item-rtl.cy-cascader-compact-last-item:not(.cy-cascader-compact-first-item) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cy-cascader-rtl .cy-cascader-menu-item-expand-icon,
.cy-cascader-rtl .cy-cascader-menu-item-loading-icon {
  margin-right: 4px;
  margin-left: 0;
}
.cy-cascader-rtl .cy-cascader-checkbox {
  top: 0;
  margin-right: 0;
  margin-left: 8px;
}
.cy-radio-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 13px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
  font-size: 0;
}
.cy-radio-group .cy-badge-count {
  z-index: 1;
}
.cy-radio-group > .cy-badge:not(:first-child) > .cy-radio-button-wrapper {
  border-left: none;
}
.cy-radio-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 13px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-flex;
  align-items: baseline;
  margin-right: 8px;
  cursor: pointer;
}
.cy-radio-wrapper-disabled {
  cursor: not-allowed;
}
.cy-radio-wrapper::after {
  display: inline-block;
  width: 0;
  overflow: hidden;
  content: '\a0';
}
.cy-radio-wrapper.cy-radio-wrapper-in-form-item input[type='radio'] {
  width: 14px;
  height: 14px;
}
.cy-radio {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 13px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  top: 0.2em;
  display: inline-block;
  outline: none;
  cursor: pointer;
}
.cy-radio-wrapper:hover .cy-radio,
.cy-radio:hover .cy-radio-inner,
.cy-radio-input:focus + .cy-radio-inner {
  border-color: #00bb78;
}
.cy-radio-input:focus + .cy-radio-inner {
  box-shadow: 0 0 0 3px rgba(0, 187, 120, 0.12);
}
.cy-radio-checked::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #00bb78;
  border-radius: 50%;
  visibility: hidden;
  animation: antRadioEffect 0.36s ease-in-out;
  animation-fill-mode: both;
  content: '';
}
.cy-radio:hover::after,
.cy-radio-wrapper:hover .cy-radio::after {
  visibility: visible;
}
.cy-radio-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-color: #d9d9d9;
  border-style: solid;
  border-width: 1px;
  border-radius: 50%;
  transition: all 0.3s;
}
.cy-radio-inner::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: -8px;
  background-color: #00bb78;
  border-top: 0;
  border-left: 0;
  border-radius: 16px;
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  content: ' ';
}
.cy-radio-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}
.cy-radio.cy-radio-disabled .cy-radio-inner {
  border-color: #d9d9d9;
}
.cy-radio-checked .cy-radio-inner {
  border-color: #00bb78;
}
.cy-radio-checked .cy-radio-inner::after {
  transform: scale(0.5);
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.cy-radio-disabled {
  cursor: not-allowed;
}
.cy-radio-disabled .cy-radio-inner {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.cy-radio-disabled .cy-radio-inner::after {
  background-color: rgba(0, 0, 0, 0.2);
}
.cy-radio-disabled .cy-radio-input {
  cursor: not-allowed;
}
.cy-radio-disabled + span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
span.cy-radio + * {
  padding-right: 8px;
  padding-left: 8px;
}
.cy-radio-button-wrapper {
  position: relative;
  display: inline-block;
  height: 32px;
  margin: 0;
  padding: 0 15px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 13px;
  line-height: 30px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top-width: 1.02px;
  border-left-width: 0;
  cursor: pointer;
  transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.cy-radio-button-wrapper a {
  color: rgba(0, 0, 0, 0.85);
}
.cy-radio-button-wrapper > .cy-radio-button {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.cy-radio-group-large .cy-radio-button-wrapper {
  height: 40px;
  font-size: 15px;
  line-height: 38px;
}
.cy-radio-group-small .cy-radio-button-wrapper {
  height: 24px;
  padding: 0 7px;
  line-height: 22px;
}
.cy-radio-button-wrapper:not(:first-child)::before {
  position: absolute;
  top: -1px;
  left: -1px;
  display: block;
  box-sizing: content-box;
  width: 1px;
  height: 100%;
  padding: 1px 0;
  background-color: #d9d9d9;
  transition: background-color 0.3s;
  content: '';
}
.cy-radio-button-wrapper:first-child {
  border-left: 1px solid #d9d9d9;
  border-radius: 2px 0 0 2px;
}
.cy-radio-button-wrapper:last-child {
  border-radius: 0 2px 2px 0;
}
.cy-radio-button-wrapper:first-child:last-child {
  border-radius: 2px;
}
.cy-radio-button-wrapper:hover {
  position: relative;
  color: #00bb78;
}
.cy-radio-button-wrapper:focus-within {
  box-shadow: 0 0 0 3px rgba(0, 187, 120, 0.12);
}
.cy-radio-button-wrapper .cy-radio-inner,
.cy-radio-button-wrapper input[type='checkbox'],
.cy-radio-button-wrapper input[type='radio'] {
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.cy-radio-button-wrapper-checked:not(.cy-radio-button-wrapper-disabled) {
  z-index: 1;
  color: #00bb78;
  background: #fff;
  border-color: #00bb78;
}
.cy-radio-button-wrapper-checked:not(.cy-radio-button-wrapper-disabled)::before {
  background-color: #00bb78;
}
.cy-radio-button-wrapper-checked:not(.cy-radio-button-wrapper-disabled):first-child {
  border-color: #00bb78;
}
.cy-radio-button-wrapper-checked:not(.cy-radio-button-wrapper-disabled):hover {
  color: #20c787;
  border-color: #20c787;
}
.cy-radio-button-wrapper-checked:not(.cy-radio-button-wrapper-disabled):hover::before {
  background-color: #20c787;
}
.cy-radio-button-wrapper-checked:not(.cy-radio-button-wrapper-disabled):active {
  color: #009465;
  border-color: #009465;
}
.cy-radio-button-wrapper-checked:not(.cy-radio-button-wrapper-disabled):active::before {
  background-color: #009465;
}
.cy-radio-button-wrapper-checked:not(.cy-radio-button-wrapper-disabled):focus-within {
  box-shadow: 0 0 0 3px rgba(0, 187, 120, 0.12);
}
.cy-radio-group-solid .cy-radio-button-wrapper-checked:not(.cy-radio-button-wrapper-disabled) {
  color: #fff;
  background: #00bb78;
  border-color: #00bb78;
}
.cy-radio-group-solid .cy-radio-button-wrapper-checked:not(.cy-radio-button-wrapper-disabled):hover {
  color: #fff;
  background: #20c787;
  border-color: #20c787;
}
.cy-radio-group-solid .cy-radio-button-wrapper-checked:not(.cy-radio-button-wrapper-disabled):active {
  color: #fff;
  background: #009465;
  border-color: #009465;
}
.cy-radio-group-solid .cy-radio-button-wrapper-checked:not(.cy-radio-button-wrapper-disabled):focus-within {
  box-shadow: 0 0 0 3px rgba(0, 187, 120, 0.12);
}
.cy-radio-button-wrapper-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}
.cy-radio-button-wrapper-disabled:first-child,
.cy-radio-button-wrapper-disabled:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
}
.cy-radio-button-wrapper-disabled:first-child {
  border-left-color: #d9d9d9;
}
.cy-radio-button-wrapper-disabled.cy-radio-button-wrapper-checked {
  color: rgba(0, 0, 0, 0.25);
  background-color: #e6e6e6;
  border-color: #d9d9d9;
  box-shadow: none;
}
@keyframes antRadioEffect {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.cy-radio-group.cy-radio-group-rtl {
  direction: rtl;
}
.cy-radio-wrapper.cy-radio-wrapper-rtl {
  margin-right: 0;
  margin-left: 8px;
  direction: rtl;
}
.cy-radio-button-wrapper.cy-radio-button-wrapper-rtl {
  border-right-width: 0;
  border-left-width: 1px;
}
.cy-radio-button-wrapper.cy-radio-button-wrapper-rtl.cy-radio-button-wrapper:not(:first-child)::before {
  right: -1px;
  left: 0;
}
.cy-radio-button-wrapper.cy-radio-button-wrapper-rtl.cy-radio-button-wrapper:first-child {
  border-right: 1px solid #d9d9d9;
  border-radius: 0 2px 2px 0;
}
.cy-radio-button-wrapper-checked:not([class*=' cy-radio-button-wrapper-disabled']).cy-radio-button-wrapper:first-child {
  border-right-color: #20c787;
}
.cy-radio-button-wrapper.cy-radio-button-wrapper-rtl.cy-radio-button-wrapper:last-child {
  border-radius: 2px 0 0 2px;
}
.cy-radio-button-wrapper.cy-radio-button-wrapper-rtl.cy-radio-button-wrapper-disabled:first-child {
  border-right-color: #d9d9d9;
}
.cy-select-single .cy-select-selector {
  display: flex;
}
.cy-select-single .cy-select-selector .cy-select-selection-search {
  position: absolute;
  top: 0;
  right: 11px;
  bottom: 0;
  left: 11px;
}
.cy-select-single .cy-select-selector .cy-select-selection-search-input {
  width: 100%;
}
.cy-select-single .cy-select-selector .cy-select-selection-item,
.cy-select-single .cy-select-selector .cy-select-selection-placeholder {
  padding: 0;
  line-height: 30px;
  transition: all 0.3s;
}
.cy-select-single .cy-select-selector .cy-select-selection-item {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.cy-select-single .cy-select-selector .cy-select-selection-placeholder {
  transition: none;
  pointer-events: none;
}
.cy-select-single .cy-select-selector::after,
.cy-select-single .cy-select-selector .cy-select-selection-item::after,
.cy-select-single .cy-select-selector .cy-select-selection-placeholder::after {
  display: inline-block;
  width: 0;
  visibility: hidden;
  content: '\a0';
}
.cy-select-single.cy-select-show-arrow .cy-select-selection-search {
  right: 24px;
}
.cy-select-single.cy-select-show-arrow .cy-select-selection-item,
.cy-select-single.cy-select-show-arrow .cy-select-selection-placeholder {
  padding-right: 17px;
}
.cy-select-single.cy-select-open .cy-select-selection-item {
  color: #bfbfbf;
}
.cy-select-single:not(.cy-select-customize-input) .cy-select-selector {
  width: 100%;
  height: 32px;
  padding: 0 11px;
}
.cy-select-single:not(.cy-select-customize-input) .cy-select-selector .cy-select-selection-search-input {
  height: 30px;
}
.cy-select-single:not(.cy-select-customize-input) .cy-select-selector::after {
  line-height: 30px;
}
.cy-select-single.cy-select-customize-input .cy-select-selector::after {
  display: none;
}
.cy-select-single.cy-select-customize-input .cy-select-selector .cy-select-selection-search {
  position: static;
  width: 100%;
}
.cy-select-single.cy-select-customize-input .cy-select-selector .cy-select-selection-placeholder {
  position: absolute;
  right: 0;
  left: 0;
  padding: 0 11px;
}
.cy-select-single.cy-select-customize-input .cy-select-selector .cy-select-selection-placeholder::after {
  display: none;
}
.cy-select-single.cy-select-lg:not(.cy-select-customize-input) .cy-select-selector {
  height: 40px;
}
.cy-select-single.cy-select-lg:not(.cy-select-customize-input) .cy-select-selector::after,
.cy-select-single.cy-select-lg:not(.cy-select-customize-input) .cy-select-selector .cy-select-selection-item,
.cy-select-single.cy-select-lg:not(.cy-select-customize-input) .cy-select-selector .cy-select-selection-placeholder {
  line-height: 38px;
}
.cy-select-single.cy-select-lg:not(.cy-select-customize-input):not(.cy-select-customize-input) .cy-select-selection-search-input {
  height: 38px;
}
.cy-select-single.cy-select-sm:not(.cy-select-customize-input) .cy-select-selector {
  height: 24px;
}
.cy-select-single.cy-select-sm:not(.cy-select-customize-input) .cy-select-selector::after,
.cy-select-single.cy-select-sm:not(.cy-select-customize-input) .cy-select-selector .cy-select-selection-item,
.cy-select-single.cy-select-sm:not(.cy-select-customize-input) .cy-select-selector .cy-select-selection-placeholder {
  line-height: 22px;
}
.cy-select-single.cy-select-sm:not(.cy-select-customize-input):not(.cy-select-customize-input) .cy-select-selection-search-input {
  height: 22px;
}
.cy-select-single.cy-select-sm:not(.cy-select-customize-input) .cy-select-selection-search {
  right: 7px;
  left: 7px;
}
.cy-select-single.cy-select-sm:not(.cy-select-customize-input) .cy-select-selector {
  padding: 0 7px;
}
.cy-select-single.cy-select-sm:not(.cy-select-customize-input).cy-select-show-arrow .cy-select-selection-search {
  right: 26.5px;
}
.cy-select-single.cy-select-sm:not(.cy-select-customize-input).cy-select-show-arrow .cy-select-selection-item,
.cy-select-single.cy-select-sm:not(.cy-select-customize-input).cy-select-show-arrow .cy-select-selection-placeholder {
  padding-right: 19.5px;
}
.cy-select-single.cy-select-lg:not(.cy-select-customize-input) .cy-select-selector {
  padding: 0 11px;
}
/**
 * Do not merge `height` & `line-height` under style with `selection` & `search`,
 * since chrome may update to redesign with its align logic.
 */
.cy-select-selection-overflow {
  position: relative;
  display: flex;
  flex: auto;
  flex-wrap: wrap;
  max-width: 100%;
}
.cy-select-selection-overflow-item {
  flex: none;
  align-self: center;
  max-width: 100%;
}
.cy-select-multiple .cy-select-selector {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.8px 4.8px;
}
.cy-select-show-search.cy-select-multiple .cy-select-selector {
  cursor: text;
}
.cy-select-disabled.cy-select-multiple .cy-select-selector {
  background: #f5f5f5;
  cursor: not-allowed;
}
.cy-select-multiple .cy-select-selector::after {
  display: inline-block;
  width: 0;
  margin: 3px 0;
  line-height: 22.4px;
  content: '\a0';
}
.cy-select-multiple.cy-select-show-arrow .cy-select-selector,
.cy-select-multiple.cy-select-allow-clear .cy-select-selector {
  padding-right: 24px;
}
.cy-select-multiple .cy-select-selection-item {
  position: relative;
  display: flex;
  flex: none;
  box-sizing: border-box;
  max-width: 100%;
  height: 22.4px;
  margin-top: 3px;
  margin-bottom: 3px;
  line-height: 20.4px;
  background: #f5f5f5;
  border: 1px solid #f0f0f0;
  border-radius: 2px;
  cursor: default;
  transition: font-size 0.3s, line-height 0.3s, height 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-inline-end: 4.8px;
  padding-inline-start: 8px;
  padding-inline-end: 4px;
}
.cy-select-disabled.cy-select-multiple .cy-select-selection-item {
  color: #bfbfbf;
  border-color: #d9d9d9;
  cursor: not-allowed;
}
.cy-select-multiple .cy-select-selection-item-content {
  display: inline-block;
  margin-right: 4px;
  overflow: hidden;
  white-space: pre;
  text-overflow: ellipsis;
}
.cy-select-multiple .cy-select-selection-item-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;
  display: inline-block;
  color: rgba(0, 0, 0, 0.45);
  font-weight: bold;
  font-size: 10px;
  line-height: inherit;
  cursor: pointer;
}
.cy-select-multiple .cy-select-selection-item-remove > * {
  line-height: 1;
}
.cy-select-multiple .cy-select-selection-item-remove svg {
  display: inline-block;
}
.cy-select-multiple .cy-select-selection-item-remove::before {
  display: none;
}
.cy-select-multiple .cy-select-selection-item-remove .cy-select-multiple .cy-select-selection-item-remove-icon {
  display: block;
}
.cy-select-multiple .cy-select-selection-item-remove > .anticon {
  vertical-align: middle;
}
.cy-select-multiple .cy-select-selection-item-remove:hover {
  color: rgba(0, 0, 0, 0.75);
}
.cy-select-multiple .cy-select-selection-overflow-item + .cy-select-selection-overflow-item .cy-select-selection-search {
  margin-inline-start: 0;
}
.cy-select-multiple .cy-select-selection-search {
  position: relative;
  max-width: 100%;
  margin-inline-start: 6.2px;
}
.cy-select-multiple .cy-select-selection-search-input,
.cy-select-multiple .cy-select-selection-search-mirror {
  height: 22.4px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  line-height: 22.4px;
  transition: all 0.3s;
}
.cy-select-multiple .cy-select-selection-search-input {
  width: 100%;
  min-width: 4.1px;
}
.cy-select-multiple .cy-select-selection-search-mirror {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  white-space: pre;
  visibility: hidden;
}
.cy-select-multiple .cy-select-selection-placeholder {
  position: absolute;
  top: 50%;
  right: 11px;
  left: 11px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cy-select-multiple.cy-select-lg .cy-select-selector::after {
  line-height: 30.4px;
}
.cy-select-multiple.cy-select-lg .cy-select-selection-item {
  height: 30.4px;
  line-height: 28.4px;
}
.cy-select-multiple.cy-select-lg .cy-select-selection-search {
  height: 30.4px;
  line-height: 30.4px;
}
.cy-select-multiple.cy-select-lg .cy-select-selection-search-input,
.cy-select-multiple.cy-select-lg .cy-select-selection-search-mirror {
  height: 30.4px;
  line-height: 28.4px;
}
.cy-select-multiple.cy-select-sm .cy-select-selector::after {
  line-height: 14.4px;
}
.cy-select-multiple.cy-select-sm .cy-select-selection-item {
  height: 14.4px;
  line-height: 12.4px;
}
.cy-select-multiple.cy-select-sm .cy-select-selection-search {
  height: 14.4px;
  line-height: 14.4px;
}
.cy-select-multiple.cy-select-sm .cy-select-selection-search-input,
.cy-select-multiple.cy-select-sm .cy-select-selection-search-mirror {
  height: 14.4px;
  line-height: 12.4px;
}
.cy-select-multiple.cy-select-sm .cy-select-selection-placeholder {
  left: 7px;
}
.cy-select-multiple.cy-select-sm .cy-select-selection-search {
  margin-inline-start: 3px;
}
.cy-select-multiple.cy-select-lg .cy-select-selection-item {
  height: 32px;
  line-height: 32px;
}
.cy-select-disabled .cy-select-selection-item-remove {
  display: none;
}
.cy-select-status-error.cy-select:not(.cy-select-disabled):not(.cy-select-customize-input):not(.cy-pagination-size-changer) .cy-select-selector {
  background-color: #fff;
  border-color: #ff4d4f !important;
}
.cy-select-status-error.cy-select:not(.cy-select-disabled):not(.cy-select-customize-input):not(.cy-pagination-size-changer).cy-select-open .cy-select-selector,
.cy-select-status-error.cy-select:not(.cy-select-disabled):not(.cy-select-customize-input):not(.cy-pagination-size-changer).cy-select-focused .cy-select-selector {
  border-color: #ff7875;
  box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.cy-select-status-warning.cy-select:not(.cy-select-disabled):not(.cy-select-customize-input):not(.cy-pagination-size-changer) .cy-select-selector {
  background-color: #fff;
  border-color: #faad14 !important;
}
.cy-select-status-warning.cy-select:not(.cy-select-disabled):not(.cy-select-customize-input):not(.cy-pagination-size-changer).cy-select-open .cy-select-selector,
.cy-select-status-warning.cy-select:not(.cy-select-disabled):not(.cy-select-customize-input):not(.cy-pagination-size-changer).cy-select-focused .cy-select-selector {
  border-color: #ffc53d;
  box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.cy-select-status-error.cy-select-has-feedback .cy-select-clear,
.cy-select-status-warning.cy-select-has-feedback .cy-select-clear,
.cy-select-status-success.cy-select-has-feedback .cy-select-clear,
.cy-select-status-validating.cy-select-has-feedback .cy-select-clear {
  right: 32px;
}
.cy-select-status-error.cy-select-has-feedback .cy-select-selection-selected-value,
.cy-select-status-warning.cy-select-has-feedback .cy-select-selection-selected-value,
.cy-select-status-success.cy-select-has-feedback .cy-select-selection-selected-value,
.cy-select-status-validating.cy-select-has-feedback .cy-select-selection-selected-value {
  padding-right: 42px;
}
/* Reset search input style */
.cy-select {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 13px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.cy-select:not(.cy-select-customize-input) .cy-select-selector {
  position: relative;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cy-select:not(.cy-select-customize-input) .cy-select-selector input {
  cursor: pointer;
}
.cy-select-show-search.cy-select:not(.cy-select-customize-input) .cy-select-selector {
  cursor: text;
}
.cy-select-show-search.cy-select:not(.cy-select-customize-input) .cy-select-selector input {
  cursor: auto;
}
.cy-select-focused:not(.cy-select-disabled).cy-select:not(.cy-select-customize-input) .cy-select-selector {
  border-color: #00ddbd;
  box-shadow: 0 0 0 2px rgba(0, 187, 120, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.cy-select-disabled.cy-select:not(.cy-select-customize-input) .cy-select-selector {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  cursor: not-allowed;
}
.cy-select-multiple.cy-select-disabled.cy-select:not(.cy-select-customize-input) .cy-select-selector {
  background: #f5f5f5;
}
.cy-select-disabled.cy-select:not(.cy-select-customize-input) .cy-select-selector input {
  cursor: not-allowed;
}
.cy-select:not(.cy-select-customize-input) .cy-select-selector .cy-select-selection-search-input {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.cy-select:not(.cy-select-customize-input) .cy-select-selector .cy-select-selection-search-input::-webkit-search-cancel-button {
  display: none;
  /* stylelint-disable-next-line property-no-vendor-prefix */
  -webkit-appearance: none;
}
.cy-select:not(.cy-select-disabled):hover .cy-select-selector {
  border-color: #20c787;
  border-right-width: 1px;
}
.cy-select-selection-item {
  flex: 1;
  overflow: hidden;
  font-weight: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media all and (-ms-high-contrast: none) {
  .cy-select-selection-item *::-ms-backdrop,
  .cy-select-selection-item {
    flex: auto;
  }
}
.cy-select-selection-placeholder {
  flex: 1;
  overflow: hidden;
  color: #bfbfbf;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}
@media all and (-ms-high-contrast: none) {
  .cy-select-selection-placeholder *::-ms-backdrop,
  .cy-select-selection-placeholder {
    flex: auto;
  }
}
.cy-select-arrow {
  display: inline-block;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 11px;
  display: flex;
  align-items: center;
  height: 12px;
  margin-top: -6px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  line-height: 1;
  text-align: center;
  pointer-events: none;
}
.cy-select-arrow > * {
  line-height: 1;
}
.cy-select-arrow svg {
  display: inline-block;
}
.cy-select-arrow::before {
  display: none;
}
.cy-select-arrow .cy-select-arrow-icon {
  display: block;
}
.cy-select-arrow .anticon {
  vertical-align: top;
  transition: transform 0.3s;
}
.cy-select-arrow .anticon > svg {
  vertical-align: top;
}
.cy-select-arrow .anticon:not(.cy-select-suffix) {
  pointer-events: auto;
}
.cy-select-disabled .cy-select-arrow {
  cursor: not-allowed;
}
.cy-select-arrow > *:not(:last-child) {
  margin-inline-end: 8px;
}
.cy-select-clear {
  position: absolute;
  top: 50%;
  right: 11px;
  z-index: 1;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  font-style: normal;
  line-height: 1;
  text-align: center;
  text-transform: none;
  background: #fff;
  cursor: pointer;
  opacity: 0;
  transition: color 0.3s ease, opacity 0.15s ease;
  text-rendering: auto;
}
.cy-select-clear::before {
  display: block;
}
.cy-select-clear:hover {
  color: rgba(0, 0, 0, 0.45);
}
.cy-select:hover .cy-select-clear {
  opacity: 1;
}
.cy-select-dropdown {
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
  box-sizing: border-box;
  padding: 4px 0;
  overflow: hidden;
  font-size: 13px;
  font-variant: initial;
  background-color: #fff;
  border-radius: 2px;
  outline: none;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.cy-select-dropdown.cy-slide-up-enter.cy-slide-up-enter-active.cy-select-dropdown-placement-bottomLeft,
.cy-select-dropdown.cy-slide-up-appear.cy-slide-up-appear-active.cy-select-dropdown-placement-bottomLeft {
  animation-name: antSlideUpIn;
}
.cy-select-dropdown.cy-slide-up-enter.cy-slide-up-enter-active.cy-select-dropdown-placement-topLeft,
.cy-select-dropdown.cy-slide-up-appear.cy-slide-up-appear-active.cy-select-dropdown-placement-topLeft {
  animation-name: antSlideDownIn;
}
.cy-select-dropdown.cy-slide-up-leave.cy-slide-up-leave-active.cy-select-dropdown-placement-bottomLeft {
  animation-name: antSlideUpOut;
}
.cy-select-dropdown.cy-slide-up-leave.cy-slide-up-leave-active.cy-select-dropdown-placement-topLeft {
  animation-name: antSlideDownOut;
}
.cy-select-dropdown-hidden {
  display: none;
}
.cy-select-dropdown-empty {
  color: rgba(0, 0, 0, 0.25);
}
.cy-select-item-empty {
  position: relative;
  display: block;
  min-height: 32px;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: normal;
  font-size: 13px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.25);
}
.cy-select-item {
  position: relative;
  display: block;
  min-height: 32px;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: normal;
  font-size: 13px;
  line-height: 22px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cy-select-item-group {
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  cursor: default;
}
.cy-select-item-option {
  display: flex;
}
.cy-select-item-option-content {
  flex: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.cy-select-item-option-state {
  flex: none;
}
.cy-select-item-option-active:not(.cy-select-item-option-disabled) {
  background-color: #f5f5f5;
}
.cy-select-item-option-selected:not(.cy-select-item-option-disabled) {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
  background-color: #e1faed;
}
.cy-select-item-option-selected:not(.cy-select-item-option-disabled) .cy-select-item-option-state {
  color: #00bb78;
}
.cy-select-item-option-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.cy-select-item-option-disabled.cy-select-item-option-selected {
  background-color: #f5f5f5;
}
.cy-select-item-option-grouped {
  padding-left: 24px;
}
.cy-select-lg {
  font-size: 15px;
}
.cy-select-borderless .cy-select-selector {
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.cy-select.cy-select-in-form-item {
  width: 100%;
}
.cy-select-compact-item:not(.cy-select-compact-last-item) {
  margin-right: -1px;
}
.cy-select-compact-item:not(.cy-select-compact-last-item).cy-select-compact-item-rtl {
  margin-right: 0;
  margin-left: -1px;
}
.cy-select-compact-item:hover > *,
.cy-select-compact-item:focus > *,
.cy-select-compact-item:active > * {
  z-index: 2;
}
.cy-select-compact-item.cy-select-focused > * {
  z-index: 2;
}
.cy-select-compact-item[disabled] > * {
  z-index: 0;
}
.cy-select-compact-item:not(.cy-select-compact-first-item):not(.cy-select-compact-last-item).cy-select > .cy-select-selector {
  border-radius: 0;
}
.cy-select-compact-item.cy-select-compact-first-item.cy-select:not(.cy-select-compact-last-item):not(.cy-select-compact-item-rtl) > .cy-select-selector {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cy-select-compact-item.cy-select-compact-last-item.cy-select:not(.cy-select-compact-first-item):not(.cy-select-compact-item-rtl) > .cy-select-selector {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.cy-select-compact-item.cy-select.cy-select-compact-first-item.cy-select-compact-item-rtl:not(.cy-select-compact-last-item) > .cy-select-selector {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.cy-select-compact-item.cy-select.cy-select-compact-last-item.cy-select-compact-item-rtl:not(.cy-select-compact-first-item) > .cy-select-selector {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cy-select-rtl {
  direction: rtl;
}
.cy-select-rtl .cy-select-arrow {
  right: initial;
  left: 11px;
}
.cy-select-rtl .cy-select-clear {
  right: initial;
  left: 11px;
}
.cy-select-dropdown-rtl {
  direction: rtl;
}
.cy-select-dropdown-rtl .cy-select-item-option-grouped {
  padding-right: 24px;
  padding-left: 12px;
}
.cy-select-rtl.cy-select-multiple.cy-select-show-arrow .cy-select-selector,
.cy-select-rtl.cy-select-multiple.cy-select-allow-clear .cy-select-selector {
  padding-right: 4.8px;
  padding-left: 24px;
}
.cy-select-rtl.cy-select-multiple .cy-select-selection-item {
  text-align: right;
}
.cy-select-rtl.cy-select-multiple .cy-select-selection-item-content {
  margin-right: 0;
  margin-left: 4px;
  text-align: right;
}
.cy-select-rtl.cy-select-multiple .cy-select-selection-search-mirror {
  right: 0;
  left: auto;
}
.cy-select-rtl.cy-select-multiple .cy-select-selection-placeholder {
  right: 11px;
  left: auto;
}
.cy-select-rtl.cy-select-multiple.cy-select-sm .cy-select-selection-placeholder {
  right: 7px;
}
.cy-select-rtl.cy-select-single .cy-select-selector .cy-select-selection-item,
.cy-select-rtl.cy-select-single .cy-select-selector .cy-select-selection-placeholder {
  right: 0;
  left: 9px;
  text-align: right;
}
.cy-select-rtl.cy-select-single.cy-select-show-arrow .cy-select-selection-search {
  right: 11px;
  left: 24px;
}
.cy-select-rtl.cy-select-single.cy-select-show-arrow .cy-select-selection-item,
.cy-select-rtl.cy-select-single.cy-select-show-arrow .cy-select-selection-placeholder {
  padding-right: 0;
  padding-left: 17px;
}
.cy-select-rtl.cy-select-single.cy-select-sm:not(.cy-select-customize-input).cy-select-show-arrow .cy-select-selection-search {
  right: 6px;
}
.cy-select-rtl.cy-select-single.cy-select-sm:not(.cy-select-customize-input).cy-select-show-arrow .cy-select-selection-item,
.cy-select-rtl.cy-select-single.cy-select-sm:not(.cy-select-customize-input).cy-select-show-arrow .cy-select-selection-placeholder {
  padding-right: 0;
  padding-left: 19.5px;
}
.cy-picker-panel {
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 2px;
  outline: none;
}
.cy-picker-panel-focused {
  border-color: #00bb78;
}
.cy-picker-decade-panel,
.cy-picker-year-panel,
.cy-picker-quarter-panel,
.cy-picker-month-panel,
.cy-picker-week-panel,
.cy-picker-date-panel,
.cy-picker-time-panel {
  display: flex;
  flex-direction: column;
  width: 280px;
}
.cy-picker-header {
  display: flex;
  padding: 0 8px;
  color: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid #f0f0f0;
}
.cy-picker-header > * {
  flex: none;
}
.cy-picker-header button {
  padding: 0;
  color: rgba(0, 0, 0, 0.25);
  line-height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.3s;
}
.cy-picker-header > button {
  min-width: 1.6em;
  font-size: 13px;
}
.cy-picker-header > button:hover {
  color: rgba(0, 0, 0, 0.85);
}
.cy-picker-header-view {
  flex: auto;
  font-weight: 500;
  line-height: 40px;
}
.cy-picker-header-view button {
  color: inherit;
  font-weight: inherit;
}
.cy-picker-header-view button:not(:first-child) {
  margin-left: 8px;
}
.cy-picker-header-view button:hover {
  color: #00bb78;
}
.cy-picker-prev-icon,
.cy-picker-next-icon,
.cy-picker-super-prev-icon,
.cy-picker-super-next-icon {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
}
.cy-picker-prev-icon::before,
.cy-picker-next-icon::before,
.cy-picker-super-prev-icon::before,
.cy-picker-super-next-icon::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 0 solid currentcolor;
  border-width: 1.5px 0 0 1.5px;
  content: '';
}
.cy-picker-super-prev-icon::after,
.cy-picker-super-next-icon::after {
  position: absolute;
  top: 4px;
  left: 4px;
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 0 solid currentcolor;
  border-width: 1.5px 0 0 1.5px;
  content: '';
}
.cy-picker-prev-icon,
.cy-picker-super-prev-icon {
  transform: rotate(-45deg);
}
.cy-picker-next-icon,
.cy-picker-super-next-icon {
  transform: rotate(135deg);
}
.cy-picker-content {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.cy-picker-content th,
.cy-picker-content td {
  position: relative;
  min-width: 24px;
  font-weight: 400;
}
.cy-picker-content th {
  height: 30px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 30px;
}
.cy-picker-cell {
  padding: 3px 0;
  color: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.cy-picker-cell-in-view {
  color: rgba(0, 0, 0, 0.85);
}
.cy-picker-cell::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 1;
  height: 24px;
  transform: translateY(-50%);
  transition: all 0.3s;
  content: '';
}
.cy-picker-cell .cy-picker-cell-inner {
  position: relative;
  z-index: 2;
  display: inline-block;
  min-width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 2px;
  transition: background 0.3s, border 0.3s;
}
.cy-picker-cell:hover:not(.cy-picker-cell-in-view) .cy-picker-cell-inner,
.cy-picker-cell:hover:not(.cy-picker-cell-selected):not(.cy-picker-cell-range-start):not(.cy-picker-cell-range-end):not(.cy-picker-cell-range-hover-start):not(.cy-picker-cell-range-hover-end) .cy-picker-cell-inner {
  background: #f5f5f5;
}
.cy-picker-cell-in-view.cy-picker-cell-today .cy-picker-cell-inner::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  border: 1px solid #00bb78;
  border-radius: 2px;
  content: '';
}
.cy-picker-cell-in-view.cy-picker-cell-in-range {
  position: relative;
}
.cy-picker-cell-in-view.cy-picker-cell-in-range::before {
  background: #e1faed;
}
.cy-picker-cell-in-view.cy-picker-cell-selected .cy-picker-cell-inner,
.cy-picker-cell-in-view.cy-picker-cell-range-start .cy-picker-cell-inner,
.cy-picker-cell-in-view.cy-picker-cell-range-end .cy-picker-cell-inner {
  color: #fff;
  background: #00bb78;
}
.cy-picker-cell-in-view.cy-picker-cell-range-start:not(.cy-picker-cell-range-start-single)::before,
.cy-picker-cell-in-view.cy-picker-cell-range-end:not(.cy-picker-cell-range-end-single)::before {
  background: #e1faed;
}
.cy-picker-cell-in-view.cy-picker-cell-range-start::before {
  left: 50%;
}
.cy-picker-cell-in-view.cy-picker-cell-range-end::before {
  right: 50%;
}
.cy-picker-cell-in-view.cy-picker-cell-range-hover-start:not(.cy-picker-cell-in-range):not(.cy-picker-cell-range-start):not(.cy-picker-cell-range-end)::after,
.cy-picker-cell-in-view.cy-picker-cell-range-hover-end:not(.cy-picker-cell-in-range):not(.cy-picker-cell-range-start):not(.cy-picker-cell-range-end)::after,
.cy-picker-cell-in-view.cy-picker-cell-range-hover-start.cy-picker-cell-range-start-single::after,
.cy-picker-cell-in-view.cy-picker-cell-range-hover-start.cy-picker-cell-range-start.cy-picker-cell-range-end.cy-picker-cell-range-end-near-hover::after,
.cy-picker-cell-in-view.cy-picker-cell-range-hover-end.cy-picker-cell-range-start.cy-picker-cell-range-end.cy-picker-cell-range-start-near-hover::after,
.cy-picker-cell-in-view.cy-picker-cell-range-hover-end.cy-picker-cell-range-end-single::after,
.cy-picker-cell-in-view.cy-picker-cell-range-hover:not(.cy-picker-cell-in-range)::after {
  position: absolute;
  top: 50%;
  z-index: 0;
  height: 24px;
  border-top: 1px dashed #22ffb0;
  border-bottom: 1px dashed #22ffb0;
  transform: translateY(-50%);
  transition: all 0.3s;
  content: '';
}
.cy-picker-cell-range-hover-start::after,
.cy-picker-cell-range-hover-end::after,
.cy-picker-cell-range-hover::after {
  right: 0;
  left: 2px;
}
.cy-picker-cell-in-view.cy-picker-cell-in-range.cy-picker-cell-range-hover::before,
.cy-picker-cell-in-view.cy-picker-cell-range-start.cy-picker-cell-range-hover::before,
.cy-picker-cell-in-view.cy-picker-cell-range-end.cy-picker-cell-range-hover::before,
.cy-picker-cell-in-view.cy-picker-cell-range-start:not(.cy-picker-cell-range-start-single).cy-picker-cell-range-hover-start::before,
.cy-picker-cell-in-view.cy-picker-cell-range-end:not(.cy-picker-cell-range-end-single).cy-picker-cell-range-hover-end::before,
.cy-picker-panel > :not(.cy-picker-date-panel) .cy-picker-cell-in-view.cy-picker-cell-in-range.cy-picker-cell-range-hover-start::before,
.cy-picker-panel > :not(.cy-picker-date-panel) .cy-picker-cell-in-view.cy-picker-cell-in-range.cy-picker-cell-range-hover-end::before {
  background: #6effcb;
}
.cy-picker-cell-in-view.cy-picker-cell-range-start:not(.cy-picker-cell-range-start-single):not(.cy-picker-cell-range-end) .cy-picker-cell-inner {
  border-radius: 2px 0 0 2px;
}
.cy-picker-cell-in-view.cy-picker-cell-range-end:not(.cy-picker-cell-range-end-single):not(.cy-picker-cell-range-start) .cy-picker-cell-inner {
  border-radius: 0 2px 2px 0;
}
.cy-picker-date-panel .cy-picker-cell-in-view.cy-picker-cell-in-range.cy-picker-cell-range-hover-start .cy-picker-cell-inner::after,
.cy-picker-date-panel .cy-picker-cell-in-view.cy-picker-cell-in-range.cy-picker-cell-range-hover-end .cy-picker-cell-inner::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: #6effcb;
  transition: all 0.3s;
  content: '';
}
.cy-picker-date-panel .cy-picker-cell-in-view.cy-picker-cell-in-range.cy-picker-cell-range-hover-start .cy-picker-cell-inner::after {
  right: -6px;
  left: 0;
}
.cy-picker-date-panel .cy-picker-cell-in-view.cy-picker-cell-in-range.cy-picker-cell-range-hover-end .cy-picker-cell-inner::after {
  right: 0;
  left: -6px;
}
.cy-picker-cell-range-hover.cy-picker-cell-range-start::after {
  right: 50%;
}
.cy-picker-cell-range-hover.cy-picker-cell-range-end::after {
  left: 50%;
}
tr > .cy-picker-cell-in-view.cy-picker-cell-range-hover:first-child::after,
tr > .cy-picker-cell-in-view.cy-picker-cell-range-hover-end:first-child::after,
.cy-picker-cell-in-view.cy-picker-cell-start.cy-picker-cell-range-hover-edge-start.cy-picker-cell-range-hover-edge-start-near-range::after,
.cy-picker-cell-in-view.cy-picker-cell-range-hover-edge-start:not(.cy-picker-cell-range-hover-edge-start-near-range)::after,
.cy-picker-cell-in-view.cy-picker-cell-range-hover-start::after {
  left: 6px;
  border-left: 1px dashed #22ffb0;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
tr > .cy-picker-cell-in-view.cy-picker-cell-range-hover:last-child::after,
tr > .cy-picker-cell-in-view.cy-picker-cell-range-hover-start:last-child::after,
.cy-picker-cell-in-view.cy-picker-cell-end.cy-picker-cell-range-hover-edge-end.cy-picker-cell-range-hover-edge-end-near-range::after,
.cy-picker-cell-in-view.cy-picker-cell-range-hover-edge-end:not(.cy-picker-cell-range-hover-edge-end-near-range)::after,
.cy-picker-cell-in-view.cy-picker-cell-range-hover-end::after {
  right: 6px;
  border-right: 1px dashed #22ffb0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.cy-picker-cell-disabled {
  color: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.cy-picker-cell-disabled .cy-picker-cell-inner {
  background: transparent;
}
.cy-picker-cell-disabled::before {
  background: rgba(0, 0, 0, 0.04);
}
.cy-picker-cell-disabled.cy-picker-cell-today .cy-picker-cell-inner::before {
  border-color: rgba(0, 0, 0, 0.25);
}
.cy-picker-decade-panel .cy-picker-content,
.cy-picker-year-panel .cy-picker-content,
.cy-picker-quarter-panel .cy-picker-content,
.cy-picker-month-panel .cy-picker-content {
  height: 264px;
}
.cy-picker-decade-panel .cy-picker-cell-inner,
.cy-picker-year-panel .cy-picker-cell-inner,
.cy-picker-quarter-panel .cy-picker-cell-inner,
.cy-picker-month-panel .cy-picker-cell-inner {
  padding: 0 8px;
}
.cy-picker-quarter-panel .cy-picker-content {
  height: 56px;
}
.cy-picker-footer {
  width: -moz-min-content;
  width: min-content;
  min-width: 100%;
  line-height: 38px;
  text-align: center;
  border-bottom: 1px solid transparent;
}
.cy-picker-panel .cy-picker-footer {
  border-top: 1px solid #f0f0f0;
}
.cy-picker-footer-extra {
  padding: 0 12px;
  line-height: 38px;
  text-align: left;
}
.cy-picker-footer-extra:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}
.cy-picker-now {
  text-align: left;
}
.cy-picker-today-btn {
  color: #00bb78;
}
.cy-picker-today-btn:hover {
  color: #20c787;
}
.cy-picker-today-btn:active {
  color: #009465;
}
.cy-picker-today-btn.cy-picker-today-btn-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.cy-picker-decade-panel .cy-picker-cell-inner {
  padding: 0 4px;
}
.cy-picker-decade-panel .cy-picker-cell::before {
  display: none;
}
.cy-picker-year-panel .cy-picker-body,
.cy-picker-quarter-panel .cy-picker-body,
.cy-picker-month-panel .cy-picker-body {
  padding: 0 8px;
}
.cy-picker-year-panel .cy-picker-cell-inner,
.cy-picker-quarter-panel .cy-picker-cell-inner,
.cy-picker-month-panel .cy-picker-cell-inner {
  width: 60px;
}
.cy-picker-year-panel .cy-picker-cell-range-hover-start::after,
.cy-picker-quarter-panel .cy-picker-cell-range-hover-start::after,
.cy-picker-month-panel .cy-picker-cell-range-hover-start::after {
  left: 14px;
  border-left: 1px dashed #22ffb0;
  border-radius: 2px 0 0 2px;
}
.cy-picker-panel-rtl .cy-picker-year-panel .cy-picker-cell-range-hover-start::after,
.cy-picker-panel-rtl .cy-picker-quarter-panel .cy-picker-cell-range-hover-start::after,
.cy-picker-panel-rtl .cy-picker-month-panel .cy-picker-cell-range-hover-start::after {
  right: 14px;
  border-right: 1px dashed #22ffb0;
  border-radius: 0 2px 2px 0;
}
.cy-picker-year-panel .cy-picker-cell-range-hover-end::after,
.cy-picker-quarter-panel .cy-picker-cell-range-hover-end::after,
.cy-picker-month-panel .cy-picker-cell-range-hover-end::after {
  right: 14px;
  border-right: 1px dashed #22ffb0;
  border-radius: 0 2px 2px 0;
}
.cy-picker-panel-rtl .cy-picker-year-panel .cy-picker-cell-range-hover-end::after,
.cy-picker-panel-rtl .cy-picker-quarter-panel .cy-picker-cell-range-hover-end::after,
.cy-picker-panel-rtl .cy-picker-month-panel .cy-picker-cell-range-hover-end::after {
  left: 14px;
  border-left: 1px dashed #22ffb0;
  border-radius: 2px 0 0 2px;
}
.cy-picker-week-panel .cy-picker-body {
  padding: 8px 12px;
}
.cy-picker-week-panel .cy-picker-cell:hover .cy-picker-cell-inner,
.cy-picker-week-panel .cy-picker-cell-selected .cy-picker-cell-inner,
.cy-picker-week-panel .cy-picker-cell .cy-picker-cell-inner {
  background: transparent !important;
}
.cy-picker-week-panel-row td {
  transition: background 0.3s;
}
.cy-picker-week-panel-row:hover td {
  background: #f5f5f5;
}
.cy-picker-week-panel-row-selected td,
.cy-picker-week-panel-row-selected:hover td {
  background: #00bb78;
}
.cy-picker-week-panel-row-selected td.cy-picker-cell-week,
.cy-picker-week-panel-row-selected:hover td.cy-picker-cell-week {
  color: rgba(255, 255, 255, 0.5);
}
.cy-picker-week-panel-row-selected td.cy-picker-cell-today .cy-picker-cell-inner::before,
.cy-picker-week-panel-row-selected:hover td.cy-picker-cell-today .cy-picker-cell-inner::before {
  border-color: #fff;
}
.cy-picker-week-panel-row-selected td .cy-picker-cell-inner,
.cy-picker-week-panel-row-selected:hover td .cy-picker-cell-inner {
  color: #fff;
}
.cy-picker-date-panel .cy-picker-body {
  padding: 8px 12px;
}
.cy-picker-date-panel .cy-picker-content {
  width: 252px;
}
.cy-picker-date-panel .cy-picker-content th {
  width: 36px;
}
.cy-picker-datetime-panel {
  display: flex;
}
.cy-picker-datetime-panel .cy-picker-time-panel {
  border-left: 1px solid #f0f0f0;
}
.cy-picker-datetime-panel .cy-picker-date-panel,
.cy-picker-datetime-panel .cy-picker-time-panel {
  transition: opacity 0.3s;
}
.cy-picker-datetime-panel-active .cy-picker-date-panel,
.cy-picker-datetime-panel-active .cy-picker-time-panel {
  opacity: 0.3;
}
.cy-picker-datetime-panel-active .cy-picker-date-panel-active,
.cy-picker-datetime-panel-active .cy-picker-time-panel-active {
  opacity: 1;
}
.cy-picker-time-panel {
  width: auto;
  min-width: auto;
}
.cy-picker-time-panel .cy-picker-content {
  display: flex;
  flex: auto;
  height: 224px;
}
.cy-picker-time-panel-column {
  flex: 1 0 auto;
  width: 56px;
  margin: 0;
  padding: 0;
  overflow-y: hidden;
  text-align: left;
  list-style: none;
  transition: background 0.3s;
}
.cy-picker-time-panel-column::after {
  display: block;
  height: 196px;
  content: '';
}
.cy-picker-datetime-panel .cy-picker-time-panel-column::after {
  height: 198px;
}
.cy-picker-time-panel-column:not(:first-child) {
  border-left: 1px solid #f0f0f0;
}
.cy-picker-time-panel-column-active {
  background: rgba(225, 250, 237, 0.2);
}
.cy-picker-time-panel-column:hover {
  overflow-y: auto;
}
.cy-picker-time-panel-column > li {
  margin: 0;
  padding: 0;
}
.cy-picker-time-panel-column > li.cy-picker-time-panel-cell .cy-picker-time-panel-cell-inner {
  display: block;
  width: 100%;
  height: 28px;
  margin: 0;
  padding: 0 0 0 14px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 28px;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s;
}
.cy-picker-time-panel-column > li.cy-picker-time-panel-cell .cy-picker-time-panel-cell-inner:hover {
  background: #f5f5f5;
}
.cy-picker-time-panel-column > li.cy-picker-time-panel-cell-selected .cy-picker-time-panel-cell-inner {
  background: #e1faed;
}
.cy-picker-time-panel-column > li.cy-picker-time-panel-cell-disabled .cy-picker-time-panel-cell-inner {
  color: rgba(0, 0, 0, 0.25);
  background: transparent;
  cursor: not-allowed;
}
/* stylelint-disable selector-type-no-unknown,selector-no-vendor-prefix */
_:-ms-fullscreen .cy-picker-range-wrapper .cy-picker-month-panel .cy-picker-cell,
:root .cy-picker-range-wrapper .cy-picker-month-panel .cy-picker-cell,
_:-ms-fullscreen .cy-picker-range-wrapper .cy-picker-year-panel .cy-picker-cell,
:root .cy-picker-range-wrapper .cy-picker-year-panel .cy-picker-cell {
  padding: 21px 0;
}
/* 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 */
.cy-picker {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 13px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: 'tnum';
  padding: 5px 11px 5px;
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: border 0.3s, box-shadow 0.3s;
}
.cy-picker:hover,
.cy-picker-focused {
  border-color: #20c787;
  border-right-width: 1px;
}
.cy-picker-focused {
  border-color: #00ddbd;
  box-shadow: 0 0 0 2px rgba(0, 187, 120, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.cy-picker.cy-picker-disabled {
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}
.cy-picker.cy-picker-disabled .cy-picker-suffix {
  color: rgba(0, 0, 0, 0.25);
}
.cy-picker.cy-picker-borderless {
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.cy-picker-input {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.cy-picker-input > input {
  position: relative;
  display: inline-block;
  width: 100%;
  min-width: 0;
  padding: 4.8px 11px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 13px;
  line-height: 1.5715;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: all 0.3s;
  flex: auto;
  min-width: 1px;
  height: auto;
  padding: 0;
  background: transparent;
  border: 0;
}
.cy-picker-input > input::-moz-placeholder {
  color: #bfbfbf;
  -moz-user-select: none;
       user-select: none;
}
.cy-picker-input > input::placeholder {
  color: #bfbfbf;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.cy-picker-input > input:-moz-placeholder-shown {
  text-overflow: ellipsis;
}
.cy-picker-input > input:placeholder-shown {
  text-overflow: ellipsis;
}
.cy-picker-input > input:hover {
  border-color: #20c787;
  border-right-width: 1px;
}
.cy-picker-input > input:focus,
.cy-picker-input > input-focused {
  border-color: #00ddbd;
  box-shadow: 0 0 0 2px rgba(0, 187, 120, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.cy-picker-input > input-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}
.cy-picker-input > input-disabled:hover {
  border-color: #d9d9d9;
  border-right-width: 1px;
}
.cy-picker-input > input[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}
.cy-picker-input > input[disabled]:hover {
  border-color: #d9d9d9;
  border-right-width: 1px;
}
.cy-picker-input > input-borderless,
.cy-picker-input > input-borderless:hover,
.cy-picker-input > input-borderless:focus,
.cy-picker-input > input-borderless-focused,
.cy-picker-input > input-borderless-disabled,
.cy-picker-input > input-borderless[disabled] {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
textarea.cy-picker-input > input {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5715;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}
.cy-picker-input > input-lg {
  padding: 7.3px 11px;
  font-size: 15px;
}
.cy-picker-input > input-sm {
  padding: 0.8px 7px;
}
.cy-picker-input > input:focus {
  box-shadow: none;
}
.cy-picker-input > input[disabled] {
  background: transparent;
}
.cy-picker-input:hover .cy-picker-clear {
  opacity: 1;
}
.cy-picker-input-placeholder > input {
  color: #bfbfbf;
}
.cy-picker-large {
  padding: 7.5px 11px 7.5px;
}
.cy-picker-large .cy-picker-input > input {
  font-size: 15px;
}
.cy-picker-small {
  padding: 1px 7px 1px;
}
.cy-picker-suffix {
  display: flex;
  flex: none;
  align-self: center;
  margin-left: 4px;
  color: rgba(0, 0, 0, 0.25);
  line-height: 1;
  pointer-events: none;
}
.cy-picker-suffix > * {
  vertical-align: top;
}
.cy-picker-suffix > *:not(:last-child) {
  margin-right: 8px;
}
.cy-picker-clear {
  position: absolute;
  top: 50%;
  right: 0;
  color: rgba(0, 0, 0, 0.25);
  line-height: 1;
  background: #fff;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, color 0.3s;
}
.cy-picker-clear > * {
  vertical-align: top;
}
.cy-picker-clear:hover {
  color: rgba(0, 0, 0, 0.45);
}
.cy-picker-separator {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 15px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 15px;
  vertical-align: top;
  cursor: default;
}
.cy-picker-focused .cy-picker-separator {
  color: rgba(0, 0, 0, 0.45);
}
.cy-picker-disabled .cy-picker-range-separator .cy-picker-separator {
  cursor: not-allowed;
}
.cy-picker-range {
  position: relative;
  display: inline-flex;
}
.cy-picker-range .cy-picker-clear {
  right: 11px;
}
.cy-picker-range:hover .cy-picker-clear {
  opacity: 1;
}
.cy-picker-range .cy-picker-active-bar {
  bottom: -1px;
  height: 2px;
  margin-left: 11px;
  background: #00bb78;
  opacity: 0;
  transition: all 0.3s ease-out;
  pointer-events: none;
}
.cy-picker-range.cy-picker-focused .cy-picker-active-bar {
  opacity: 1;
}
.cy-picker-range-separator {
  align-items: center;
  padding: 0 8px;
  line-height: 1;
}
.cy-picker-range.cy-picker-small .cy-picker-clear {
  right: 7px;
}
.cy-picker-range.cy-picker-small .cy-picker-active-bar {
  margin-left: 7px;
}
.cy-picker-dropdown {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 13px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
}
.cy-picker-dropdown-hidden {
  display: none;
}
.cy-picker-dropdown-placement-bottomLeft .cy-picker-range-arrow {
  top: 2.58561808px;
  display: block;
  transform: rotate(-135deg) translateY(1px);
}
.cy-picker-dropdown-placement-topLeft .cy-picker-range-arrow {
  bottom: 2.58561808px;
  display: block;
  transform: rotate(45deg);
}
.cy-picker-dropdown.cy-slide-up-enter.cy-slide-up-enter-active.cy-picker-dropdown-placement-topLeft,
.cy-picker-dropdown.cy-slide-up-enter.cy-slide-up-enter-active.cy-picker-dropdown-placement-topRight,
.cy-picker-dropdown.cy-slide-up-appear.cy-slide-up-appear-active.cy-picker-dropdown-placement-topLeft,
.cy-picker-dropdown.cy-slide-up-appear.cy-slide-up-appear-active.cy-picker-dropdown-placement-topRight {
  animation-name: antSlideDownIn;
}
.cy-picker-dropdown.cy-slide-up-enter.cy-slide-up-enter-active.cy-picker-dropdown-placement-bottomLeft,
.cy-picker-dropdown.cy-slide-up-enter.cy-slide-up-enter-active.cy-picker-dropdown-placement-bottomRight,
.cy-picker-dropdown.cy-slide-up-appear.cy-slide-up-appear-active.cy-picker-dropdown-placement-bottomLeft,
.cy-picker-dropdown.cy-slide-up-appear.cy-slide-up-appear-active.cy-picker-dropdown-placement-bottomRight {
  animation-name: antSlideUpIn;
}
.cy-picker-dropdown.cy-slide-up-leave.cy-slide-up-leave-active.cy-picker-dropdown-placement-topLeft,
.cy-picker-dropdown.cy-slide-up-leave.cy-slide-up-leave-active.cy-picker-dropdown-placement-topRight {
  animation-name: antSlideDownOut;
}
.cy-picker-dropdown.cy-slide-up-leave.cy-slide-up-leave-active.cy-picker-dropdown-placement-bottomLeft,
.cy-picker-dropdown.cy-slide-up-leave.cy-slide-up-leave-active.cy-picker-dropdown-placement-bottomRight {
  animation-name: antSlideUpOut;
}
.cy-picker-dropdown-range {
  padding: 7.54247233px 0;
}
.cy-picker-dropdown-range-hidden {
  display: none;
}
.cy-picker-dropdown .cy-picker-panel > .cy-picker-time-panel {
  padding-top: 4px;
}
.cy-picker-ranges {
  margin-bottom: 0;
  padding: 4px 12px;
  overflow: hidden;
  line-height: 34px;
  text-align: left;
  list-style: none;
}
.cy-picker-ranges > li {
  display: inline-block;
}
.cy-picker-ranges .cy-picker-preset > .cy-tag-blue {
  color: #00bb78;
  background: #e1faed;
  border-color: #6ce0ac;
  cursor: pointer;
}
.cy-picker-ranges .cy-picker-ok {
  float: right;
  margin-left: 8px;
}
.cy-picker-range-wrapper {
  display: flex;
}
.cy-picker-range-arrow {
  position: absolute;
  z-index: 1;
  display: none;
  width: 11.3137085px;
  height: 11.3137085px;
  margin-left: 16.5px;
  box-shadow: 2px 2px 6px -2px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease-out;
  border-radius: 0 0 2px;
  pointer-events: none;
}
.cy-picker-range-arrow::before {
  position: absolute;
  top: -11.3137085px;
  left: -11.3137085px;
  width: 33.9411255px;
  height: 33.9411255px;
  background: #fff;
  background-repeat: no-repeat;
  background-position: -10px -10px;
  content: '';
  clip-path: inset(33% 33%);
  clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
}
.cy-picker-panel-container {
  overflow: hidden;
  vertical-align: top;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  transition: margin 0.3s;
}
.cy-picker-panel-container .cy-picker-panels {
  display: inline-flex;
  flex-wrap: nowrap;
  direction: ltr;
}
.cy-picker-panel-container .cy-picker-panel {
  vertical-align: top;
  background: transparent;
  border-width: 0 0 1px 0;
  border-radius: 0;
}
.cy-picker-panel-container .cy-picker-panel .cy-picker-content,
.cy-picker-panel-container .cy-picker-panel table {
  text-align: center;
}
.cy-picker-panel-container .cy-picker-panel-focused {
  border-color: #f0f0f0;
}
.cy-picker-compact-item:not(.cy-picker-compact-last-item):not(.cy-picker-compact-item-rtl) {
  margin-right: -1px;
}
.cy-picker-compact-item:not(.cy-picker-compact-last-item).cy-picker-compact-item-rtl {
  margin-left: -1px;
}
.cy-picker-compact-item:hover,
.cy-picker-compact-item:focus,
.cy-picker-compact-item:active {
  z-index: 2;
}
.cy-picker-compact-item.cy-picker-focused {
  z-index: 2;
}
.cy-picker-compact-item[disabled] {
  z-index: 0;
}
.cy-picker-compact-item:not(.cy-picker-compact-first-item):not(.cy-picker-compact-last-item).cy-picker {
  border-radius: 0;
}
.cy-picker-compact-item.cy-picker.cy-picker-compact-first-item:not(.cy-picker-compact-last-item):not(.cy-picker-compact-item-rtl) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cy-picker-compact-item.cy-picker.cy-picker-compact-last-item:not(.cy-picker-compact-first-item):not(.cy-picker-compact-item-rtl) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.cy-picker-compact-item.cy-picker.cy-picker-compact-item-rtl.cy-picker-compact-first-item:not(.cy-picker-compact-last-item) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.cy-picker-compact-item.cy-picker.cy-picker-compact-item-rtl.cy-picker-compact-last-item:not(.cy-picker-compact-first-item) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cy-picker-rtl {
  direction: rtl;
}
.cy-picker-rtl .cy-picker-suffix {
  margin-right: 4px;
  margin-left: 0;
}
.cy-picker-rtl .cy-picker-clear {
  right: auto;
  left: 0;
}
.cy-picker-rtl .cy-picker-separator {
  transform: rotate(180deg);
}
.cy-picker-panel-rtl .cy-picker-header-view button:not(:first-child) {
  margin-right: 8px;
  margin-left: 0;
}
.cy-picker-rtl.cy-picker-range .cy-picker-clear {
  right: auto;
  left: 11px;
}
.cy-picker-rtl.cy-picker-range .cy-picker-active-bar {
  margin-right: 11px;
  margin-left: 0;
}
.cy-picker-rtl.cy-picker-range.cy-picker-small .cy-picker-active-bar {
  margin-right: 7px;
}
.cy-picker-dropdown-rtl .cy-picker-ranges {
  text-align: right;
}
.cy-picker-dropdown-rtl .cy-picker-ranges .cy-picker-ok {
  float: left;
  margin-right: 8px;
  margin-left: 0;
}
.cy-picker-panel-rtl {
  direction: rtl;
}
.cy-picker-panel-rtl .cy-picker-prev-icon,
.cy-picker-panel-rtl .cy-picker-super-prev-icon {
  transform: rotate(135deg);
}
.cy-picker-panel-rtl .cy-picker-next-icon,
.cy-picker-panel-rtl .cy-picker-super-next-icon {
  transform: rotate(-45deg);
}
.cy-picker-cell .cy-picker-cell-inner {
  position: relative;
  z-index: 2;
  display: inline-block;
  min-width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 2px;
  transition: background 0.3s, border 0.3s;
}
.cy-picker-panel-rtl .cy-picker-cell-in-view.cy-picker-cell-range-start::before {
  right: 50%;
  left: 0;
}
.cy-picker-panel-rtl .cy-picker-cell-in-view.cy-picker-cell-range-end::before {
  right: 0;
  left: 50%;
}
.cy-picker-panel-rtl .cy-picker-cell-in-view.cy-picker-cell-range-start.cy-picker-cell-range-end::before {
  right: 50%;
  left: 50%;
}
.cy-picker-panel-rtl .cy-picker-date-panel .cy-picker-cell-in-view.cy-picker-cell-in-range.cy-picker-cell-range-hover-start .cy-picker-cell-inner::after {
  right: 0;
  left: -6px;
}
.cy-picker-panel-rtl .cy-picker-date-panel .cy-picker-cell-in-view.cy-picker-cell-in-range.cy-picker-cell-range-hover-end .cy-picker-cell-inner::after {
  right: -6px;
  left: 0;
}
.cy-picker-panel-rtl .cy-picker-cell-range-hover.cy-picker-cell-range-start::after {
  right: 0;
  left: 50%;
}
.cy-picker-panel-rtl .cy-picker-cell-range-hover.cy-picker-cell-range-end::after {
  right: 50%;
  left: 0;
}
.cy-picker-panel-rtl .cy-picker-cell-in-view.cy-picker-cell-range-start:not(.cy-picker-cell-range-start-single):not(.cy-picker-cell-range-end) .cy-picker-cell-inner {
  border-radius: 0 2px 2px 0;
}
.cy-picker-panel-rtl .cy-picker-cell-in-view.cy-picker-cell-range-end:not(.cy-picker-cell-range-end-single):not(.cy-picker-cell-range-start) .cy-picker-cell-inner {
  border-radius: 2px 0 0 2px;
}
.cy-picker-panel-rtl tr > .cy-picker-cell-in-view.cy-picker-cell-range-hover:not(.cy-picker-cell-selected):first-child::after,
.cy-picker-panel-rtl .cy-picker-cell-in-view.cy-picker-cell-start.cy-picker-cell-range-hover-edge-start.cy-picker-cell-range-hover-edge-start-near-range::after,
.cy-picker-panel-rtl .cy-picker-cell-in-view.cy-picker-cell-range-hover-edge-start:not(.cy-picker-cell-range-hover-edge-start-near-range)::after,
.cy-picker-panel-rtl .cy-picker-cell-in-view.cy-picker-cell-range-hover-start::after {
  right: 6px;
  left: 0;
  border-right: 1px dashed #22ffb0;
  border-left: none;
  border-radius: 0 2px 2px 0;
}
.cy-picker-panel-rtl tr > .cy-picker-cell-in-view.cy-picker-cell-range-hover:not(.cy-picker-cell-selected):last-child::after,
.cy-picker-panel-rtl .cy-picker-cell-in-view.cy-picker-cell-end.cy-picker-cell-range-hover-edge-end.cy-picker-cell-range-hover-edge-end-near-range::after,
.cy-picker-panel-rtl .cy-picker-cell-in-view.cy-picker-cell-range-hover-edge-end:not(.cy-picker-cell-range-hover-edge-end-near-range)::after,
.cy-picker-panel-rtl .cy-picker-cell-in-view.cy-picker-cell-range-hover-end::after {
  right: 0;
  left: 6px;
  border-right: none;
  border-left: 1px dashed #22ffb0;
  border-radius: 2px 0 0 2px;
}
.cy-picker-panel-rtl tr > .cy-picker-cell-in-view.cy-picker-cell-range-hover-start:last-child::after,
.cy-picker-panel-rtl tr > .cy-picker-cell-in-view.cy-picker-cell-range-hover-end:first-child::after,
.cy-picker-panel-rtl .cy-picker-cell-in-view.cy-picker-cell-start.cy-picker-cell-range-hover-edge-start:not(.cy-picker-cell-range-hover)::after,
.cy-picker-panel-rtl .cy-picker-cell-in-view.cy-picker-cell-start.cy-picker-cell-range-hover-end.cy-picker-cell-range-hover-edge-start:not(.cy-picker-cell-range-hover)::after,
.cy-picker-panel-rtl .cy-picker-cell-in-view.cy-picker-cell-end.cy-picker-cell-range-hover-start.cy-picker-cell-range-hover-edge-end:not(.cy-picker-cell-range-hover)::after,
.cy-picker-panel-rtl tr > .cy-picker-cell-in-view.cy-picker-cell-start.cy-picker-cell-range-hover.cy-picker-cell-range-hover-edge-start:last-child::after,
.cy-picker-panel-rtl tr > .cy-picker-cell-in-view.cy-picker-cell-end.cy-picker-cell-range-hover.cy-picker-cell-range-hover-edge-end:first-child::after {
  right: 6px;
  left: 6px;
  border-right: 1px dashed #22ffb0;
  border-left: 1px dashed #22ffb0;
  border-radius: 2px;
}
.cy-picker-dropdown-rtl .cy-picker-footer-extra {
  direction: rtl;
  text-align: right;
}
.cy-picker-panel-rtl .cy-picker-time-panel {
  direction: ltr;
}
.cy-picker-status-error.cy-picker,
.cy-picker-status-error.cy-picker:not([disabled]):hover {
  background-color: #fff;
  border-color: #ff4d4f;
}
.cy-picker-status-error.cy-picker-focused,
.cy-picker-status-error.cy-picker:focus {
  border-color: #ff7875;
  box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.cy-picker-status-error.cy-picker .cy-picker-active-bar {
  background: #ff7875;
}
.cy-picker-status-warning.cy-picker,
.cy-picker-status-warning.cy-picker:not([disabled]):hover {
  background-color: #fff;
  border-color: #faad14;
}
.cy-picker-status-warning.cy-picker-focused,
.cy-picker-status-warning.cy-picker:focus {
  border-color: #ffc53d;
  box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.cy-picker-status-warning.cy-picker .cy-picker-active-bar {
  background: #ffc53d;
}
[class^=cy-]::-ms-clear,
[class*= cy-]::-ms-clear,
[class^=cy-] input::-ms-clear,
[class*= cy-] input::-ms-clear,
[class^=cy-] input::-ms-reveal,
[class*= cy-] input::-ms-reveal {
  display: none;
}
/* stylelint-disable property-no-vendor-prefix, at-rule-no-vendor-prefix */
html,
body {
  width: 100%;
  height: 100%;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  margin: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 13px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-variant: tabular-nums;
  line-height: 1.5715;
  background-color: #fff;
  font-feature-settings: 'tnum';
}
[tabindex='-1']:focus {
  outline: none !important;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
}
p {
  margin-top: 0;
  margin-bottom: 1em;
}
abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  border-bottom: 0;
  cursor: help;
}
address {
  margin-bottom: 1em;
  font-style: normal;
  line-height: inherit;
}
input[type='text'],
input[type='password'],
input[type='number'],
textarea {
  -webkit-appearance: none;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1em;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 500;
}
dd {
  margin-bottom: 0.5em;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1em;
}
dfn {
  font-style: italic;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: #00bb78;
  text-decoration: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  transition: color 0.3s;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #20c787;
}
a:active {
  color: #009465;
}
a:active,
a:hover {
  text-decoration: none;
  outline: 0;
}
a:focus {
  text-decoration: none;
  outline: 0;
}
a[disabled] {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
pre,
code,
kbd,
samp {
  font-size: 1em;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}
pre {
  margin-top: 0;
  margin-bottom: 1em;
  overflow: auto;
}
figure {
  margin: 0 0 1em;
}
img {
  vertical-align: middle;
  border-style: none;
}
a,
area,
button,
[role='button'],
input:not([type='range']),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75em;
  padding-bottom: 0.3em;
  color: rgba(0, 0, 0, 0.45);
  text-align: left;
  caption-side: bottom;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type='radio'],
input[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.5em;
  padding: 0;
  color: inherit;
  font-size: 1.5em;
  line-height: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
mark {
  padding: 0.2em;
  background-color: #feffe6;
}
::-moz-selection {
  color: #fff;
  background: #00bb78;
}
::selection {
  color: #fff;
  background: #00bb78;
}
.clearfix::before {
  display: table;
  content: '';
}
.clearfix::after {
  display: table;
  clear: both;
  content: '';
}
.anticon {
  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;
}
.anticon > * {
  line-height: 1;
}
.anticon svg {
  display: inline-block;
}
.anticon::before {
  display: none;
}
.anticon .anticon-icon {
  display: block;
}
.anticon > .anticon {
  line-height: 0;
  vertical-align: 0;
}
.anticon[tabindex] {
  cursor: pointer;
}
.anticon-spin,
.anticon-spin::before {
  display: inline-block;
  animation: loadingCircle 1s infinite linear;
}
.cy-fade-enter,
.cy-fade-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-fade-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-fade-enter.cy-fade-enter-active,
.cy-fade-appear.cy-fade-appear-active {
  animation-name: antFadeIn;
  animation-play-state: running;
}
.cy-fade-leave.cy-fade-leave-active {
  animation-name: antFadeOut;
  animation-play-state: running;
  pointer-events: none;
}
.cy-fade-enter,
.cy-fade-appear {
  opacity: 0;
  animation-timing-function: linear;
}
.cy-fade-leave {
  animation-timing-function: linear;
}
@keyframes antFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes antFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.cy-move-up-enter,
.cy-move-up-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-move-up-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-move-up-enter.cy-move-up-enter-active,
.cy-move-up-appear.cy-move-up-appear-active {
  animation-name: antMoveUpIn;
  animation-play-state: running;
}
.cy-move-up-leave.cy-move-up-leave-active {
  animation-name: antMoveUpOut;
  animation-play-state: running;
  pointer-events: none;
}
.cy-move-up-enter,
.cy-move-up-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.cy-move-up-leave {
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}
.cy-move-down-enter,
.cy-move-down-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-move-down-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-move-down-enter.cy-move-down-enter-active,
.cy-move-down-appear.cy-move-down-appear-active {
  animation-name: antMoveDownIn;
  animation-play-state: running;
}
.cy-move-down-leave.cy-move-down-leave-active {
  animation-name: antMoveDownOut;
  animation-play-state: running;
  pointer-events: none;
}
.cy-move-down-enter,
.cy-move-down-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.cy-move-down-leave {
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}
.cy-move-left-enter,
.cy-move-left-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-move-left-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-move-left-enter.cy-move-left-enter-active,
.cy-move-left-appear.cy-move-left-appear-active {
  animation-name: antMoveLeftIn;
  animation-play-state: running;
}
.cy-move-left-leave.cy-move-left-leave-active {
  animation-name: antMoveLeftOut;
  animation-play-state: running;
  pointer-events: none;
}
.cy-move-left-enter,
.cy-move-left-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.cy-move-left-leave {
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}
.cy-move-right-enter,
.cy-move-right-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-move-right-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-move-right-enter.cy-move-right-enter-active,
.cy-move-right-appear.cy-move-right-appear-active {
  animation-name: antMoveRightIn;
  animation-play-state: running;
}
.cy-move-right-leave.cy-move-right-leave-active {
  animation-name: antMoveRightOut;
  animation-play-state: running;
  pointer-events: none;
}
.cy-move-right-enter,
.cy-move-right-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.cy-move-right-leave {
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}
@keyframes antMoveDownIn {
  0% {
    transform: translateY(100%);
    transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antMoveDownOut {
  0% {
    transform: translateY(0%);
    transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes antMoveLeftIn {
  0% {
    transform: translateX(-100%);
    transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antMoveLeftOut {
  0% {
    transform: translateX(0%);
    transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes antMoveRightIn {
  0% {
    transform: translateX(100%);
    transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antMoveRightOut {
  0% {
    transform: translateX(0%);
    transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes antMoveUpIn {
  0% {
    transform: translateY(-100%);
    transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antMoveUpOut {
  0% {
    transform: translateY(0%);
    transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes loadingCircle {
  100% {
    transform: rotate(360deg);
  }
}
[cy-click-animating='true'],
[cy-click-animating-without-extra-node='true'] {
  position: relative;
}
html {
  --antd-wave-shadow-color: #00bb78;
  --scroll-bar: 0;
}
[cy-click-animating-without-extra-node='true']::after,
.cy-click-animating-node {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  border-radius: inherit;
  box-shadow: 0 0 0 0 #00bb78;
  box-shadow: 0 0 0 0 var(--antd-wave-shadow-color);
  opacity: 0.2;
  animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
  animation-fill-mode: forwards;
  content: '';
  pointer-events: none;
}
@keyframes waveEffect {
  100% {
    box-shadow: 0 0 0 #00bb78;
    box-shadow: 0 0 0 6px var(--antd-wave-shadow-color);
  }
}
@keyframes fadeEffect {
  100% {
    opacity: 0;
  }
}
.cy-slide-up-enter,
.cy-slide-up-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-slide-up-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-slide-up-enter.cy-slide-up-enter-active,
.cy-slide-up-appear.cy-slide-up-appear-active {
  animation-name: antSlideUpIn;
  animation-play-state: running;
}
.cy-slide-up-leave.cy-slide-up-leave-active {
  animation-name: antSlideUpOut;
  animation-play-state: running;
  pointer-events: none;
}
.cy-slide-up-enter,
.cy-slide-up-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.cy-slide-up-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
.cy-slide-down-enter,
.cy-slide-down-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-slide-down-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-slide-down-enter.cy-slide-down-enter-active,
.cy-slide-down-appear.cy-slide-down-appear-active {
  animation-name: antSlideDownIn;
  animation-play-state: running;
}
.cy-slide-down-leave.cy-slide-down-leave-active {
  animation-name: antSlideDownOut;
  animation-play-state: running;
  pointer-events: none;
}
.cy-slide-down-enter,
.cy-slide-down-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.cy-slide-down-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
.cy-slide-left-enter,
.cy-slide-left-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-slide-left-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-slide-left-enter.cy-slide-left-enter-active,
.cy-slide-left-appear.cy-slide-left-appear-active {
  animation-name: antSlideLeftIn;
  animation-play-state: running;
}
.cy-slide-left-leave.cy-slide-left-leave-active {
  animation-name: antSlideLeftOut;
  animation-play-state: running;
  pointer-events: none;
}
.cy-slide-left-enter,
.cy-slide-left-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.cy-slide-left-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
.cy-slide-right-enter,
.cy-slide-right-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-slide-right-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-slide-right-enter.cy-slide-right-enter-active,
.cy-slide-right-appear.cy-slide-right-appear-active {
  animation-name: antSlideRightIn;
  animation-play-state: running;
}
.cy-slide-right-leave.cy-slide-right-leave-active {
  animation-name: antSlideRightOut;
  animation-play-state: running;
  pointer-events: none;
}
.cy-slide-right-enter,
.cy-slide-right-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.cy-slide-right-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@keyframes antSlideUpIn {
  0% {
    transform: scaleY(0.8);
    transform-origin: 0% 0%;
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    transform-origin: 0% 0%;
    opacity: 1;
  }
}
@keyframes antSlideUpOut {
  0% {
    transform: scaleY(1);
    transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    transform: scaleY(0.8);
    transform-origin: 0% 0%;
    opacity: 0;
  }
}
@keyframes antSlideDownIn {
  0% {
    transform: scaleY(0.8);
    transform-origin: 100% 100%;
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    transform-origin: 100% 100%;
    opacity: 1;
  }
}
@keyframes antSlideDownOut {
  0% {
    transform: scaleY(1);
    transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    transform: scaleY(0.8);
    transform-origin: 100% 100%;
    opacity: 0;
  }
}
@keyframes antSlideLeftIn {
  0% {
    transform: scaleX(0.8);
    transform-origin: 0% 0%;
    opacity: 0;
  }
  100% {
    transform: scaleX(1);
    transform-origin: 0% 0%;
    opacity: 1;
  }
}
@keyframes antSlideLeftOut {
  0% {
    transform: scaleX(1);
    transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    transform: scaleX(0.8);
    transform-origin: 0% 0%;
    opacity: 0;
  }
}
@keyframes antSlideRightIn {
  0% {
    transform: scaleX(0.8);
    transform-origin: 100% 0%;
    opacity: 0;
  }
  100% {
    transform: scaleX(1);
    transform-origin: 100% 0%;
    opacity: 1;
  }
}
@keyframes antSlideRightOut {
  0% {
    transform: scaleX(1);
    transform-origin: 100% 0%;
    opacity: 1;
  }
  100% {
    transform: scaleX(0.8);
    transform-origin: 100% 0%;
    opacity: 0;
  }
}
.cy-zoom-enter,
.cy-zoom-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-zoom-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-zoom-enter.cy-zoom-enter-active,
.cy-zoom-appear.cy-zoom-appear-active {
  animation-name: antZoomIn;
  animation-play-state: running;
}
.cy-zoom-leave.cy-zoom-leave-active {
  animation-name: antZoomOut;
  animation-play-state: running;
  pointer-events: none;
}
.cy-zoom-enter,
.cy-zoom-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.cy-zoom-enter-prepare,
.cy-zoom-appear-prepare {
  transform: none;
}
.cy-zoom-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.cy-zoom-big-enter,
.cy-zoom-big-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-zoom-big-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-zoom-big-enter.cy-zoom-big-enter-active,
.cy-zoom-big-appear.cy-zoom-big-appear-active {
  animation-name: antZoomBigIn;
  animation-play-state: running;
}
.cy-zoom-big-leave.cy-zoom-big-leave-active {
  animation-name: antZoomBigOut;
  animation-play-state: running;
  pointer-events: none;
}
.cy-zoom-big-enter,
.cy-zoom-big-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.cy-zoom-big-enter-prepare,
.cy-zoom-big-appear-prepare {
  transform: none;
}
.cy-zoom-big-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.cy-zoom-big-fast-enter,
.cy-zoom-big-fast-appear {
  animation-duration: 0.1s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-zoom-big-fast-leave {
  animation-duration: 0.1s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-zoom-big-fast-enter.cy-zoom-big-fast-enter-active,
.cy-zoom-big-fast-appear.cy-zoom-big-fast-appear-active {
  animation-name: antZoomBigIn;
  animation-play-state: running;
}
.cy-zoom-big-fast-leave.cy-zoom-big-fast-leave-active {
  animation-name: antZoomBigOut;
  animation-play-state: running;
  pointer-events: none;
}
.cy-zoom-big-fast-enter,
.cy-zoom-big-fast-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.cy-zoom-big-fast-enter-prepare,
.cy-zoom-big-fast-appear-prepare {
  transform: none;
}
.cy-zoom-big-fast-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.cy-zoom-up-enter,
.cy-zoom-up-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-zoom-up-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-zoom-up-enter.cy-zoom-up-enter-active,
.cy-zoom-up-appear.cy-zoom-up-appear-active {
  animation-name: antZoomUpIn;
  animation-play-state: running;
}
.cy-zoom-up-leave.cy-zoom-up-leave-active {
  animation-name: antZoomUpOut;
  animation-play-state: running;
  pointer-events: none;
}
.cy-zoom-up-enter,
.cy-zoom-up-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.cy-zoom-up-enter-prepare,
.cy-zoom-up-appear-prepare {
  transform: none;
}
.cy-zoom-up-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.cy-zoom-down-enter,
.cy-zoom-down-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-zoom-down-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-zoom-down-enter.cy-zoom-down-enter-active,
.cy-zoom-down-appear.cy-zoom-down-appear-active {
  animation-name: antZoomDownIn;
  animation-play-state: running;
}
.cy-zoom-down-leave.cy-zoom-down-leave-active {
  animation-name: antZoomDownOut;
  animation-play-state: running;
  pointer-events: none;
}
.cy-zoom-down-enter,
.cy-zoom-down-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.cy-zoom-down-enter-prepare,
.cy-zoom-down-appear-prepare {
  transform: none;
}
.cy-zoom-down-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.cy-zoom-left-enter,
.cy-zoom-left-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-zoom-left-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-zoom-left-enter.cy-zoom-left-enter-active,
.cy-zoom-left-appear.cy-zoom-left-appear-active {
  animation-name: antZoomLeftIn;
  animation-play-state: running;
}
.cy-zoom-left-leave.cy-zoom-left-leave-active {
  animation-name: antZoomLeftOut;
  animation-play-state: running;
  pointer-events: none;
}
.cy-zoom-left-enter,
.cy-zoom-left-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.cy-zoom-left-enter-prepare,
.cy-zoom-left-appear-prepare {
  transform: none;
}
.cy-zoom-left-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.cy-zoom-right-enter,
.cy-zoom-right-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-zoom-right-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.cy-zoom-right-enter.cy-zoom-right-enter-active,
.cy-zoom-right-appear.cy-zoom-right-appear-active {
  animation-name: antZoomRightIn;
  animation-play-state: running;
}
.cy-zoom-right-leave.cy-zoom-right-leave-active {
  animation-name: antZoomRightOut;
  animation-play-state: running;
  pointer-events: none;
}
.cy-zoom-right-enter,
.cy-zoom-right-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.cy-zoom-right-enter-prepare,
.cy-zoom-right-appear-prepare {
  transform: none;
}
.cy-zoom-right-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
@keyframes antZoomIn {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes antZoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.2);
    opacity: 0;
  }
}
@keyframes antZoomBigIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes antZoomBigOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}
@keyframes antZoomUpIn {
  0% {
    transform: scale(0.8);
    transform-origin: 50% 0%;
    opacity: 0;
  }
  100% {
    transform: scale(1);
    transform-origin: 50% 0%;
  }
}
@keyframes antZoomUpOut {
  0% {
    transform: scale(1);
    transform-origin: 50% 0%;
  }
  100% {
    transform: scale(0.8);
    transform-origin: 50% 0%;
    opacity: 0;
  }
}
@keyframes antZoomLeftIn {
  0% {
    transform: scale(0.8);
    transform-origin: 0% 50%;
    opacity: 0;
  }
  100% {
    transform: scale(1);
    transform-origin: 0% 50%;
  }
}
@keyframes antZoomLeftOut {
  0% {
    transform: scale(1);
    transform-origin: 0% 50%;
  }
  100% {
    transform: scale(0.8);
    transform-origin: 0% 50%;
    opacity: 0;
  }
}
@keyframes antZoomRightIn {
  0% {
    transform: scale(0.8);
    transform-origin: 100% 50%;
    opacity: 0;
  }
  100% {
    transform: scale(1);
    transform-origin: 100% 50%;
  }
}
@keyframes antZoomRightOut {
  0% {
    transform: scale(1);
    transform-origin: 100% 50%;
  }
  100% {
    transform: scale(0.8);
    transform-origin: 100% 50%;
    opacity: 0;
  }
}
@keyframes antZoomDownIn {
  0% {
    transform: scale(0.8);
    transform-origin: 50% 100%;
    opacity: 0;
  }
  100% {
    transform: scale(1);
    transform-origin: 50% 100%;
  }
}
@keyframes antZoomDownOut {
  0% {
    transform: scale(1);
    transform-origin: 50% 100%;
  }
  100% {
    transform: scale(0.8);
    transform-origin: 50% 100%;
    opacity: 0;
  }
}
.ant-motion-collapse-legacy {
  overflow: hidden;
}
.ant-motion-collapse-legacy-active {
  transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}
.ant-motion-collapse {
  overflow: hidden;
  transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}
