@keyframes loadingCircle {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes aplus-fade-enter {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes aplus-fade-leave {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.aplus-fade-enter-active {
  animation-name: aplus-fade-enter;
  animation-duration: 0.25s;
}
.aplus-fade-leave-active {
  animation-name: aplus-fade-leave;
  animation-duration: 0.25s;
}
.reset-component {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #182948;
  font-size: 12px;
  font-family: inherit;
  line-height: 18px;
  list-style: none;
}
.reset-scrollbar ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.reset-scrollbar ::-webkit-scrollbar-thumb {
  background-color: var(--ap-scrollbar-thumb-color-base);
  background-clip: content-box;
  border: 1px solid transparent;
  border-radius: 4px;
}
.reset-scrollbar ::-webkit-scrollbar-track,
.reset-scrollbar ::-webkit-scrollbar-corner {
  background-color: var(--ap-table-header-bg, #f2f6f9);
}
.reset-scrollbar ::-webkit-scrollbar-thumb:hover,
.reset-scrollbar ::-webkit-scrollbar-thumb:active {
  background-color: var(--ap-scrollbar-thumb-color-hover);
}
.clear-fix::before {
  display: table;
  content: '';
}
.clear-fix::after {
  display: table;
  clear: both;
  content: '';
}
.common-style {
  box-sizing: border-box;
  font-size: 12px;
  font-family: inherit;
}
.common-style::before,
.common-style::after {
  box-sizing: border-box;
}
.aplus-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.aplus-mask__mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #000;
  transform: translateZ(0);
}
.aplus-mask__mask--disabled {
  color: transparent;
}
.aplus-mask__mask-inner {
  width: 100%;
  height: 100%;
  background-color: currentColor;
  opacity: 0.45;
}
