/* ==================================================================
 * ANT Design
 * To avoid using their global overrides in base.less, manually import
 * the files that would have come from /antd/lib/style/index.less.
 * ================================================================== */
/* 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 */
/*
 * Integrating Ant Design into our project has had a few style conflicts.
 * Adding some theme overrides here to help fix any major issues.
 */
.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[tabindex] {
  cursor: pointer;
}
.anticon-spin::before {
  display: inline-block;
  animation: loadingCircle 1s infinite linear;
}
.anticon-spin {
  display: inline-block;
  animation: loadingCircle 1s infinite linear;
}
.fade-enter,
.fade-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.fade-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.fade-enter.fade-enter-active,
.fade-appear.fade-appear-active {
  animation-name: antFadeIn;
  animation-play-state: running;
}
.fade-leave.fade-leave-active {
  animation-name: antFadeOut;
  animation-play-state: running;
  pointer-events: none;
}
.fade-enter,
.fade-appear {
  opacity: 0;
  animation-timing-function: linear;
}
.fade-leave {
  animation-timing-function: linear;
}
@keyframes antFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes antFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.move-up-enter,
.move-up-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.move-up-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.move-up-enter.move-up-enter-active,
.move-up-appear.move-up-appear-active {
  animation-name: antMoveUpIn;
  animation-play-state: running;
}
.move-up-leave.move-up-leave-active {
  animation-name: antMoveUpOut;
  animation-play-state: running;
  pointer-events: none;
}
.move-up-enter,
.move-up-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.move-up-leave {
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}
.move-down-enter,
.move-down-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.move-down-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.move-down-enter.move-down-enter-active,
.move-down-appear.move-down-appear-active {
  animation-name: antMoveDownIn;
  animation-play-state: running;
}
.move-down-leave.move-down-leave-active {
  animation-name: antMoveDownOut;
  animation-play-state: running;
  pointer-events: none;
}
.move-down-enter,
.move-down-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.move-down-leave {
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}
.move-left-enter,
.move-left-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.move-left-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.move-left-enter.move-left-enter-active,
.move-left-appear.move-left-appear-active {
  animation-name: antMoveLeftIn;
  animation-play-state: running;
}
.move-left-leave.move-left-leave-active {
  animation-name: antMoveLeftOut;
  animation-play-state: running;
  pointer-events: none;
}
.move-left-enter,
.move-left-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.move-left-leave {
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}
.move-right-enter,
.move-right-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.move-right-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.move-right-enter.move-right-enter-active,
.move-right-appear.move-right-appear-active {
  animation-name: antMoveRightIn;
  animation-play-state: running;
}
.move-right-leave.move-right-leave-active {
  animation-name: antMoveRightOut;
  animation-play-state: running;
  pointer-events: none;
}
.move-right-enter,
.move-right-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.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);
  }
}
[ant-click-animating='true'],
[ant-click-animating-without-extra-node='true'] {
  position: relative;
}
html {
  --antd-wave-shadow-color: #03a9f5;
}
[ant-click-animating-without-extra-node='true']::after,
.ant-click-animating-node {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  border-radius: inherit;
  box-shadow: 0 0 0 0 #03a9f5;
  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 #03a9f5;
    box-shadow: 0 0 0 6px var(--antd-wave-shadow-color);
  }
}
@keyframes fadeEffect {
  100% {
    opacity: 0;
  }
}
.slide-up-enter,
.slide-up-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.slide-up-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.slide-up-enter.slide-up-enter-active,
.slide-up-appear.slide-up-appear-active {
  animation-name: antSlideUpIn;
  animation-play-state: running;
}
.slide-up-leave.slide-up-leave-active {
  animation-name: antSlideUpOut;
  animation-play-state: running;
  pointer-events: none;
}
.slide-up-enter,
.slide-up-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.slide-up-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
.slide-down-enter,
.slide-down-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.slide-down-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.slide-down-enter.slide-down-enter-active,
.slide-down-appear.slide-down-appear-active {
  animation-name: antSlideDownIn;
  animation-play-state: running;
}
.slide-down-leave.slide-down-leave-active {
  animation-name: antSlideDownOut;
  animation-play-state: running;
  pointer-events: none;
}
.slide-down-enter,
.slide-down-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.slide-down-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
.slide-left-enter,
.slide-left-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.slide-left-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.slide-left-enter.slide-left-enter-active,
.slide-left-appear.slide-left-appear-active {
  animation-name: antSlideLeftIn;
  animation-play-state: running;
}
.slide-left-leave.slide-left-leave-active {
  animation-name: antSlideLeftOut;
  animation-play-state: running;
  pointer-events: none;
}
.slide-left-enter,
.slide-left-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.slide-left-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
.slide-right-enter,
.slide-right-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.slide-right-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.slide-right-enter.slide-right-enter-active,
.slide-right-appear.slide-right-appear-active {
  animation-name: antSlideRightIn;
  animation-play-state: running;
}
.slide-right-leave.slide-right-leave-active {
  animation-name: antSlideRightOut;
  animation-play-state: running;
  pointer-events: none;
}
.slide-right-enter,
.slide-right-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.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;
  }
}
.swing-enter,
.swing-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.swing-enter.swing-enter-active,
.swing-appear.swing-appear-active {
  animation-name: antSwingIn;
  animation-play-state: running;
}
@keyframes antSwingIn {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-10px);
  }
  40% {
    transform: translateX(10px);
  }
  60% {
    transform: translateX(-5px);
  }
  80% {
    transform: translateX(5px);
  }
}
.zoom-enter,
.zoom-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.zoom-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.zoom-enter.zoom-enter-active,
.zoom-appear.zoom-appear-active {
  animation-name: antZoomIn;
  animation-play-state: running;
}
.zoom-leave.zoom-leave-active {
  animation-name: antZoomOut;
  animation-play-state: running;
  pointer-events: none;
}
.zoom-enter,
.zoom-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.zoom-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.zoom-big-enter,
.zoom-big-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.zoom-big-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.zoom-big-enter.zoom-big-enter-active,
.zoom-big-appear.zoom-big-appear-active {
  animation-name: antZoomBigIn;
  animation-play-state: running;
}
.zoom-big-leave.zoom-big-leave-active {
  animation-name: antZoomBigOut;
  animation-play-state: running;
  pointer-events: none;
}
.zoom-big-enter,
.zoom-big-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.zoom-big-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.zoom-big-fast-enter,
.zoom-big-fast-appear {
  animation-duration: 0.1s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.zoom-big-fast-leave {
  animation-duration: 0.1s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.zoom-big-fast-enter.zoom-big-fast-enter-active,
.zoom-big-fast-appear.zoom-big-fast-appear-active {
  animation-name: antZoomBigIn;
  animation-play-state: running;
}
.zoom-big-fast-leave.zoom-big-fast-leave-active {
  animation-name: antZoomBigOut;
  animation-play-state: running;
  pointer-events: none;
}
.zoom-big-fast-enter,
.zoom-big-fast-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.zoom-big-fast-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.zoom-up-enter,
.zoom-up-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.zoom-up-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.zoom-up-enter.zoom-up-enter-active,
.zoom-up-appear.zoom-up-appear-active {
  animation-name: antZoomUpIn;
  animation-play-state: running;
}
.zoom-up-leave.zoom-up-leave-active {
  animation-name: antZoomUpOut;
  animation-play-state: running;
  pointer-events: none;
}
.zoom-up-enter,
.zoom-up-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.zoom-up-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.zoom-down-enter,
.zoom-down-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.zoom-down-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.zoom-down-enter.zoom-down-enter-active,
.zoom-down-appear.zoom-down-appear-active {
  animation-name: antZoomDownIn;
  animation-play-state: running;
}
.zoom-down-leave.zoom-down-leave-active {
  animation-name: antZoomDownOut;
  animation-play-state: running;
  pointer-events: none;
}
.zoom-down-enter,
.zoom-down-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.zoom-down-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.zoom-left-enter,
.zoom-left-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.zoom-left-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.zoom-left-enter.zoom-left-enter-active,
.zoom-left-appear.zoom-left-appear-active {
  animation-name: antZoomLeftIn;
  animation-play-state: running;
}
.zoom-left-leave.zoom-left-leave-active {
  animation-name: antZoomLeftOut;
  animation-play-state: running;
  pointer-events: none;
}
.zoom-left-enter,
.zoom-left-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.zoom-left-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.zoom-right-enter,
.zoom-right-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.zoom-right-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.zoom-right-enter.zoom-right-enter-active,
.zoom-right-appear.zoom-right-appear-active {
  animation-name: antZoomRightIn;
  animation-play-state: running;
}
.zoom-right-leave.zoom-right-leave-active {
  animation-name: antZoomRightOut;
  animation-play-state: running;
  pointer-events: none;
}
.zoom-right-enter,
.zoom-right-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.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.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}
.ant-motion-collapse {
  overflow: hidden;
  transition: height 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}
.ant-affix {
  position: fixed;
  z-index: 10;
}
.ant-alert {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  padding: 8px 15px 8px 37px;
  word-wrap: break-word;
  border-radius: 4px;
}
.ant-alert.ant-alert-no-icon {
  padding: 8px 15px;
}
.ant-alert.ant-alert-closable {
  padding-right: 30px;
}
.ant-alert-icon {
  position: absolute;
  top: 11.5px;
  left: 16px;
}
.ant-alert-description {
  display: none;
  font-size: 14px;
  line-height: 22px;
}
.ant-alert-success {
  background-color: #f6ffed;
  border: 1px solid #b7eb8f;
}
.ant-alert-success .ant-alert-icon {
  color: #52c41a;
}
.ant-alert-info {
  background-color: #e6f7ff;
  border: 1px solid #91d5ff;
}
.ant-alert-info .ant-alert-icon {
  color: #1890ff;
}
.ant-alert-warning {
  background-color: #fffbe6;
  border: 1px solid #ffe58f;
}
.ant-alert-warning .ant-alert-icon {
  color: #faad14;
}
.ant-alert-error {
  background-color: #fff1f0;
  border: 1px solid #ffa39e;
}
.ant-alert-error .ant-alert-icon {
  color: #f5222d;
}
.ant-alert-close-icon {
  position: absolute;
  top: 8px;
  right: 16px;
  padding: 0;
  overflow: hidden;
  font-size: 12px;
  line-height: 22px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.ant-alert-close-icon .anticon-close {
  color: rgba(0, 0, 0, 0.45);
  transition: color 0.3s;
}
.ant-alert-close-icon .anticon-close:hover {
  color: rgba(0, 0, 0, 0.75);
}
.ant-alert-close-text {
  color: rgba(0, 0, 0, 0.45);
  transition: color 0.3s;
}
.ant-alert-close-text:hover {
  color: rgba(0, 0, 0, 0.75);
}
.ant-alert-with-description {
  position: relative;
  padding: 15px 15px 15px 64px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.5;
  border-radius: 4px;
}
.ant-alert-with-description.ant-alert-no-icon {
  padding: 15px;
}
.ant-alert-with-description .ant-alert-icon {
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 24px;
}
.ant-alert-with-description .ant-alert-close-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 14px;
  cursor: pointer;
}
.ant-alert-with-description .ant-alert-message {
  display: block;
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
}
.ant-alert-message {
  color: rgba(0, 0, 0, 0.85);
}
.ant-alert-with-description .ant-alert-description {
  display: block;
}
.ant-alert.ant-alert-closing {
  height: 0 !important;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  transform-origin: 50% 0;
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-alert-slide-up-leave {
  animation: antAlertSlideUpOut 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  animation-fill-mode: both;
}
.ant-alert-banner {
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
}
@keyframes antAlertSlideUpIn {
  0% {
    transform: scaleY(0);
    transform-origin: 0% 0%;
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    transform-origin: 0% 0%;
    opacity: 1;
  }
}
@keyframes antAlertSlideUpOut {
  0% {
    transform: scaleY(1);
    transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    transform-origin: 0% 0%;
    opacity: 0;
  }
}
.ant-anchor {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  padding-left: 2px;
}
.ant-anchor-wrapper {
  margin-left: -4px;
  padding-left: 4px;
  overflow: auto;
  background-color: #fff;
}
.ant-anchor-ink {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.ant-anchor-ink::before {
  position: relative;
  display: block;
  width: 2px;
  height: 100%;
  margin: 0 auto;
  background-color: #e8e8e8;
  content: ' ';
}
.ant-anchor-ink-ball {
  position: absolute;
  left: 50%;
  display: none;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border: 2px solid #03a9f5;
  border-radius: 8px;
  transform: translateX(-50%);
  transition: top 0.3s ease-in-out;
}
.ant-anchor-ink-ball.visible {
  display: inline-block;
}
.ant-anchor.fixed .ant-anchor-ink .ant-anchor-ink-ball {
  display: none;
}
.ant-anchor-link {
  padding: 7px 0 7px 16px;
  line-height: 1.143;
}
.ant-anchor-link-title {
  position: relative;
  display: block;
  margin-bottom: 6px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.65);
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.3s;
}
.ant-anchor-link-title:only-child {
  margin-bottom: 0;
}
.ant-anchor-link-active > .ant-anchor-link-title {
  color: #03a9f5;
}
.ant-anchor-link .ant-anchor-link {
  padding-top: 5px;
  padding-bottom: 5px;
}
.ant-select-auto-complete {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
}
.ant-select-auto-complete.ant-select .ant-select-selection {
  border: 0;
  box-shadow: none;
}
.ant-select-auto-complete.ant-select .ant-select-selection__rendered {
  height: 100%;
  margin-right: 0;
  margin-left: 0;
  line-height: 32px;
}
.ant-select-auto-complete.ant-select .ant-select-selection__placeholder {
  margin-right: 12px;
  margin-left: 12px;
}
.ant-select-auto-complete.ant-select .ant-select-selection--single {
  height: auto;
}
.ant-select-auto-complete.ant-select .ant-select-search--inline {
  position: static;
  float: left;
}
.ant-select-auto-complete.ant-select-allow-clear .ant-select-selection:hover .ant-select-selection__rendered {
  margin-right: 0 !important;
}
.ant-select-auto-complete.ant-select .ant-input {
  height: 32px;
  line-height: 1.5;
  background: transparent;
  border-width: 1px;
}
.ant-select-auto-complete.ant-select .ant-input:focus,
.ant-select-auto-complete.ant-select .ant-input:hover {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
}
.ant-select-auto-complete.ant-select .ant-input[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
  background-color: transparent;
}
.ant-select-auto-complete.ant-select .ant-input[disabled]:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
.ant-select-auto-complete.ant-select-lg .ant-select-selection__rendered {
  line-height: 40px;
}
.ant-select-auto-complete.ant-select-lg .ant-input {
  height: 40px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.ant-select-auto-complete.ant-select-sm .ant-select-selection__rendered {
  line-height: 24px;
}
.ant-select-auto-complete.ant-select-sm .ant-input {
  height: 24px;
  padding-top: 1px;
  padding-bottom: 1px;
}
.ant-input-group > .ant-select-auto-complete .ant-select-search__field.ant-input-affix-wrapper {
  display: inline;
  float: none;
}
.ant-avatar {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  background: #ccc;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
}
.ant-avatar-image {
  background: transparent;
}
.ant-avatar-string {
  position: absolute;
  left: 50%;
  transform-origin: 0 center;
}
.ant-avatar.ant-avatar-icon {
  font-size: 18px;
}
.ant-avatar-lg {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
}
.ant-avatar-lg-string {
  position: absolute;
  left: 50%;
  transform-origin: 0 center;
}
.ant-avatar-lg.ant-avatar-icon {
  font-size: 24px;
}
.ant-avatar-sm {
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
}
.ant-avatar-sm-string {
  position: absolute;
  left: 50%;
  transform-origin: 0 center;
}
.ant-avatar-sm.ant-avatar-icon {
  font-size: 14px;
}
.ant-avatar-square {
  border-radius: 4px;
}
.ant-avatar > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ant-back-top {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: fixed;
  right: 100px;
  bottom: 50px;
  z-index: 10;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.ant-back-top-content {
  width: 40px;
  height: 40px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-back-top-content:hover {
  background-color: rgba(0, 0, 0, 0.65);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-back-top-icon {
  width: 14px;
  height: 16px;
  margin: 12px auto;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAoCAYAAACWwljjAAAABGdBTUEAALGPC/xhBQAAAbtJREFUWAntmMtKw0AUhhMvS5cuxILgQlRUpIggIoKIIoigG1eC+AA+jo+i6FIXBfeuXIgoeKVeitVWJX5HWhhDksnUpp3FDPyZk3Nm5nycmZKkXhAEOXSA3lG7muTeRzmfy6HneUvIhnYkQK+Q9NhAA0Opg0vBEhjBKHiyb8iGMyQMOYuK41BcBSypAL+MYXSKjtFAW7EAGEO3qN4uMQbbAkXiSfRQJ1H6a+yhlkKRcAoVFYiweYNjtCVQJJpBz2GCiPt7fBOZQpFgDpUikse5HgnkM4Fi4QX0Fpc5wf9EbLqpUCy4jMoJSXWhFwbMNgWKhVbRhy5jirhs9fy/oFhgHVVTJEs7RLZ8sSEoJm6iz7SZDMbJ+/OKERQTttCXQRLToRUmrKWCYuA2+jbN0MB4OQobYShfdTCgn/sL1K36M7TLrN3n+758aPy2rrpR6+/od5E8tf/A1uLS9aId5T7J3CNYihkQ4D9PiMdMC7mp4rjB9kjFjZp8BlnVHJBuO1yFXIV0FdDF3RlyFdJVQBdv5AxVdIsq8apiZ2PyYO1EVykesGfZEESsCkweyR8MUW+V8uJ1gkYipmpdP1pm2aJVPEGzAAAAAElFTkSuQmCC) 100%/100% no-repeat;
}
@media screen and (max-width: 768px) {
  .ant-back-top {
    right: 60px;
  }
}
@media screen and (max-width: 480px) {
  .ant-back-top {
    right: 20px;
  }
}
.ant-badge {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  color: unset;
  line-height: 1;
}
.ant-badge-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  color: #fff;
  font-weight: normal;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
  text-align: center;
  background: #f5222d;
  border-radius: 10px;
  box-shadow: 0 0 0 1px #fff;
}
.ant-badge-count a,
.ant-badge-count a:hover {
  color: #fff;
}
.ant-badge-multiple-words {
  padding: 0 8px;
}
.ant-badge-dot {
  width: 6px;
  height: 6px;
  background: #f5222d;
  border-radius: 100%;
  box-shadow: 0 0 0 1px #fff;
}
.ant-badge-count,
.ant-badge-dot,
.ant-badge .ant-scroll-number-custom-component {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transform: translate(50%, -50%);
  transform-origin: 100% 0%;
}
.ant-badge-status {
  line-height: inherit;
  vertical-align: baseline;
}
.ant-badge-status-dot {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 6px;
  height: 6px;
  vertical-align: middle;
  border-radius: 50%;
}
.ant-badge-status-success {
  background-color: #52c41a;
}
.ant-badge-status-processing {
  position: relative;
  background-color: #1890ff;
}
.ant-badge-status-processing::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #1890ff;
  border-radius: 50%;
  animation: antStatusProcessing 1.2s infinite ease-in-out;
  content: '';
}
.ant-badge-status-default {
  background-color: #d9d9d9;
}
.ant-badge-status-error {
  background-color: #f5222d;
}
.ant-badge-status-warning {
  background-color: #faad14;
}
.ant-badge-status-pink {
  background: #eb2f96;
}
.ant-badge-status-magenta {
  background: #eb2f96;
}
.ant-badge-status-red {
  background: #f5222d;
}
.ant-badge-status-volcano {
  background: #fa541c;
}
.ant-badge-status-orange {
  background: #fa8c16;
}
.ant-badge-status-yellow {
  background: #fadb14;
}
.ant-badge-status-gold {
  background: #faad14;
}
.ant-badge-status-cyan {
  background: #13c2c2;
}
.ant-badge-status-lime {
  background: #a0d911;
}
.ant-badge-status-green {
  background: #52c41a;
}
.ant-badge-status-blue {
  background: #1890ff;
}
.ant-badge-status-geekblue {
  background: #2f54eb;
}
.ant-badge-status-purple {
  background: #722ed1;
}
.ant-badge-status-text {
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
}
.ant-badge-zoom-appear,
.ant-badge-zoom-enter {
  animation: antZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  animation-fill-mode: both;
}
.ant-badge-zoom-leave {
  animation: antZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6);
  animation-fill-mode: both;
}
.ant-badge-not-a-wrapper:not(.ant-badge-status) {
  vertical-align: middle;
}
.ant-badge-not-a-wrapper .ant-scroll-number {
  position: relative;
  top: auto;
  display: block;
}
.ant-badge-not-a-wrapper .ant-badge-count {
  transform: none;
}
@keyframes antStatusProcessing {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}
.ant-scroll-number {
  overflow: hidden;
}
.ant-scroll-number-only {
  display: inline-block;
  height: 20px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-scroll-number-only > p.ant-scroll-number-only-unit {
  height: 20px;
  margin: 0;
}
.ant-scroll-number-symbol {
  vertical-align: top;
}
@keyframes antZoomBadgeIn {
  0% {
    transform: scale(0) translate(50%, -50%);
    opacity: 0;
  }
  100% {
    transform: scale(1) translate(50%, -50%);
  }
}
@keyframes antZoomBadgeOut {
  0% {
    transform: scale(1) translate(50%, -50%);
  }
  100% {
    transform: scale(0) translate(50%, -50%);
    opacity: 0;
  }
}
.ant-breadcrumb {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.ant-breadcrumb .anticon {
  font-size: 14px;
}
.ant-breadcrumb a {
  color: rgba(0, 0, 0, 0.45);
  transition: color 0.3s;
}
.ant-breadcrumb a:hover {
  color: #2bc3ff;
}
.ant-breadcrumb > span:last-child {
  color: rgba(0, 0, 0, 0.65);
}
.ant-breadcrumb > span:last-child a {
  color: rgba(0, 0, 0, 0.65);
}
.ant-breadcrumb > span:last-child .ant-breadcrumb-separator {
  display: none;
}
.ant-breadcrumb-separator {
  margin: 0 8px;
  color: rgba(0, 0, 0, 0.45);
}
.ant-breadcrumb-link > .anticon + span {
  margin-left: 4px;
}
.ant-breadcrumb-overlay-link > .anticon {
  margin-left: 4px;
}
.ant-btn {
  line-height: 1.499;
  position: relative;
  display: inline-block;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  background-image: none;
  border: 1px solid transparent;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  user-select: none;
  touch-action: manipulation;
  height: 32px;
  padding: 0 15px;
  font-size: 14px;
  border-radius: 4px;
  color: rgba(0, 0, 0, 0.65);
  background-color: #fff;
  border-color: #d9d9d9;
}
.ant-btn > .anticon {
  line-height: 1;
}
.ant-btn,
.ant-btn:active,
.ant-btn:focus {
  outline: 0;
}
.ant-btn:not([disabled]):hover {
  text-decoration: none;
}
.ant-btn:not([disabled]):active {
  outline: 0;
  box-shadow: none;
}
.ant-btn.disabled,
.ant-btn[disabled] {
  cursor: not-allowed;
}
.ant-btn.disabled > *,
.ant-btn[disabled] > * {
  pointer-events: none;
}
.ant-btn-lg {
  height: 40px;
  padding: 0 15px;
  font-size: 16px;
  border-radius: 4px;
}
.ant-btn-sm {
  height: 24px;
  padding: 0 7px;
  font-size: 14px;
  border-radius: 4px;
}
.ant-btn > a:only-child {
  color: currentColor;
}
.ant-btn > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn:hover,
.ant-btn:focus {
  color: #2bc3ff;
  background-color: #fff;
  border-color: #2bc3ff;
}
.ant-btn:hover > a:only-child,
.ant-btn:focus > a:only-child {
  color: currentColor;
}
.ant-btn:hover > a:only-child::after,
.ant-btn:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn:active,
.ant-btn.active {
  color: #0086cf;
  background-color: #fff;
  border-color: #0086cf;
}
.ant-btn:active > a:only-child,
.ant-btn.active > a:only-child {
  color: currentColor;
}
.ant-btn:active > a:only-child::after,
.ant-btn.active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-disabled,
.ant-btn.disabled,
.ant-btn[disabled],
.ant-btn-disabled:hover,
.ant-btn.disabled:hover,
.ant-btn[disabled]:hover,
.ant-btn-disabled:focus,
.ant-btn.disabled:focus,
.ant-btn[disabled]:focus,
.ant-btn-disabled:active,
.ant-btn.disabled:active,
.ant-btn[disabled]:active,
.ant-btn-disabled.active,
.ant-btn.disabled.active,
.ant-btn[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-disabled > a:only-child,
.ant-btn.disabled > a:only-child,
.ant-btn[disabled] > a:only-child,
.ant-btn-disabled:hover > a:only-child,
.ant-btn.disabled:hover > a:only-child,
.ant-btn[disabled]:hover > a:only-child,
.ant-btn-disabled:focus > a:only-child,
.ant-btn.disabled:focus > a:only-child,
.ant-btn[disabled]:focus > a:only-child,
.ant-btn-disabled:active > a:only-child,
.ant-btn.disabled:active > a:only-child,
.ant-btn[disabled]:active > a:only-child,
.ant-btn-disabled.active > a:only-child,
.ant-btn.disabled.active > a:only-child,
.ant-btn[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-disabled > a:only-child::after,
.ant-btn.disabled > a:only-child::after,
.ant-btn[disabled] > a:only-child::after,
.ant-btn-disabled:hover > a:only-child::after,
.ant-btn.disabled:hover > a:only-child::after,
.ant-btn[disabled]:hover > a:only-child::after,
.ant-btn-disabled:focus > a:only-child::after,
.ant-btn.disabled:focus > a:only-child::after,
.ant-btn[disabled]:focus > a:only-child::after,
.ant-btn-disabled:active > a:only-child::after,
.ant-btn.disabled:active > a:only-child::after,
.ant-btn[disabled]:active > a:only-child::after,
.ant-btn-disabled.active > a:only-child::after,
.ant-btn.disabled.active > a:only-child::after,
.ant-btn[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn:hover,
.ant-btn:focus,
.ant-btn:active,
.ant-btn.active {
  text-decoration: none;
  background: #fff;
}
.ant-btn > i,
.ant-btn > span {
  display: inline-block;
  transition: margin-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  pointer-events: none;
}
.ant-btn-primary {
  color: #fff;
  background-color: #03a9f5;
  border-color: #03a9f5;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
}
.ant-btn-primary > a:only-child {
  color: currentColor;
}
.ant-btn-primary > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-primary:hover,
.ant-btn-primary:focus {
  color: #fff;
  background-color: #2bc3ff;
  border-color: #2bc3ff;
}
.ant-btn-primary:hover > a:only-child,
.ant-btn-primary:focus > a:only-child {
  color: currentColor;
}
.ant-btn-primary:hover > a:only-child::after,
.ant-btn-primary:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-primary:active,
.ant-btn-primary.active {
  color: #fff;
  background-color: #0086cf;
  border-color: #0086cf;
}
.ant-btn-primary:active > a:only-child,
.ant-btn-primary.active > a:only-child {
  color: currentColor;
}
.ant-btn-primary:active > a:only-child::after,
.ant-btn-primary.active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-primary-disabled,
.ant-btn-primary.disabled,
.ant-btn-primary[disabled],
.ant-btn-primary-disabled:hover,
.ant-btn-primary.disabled:hover,
.ant-btn-primary[disabled]:hover,
.ant-btn-primary-disabled:focus,
.ant-btn-primary.disabled:focus,
.ant-btn-primary[disabled]:focus,
.ant-btn-primary-disabled:active,
.ant-btn-primary.disabled:active,
.ant-btn-primary[disabled]:active,
.ant-btn-primary-disabled.active,
.ant-btn-primary.disabled.active,
.ant-btn-primary[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-primary-disabled > a:only-child,
.ant-btn-primary.disabled > a:only-child,
.ant-btn-primary[disabled] > a:only-child,
.ant-btn-primary-disabled:hover > a:only-child,
.ant-btn-primary.disabled:hover > a:only-child,
.ant-btn-primary[disabled]:hover > a:only-child,
.ant-btn-primary-disabled:focus > a:only-child,
.ant-btn-primary.disabled:focus > a:only-child,
.ant-btn-primary[disabled]:focus > a:only-child,
.ant-btn-primary-disabled:active > a:only-child,
.ant-btn-primary.disabled:active > a:only-child,
.ant-btn-primary[disabled]:active > a:only-child,
.ant-btn-primary-disabled.active > a:only-child,
.ant-btn-primary.disabled.active > a:only-child,
.ant-btn-primary[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-primary-disabled > a:only-child::after,
.ant-btn-primary.disabled > a:only-child::after,
.ant-btn-primary[disabled] > a:only-child::after,
.ant-btn-primary-disabled:hover > a:only-child::after,
.ant-btn-primary.disabled:hover > a:only-child::after,
.ant-btn-primary[disabled]:hover > a:only-child::after,
.ant-btn-primary-disabled:focus > a:only-child::after,
.ant-btn-primary.disabled:focus > a:only-child::after,
.ant-btn-primary[disabled]:focus > a:only-child::after,
.ant-btn-primary-disabled:active > a:only-child::after,
.ant-btn-primary.disabled:active > a:only-child::after,
.ant-btn-primary[disabled]:active > a:only-child::after,
.ant-btn-primary-disabled.active > a:only-child::after,
.ant-btn-primary.disabled.active > a:only-child::after,
.ant-btn-primary[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
  border-right-color: #2bc3ff;
  border-left-color: #2bc3ff;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
  border-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
  border-right-color: #2bc3ff;
}
.ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
  border-right-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child),
.ant-btn-group .ant-btn-primary + .ant-btn-primary {
  border-left-color: #2bc3ff;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
.ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] {
  border-left-color: #d9d9d9;
}
.ant-btn-ghost {
  color: rgba(0, 0, 0, 0.65);
  background-color: transparent;
  border-color: #d9d9d9;
}
.ant-btn-ghost > a:only-child {
  color: currentColor;
}
.ant-btn-ghost > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-ghost:hover,
.ant-btn-ghost:focus {
  color: #2bc3ff;
  background-color: transparent;
  border-color: #2bc3ff;
}
.ant-btn-ghost:hover > a:only-child,
.ant-btn-ghost:focus > a:only-child {
  color: currentColor;
}
.ant-btn-ghost:hover > a:only-child::after,
.ant-btn-ghost:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-ghost:active,
.ant-btn-ghost.active {
  color: #0086cf;
  background-color: transparent;
  border-color: #0086cf;
}
.ant-btn-ghost:active > a:only-child,
.ant-btn-ghost.active > a:only-child {
  color: currentColor;
}
.ant-btn-ghost:active > a:only-child::after,
.ant-btn-ghost.active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-ghost-disabled,
.ant-btn-ghost.disabled,
.ant-btn-ghost[disabled],
.ant-btn-ghost-disabled:hover,
.ant-btn-ghost.disabled:hover,
.ant-btn-ghost[disabled]:hover,
.ant-btn-ghost-disabled:focus,
.ant-btn-ghost.disabled:focus,
.ant-btn-ghost[disabled]:focus,
.ant-btn-ghost-disabled:active,
.ant-btn-ghost.disabled:active,
.ant-btn-ghost[disabled]:active,
.ant-btn-ghost-disabled.active,
.ant-btn-ghost.disabled.active,
.ant-btn-ghost[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-ghost-disabled > a:only-child,
.ant-btn-ghost.disabled > a:only-child,
.ant-btn-ghost[disabled] > a:only-child,
.ant-btn-ghost-disabled:hover > a:only-child,
.ant-btn-ghost.disabled:hover > a:only-child,
.ant-btn-ghost[disabled]:hover > a:only-child,
.ant-btn-ghost-disabled:focus > a:only-child,
.ant-btn-ghost.disabled:focus > a:only-child,
.ant-btn-ghost[disabled]:focus > a:only-child,
.ant-btn-ghost-disabled:active > a:only-child,
.ant-btn-ghost.disabled:active > a:only-child,
.ant-btn-ghost[disabled]:active > a:only-child,
.ant-btn-ghost-disabled.active > a:only-child,
.ant-btn-ghost.disabled.active > a:only-child,
.ant-btn-ghost[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-ghost-disabled > a:only-child::after,
.ant-btn-ghost.disabled > a:only-child::after,
.ant-btn-ghost[disabled] > a:only-child::after,
.ant-btn-ghost-disabled:hover > a:only-child::after,
.ant-btn-ghost.disabled:hover > a:only-child::after,
.ant-btn-ghost[disabled]:hover > a:only-child::after,
.ant-btn-ghost-disabled:focus > a:only-child::after,
.ant-btn-ghost.disabled:focus > a:only-child::after,
.ant-btn-ghost[disabled]:focus > a:only-child::after,
.ant-btn-ghost-disabled:active > a:only-child::after,
.ant-btn-ghost.disabled:active > a:only-child::after,
.ant-btn-ghost[disabled]:active > a:only-child::after,
.ant-btn-ghost-disabled.active > a:only-child::after,
.ant-btn-ghost.disabled.active > a:only-child::after,
.ant-btn-ghost[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dashed {
  color: rgba(0, 0, 0, 0.65);
  background-color: #fff;
  border-color: #d9d9d9;
  border-style: dashed;
}
.ant-btn-dashed > a:only-child {
  color: currentColor;
}
.ant-btn-dashed > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dashed:hover,
.ant-btn-dashed:focus {
  color: #2bc3ff;
  background-color: #fff;
  border-color: #2bc3ff;
}
.ant-btn-dashed:hover > a:only-child,
.ant-btn-dashed:focus > a:only-child {
  color: currentColor;
}
.ant-btn-dashed:hover > a:only-child::after,
.ant-btn-dashed:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dashed:active,
.ant-btn-dashed.active {
  color: #0086cf;
  background-color: #fff;
  border-color: #0086cf;
}
.ant-btn-dashed:active > a:only-child,
.ant-btn-dashed.active > a:only-child {
  color: currentColor;
}
.ant-btn-dashed:active > a:only-child::after,
.ant-btn-dashed.active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dashed-disabled,
.ant-btn-dashed.disabled,
.ant-btn-dashed[disabled],
.ant-btn-dashed-disabled:hover,
.ant-btn-dashed.disabled:hover,
.ant-btn-dashed[disabled]:hover,
.ant-btn-dashed-disabled:focus,
.ant-btn-dashed.disabled:focus,
.ant-btn-dashed[disabled]:focus,
.ant-btn-dashed-disabled:active,
.ant-btn-dashed.disabled:active,
.ant-btn-dashed[disabled]:active,
.ant-btn-dashed-disabled.active,
.ant-btn-dashed.disabled.active,
.ant-btn-dashed[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-dashed-disabled > a:only-child,
.ant-btn-dashed.disabled > a:only-child,
.ant-btn-dashed[disabled] > a:only-child,
.ant-btn-dashed-disabled:hover > a:only-child,
.ant-btn-dashed.disabled:hover > a:only-child,
.ant-btn-dashed[disabled]:hover > a:only-child,
.ant-btn-dashed-disabled:focus > a:only-child,
.ant-btn-dashed.disabled:focus > a:only-child,
.ant-btn-dashed[disabled]:focus > a:only-child,
.ant-btn-dashed-disabled:active > a:only-child,
.ant-btn-dashed.disabled:active > a:only-child,
.ant-btn-dashed[disabled]:active > a:only-child,
.ant-btn-dashed-disabled.active > a:only-child,
.ant-btn-dashed.disabled.active > a:only-child,
.ant-btn-dashed[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-dashed-disabled > a:only-child::after,
.ant-btn-dashed.disabled > a:only-child::after,
.ant-btn-dashed[disabled] > a:only-child::after,
.ant-btn-dashed-disabled:hover > a:only-child::after,
.ant-btn-dashed.disabled:hover > a:only-child::after,
.ant-btn-dashed[disabled]:hover > a:only-child::after,
.ant-btn-dashed-disabled:focus > a:only-child::after,
.ant-btn-dashed.disabled:focus > a:only-child::after,
.ant-btn-dashed[disabled]:focus > a:only-child::after,
.ant-btn-dashed-disabled:active > a:only-child::after,
.ant-btn-dashed.disabled:active > a:only-child::after,
.ant-btn-dashed[disabled]:active > a:only-child::after,
.ant-btn-dashed-disabled.active > a:only-child::after,
.ant-btn-dashed.disabled.active > a:only-child::after,
.ant-btn-dashed[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-danger {
  color: #fff;
  background-color: #ff4d4f;
  border-color: #ff4d4f;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
}
.ant-btn-danger > a:only-child {
  color: currentColor;
}
.ant-btn-danger > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-danger:hover,
.ant-btn-danger:focus {
  color: #fff;
  background-color: #ff7875;
  border-color: #ff7875;
}
.ant-btn-danger:hover > a:only-child,
.ant-btn-danger:focus > a:only-child {
  color: currentColor;
}
.ant-btn-danger:hover > a:only-child::after,
.ant-btn-danger:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-danger:active,
.ant-btn-danger.active {
  color: #fff;
  background-color: #d9363e;
  border-color: #d9363e;
}
.ant-btn-danger:active > a:only-child,
.ant-btn-danger.active > a:only-child {
  color: currentColor;
}
.ant-btn-danger:active > a:only-child::after,
.ant-btn-danger.active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-danger-disabled,
.ant-btn-danger.disabled,
.ant-btn-danger[disabled],
.ant-btn-danger-disabled:hover,
.ant-btn-danger.disabled:hover,
.ant-btn-danger[disabled]:hover,
.ant-btn-danger-disabled:focus,
.ant-btn-danger.disabled:focus,
.ant-btn-danger[disabled]:focus,
.ant-btn-danger-disabled:active,
.ant-btn-danger.disabled:active,
.ant-btn-danger[disabled]:active,
.ant-btn-danger-disabled.active,
.ant-btn-danger.disabled.active,
.ant-btn-danger[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-danger-disabled > a:only-child,
.ant-btn-danger.disabled > a:only-child,
.ant-btn-danger[disabled] > a:only-child,
.ant-btn-danger-disabled:hover > a:only-child,
.ant-btn-danger.disabled:hover > a:only-child,
.ant-btn-danger[disabled]:hover > a:only-child,
.ant-btn-danger-disabled:focus > a:only-child,
.ant-btn-danger.disabled:focus > a:only-child,
.ant-btn-danger[disabled]:focus > a:only-child,
.ant-btn-danger-disabled:active > a:only-child,
.ant-btn-danger.disabled:active > a:only-child,
.ant-btn-danger[disabled]:active > a:only-child,
.ant-btn-danger-disabled.active > a:only-child,
.ant-btn-danger.disabled.active > a:only-child,
.ant-btn-danger[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-danger-disabled > a:only-child::after,
.ant-btn-danger.disabled > a:only-child::after,
.ant-btn-danger[disabled] > a:only-child::after,
.ant-btn-danger-disabled:hover > a:only-child::after,
.ant-btn-danger.disabled:hover > a:only-child::after,
.ant-btn-danger[disabled]:hover > a:only-child::after,
.ant-btn-danger-disabled:focus > a:only-child::after,
.ant-btn-danger.disabled:focus > a:only-child::after,
.ant-btn-danger[disabled]:focus > a:only-child::after,
.ant-btn-danger-disabled:active > a:only-child::after,
.ant-btn-danger.disabled:active > a:only-child::after,
.ant-btn-danger[disabled]:active > a:only-child::after,
.ant-btn-danger-disabled.active > a:only-child::after,
.ant-btn-danger.disabled.active > a:only-child::after,
.ant-btn-danger[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-link {
  color: #03a9f5;
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}
.ant-btn-link > a:only-child {
  color: currentColor;
}
.ant-btn-link > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-link:hover,
.ant-btn-link:focus {
  color: #2bc3ff;
  background-color: transparent;
  border-color: #2bc3ff;
}
.ant-btn-link:hover > a:only-child,
.ant-btn-link:focus > a:only-child {
  color: currentColor;
}
.ant-btn-link:hover > a:only-child::after,
.ant-btn-link:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-link:active,
.ant-btn-link.active {
  color: #0086cf;
  background-color: transparent;
  border-color: #0086cf;
}
.ant-btn-link:active > a:only-child,
.ant-btn-link.active > a:only-child {
  color: currentColor;
}
.ant-btn-link:active > a:only-child::after,
.ant-btn-link.active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-link-disabled,
.ant-btn-link.disabled,
.ant-btn-link[disabled],
.ant-btn-link-disabled:hover,
.ant-btn-link.disabled:hover,
.ant-btn-link[disabled]:hover,
.ant-btn-link-disabled:focus,
.ant-btn-link.disabled:focus,
.ant-btn-link[disabled]:focus,
.ant-btn-link-disabled:active,
.ant-btn-link.disabled:active,
.ant-btn-link[disabled]:active,
.ant-btn-link-disabled.active,
.ant-btn-link.disabled.active,
.ant-btn-link[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-link-disabled > a:only-child,
.ant-btn-link.disabled > a:only-child,
.ant-btn-link[disabled] > a:only-child,
.ant-btn-link-disabled:hover > a:only-child,
.ant-btn-link.disabled:hover > a:only-child,
.ant-btn-link[disabled]:hover > a:only-child,
.ant-btn-link-disabled:focus > a:only-child,
.ant-btn-link.disabled:focus > a:only-child,
.ant-btn-link[disabled]:focus > a:only-child,
.ant-btn-link-disabled:active > a:only-child,
.ant-btn-link.disabled:active > a:only-child,
.ant-btn-link[disabled]:active > a:only-child,
.ant-btn-link-disabled.active > a:only-child,
.ant-btn-link.disabled.active > a:only-child,
.ant-btn-link[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-link-disabled > a:only-child::after,
.ant-btn-link.disabled > a:only-child::after,
.ant-btn-link[disabled] > a:only-child::after,
.ant-btn-link-disabled:hover > a:only-child::after,
.ant-btn-link.disabled:hover > a:only-child::after,
.ant-btn-link[disabled]:hover > a:only-child::after,
.ant-btn-link-disabled:focus > a:only-child::after,
.ant-btn-link.disabled:focus > a:only-child::after,
.ant-btn-link[disabled]:focus > a:only-child::after,
.ant-btn-link-disabled:active > a:only-child::after,
.ant-btn-link.disabled:active > a:only-child::after,
.ant-btn-link[disabled]:active > a:only-child::after,
.ant-btn-link-disabled.active > a:only-child::after,
.ant-btn-link.disabled.active > a:only-child::after,
.ant-btn-link[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-link:hover,
.ant-btn-link:focus,
.ant-btn-link:active {
  border-color: transparent;
}
.ant-btn-link-disabled,
.ant-btn-link.disabled,
.ant-btn-link[disabled],
.ant-btn-link-disabled:hover,
.ant-btn-link.disabled:hover,
.ant-btn-link[disabled]:hover,
.ant-btn-link-disabled:focus,
.ant-btn-link.disabled:focus,
.ant-btn-link[disabled]:focus,
.ant-btn-link-disabled:active,
.ant-btn-link.disabled:active,
.ant-btn-link[disabled]:active,
.ant-btn-link-disabled.active,
.ant-btn-link.disabled.active,
.ant-btn-link[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: transparent;
  border-color: transparent;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-link-disabled > a:only-child,
.ant-btn-link.disabled > a:only-child,
.ant-btn-link[disabled] > a:only-child,
.ant-btn-link-disabled:hover > a:only-child,
.ant-btn-link.disabled:hover > a:only-child,
.ant-btn-link[disabled]:hover > a:only-child,
.ant-btn-link-disabled:focus > a:only-child,
.ant-btn-link.disabled:focus > a:only-child,
.ant-btn-link[disabled]:focus > a:only-child,
.ant-btn-link-disabled:active > a:only-child,
.ant-btn-link.disabled:active > a:only-child,
.ant-btn-link[disabled]:active > a:only-child,
.ant-btn-link-disabled.active > a:only-child,
.ant-btn-link.disabled.active > a:only-child,
.ant-btn-link[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-link-disabled > a:only-child::after,
.ant-btn-link.disabled > a:only-child::after,
.ant-btn-link[disabled] > a:only-child::after,
.ant-btn-link-disabled:hover > a:only-child::after,
.ant-btn-link.disabled:hover > a:only-child::after,
.ant-btn-link[disabled]:hover > a:only-child::after,
.ant-btn-link-disabled:focus > a:only-child::after,
.ant-btn-link.disabled:focus > a:only-child::after,
.ant-btn-link[disabled]:focus > a:only-child::after,
.ant-btn-link-disabled:active > a:only-child::after,
.ant-btn-link.disabled:active > a:only-child::after,
.ant-btn-link[disabled]:active > a:only-child::after,
.ant-btn-link-disabled.active > a:only-child::after,
.ant-btn-link.disabled.active > a:only-child::after,
.ant-btn-link[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-icon-only {
  width: 32px;
  height: 32px;
  padding: 0;
  font-size: 16px;
  border-radius: 4px;
}
.ant-btn-icon-only.ant-btn-lg {
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 18px;
  border-radius: 4px;
}
.ant-btn-icon-only.ant-btn-sm {
  width: 24px;
  height: 24px;
  padding: 0;
  font-size: 14px;
  border-radius: 4px;
}
.ant-btn-icon-only > i {
  vertical-align: middle;
}
.ant-btn-round {
  height: 32px;
  padding: 0 16px;
  font-size: 14px;
  border-radius: 32px;
}
.ant-btn-round.ant-btn-lg {
  height: 40px;
  padding: 0 20px;
  font-size: 16px;
  border-radius: 40px;
}
.ant-btn-round.ant-btn-sm {
  height: 24px;
  padding: 0 12px;
  font-size: 14px;
  border-radius: 24px;
}
.ant-btn-round.ant-btn-icon-only {
  width: auto;
}
.ant-btn-circle,
.ant-btn-circle-outline {
  min-width: 32px;
  padding-right: 0;
  padding-left: 0;
  text-align: center;
  border-radius: 50%;
}
.ant-btn-circle.ant-btn-lg,
.ant-btn-circle-outline.ant-btn-lg {
  min-width: 40px;
  border-radius: 50%;
}
.ant-btn-circle.ant-btn-sm,
.ant-btn-circle-outline.ant-btn-sm {
  min-width: 24px;
  border-radius: 50%;
}
.ant-btn::before {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: 1;
  display: none;
  background: #fff;
  border-radius: inherit;
  opacity: 0.35;
  transition: opacity 0.2s;
  content: '';
  pointer-events: none;
}
.ant-btn .anticon {
  transition: margin-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-btn .anticon.anticon-plus > svg,
.ant-btn .anticon.anticon-minus > svg {
  shape-rendering: optimizeSpeed;
}
.ant-btn.ant-btn-loading {
  position: relative;
}
.ant-btn.ant-btn-loading:not([disabled]) {
  pointer-events: none;
}
.ant-btn.ant-btn-loading::before {
  display: block;
}
.ant-btn.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline):not(.ant-btn-icon-only) {
  padding-left: 29px;
}
.ant-btn.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline):not(.ant-btn-icon-only) .anticon:not(:last-child) {
  margin-left: -14px;
}
.ant-btn-sm.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline):not(.ant-btn-icon-only) {
  padding-left: 24px;
}
.ant-btn-sm.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline):not(.ant-btn-icon-only) .anticon {
  margin-left: -17px;
}
.ant-btn-group {
  position: relative;
  display: inline-block;
}
.ant-btn-group > .ant-btn,
.ant-btn-group > span > .ant-btn {
  position: relative;
}
.ant-btn-group > .ant-btn:hover,
.ant-btn-group > span > .ant-btn:hover,
.ant-btn-group > .ant-btn:focus,
.ant-btn-group > span > .ant-btn:focus,
.ant-btn-group > .ant-btn:active,
.ant-btn-group > span > .ant-btn:active,
.ant-btn-group > .ant-btn.active,
.ant-btn-group > span > .ant-btn.active {
  z-index: 2;
}
.ant-btn-group > .ant-btn:disabled,
.ant-btn-group > span > .ant-btn:disabled {
  z-index: 0;
}
.ant-btn-group > .ant-btn-icon-only {
  font-size: 14px;
}
.ant-btn-group-lg > .ant-btn,
.ant-btn-group-lg > span > .ant-btn {
  height: 40px;
  padding: 0 15px;
  font-size: 16px;
  border-radius: 0;
  line-height: 38px;
}
.ant-btn-group-lg > .ant-btn.ant-btn-icon-only {
  width: 40px;
  height: 40px;
  padding-right: 0;
  padding-left: 0;
}
.ant-btn-group-sm > .ant-btn,
.ant-btn-group-sm > span > .ant-btn {
  height: 24px;
  padding: 0 7px;
  font-size: 14px;
  border-radius: 0;
  line-height: 22px;
}
.ant-btn-group-sm > .ant-btn > .anticon,
.ant-btn-group-sm > span > .ant-btn > .anticon {
  font-size: 14px;
}
.ant-btn-group-sm > .ant-btn.ant-btn-icon-only {
  width: 24px;
  height: 24px;
  padding-right: 0;
  padding-left: 0;
}
.ant-btn-group .ant-btn + .ant-btn,
.ant-btn + .ant-btn-group,
.ant-btn-group span + .ant-btn,
.ant-btn-group .ant-btn + span,
.ant-btn-group > span + span,
.ant-btn-group + .ant-btn,
.ant-btn-group + .ant-btn-group {
  margin-left: -1px;
}
.ant-btn-group .ant-btn-primary + .ant-btn:not(.ant-btn-primary):not([disabled]) {
  border-left-color: transparent;
}
.ant-btn-group .ant-btn {
  border-radius: 0;
}
.ant-btn-group > .ant-btn:first-child,
.ant-btn-group > span:first-child > .ant-btn {
  margin-left: 0;
}
.ant-btn-group > .ant-btn:only-child {
  border-radius: 4px;
}
.ant-btn-group > span:only-child > .ant-btn {
  border-radius: 4px;
}
.ant-btn-group > .ant-btn:first-child:not(:last-child),
.ant-btn-group > span:first-child:not(:last-child) > .ant-btn {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ant-btn-group > .ant-btn:last-child:not(:first-child),
.ant-btn-group > span:last-child:not(:first-child) > .ant-btn {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.ant-btn-group-sm > .ant-btn:only-child {
  border-radius: 4px;
}
.ant-btn-group-sm > span:only-child > .ant-btn {
  border-radius: 4px;
}
.ant-btn-group-sm > .ant-btn:first-child:not(:last-child),
.ant-btn-group-sm > span:first-child:not(:last-child) > .ant-btn {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ant-btn-group-sm > .ant-btn:last-child:not(:first-child),
.ant-btn-group-sm > span:last-child:not(:first-child) > .ant-btn {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.ant-btn-group > .ant-btn-group {
  float: left;
}
.ant-btn-group > .ant-btn-group:not(:first-child):not(:last-child) > .ant-btn {
  border-radius: 0;
}
.ant-btn-group > .ant-btn-group:first-child:not(:last-child) > .ant-btn:last-child {
  padding-right: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-btn-group > .ant-btn-group:last-child:not(:first-child) > .ant-btn:first-child {
  padding-left: 8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-btn:focus > span,
.ant-btn:active > span {
  position: relative;
}
.ant-btn > .anticon + span,
.ant-btn > span + .anticon {
  margin-left: 8px;
}
.ant-btn-background-ghost {
  color: #fff;
  background: transparent !important;
  border-color: #fff;
}
.ant-btn-background-ghost.ant-btn-primary {
  color: #03a9f5;
  background-color: transparent;
  border-color: #03a9f5;
  text-shadow: none;
}
.ant-btn-background-ghost.ant-btn-primary > a:only-child {
  color: currentColor;
}
.ant-btn-background-ghost.ant-btn-primary > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-primary:hover,
.ant-btn-background-ghost.ant-btn-primary:focus {
  color: #2bc3ff;
  background-color: transparent;
  border-color: #2bc3ff;
}
.ant-btn-background-ghost.ant-btn-primary:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-primary:focus > a:only-child {
  color: currentColor;
}
.ant-btn-background-ghost.ant-btn-primary:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-primary:active,
.ant-btn-background-ghost.ant-btn-primary.active {
  color: #0086cf;
  background-color: transparent;
  border-color: #0086cf;
}
.ant-btn-background-ghost.ant-btn-primary:active > a:only-child,
.ant-btn-background-ghost.ant-btn-primary.active > a:only-child {
  color: currentColor;
}
.ant-btn-background-ghost.ant-btn-primary:active > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary.active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-primary-disabled,
.ant-btn-background-ghost.ant-btn-primary.disabled,
.ant-btn-background-ghost.ant-btn-primary[disabled],
.ant-btn-background-ghost.ant-btn-primary-disabled:hover,
.ant-btn-background-ghost.ant-btn-primary.disabled:hover,
.ant-btn-background-ghost.ant-btn-primary[disabled]:hover,
.ant-btn-background-ghost.ant-btn-primary-disabled:focus,
.ant-btn-background-ghost.ant-btn-primary.disabled:focus,
.ant-btn-background-ghost.ant-btn-primary[disabled]:focus,
.ant-btn-background-ghost.ant-btn-primary-disabled:active,
.ant-btn-background-ghost.ant-btn-primary.disabled:active,
.ant-btn-background-ghost.ant-btn-primary[disabled]:active,
.ant-btn-background-ghost.ant-btn-primary-disabled.active,
.ant-btn-background-ghost.ant-btn-primary.disabled.active,
.ant-btn-background-ghost.ant-btn-primary[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-background-ghost.ant-btn-primary-disabled > a:only-child,
.ant-btn-background-ghost.ant-btn-primary.disabled > a:only-child,
.ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child,
.ant-btn-background-ghost.ant-btn-primary-disabled:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-primary.disabled:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-primary-disabled:focus > a:only-child,
.ant-btn-background-ghost.ant-btn-primary.disabled:focus > a:only-child,
.ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child,
.ant-btn-background-ghost.ant-btn-primary-disabled:active > a:only-child,
.ant-btn-background-ghost.ant-btn-primary.disabled:active > a:only-child,
.ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child,
.ant-btn-background-ghost.ant-btn-primary-disabled.active > a:only-child,
.ant-btn-background-ghost.ant-btn-primary.disabled.active > a:only-child,
.ant-btn-background-ghost.ant-btn-primary[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-background-ghost.ant-btn-primary-disabled > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary.disabled > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary-disabled:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary.disabled:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary-disabled:focus > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary.disabled:focus > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary-disabled:active > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary.disabled:active > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary-disabled.active > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary.disabled.active > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-danger {
  color: #ff4d4f;
  background-color: transparent;
  border-color: #ff4d4f;
  text-shadow: none;
}
.ant-btn-background-ghost.ant-btn-danger > a:only-child {
  color: currentColor;
}
.ant-btn-background-ghost.ant-btn-danger > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-danger:hover,
.ant-btn-background-ghost.ant-btn-danger:focus {
  color: #ff7875;
  background-color: transparent;
  border-color: #ff7875;
}
.ant-btn-background-ghost.ant-btn-danger:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-danger:focus > a:only-child {
  color: currentColor;
}
.ant-btn-background-ghost.ant-btn-danger:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-danger:active,
.ant-btn-background-ghost.ant-btn-danger.active {
  color: #d9363e;
  background-color: transparent;
  border-color: #d9363e;
}
.ant-btn-background-ghost.ant-btn-danger:active > a:only-child,
.ant-btn-background-ghost.ant-btn-danger.active > a:only-child {
  color: currentColor;
}
.ant-btn-background-ghost.ant-btn-danger:active > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger.active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-danger-disabled,
.ant-btn-background-ghost.ant-btn-danger.disabled,
.ant-btn-background-ghost.ant-btn-danger[disabled],
.ant-btn-background-ghost.ant-btn-danger-disabled:hover,
.ant-btn-background-ghost.ant-btn-danger.disabled:hover,
.ant-btn-background-ghost.ant-btn-danger[disabled]:hover,
.ant-btn-background-ghost.ant-btn-danger-disabled:focus,
.ant-btn-background-ghost.ant-btn-danger.disabled:focus,
.ant-btn-background-ghost.ant-btn-danger[disabled]:focus,
.ant-btn-background-ghost.ant-btn-danger-disabled:active,
.ant-btn-background-ghost.ant-btn-danger.disabled:active,
.ant-btn-background-ghost.ant-btn-danger[disabled]:active,
.ant-btn-background-ghost.ant-btn-danger-disabled.active,
.ant-btn-background-ghost.ant-btn-danger.disabled.active,
.ant-btn-background-ghost.ant-btn-danger[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-background-ghost.ant-btn-danger-disabled > a:only-child,
.ant-btn-background-ghost.ant-btn-danger.disabled > a:only-child,
.ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child,
.ant-btn-background-ghost.ant-btn-danger-disabled:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-danger.disabled:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-danger-disabled:focus > a:only-child,
.ant-btn-background-ghost.ant-btn-danger.disabled:focus > a:only-child,
.ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child,
.ant-btn-background-ghost.ant-btn-danger-disabled:active > a:only-child,
.ant-btn-background-ghost.ant-btn-danger.disabled:active > a:only-child,
.ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child,
.ant-btn-background-ghost.ant-btn-danger-disabled.active > a:only-child,
.ant-btn-background-ghost.ant-btn-danger.disabled.active > a:only-child,
.ant-btn-background-ghost.ant-btn-danger[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-background-ghost.ant-btn-danger-disabled > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger.disabled > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger-disabled:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger.disabled:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger-disabled:focus > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger.disabled:focus > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger-disabled:active > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger.disabled:active > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger-disabled.active > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger.disabled.active > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-link {
  color: #03a9f5;
  background-color: transparent;
  border-color: transparent;
  text-shadow: none;
  color: #fff;
}
.ant-btn-background-ghost.ant-btn-link > a:only-child {
  color: currentColor;
}
.ant-btn-background-ghost.ant-btn-link > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-link:hover,
.ant-btn-background-ghost.ant-btn-link:focus {
  color: #2bc3ff;
  background-color: transparent;
  border-color: transparent;
}
.ant-btn-background-ghost.ant-btn-link:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-link:focus > a:only-child {
  color: currentColor;
}
.ant-btn-background-ghost.ant-btn-link:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-link:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-link:active,
.ant-btn-background-ghost.ant-btn-link.active {
  color: #0086cf;
  background-color: transparent;
  border-color: transparent;
}
.ant-btn-background-ghost.ant-btn-link:active > a:only-child,
.ant-btn-background-ghost.ant-btn-link.active > a:only-child {
  color: currentColor;
}
.ant-btn-background-ghost.ant-btn-link:active > a:only-child::after,
.ant-btn-background-ghost.ant-btn-link.active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-link-disabled,
.ant-btn-background-ghost.ant-btn-link.disabled,
.ant-btn-background-ghost.ant-btn-link[disabled],
.ant-btn-background-ghost.ant-btn-link-disabled:hover,
.ant-btn-background-ghost.ant-btn-link.disabled:hover,
.ant-btn-background-ghost.ant-btn-link[disabled]:hover,
.ant-btn-background-ghost.ant-btn-link-disabled:focus,
.ant-btn-background-ghost.ant-btn-link.disabled:focus,
.ant-btn-background-ghost.ant-btn-link[disabled]:focus,
.ant-btn-background-ghost.ant-btn-link-disabled:active,
.ant-btn-background-ghost.ant-btn-link.disabled:active,
.ant-btn-background-ghost.ant-btn-link[disabled]:active,
.ant-btn-background-ghost.ant-btn-link-disabled.active,
.ant-btn-background-ghost.ant-btn-link.disabled.active,
.ant-btn-background-ghost.ant-btn-link[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-background-ghost.ant-btn-link-disabled > a:only-child,
.ant-btn-background-ghost.ant-btn-link.disabled > a:only-child,
.ant-btn-background-ghost.ant-btn-link[disabled] > a:only-child,
.ant-btn-background-ghost.ant-btn-link-disabled:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-link.disabled:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-link[disabled]:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-link-disabled:focus > a:only-child,
.ant-btn-background-ghost.ant-btn-link.disabled:focus > a:only-child,
.ant-btn-background-ghost.ant-btn-link[disabled]:focus > a:only-child,
.ant-btn-background-ghost.ant-btn-link-disabled:active > a:only-child,
.ant-btn-background-ghost.ant-btn-link.disabled:active > a:only-child,
.ant-btn-background-ghost.ant-btn-link[disabled]:active > a:only-child,
.ant-btn-background-ghost.ant-btn-link-disabled.active > a:only-child,
.ant-btn-background-ghost.ant-btn-link.disabled.active > a:only-child,
.ant-btn-background-ghost.ant-btn-link[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-background-ghost.ant-btn-link-disabled > a:only-child::after,
.ant-btn-background-ghost.ant-btn-link.disabled > a:only-child::after,
.ant-btn-background-ghost.ant-btn-link[disabled] > a:only-child::after,
.ant-btn-background-ghost.ant-btn-link-disabled:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-link.disabled:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-link[disabled]:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-link-disabled:focus > a:only-child::after,
.ant-btn-background-ghost.ant-btn-link.disabled:focus > a:only-child::after,
.ant-btn-background-ghost.ant-btn-link[disabled]:focus > a:only-child::after,
.ant-btn-background-ghost.ant-btn-link-disabled:active > a:only-child::after,
.ant-btn-background-ghost.ant-btn-link.disabled:active > a:only-child::after,
.ant-btn-background-ghost.ant-btn-link[disabled]:active > a:only-child::after,
.ant-btn-background-ghost.ant-btn-link-disabled.active > a:only-child::after,
.ant-btn-background-ghost.ant-btn-link.disabled.active > a:only-child::after,
.ant-btn-background-ghost.ant-btn-link[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-two-chinese-chars::first-letter {
  letter-spacing: 0.34em;
}
.ant-btn-two-chinese-chars > *:not(.anticon) {
  margin-right: -0.34em;
  letter-spacing: 0.34em;
}
.ant-btn-block {
  width: 100%;
}
.ant-btn:empty {
  vertical-align: top;
}
a.ant-btn {
  padding-top: 0.1px;
  line-height: 30px;
}
a.ant-btn-lg {
  line-height: 38px;
}
a.ant-btn-sm {
  line-height: 22px;
}
.ant-fullcalendar {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  border-top: 1px solid #d9d9d9;
  outline: none;
}
.ant-select.ant-fullcalendar-year-select {
  min-width: 90px;
}
.ant-select.ant-fullcalendar-year-select.ant-select-sm {
  min-width: 70px;
}
.ant-select.ant-fullcalendar-month-select {
  min-width: 80px;
  margin-left: 8px;
}
.ant-select.ant-fullcalendar-month-select.ant-select-sm {
  min-width: 70px;
}
.ant-fullcalendar-header {
  padding: 11px 16px 11px 0;
  text-align: right;
}
.ant-fullcalendar-header .ant-select-dropdown {
  text-align: left;
}
.ant-fullcalendar-header .ant-radio-group {
  margin-left: 8px;
  text-align: left;
}
.ant-fullcalendar-header label.ant-radio-button {
  height: 22px;
  padding: 0 10px;
  line-height: 20px;
}
.ant-fullcalendar-date-panel {
  position: relative;
  outline: none;
}
.ant-fullcalendar-calendar-body {
  padding: 8px 12px;
}
.ant-fullcalendar table {
  width: 100%;
  max-width: 100%;
  height: 256px;
  background-color: transparent;
  border-collapse: collapse;
}
.ant-fullcalendar table,
.ant-fullcalendar th,
.ant-fullcalendar td {
  border: 0;
}
.ant-fullcalendar td {
  position: relative;
}
.ant-fullcalendar-calendar-table {
  margin-bottom: 0;
  border-spacing: 0;
}
.ant-fullcalendar-column-header {
  width: 33px;
  padding: 0;
  line-height: 18px;
  text-align: center;
}
.ant-fullcalendar-column-header .ant-fullcalendar-column-header-inner {
  display: block;
  font-weight: normal;
}
.ant-fullcalendar-week-number-header .ant-fullcalendar-column-header-inner {
  display: none;
}
.ant-fullcalendar-month,
.ant-fullcalendar-date {
  text-align: center;
  transition: all 0.3s;
}
.ant-fullcalendar-value {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 auto;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  line-height: 24px;
  background: transparent;
  border-radius: 2px;
  transition: all 0.3s;
}
.ant-fullcalendar-value:hover {
  background: #e6fbff;
  cursor: pointer;
}
.ant-fullcalendar-value:active {
  color: #fff;
  background: #03a9f5;
}
.ant-fullcalendar-month-panel-cell .ant-fullcalendar-value {
  width: 48px;
}
.ant-fullcalendar-today .ant-fullcalendar-value,
.ant-fullcalendar-month-panel-current-cell .ant-fullcalendar-value {
  box-shadow: 0 0 0 1px #03a9f5 inset;
}
.ant-fullcalendar-selected-day .ant-fullcalendar-value,
.ant-fullcalendar-month-panel-selected-cell .ant-fullcalendar-value {
  color: #fff;
  background: #03a9f5;
}
.ant-fullcalendar-disabled-cell-first-of-row .ant-fullcalendar-value {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ant-fullcalendar-disabled-cell-last-of-row .ant-fullcalendar-value {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.ant-fullcalendar-last-month-cell .ant-fullcalendar-value,
.ant-fullcalendar-next-month-btn-day .ant-fullcalendar-value {
  color: rgba(0, 0, 0, 0.25);
}
.ant-fullcalendar-month-panel-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.ant-fullcalendar-content {
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
}
.ant-fullcalendar-fullscreen {
  border-top: 0;
}
.ant-fullcalendar-fullscreen .ant-fullcalendar-table {
  table-layout: fixed;
}
.ant-fullcalendar-fullscreen .ant-fullcalendar-header .ant-radio-group {
  margin-left: 16px;
}
.ant-fullcalendar-fullscreen .ant-fullcalendar-header label.ant-radio-button {
  height: 32px;
  line-height: 30px;
}
.ant-fullcalendar-fullscreen .ant-fullcalendar-month,
.ant-fullcalendar-fullscreen .ant-fullcalendar-date {
  display: block;
  height: 116px;
  margin: 0 4px;
  padding: 4px 8px;
  color: rgba(0, 0, 0, 0.65);
  text-align: left;
  border-top: 2px solid #e8e8e8;
  transition: background 0.3s;
}
.ant-fullcalendar-fullscreen .ant-fullcalendar-month:hover,
.ant-fullcalendar-fullscreen .ant-fullcalendar-date:hover {
  background: #e6fbff;
  cursor: pointer;
}
.ant-fullcalendar-fullscreen .ant-fullcalendar-month:active,
.ant-fullcalendar-fullscreen .ant-fullcalendar-date:active {
  background: #a6efff;
}
.ant-fullcalendar-fullscreen .ant-fullcalendar-column-header {
  padding-right: 12px;
  padding-bottom: 5px;
  text-align: right;
}
.ant-fullcalendar-fullscreen .ant-fullcalendar-value {
  width: auto;
  text-align: right;
  background: transparent;
}
.ant-fullcalendar-fullscreen .ant-fullcalendar-today .ant-fullcalendar-value {
  color: rgba(0, 0, 0, 0.65);
}
.ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-current-cell .ant-fullcalendar-month,
.ant-fullcalendar-fullscreen .ant-fullcalendar-today .ant-fullcalendar-date {
  background: transparent;
  border-top-color: #03a9f5;
}
.ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-current-cell .ant-fullcalendar-value,
.ant-fullcalendar-fullscreen .ant-fullcalendar-today .ant-fullcalendar-value {
  box-shadow: none;
}
.ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-selected-cell .ant-fullcalendar-month,
.ant-fullcalendar-fullscreen .ant-fullcalendar-selected-day .ant-fullcalendar-date {
  background: #e6fbff;
}
.ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-selected-cell .ant-fullcalendar-value,
.ant-fullcalendar-fullscreen .ant-fullcalendar-selected-day .ant-fullcalendar-value {
  color: #03a9f5;
}
.ant-fullcalendar-fullscreen .ant-fullcalendar-last-month-cell .ant-fullcalendar-date,
.ant-fullcalendar-fullscreen .ant-fullcalendar-next-month-btn-day .ant-fullcalendar-date {
  color: rgba(0, 0, 0, 0.25);
}
.ant-fullcalendar-fullscreen .ant-fullcalendar-content {
  position: static;
  width: auto;
  height: 88px;
  overflow-y: auto;
}
.ant-fullcalendar-disabled-cell .ant-fullcalendar-date,
.ant-fullcalendar-disabled-cell .ant-fullcalendar-date:hover {
  cursor: not-allowed;
}
.ant-fullcalendar-disabled-cell:not(.ant-fullcalendar-today) .ant-fullcalendar-date,
.ant-fullcalendar-disabled-cell:not(.ant-fullcalendar-today) .ant-fullcalendar-date:hover {
  background: transparent;
}
.ant-fullcalendar-disabled-cell .ant-fullcalendar-value {
  width: auto;
  color: rgba(0, 0, 0, 0.25);
  border-radius: 0;
  cursor: not-allowed;
}
.ant-card {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.ant-card-hoverable {
  cursor: pointer;
}
.ant-card-hoverable:hover {
  border-color: rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
}
.ant-card-bordered {
  border: 1px solid #e8e8e8;
}
.ant-card-head {
  min-height: 48px;
  margin-bottom: -1px;
  padding: 0 24px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  background: transparent;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 2px 2px 0 0;
  zoom: 1;
}
.ant-card-head::before,
.ant-card-head::after {
  display: table;
  content: '';
}
.ant-card-head::after {
  clear: both;
}
.ant-card-head-wrapper {
  display: flex;
  align-items: center;
}
.ant-card-head-title {
  display: inline-block;
  flex: 1;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-card-head .ant-tabs {
  clear: both;
  margin-bottom: -17px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: normal;
  font-size: 14px;
}
.ant-card-head .ant-tabs-bar {
  border-bottom: 1px solid #e8e8e8;
}
.ant-card-extra {
  float: right;
  margin-left: auto;
  padding: 16px 0;
  color: rgba(0, 0, 0, 0.65);
  font-weight: normal;
  font-size: 14px;
}
.ant-card-body {
  padding: 24px;
  zoom: 1;
}
.ant-card-body::before,
.ant-card-body::after {
  display: table;
  content: '';
}
.ant-card-body::after {
  clear: both;
}
.ant-card-contain-grid:not(.ant-card-loading) .ant-card-body {
  margin: -1px 0 0 -1px;
  padding: 0;
}
.ant-card-grid {
  float: left;
  width: 33.33%;
  padding: 24px;
  border: 0;
  border-radius: 0;
  box-shadow: 1px 0 0 0 #e8e8e8, 0 1px 0 0 #e8e8e8, 1px 1px 0 0 #e8e8e8, 1px 0 0 0 #e8e8e8 inset, 0 1px 0 0 #e8e8e8 inset;
  transition: all 0.3s;
}
.ant-card-grid-hoverable:hover {
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-card-contain-tabs > .ant-card-head .ant-card-head-title {
  min-height: 32px;
  padding-bottom: 0;
}
.ant-card-contain-tabs > .ant-card-head .ant-card-extra {
  padding-bottom: 0;
}
.ant-card-cover > * {
  display: block;
  width: 100%;
}
.ant-card-cover img {
  border-radius: 2px 2px 0 0;
}
.ant-card-actions {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fafafa;
  border-top: 1px solid #e8e8e8;
  zoom: 1;
}
.ant-card-actions::before,
.ant-card-actions::after {
  display: table;
  content: '';
}
.ant-card-actions::after {
  clear: both;
}
.ant-card-actions > li {
  float: left;
  margin: 12px 0;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
}
.ant-card-actions > li > span {
  position: relative;
  display: block;
  min-width: 32px;
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
}
.ant-card-actions > li > span:hover {
  color: #03a9f5;
  transition: color 0.3s;
}
.ant-card-actions > li > span a:not(.ant-btn),
.ant-card-actions > li > span > .anticon {
  display: inline-block;
  width: 100%;
  color: rgba(0, 0, 0, 0.45);
  line-height: 22px;
  transition: color 0.3s;
}
.ant-card-actions > li > span a:not(.ant-btn):hover,
.ant-card-actions > li > span > .anticon:hover {
  color: #03a9f5;
}
.ant-card-actions > li > span > .anticon {
  font-size: 16px;
  line-height: 22px;
}
.ant-card-actions > li:not(:last-child) {
  border-right: 1px solid #e8e8e8;
}
.ant-card-type-inner .ant-card-head {
  padding: 0 24px;
  background: #fafafa;
}
.ant-card-type-inner .ant-card-head-title {
  padding: 12px 0;
  font-size: 14px;
}
.ant-card-type-inner .ant-card-body {
  padding: 16px 24px;
}
.ant-card-type-inner .ant-card-extra {
  padding: 13.5px 0;
}
.ant-card-meta {
  margin: -4px 0;
  zoom: 1;
}
.ant-card-meta::before,
.ant-card-meta::after {
  display: table;
  content: '';
}
.ant-card-meta::after {
  clear: both;
}
.ant-card-meta-avatar {
  float: left;
  padding-right: 16px;
}
.ant-card-meta-detail {
  overflow: hidden;
}
.ant-card-meta-detail > div:not(:last-child) {
  margin-bottom: 8px;
}
.ant-card-meta-title {
  overflow: hidden;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-card-meta-description {
  color: rgba(0, 0, 0, 0.45);
}
.ant-card-loading {
  overflow: hidden;
}
.ant-card-loading .ant-card-body {
  user-select: none;
}
.ant-card-loading-content p {
  margin: 0;
}
.ant-card-loading-block {
  height: 14px;
  margin: 4px 0;
  background: linear-gradient(90deg, rgba(207, 216, 220, 0.2), rgba(207, 216, 220, 0.4), rgba(207, 216, 220, 0.2));
  background-size: 600% 600%;
  border-radius: 2px;
  animation: card-loading 1.4s ease infinite;
}
@keyframes card-loading {
  0%,
  100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.ant-card-small > .ant-card-head {
  min-height: 36px;
  padding: 0 12px;
  font-size: 14px;
}
.ant-card-small > .ant-card-head > .ant-card-head-wrapper > .ant-card-head-title {
  padding: 8px 0;
}
.ant-card-small > .ant-card-head > .ant-card-head-wrapper > .ant-card-extra {
  padding: 8px 0;
  font-size: 14px;
}
.ant-card-small > .ant-card-body {
  padding: 12px;
}
.ant-carousel {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
}
.ant-carousel .slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.ant-carousel .slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.ant-carousel .slick-list:focus {
  outline: none;
}
.ant-carousel .slick-list.dragging {
  cursor: pointer;
}
.ant-carousel .slick-list .slick-slide {
  pointer-events: none;
}
.ant-carousel .slick-list .slick-slide input.ant-radio-input,
.ant-carousel .slick-list .slick-slide input.ant-checkbox-input {
  visibility: hidden;
}
.ant-carousel .slick-list .slick-slide.slick-active {
  pointer-events: auto;
}
.ant-carousel .slick-list .slick-slide.slick-active input.ant-radio-input,
.ant-carousel .slick-list .slick-slide.slick-active input.ant-checkbox-input {
  visibility: visible;
}
.ant-carousel .slick-slider .slick-track,
.ant-carousel .slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}
.ant-carousel .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.ant-carousel .slick-track::before,
.ant-carousel .slick-track::after {
  display: table;
  content: '';
}
.ant-carousel .slick-track::after {
  clear: both;
}
.slick-loading .ant-carousel .slick-track {
  visibility: hidden;
}
.ant-carousel .slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .ant-carousel .slick-slide {
  float: right;
}
.ant-carousel .slick-slide img {
  display: block;
}
.ant-carousel .slick-slide.slick-loading img {
  display: none;
}
.ant-carousel .slick-slide.dragging img {
  pointer-events: none;
}
.ant-carousel .slick-initialized .slick-slide {
  display: block;
}
.ant-carousel .slick-loading .slick-slide {
  visibility: hidden;
}
.ant-carousel .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.ant-carousel .slick-arrow.slick-hidden {
  display: none;
}
.ant-carousel .slick-prev,
.ant-carousel .slick-next {
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  padding: 0;
  color: transparent;
  font-size: 0;
  line-height: 0;
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}
.ant-carousel .slick-prev:hover,
.ant-carousel .slick-next:hover,
.ant-carousel .slick-prev:focus,
.ant-carousel .slick-next:focus {
  color: transparent;
  background: transparent;
  outline: none;
}
.ant-carousel .slick-prev:hover::before,
.ant-carousel .slick-next:hover::before,
.ant-carousel .slick-prev:focus::before,
.ant-carousel .slick-next:focus::before {
  opacity: 1;
}
.ant-carousel .slick-prev.slick-disabled::before,
.ant-carousel .slick-next.slick-disabled::before {
  opacity: 0.25;
}
.ant-carousel .slick-prev {
  left: -25px;
}
.ant-carousel .slick-prev::before {
  content: '←';
}
.ant-carousel .slick-next {
  right: -25px;
}
.ant-carousel .slick-next::before {
  content: '→';
}
.ant-carousel .slick-dots {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  margin: 0;
  padding: 0;
  text-align: center;
  list-style: none;
}
.ant-carousel .slick-dots-bottom {
  bottom: 12px;
}
.ant-carousel .slick-dots-top {
  top: 12px;
}
.ant-carousel .slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 2px;
  padding: 0;
  text-align: center;
  vertical-align: top;
}
.ant-carousel .slick-dots li button {
  display: block;
  width: 16px;
  height: 3px;
  padding: 0;
  color: transparent;
  font-size: 0;
  background: #fff;
  border: 0;
  border-radius: 1px;
  outline: none;
  cursor: pointer;
  opacity: 0.3;
  transition: all 0.5s;
}
.ant-carousel .slick-dots li button:hover,
.ant-carousel .slick-dots li button:focus {
  opacity: 0.75;
}
.ant-carousel .slick-dots li.slick-active button {
  width: 24px;
  background: #fff;
  opacity: 1;
}
.ant-carousel .slick-dots li.slick-active button:hover,
.ant-carousel .slick-dots li.slick-active button:focus {
  opacity: 1;
}
.ant-carousel-vertical .slick-dots {
  top: 50%;
  bottom: auto;
  width: 3px;
  height: auto;
  transform: translateY(-50%);
}
.ant-carousel-vertical .slick-dots-left {
  left: 12px;
}
.ant-carousel-vertical .slick-dots-right {
  right: 12px;
}
.ant-carousel-vertical .slick-dots li {
  margin: 0 2px;
  vertical-align: baseline;
}
.ant-carousel-vertical .slick-dots li button {
  width: 3px;
  height: 16px;
}
.ant-carousel-vertical .slick-dots li.slick-active button {
  width: 3px;
  height: 24px;
}
.ant-cascader {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
}
.ant-cascader-input.ant-input {
  position: static;
  width: 100%;
  padding-right: 24px;
  background-color: transparent !important;
  cursor: pointer;
}
.ant-cascader-picker-show-search .ant-cascader-input.ant-input {
  position: relative;
}
.ant-cascader-picker {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  background-color: #fff;
  border-radius: 4px;
  outline: 0;
  cursor: pointer;
  transition: color 0.3s;
}
.ant-cascader-picker-with-value .ant-cascader-picker-label {
  color: transparent;
}
.ant-cascader-picker-disabled {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  cursor: not-allowed;
}
.ant-cascader-picker-disabled .ant-cascader-input {
  cursor: not-allowed;
}
.ant-cascader-picker:focus .ant-cascader-input {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(3, 169, 245, 0.2);
}
.ant-cascader-picker-show-search.ant-cascader-picker-focused {
  color: rgba(0, 0, 0, 0.25);
}
.ant-cascader-picker-label {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 20px;
  margin-top: -10px;
  padding: 0 20px 0 12px;
  overflow: hidden;
  line-height: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-cascader-picker-clear {
  position: absolute;
  top: 50%;
  right: 12px;
  z-index: 2;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  line-height: 12px;
  background: #fff;
  cursor: pointer;
  opacity: 0;
  transition: color 0.3s ease, opacity 0.15s ease;
}
.ant-cascader-picker-clear:hover {
  color: rgba(0, 0, 0, 0.45);
}
.ant-cascader-picker:hover .ant-cascader-picker-clear {
  opacity: 1;
}
.ant-cascader-picker-arrow {
  position: absolute;
  top: 50%;
  right: 12px;
  z-index: 1;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  line-height: 12px;
  transition: transform 0.2s;
}
.ant-cascader-picker-arrow.ant-cascader-picker-arrow-expand {
  transform: rotate(180deg);
}
.ant-cascader-picker-label:hover + .ant-cascader-input {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
}
.ant-cascader-picker-small .ant-cascader-picker-clear,
.ant-cascader-picker-small .ant-cascader-picker-arrow {
  right: 8px;
}
.ant-cascader-menus {
  position: absolute;
  z-index: 1050;
  font-size: 14px;
  white-space: nowrap;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-cascader-menus ul,
.ant-cascader-menus ol {
  margin: 0;
  list-style: none;
}
.ant-cascader-menus-empty,
.ant-cascader-menus-hidden {
  display: none;
}
.ant-cascader-menus.slide-up-enter.slide-up-enter-active.ant-cascader-menus-placement-bottomLeft,
.ant-cascader-menus.slide-up-appear.slide-up-appear-active.ant-cascader-menus-placement-bottomLeft {
  animation-name: antSlideUpIn;
}
.ant-cascader-menus.slide-up-enter.slide-up-enter-active.ant-cascader-menus-placement-topLeft,
.ant-cascader-menus.slide-up-appear.slide-up-appear-active.ant-cascader-menus-placement-topLeft {
  animation-name: antSlideDownIn;
}
.ant-cascader-menus.slide-up-leave.slide-up-leave-active.ant-cascader-menus-placement-bottomLeft {
  animation-name: antSlideUpOut;
}
.ant-cascader-menus.slide-up-leave.slide-up-leave-active.ant-cascader-menus-placement-topLeft {
  animation-name: antSlideDownOut;
}
.ant-cascader-menu {
  display: inline-block;
  min-width: 111px;
  height: 180px;
  margin: 0;
  padding: 4px 0;
  overflow: auto;
  vertical-align: top;
  list-style: none;
  border-right: 1px solid #e8e8e8;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.ant-cascader-menu:first-child {
  border-radius: 4px 0 0 4px;
}
.ant-cascader-menu:last-child {
  margin-right: -1px;
  border-right-color: transparent;
  border-radius: 0 4px 4px 0;
}
.ant-cascader-menu:only-child {
  border-radius: 4px;
}
.ant-cascader-menu-item {
  padding: 5px 12px;
  line-height: 22px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-cascader-menu-item:hover {
  background: #e6fbff;
}
.ant-cascader-menu-item-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-cascader-menu-item-disabled:hover {
  background: transparent;
}
.ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled),
.ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled):hover {
  font-weight: 600;
  background-color: #fafafa;
}
.ant-cascader-menu-item-expand {
  position: relative;
  padding-right: 24px;
}
.ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon,
.ant-cascader-menu-item-loading-icon {
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  transform: scale(0.83333333) rotate(0deg);
  position: absolute;
  right: 12px;
  color: rgba(0, 0, 0, 0.45);
}
:root .ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon,
:root .ant-cascader-menu-item-loading-icon {
  font-size: 12px;
}
.ant-cascader-menu-item .ant-cascader-menu-item-keyword {
  color: #f5222d;
}
@keyframes antCheckboxEffect {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.ant-checkbox {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  top: -0.09em;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
  outline: none;
  cursor: pointer;
}
.ant-checkbox-wrapper:hover .ant-checkbox-inner,
.ant-checkbox:hover .ant-checkbox-inner,
.ant-checkbox-input:focus + .ant-checkbox-inner {
  border-color: #03a9f5;
}
.ant-checkbox-checked::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #03a9f5;
  border-radius: 2px;
  visibility: hidden;
  animation: antCheckboxEffect 0.36s ease-in-out;
  animation-fill-mode: backwards;
  content: '';
}
.ant-checkbox:hover::after,
.ant-checkbox-wrapper:hover .ant-checkbox::after {
  visibility: visible;
}
.ant-checkbox-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  border-collapse: separate;
  transition: all 0.3s;
}
.ant-checkbox-inner::after {
  position: absolute;
  top: 50%;
  left: 22%;
  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: ' ';
}
.ant-checkbox-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.ant-checkbox-checked .ant-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: ' ';
}
.ant-checkbox-checked .ant-checkbox-inner {
  background-color: #03a9f5;
  border-color: #03a9f5;
}
.ant-checkbox-disabled {
  cursor: not-allowed;
}
.ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner::after {
  border-color: rgba(0, 0, 0, 0.25);
  animation-name: none;
}
.ant-checkbox-disabled .ant-checkbox-input {
  cursor: not-allowed;
}
.ant-checkbox-disabled .ant-checkbox-inner {
  background-color: #f5f5f5;
  border-color: #d9d9d9 !important;
}
.ant-checkbox-disabled .ant-checkbox-inner::after {
  border-color: #f5f5f5;
  border-collapse: separate;
  animation-name: none;
}
.ant-checkbox-disabled + span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-checkbox-disabled:hover::after,
.ant-checkbox-wrapper:hover .ant-checkbox-disabled::after {
  visibility: hidden;
}
.ant-checkbox-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
  line-height: unset;
  cursor: pointer;
}
.ant-checkbox-wrapper.ant-checkbox-wrapper-disabled {
  cursor: not-allowed;
}
.ant-checkbox-wrapper + .ant-checkbox-wrapper {
  margin-left: 8px;
}
.ant-checkbox + span {
  padding-right: 8px;
  padding-left: 8px;
}
.ant-checkbox-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
}
.ant-checkbox-group-item {
  display: inline-block;
  margin-right: 8px;
}
.ant-checkbox-group-item:last-child {
  margin-right: 0;
}
.ant-checkbox-group-item + .ant-checkbox-group-item {
  margin-left: 0;
}
.ant-checkbox-indeterminate .ant-checkbox-inner {
  background-color: #fff;
  border-color: #d9d9d9;
}
.ant-checkbox-indeterminate .ant-checkbox-inner::after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #03a9f5;
  border: 0;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  content: ' ';
}
.ant-checkbox-indeterminate.ant-checkbox-disabled .ant-checkbox-inner::after {
  background-color: rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.25);
}
.ant-collapse {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  background-color: #fafafa;
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 4px;
}
.ant-collapse > .ant-collapse-item {
  border-bottom: 1px solid #d9d9d9;
}
.ant-collapse > .ant-collapse-item:last-child,
.ant-collapse > .ant-collapse-item:last-child > .ant-collapse-header {
  border-radius: 0 0 4px 4px;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header {
  position: relative;
  padding: 12px 16px;
  padding-left: 40px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 22px;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  left: 16px;
  display: inline-block;
  font-size: 12px;
  transform: translateY(-50%);
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow > * {
  line-height: 1;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow svg {
  display: inline-block;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow::before {
  display: none;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow-icon {
  display: block;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow svg {
  transition: transform 0.24s;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-extra {
  float: right;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header:focus {
  outline: none;
}
.ant-collapse > .ant-collapse-item.ant-collapse-no-arrow > .ant-collapse-header {
  padding-left: 12px;
}
.ant-collapse-icon-position-right > .ant-collapse-item > .ant-collapse-header {
  padding: 12px 16px;
  padding-right: 40px;
}
.ant-collapse-icon-position-right > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
  right: 16px;
  left: auto;
}
.ant-collapse-anim-active {
  transition: height 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ant-collapse-content {
  overflow: hidden;
  color: rgba(0, 0, 0, 0.65);
  background-color: #fff;
  border-top: 1px solid #d9d9d9;
}
.ant-collapse-content > .ant-collapse-content-box {
  padding: 16px;
}
.ant-collapse-content-inactive {
  display: none;
}
.ant-collapse-item:last-child > .ant-collapse-content {
  border-radius: 0 0 4px 4px;
}
.ant-collapse-borderless {
  background-color: #fafafa;
  border: 0;
}
.ant-collapse-borderless > .ant-collapse-item {
  border-bottom: 1px solid #d9d9d9;
}
.ant-collapse-borderless > .ant-collapse-item:last-child,
.ant-collapse-borderless > .ant-collapse-item:last-child .ant-collapse-header {
  border-radius: 0;
}
.ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content {
  background-color: transparent;
  border-top: 0;
}
.ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box {
  padding-top: 4px;
}
.ant-collapse .ant-collapse-item-disabled > .ant-collapse-header,
.ant-collapse .ant-collapse-item-disabled > .ant-collapse-header > .arrow {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-comment {
  position: relative;
}
.ant-comment-inner {
  display: flex;
  padding: 16px 0;
}
.ant-comment-avatar {
  position: relative;
  flex-shrink: 0;
  margin-right: 12px;
  cursor: pointer;
}
.ant-comment-avatar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.ant-comment-content {
  position: relative;
  flex: 1 1 auto;
  min-width: 1px;
  font-size: 14px;
  word-wrap: break-word;
}
.ant-comment-content-author {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 4px;
  font-size: 14px;
}
.ant-comment-content-author > a,
.ant-comment-content-author > span {
  padding-right: 8px;
  font-size: 12px;
  line-height: 18px;
}
.ant-comment-content-author-name {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  transition: color 0.3s;
}
.ant-comment-content-author-name > * {
  color: rgba(0, 0, 0, 0.45);
}
.ant-comment-content-author-name > *:hover {
  color: rgba(0, 0, 0, 0.45);
}
.ant-comment-content-author-time {
  color: #ccc;
  white-space: nowrap;
  cursor: auto;
}
.ant-comment-content-detail p {
  white-space: pre-wrap;
}
.ant-comment-actions {
  margin-top: 12px;
  padding-left: 0;
}
.ant-comment-actions > li {
  display: inline-block;
  color: rgba(0, 0, 0, 0.45);
}
.ant-comment-actions > li > span {
  padding-right: 10px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  cursor: pointer;
  transition: color 0.3s;
  user-select: none;
}
.ant-comment-actions > li > span:hover {
  color: #595959;
}
.ant-comment-nested {
  margin-left: 44px;
}
.ant-calendar-picker-container {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  z-index: 1050;
  font-family: Helvetica, Arial, sans-serif;
}
.ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-topLeft,
.ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-topRight,
.ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-topLeft,
.ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-topRight {
  animation-name: antSlideDownIn;
}
.ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-bottomLeft,
.ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-bottomRight,
.ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-bottomLeft,
.ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-bottomRight {
  animation-name: antSlideUpIn;
}
.ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-topLeft,
.ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-topRight {
  animation-name: antSlideDownOut;
}
.ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-bottomLeft,
.ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-bottomRight {
  animation-name: antSlideUpOut;
}
.ant-calendar-picker {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  outline: none;
  cursor: text;
  transition: opacity 0.3s;
}
.ant-calendar-picker-input {
  outline: none;
}
.ant-calendar-picker-input.ant-input {
  line-height: 1.5;
}
.ant-calendar-picker-input.ant-input-sm {
  padding-top: 0;
  padding-bottom: 0;
}
.ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled) {
  border-color: #2bc3ff;
}
.ant-calendar-picker:focus .ant-calendar-picker-input:not(.ant-input-disabled) {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(3, 169, 245, 0.2);
}
.ant-calendar-picker-clear,
.ant-calendar-picker-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  z-index: 1;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  font-size: 12px;
  line-height: 14px;
  transition: all 0.3s;
  user-select: none;
}
.ant-calendar-picker-clear {
  z-index: 2;
  color: rgba(0, 0, 0, 0.25);
  font-size: 14px;
  background: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}
.ant-calendar-picker-clear:hover {
  color: rgba(0, 0, 0, 0.45);
}
.ant-calendar-picker:hover .ant-calendar-picker-clear {
  opacity: 1;
  pointer-events: auto;
}
.ant-calendar-picker-icon {
  display: inline-block;
  color: rgba(0, 0, 0, 0.25);
  font-size: 14px;
  line-height: 1;
}
.ant-input-disabled + .ant-calendar-picker-icon {
  cursor: not-allowed;
}
.ant-calendar-picker-small .ant-calendar-picker-clear,
.ant-calendar-picker-small .ant-calendar-picker-icon {
  right: 8px;
}
.ant-calendar {
  position: relative;
  width: 280px;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #fff;
  border-radius: 4px;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-calendar-input-wrap {
  height: 34px;
  padding: 6px 10px;
  border-bottom: 1px solid #e8e8e8;
}
.ant-calendar-input {
  width: 100%;
  height: 22px;
  color: rgba(0, 0, 0, 0.65);
  background: #fff;
  border: 0;
  outline: 0;
  cursor: auto;
}
.ant-calendar-input::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-calendar-input:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-calendar-input::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-calendar-input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-calendar-week-number {
  width: 286px;
}
.ant-calendar-week-number-cell {
  text-align: center;
}
.ant-calendar-header {
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
  user-select: none;
}
.ant-calendar-header a:hover {
  color: #2bc3ff;
}
.ant-calendar-header .ant-calendar-century-select,
.ant-calendar-header .ant-calendar-decade-select,
.ant-calendar-header .ant-calendar-year-select,
.ant-calendar-header .ant-calendar-month-select {
  display: inline-block;
  padding: 0 2px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  line-height: 40px;
}
.ant-calendar-header .ant-calendar-century-select-arrow,
.ant-calendar-header .ant-calendar-decade-select-arrow,
.ant-calendar-header .ant-calendar-year-select-arrow,
.ant-calendar-header .ant-calendar-month-select-arrow {
  display: none;
}
.ant-calendar-header .ant-calendar-prev-century-btn,
.ant-calendar-header .ant-calendar-next-century-btn,
.ant-calendar-header .ant-calendar-prev-decade-btn,
.ant-calendar-header .ant-calendar-next-decade-btn,
.ant-calendar-header .ant-calendar-prev-month-btn,
.ant-calendar-header .ant-calendar-next-month-btn,
.ant-calendar-header .ant-calendar-prev-year-btn,
.ant-calendar-header .ant-calendar-next-year-btn {
  position: absolute;
  top: 0;
  display: inline-block;
  padding: 0 5px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 16px;
  font-family: Arial, 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Sans Serif', sans-serif;
  line-height: 40px;
}
.ant-calendar-header .ant-calendar-prev-century-btn,
.ant-calendar-header .ant-calendar-prev-decade-btn,
.ant-calendar-header .ant-calendar-prev-year-btn {
  left: 7px;
  height: 100%;
}
.ant-calendar-header .ant-calendar-prev-century-btn::before,
.ant-calendar-header .ant-calendar-prev-decade-btn::before,
.ant-calendar-header .ant-calendar-prev-year-btn::before,
.ant-calendar-header .ant-calendar-prev-century-btn::after,
.ant-calendar-header .ant-calendar-prev-decade-btn::after,
.ant-calendar-header .ant-calendar-prev-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.8);
  transition: all 0.3s;
  content: '';
}
.ant-calendar-header .ant-calendar-prev-century-btn:hover::before,
.ant-calendar-header .ant-calendar-prev-decade-btn:hover::before,
.ant-calendar-header .ant-calendar-prev-year-btn:hover::before,
.ant-calendar-header .ant-calendar-prev-century-btn:hover::after,
.ant-calendar-header .ant-calendar-prev-decade-btn:hover::after,
.ant-calendar-header .ant-calendar-prev-year-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-header .ant-calendar-prev-century-btn::after,
.ant-calendar-header .ant-calendar-prev-decade-btn::after,
.ant-calendar-header .ant-calendar-prev-year-btn::after {
  display: none;
}
.ant-calendar-header .ant-calendar-prev-century-btn::after,
.ant-calendar-header .ant-calendar-prev-decade-btn::after,
.ant-calendar-header .ant-calendar-prev-year-btn::after {
  position: relative;
  left: -3px;
  display: inline-block;
}
.ant-calendar-header .ant-calendar-next-century-btn,
.ant-calendar-header .ant-calendar-next-decade-btn,
.ant-calendar-header .ant-calendar-next-year-btn {
  right: 7px;
  height: 100%;
}
.ant-calendar-header .ant-calendar-next-century-btn::before,
.ant-calendar-header .ant-calendar-next-decade-btn::before,
.ant-calendar-header .ant-calendar-next-year-btn::before,
.ant-calendar-header .ant-calendar-next-century-btn::after,
.ant-calendar-header .ant-calendar-next-decade-btn::after,
.ant-calendar-header .ant-calendar-next-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.8);
  transition: all 0.3s;
  content: '';
}
.ant-calendar-header .ant-calendar-next-century-btn:hover::before,
.ant-calendar-header .ant-calendar-next-decade-btn:hover::before,
.ant-calendar-header .ant-calendar-next-year-btn:hover::before,
.ant-calendar-header .ant-calendar-next-century-btn:hover::after,
.ant-calendar-header .ant-calendar-next-decade-btn:hover::after,
.ant-calendar-header .ant-calendar-next-year-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-header .ant-calendar-next-century-btn::after,
.ant-calendar-header .ant-calendar-next-decade-btn::after,
.ant-calendar-header .ant-calendar-next-year-btn::after {
  display: none;
}
.ant-calendar-header .ant-calendar-next-century-btn::before,
.ant-calendar-header .ant-calendar-next-decade-btn::before,
.ant-calendar-header .ant-calendar-next-year-btn::before,
.ant-calendar-header .ant-calendar-next-century-btn::after,
.ant-calendar-header .ant-calendar-next-decade-btn::after,
.ant-calendar-header .ant-calendar-next-year-btn::after {
  transform: rotate(135deg) scale(0.8);
}
.ant-calendar-header .ant-calendar-next-century-btn::before,
.ant-calendar-header .ant-calendar-next-decade-btn::before,
.ant-calendar-header .ant-calendar-next-year-btn::before {
  position: relative;
  left: 3px;
}
.ant-calendar-header .ant-calendar-next-century-btn::after,
.ant-calendar-header .ant-calendar-next-decade-btn::after,
.ant-calendar-header .ant-calendar-next-year-btn::after {
  display: inline-block;
}
.ant-calendar-header .ant-calendar-prev-month-btn {
  left: 29px;
  height: 100%;
}
.ant-calendar-header .ant-calendar-prev-month-btn::before,
.ant-calendar-header .ant-calendar-prev-month-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.8);
  transition: all 0.3s;
  content: '';
}
.ant-calendar-header .ant-calendar-prev-month-btn:hover::before,
.ant-calendar-header .ant-calendar-prev-month-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-header .ant-calendar-prev-month-btn::after {
  display: none;
}
.ant-calendar-header .ant-calendar-next-month-btn {
  right: 29px;
  height: 100%;
}
.ant-calendar-header .ant-calendar-next-month-btn::before,
.ant-calendar-header .ant-calendar-next-month-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.8);
  transition: all 0.3s;
  content: '';
}
.ant-calendar-header .ant-calendar-next-month-btn:hover::before,
.ant-calendar-header .ant-calendar-next-month-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-header .ant-calendar-next-month-btn::after {
  display: none;
}
.ant-calendar-header .ant-calendar-next-month-btn::before,
.ant-calendar-header .ant-calendar-next-month-btn::after {
  transform: rotate(135deg) scale(0.8);
}
.ant-calendar-body {
  padding: 8px 12px;
}
.ant-calendar table {
  width: 100%;
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
}
.ant-calendar table,
.ant-calendar th,
.ant-calendar td {
  text-align: center;
  border: 0;
}
.ant-calendar-calendar-table {
  margin-bottom: 0;
  border-spacing: 0;
}
.ant-calendar-column-header {
  width: 33px;
  padding: 6px 0;
  line-height: 18px;
  text-align: center;
}
.ant-calendar-column-header .ant-calendar-column-header-inner {
  display: block;
  font-weight: normal;
}
.ant-calendar-week-number-header .ant-calendar-column-header-inner {
  display: none;
}
.ant-calendar-cell {
  height: 30px;
  padding: 3px 0;
}
.ant-calendar-date {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 auto;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  line-height: 22px;
  text-align: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background 0.3s ease;
}
.ant-calendar-date-panel {
  position: relative;
  outline: none;
}
.ant-calendar-date:hover {
  background: #e6fbff;
  cursor: pointer;
}
.ant-calendar-date:active {
  color: #fff;
  background: #2bc3ff;
}
.ant-calendar-today .ant-calendar-date {
  color: #03a9f5;
  font-weight: bold;
  border-color: #03a9f5;
}
.ant-calendar-selected-day .ant-calendar-date {
  background: #a6efff;
}
.ant-calendar-last-month-cell .ant-calendar-date,
.ant-calendar-next-month-btn-day .ant-calendar-date,
.ant-calendar-last-month-cell .ant-calendar-date:hover,
.ant-calendar-next-month-btn-day .ant-calendar-date:hover {
  color: rgba(0, 0, 0, 0.25);
  background: transparent;
  border-color: transparent;
}
.ant-calendar-disabled-cell .ant-calendar-date {
  position: relative;
  width: auto;
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: not-allowed;
}
.ant-calendar-disabled-cell .ant-calendar-date:hover {
  background: #f5f5f5;
}
.ant-calendar-disabled-cell.ant-calendar-selected-day .ant-calendar-date::before {
  position: absolute;
  top: -1px;
  left: 5px;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  content: '';
}
.ant-calendar-disabled-cell.ant-calendar-today .ant-calendar-date {
  position: relative;
  padding-right: 5px;
  padding-left: 5px;
}
.ant-calendar-disabled-cell.ant-calendar-today .ant-calendar-date::before {
  position: absolute;
  top: -1px;
  left: 5px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  content: ' ';
}
.ant-calendar-disabled-cell-first-of-row .ant-calendar-date {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ant-calendar-disabled-cell-last-of-row .ant-calendar-date {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.ant-calendar-footer {
  padding: 0 12px;
  line-height: 38px;
  border-top: 1px solid #e8e8e8;
}
.ant-calendar-footer:empty {
  border-top: 0;
}
.ant-calendar-footer-btn {
  display: block;
  text-align: center;
}
.ant-calendar-footer-extra {
  text-align: left;
}
.ant-calendar .ant-calendar-today-btn,
.ant-calendar .ant-calendar-clear-btn {
  display: inline-block;
  margin: 0 0 0 8px;
  text-align: center;
}
.ant-calendar .ant-calendar-today-btn-disabled,
.ant-calendar .ant-calendar-clear-btn-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-calendar .ant-calendar-today-btn:only-child,
.ant-calendar .ant-calendar-clear-btn:only-child {
  margin: 0;
}
.ant-calendar .ant-calendar-clear-btn {
  position: absolute;
  top: 7px;
  right: 5px;
  display: none;
  width: 20px;
  height: 20px;
  margin: 0;
  overflow: hidden;
  line-height: 20px;
  text-align: center;
  text-indent: -76px;
}
.ant-calendar .ant-calendar-clear-btn::after {
  display: inline-block;
  width: 20px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 14px;
  line-height: 1;
  text-indent: 43px;
  transition: color 0.3s ease;
}
.ant-calendar .ant-calendar-clear-btn:hover::after {
  color: rgba(0, 0, 0, 0.45);
}
.ant-calendar .ant-calendar-ok-btn {
  position: relative;
  display: inline-block;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  background-image: none;
  border: 1px solid transparent;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  user-select: none;
  touch-action: manipulation;
  height: 32px;
  padding: 0 15px;
  color: #fff;
  background-color: #03a9f5;
  border-color: #03a9f5;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
  height: 24px;
  padding: 0 7px;
  font-size: 14px;
  border-radius: 4px;
  line-height: 22px;
}
.ant-calendar .ant-calendar-ok-btn > .anticon {
  line-height: 1;
}
.ant-calendar .ant-calendar-ok-btn,
.ant-calendar .ant-calendar-ok-btn:active,
.ant-calendar .ant-calendar-ok-btn:focus {
  outline: 0;
}
.ant-calendar .ant-calendar-ok-btn:not([disabled]):hover {
  text-decoration: none;
}
.ant-calendar .ant-calendar-ok-btn:not([disabled]):active {
  outline: 0;
  box-shadow: none;
}
.ant-calendar .ant-calendar-ok-btn.disabled,
.ant-calendar .ant-calendar-ok-btn[disabled] {
  cursor: not-allowed;
}
.ant-calendar .ant-calendar-ok-btn.disabled > *,
.ant-calendar .ant-calendar-ok-btn[disabled] > * {
  pointer-events: none;
}
.ant-calendar .ant-calendar-ok-btn-lg {
  height: 40px;
  padding: 0 15px;
  font-size: 16px;
  border-radius: 4px;
}
.ant-calendar .ant-calendar-ok-btn-sm {
  height: 24px;
  padding: 0 7px;
  font-size: 14px;
  border-radius: 4px;
}
.ant-calendar .ant-calendar-ok-btn > a:only-child {
  color: currentColor;
}
.ant-calendar .ant-calendar-ok-btn > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-calendar .ant-calendar-ok-btn:hover,
.ant-calendar .ant-calendar-ok-btn:focus {
  color: #fff;
  background-color: #2bc3ff;
  border-color: #2bc3ff;
}
.ant-calendar .ant-calendar-ok-btn:hover > a:only-child,
.ant-calendar .ant-calendar-ok-btn:focus > a:only-child {
  color: currentColor;
}
.ant-calendar .ant-calendar-ok-btn:hover > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-calendar .ant-calendar-ok-btn:active,
.ant-calendar .ant-calendar-ok-btn.active {
  color: #fff;
  background-color: #0086cf;
  border-color: #0086cf;
}
.ant-calendar .ant-calendar-ok-btn:active > a:only-child,
.ant-calendar .ant-calendar-ok-btn.active > a:only-child {
  color: currentColor;
}
.ant-calendar .ant-calendar-ok-btn:active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-calendar .ant-calendar-ok-btn-disabled,
.ant-calendar .ant-calendar-ok-btn.disabled,
.ant-calendar .ant-calendar-ok-btn[disabled],
.ant-calendar .ant-calendar-ok-btn-disabled:hover,
.ant-calendar .ant-calendar-ok-btn.disabled:hover,
.ant-calendar .ant-calendar-ok-btn[disabled]:hover,
.ant-calendar .ant-calendar-ok-btn-disabled:focus,
.ant-calendar .ant-calendar-ok-btn.disabled:focus,
.ant-calendar .ant-calendar-ok-btn[disabled]:focus,
.ant-calendar .ant-calendar-ok-btn-disabled:active,
.ant-calendar .ant-calendar-ok-btn.disabled:active,
.ant-calendar .ant-calendar-ok-btn[disabled]:active,
.ant-calendar .ant-calendar-ok-btn-disabled.active,
.ant-calendar .ant-calendar-ok-btn.disabled.active,
.ant-calendar .ant-calendar-ok-btn[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  box-shadow: none;
}
.ant-calendar .ant-calendar-ok-btn-disabled > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child,
.ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child,
.ant-calendar .ant-calendar-ok-btn-disabled:focus > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child,
.ant-calendar .ant-calendar-ok-btn-disabled:active > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child,
.ant-calendar .ant-calendar-ok-btn-disabled.active > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child {
  color: currentColor;
}
.ant-calendar .ant-calendar-ok-btn-disabled > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn-disabled:focus > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn-disabled:active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn-disabled.active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-calendar .ant-calendar-ok-btn-disabled,
.ant-calendar .ant-calendar-ok-btn.disabled,
.ant-calendar .ant-calendar-ok-btn[disabled],
.ant-calendar .ant-calendar-ok-btn-disabled:hover,
.ant-calendar .ant-calendar-ok-btn.disabled:hover,
.ant-calendar .ant-calendar-ok-btn[disabled]:hover,
.ant-calendar .ant-calendar-ok-btn-disabled:focus,
.ant-calendar .ant-calendar-ok-btn.disabled:focus,
.ant-calendar .ant-calendar-ok-btn[disabled]:focus,
.ant-calendar .ant-calendar-ok-btn-disabled:active,
.ant-calendar .ant-calendar-ok-btn.disabled:active,
.ant-calendar .ant-calendar-ok-btn[disabled]:active,
.ant-calendar .ant-calendar-ok-btn-disabled.active,
.ant-calendar .ant-calendar-ok-btn.disabled.active,
.ant-calendar .ant-calendar-ok-btn[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  box-shadow: none;
}
.ant-calendar .ant-calendar-ok-btn-disabled > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child,
.ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child,
.ant-calendar .ant-calendar-ok-btn-disabled:focus > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child,
.ant-calendar .ant-calendar-ok-btn-disabled:active > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child,
.ant-calendar .ant-calendar-ok-btn-disabled.active > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child {
  color: currentColor;
}
.ant-calendar .ant-calendar-ok-btn-disabled > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn-disabled:focus > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn-disabled:active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn-disabled.active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-calendar-range-picker-input {
  width: 44%;
  height: 99%;
  text-align: center;
  background-color: transparent;
  border: 0;
  outline: 0;
}
.ant-calendar-range-picker-input::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-calendar-range-picker-input:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-calendar-range-picker-input::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-calendar-range-picker-input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-calendar-range-picker-input[disabled] {
  cursor: not-allowed;
}
.ant-calendar-range-picker-separator {
  display: inline-block;
  min-width: 10px;
  height: 100%;
  color: rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  text-align: center;
  vertical-align: top;
  pointer-events: none;
}
.ant-calendar-range {
  width: 552px;
  overflow: hidden;
}
.ant-calendar-range .ant-calendar-date-panel::after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  content: '.';
}
.ant-calendar-range-part {
  position: relative;
  width: 50%;
}
.ant-calendar-range-left {
  float: left;
}
.ant-calendar-range-left .ant-calendar-time-picker-inner {
  border-right: 1px solid #e8e8e8;
}
.ant-calendar-range-right {
  float: right;
}
.ant-calendar-range-right .ant-calendar-time-picker-inner {
  border-left: 1px solid #e8e8e8;
}
.ant-calendar-range-middle {
  position: absolute;
  left: 50%;
  z-index: 1;
  height: 34px;
  margin: 1px 0 0 0;
  padding: 0 200px 0 0;
  color: rgba(0, 0, 0, 0.45);
  line-height: 34px;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}
.ant-calendar-range-right .ant-calendar-date-input-wrap {
  margin-left: -90px;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-range-middle {
  padding: 0 10px 0 0;
  transform: translateX(-50%);
}
.ant-calendar-range .ant-calendar-today :not(.ant-calendar-disabled-cell) :not(.ant-calendar-last-month-cell) :not(.ant-calendar-next-month-btn-day) .ant-calendar-date {
  color: #03a9f5;
  background: #a6efff;
  border-color: #03a9f5;
}
.ant-calendar-range .ant-calendar-selected-start-date .ant-calendar-date,
.ant-calendar-range .ant-calendar-selected-end-date .ant-calendar-date {
  color: #fff;
  background: #03a9f5;
  border: 1px solid transparent;
}
.ant-calendar-range .ant-calendar-selected-start-date .ant-calendar-date:hover,
.ant-calendar-range .ant-calendar-selected-end-date .ant-calendar-date:hover {
  background: #03a9f5;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-range-right .ant-calendar-date-input-wrap {
  margin-left: 0;
}
.ant-calendar-range .ant-calendar-input-wrap {
  position: relative;
  height: 34px;
}
.ant-calendar-range .ant-calendar-input,
.ant-calendar-range .ant-calendar-time-picker-input {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 32px;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  background-image: none;
  border: 1px solid #EAEAEA;
  border-radius: 4px;
  transition: all 0.3s;
  height: 24px;
  padding-right: 0;
  padding-left: 0;
  line-height: 24px;
  border: 0;
  box-shadow: none;
}
.ant-calendar-range .ant-calendar-input::-moz-placeholder,
.ant-calendar-range .ant-calendar-time-picker-input::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-calendar-range .ant-calendar-input:-ms-input-placeholder,
.ant-calendar-range .ant-calendar-time-picker-input:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-calendar-range .ant-calendar-input::-webkit-input-placeholder,
.ant-calendar-range .ant-calendar-time-picker-input::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-calendar-range .ant-calendar-input:placeholder-shown,
.ant-calendar-range .ant-calendar-time-picker-input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-calendar-range .ant-calendar-input:hover,
.ant-calendar-range .ant-calendar-time-picker-input:hover {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
}
.ant-calendar-range .ant-calendar-input:focus,
.ant-calendar-range .ant-calendar-time-picker-input:focus {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(3, 169, 245, 0.2);
}
.ant-calendar-range .ant-calendar-input-disabled,
.ant-calendar-range .ant-calendar-time-picker-input-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-calendar-range .ant-calendar-input-disabled:hover,
.ant-calendar-range .ant-calendar-time-picker-input-disabled:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
.ant-calendar-range .ant-calendar-input[disabled],
.ant-calendar-range .ant-calendar-time-picker-input[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-calendar-range .ant-calendar-input[disabled]:hover,
.ant-calendar-range .ant-calendar-time-picker-input[disabled]:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
textarea.ant-calendar-range .ant-calendar-input,
textarea.ant-calendar-range .ant-calendar-time-picker-input {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}
.ant-calendar-range .ant-calendar-input-lg,
.ant-calendar-range .ant-calendar-time-picker-input-lg {
  height: 40px;
  padding: 6px 11px;
  font-size: 16px;
}
.ant-calendar-range .ant-calendar-input-sm,
.ant-calendar-range .ant-calendar-time-picker-input-sm {
  height: 24px;
  padding: 1px 7px;
}
.ant-calendar-range .ant-calendar-input:focus,
.ant-calendar-range .ant-calendar-time-picker-input:focus {
  box-shadow: none;
}
.ant-calendar-range .ant-calendar-time-picker-icon {
  display: none;
}
.ant-calendar-range.ant-calendar-week-number {
  width: 574px;
}
.ant-calendar-range.ant-calendar-week-number .ant-calendar-range-part {
  width: 286px;
}
.ant-calendar-range .ant-calendar-year-panel,
.ant-calendar-range .ant-calendar-month-panel,
.ant-calendar-range .ant-calendar-decade-panel {
  top: 34px;
}
.ant-calendar-range .ant-calendar-month-panel .ant-calendar-year-panel {
  top: 0;
}
.ant-calendar-range .ant-calendar-decade-panel-table,
.ant-calendar-range .ant-calendar-year-panel-table,
.ant-calendar-range .ant-calendar-month-panel-table {
  height: 208px;
}
.ant-calendar-range .ant-calendar-in-range-cell {
  position: relative;
  border-radius: 0;
}
.ant-calendar-range .ant-calendar-in-range-cell > div {
  position: relative;
  z-index: 1;
}
.ant-calendar-range .ant-calendar-in-range-cell::before {
  position: absolute;
  top: 4px;
  right: 0;
  bottom: 4px;
  left: 0;
  display: block;
  background: #e6fbff;
  border: 0;
  border-radius: 0;
  content: '';
}
.ant-calendar-range .ant-calendar-footer-extra {
  float: left;
}
div.ant-calendar-range-quick-selector {
  text-align: left;
}
div.ant-calendar-range-quick-selector > a {
  margin-right: 8px;
}
.ant-calendar-range .ant-calendar-header,
.ant-calendar-range .ant-calendar-month-panel-header,
.ant-calendar-range .ant-calendar-year-panel-header,
.ant-calendar-range .ant-calendar-decade-panel-header {
  border-bottom: 0;
}
.ant-calendar-range .ant-calendar-body,
.ant-calendar-range .ant-calendar-month-panel-body,
.ant-calendar-range .ant-calendar-year-panel-body,
.ant-calendar-range .ant-calendar-decade-panel-body {
  border-top: 1px solid #e8e8e8;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker {
  top: 68px;
  z-index: 2;
  width: 100%;
  height: 207px;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-panel {
  height: 267px;
  margin-top: -34px;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-inner {
  height: 100%;
  padding-top: 40px;
  background: none;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-combobox {
  display: inline-block;
  height: 100%;
  background-color: #fff;
  border-top: 1px solid #e8e8e8;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-select {
  height: 100%;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-select ul {
  max-height: 100%;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn {
  margin-right: 8px;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-today-btn {
  height: 22px;
  margin: 8px 12px;
  line-height: 22px;
}
.ant-calendar-range-with-ranges.ant-calendar-time .ant-calendar-time-picker {
  height: 233px;
}
.ant-calendar-range.ant-calendar-show-time-picker .ant-calendar-body {
  border-top-color: transparent;
}
.ant-calendar-time-picker {
  position: absolute;
  top: 40px;
  width: 100%;
  background-color: #fff;
}
.ant-calendar-time-picker-panel {
  position: absolute;
  z-index: 1050;
  width: 100%;
}
.ant-calendar-time-picker-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  outline: none;
}
.ant-calendar-time-picker-combobox {
  width: 100%;
}
.ant-calendar-time-picker-column-1,
.ant-calendar-time-picker-column-1 .ant-calendar-time-picker-select {
  width: 100%;
}
.ant-calendar-time-picker-column-2 .ant-calendar-time-picker-select {
  width: 50%;
}
.ant-calendar-time-picker-column-3 .ant-calendar-time-picker-select {
  width: 33.33%;
}
.ant-calendar-time-picker-column-4 .ant-calendar-time-picker-select {
  width: 25%;
}
.ant-calendar-time-picker-input-wrap {
  display: none;
}
.ant-calendar-time-picker-select {
  position: relative;
  float: left;
  height: 226px;
  overflow: hidden;
  font-size: 14px;
  border-right: 1px solid #e8e8e8;
}
.ant-calendar-time-picker-select:hover {
  overflow-y: auto;
}
.ant-calendar-time-picker-select:first-child {
  margin-left: 0;
  border-left: 0;
}
.ant-calendar-time-picker-select:last-child {
  border-right: 0;
}
.ant-calendar-time-picker-select ul {
  width: 100%;
  max-height: 206px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-calendar-time-picker-select li {
  width: 100%;
  height: 24px;
  margin: 0;
  line-height: 24px;
  text-align: center;
  list-style: none;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
}
.ant-calendar-time-picker-select li:last-child::after {
  display: block;
  height: 202px;
  content: '';
}
.ant-calendar-time-picker-select li:hover {
  background: #e6fbff;
}
.ant-calendar-time-picker-select li:focus {
  color: #03a9f5;
  font-weight: 600;
  outline: none;
}
li.ant-calendar-time-picker-select-option-selected {
  font-weight: 600;
  background: #f5f5f5;
}
li.ant-calendar-time-picker-select-option-disabled {
  color: rgba(0, 0, 0, 0.25);
}
li.ant-calendar-time-picker-select-option-disabled:hover {
  background: transparent;
  cursor: not-allowed;
}
.ant-calendar-time .ant-calendar-day-select {
  display: inline-block;
  padding: 0 2px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  line-height: 34px;
}
.ant-calendar-time .ant-calendar-footer {
  position: relative;
  height: auto;
}
.ant-calendar-time .ant-calendar-footer-btn {
  text-align: right;
}
.ant-calendar-time .ant-calendar-footer .ant-calendar-today-btn {
  float: left;
  margin: 0;
}
.ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn {
  display: inline-block;
  margin-right: 8px;
}
.ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn-disabled {
  color: rgba(0, 0, 0, 0.25);
}
.ant-calendar-month-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background: #fff;
  border-radius: 4px;
  outline: none;
}
.ant-calendar-month-panel > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ant-calendar-month-panel-hidden {
  display: none;
}
.ant-calendar-month-panel-header {
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
  user-select: none;
  position: relative;
}
.ant-calendar-month-panel-header a:hover {
  color: #2bc3ff;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-century-select,
.ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select,
.ant-calendar-month-panel-header .ant-calendar-month-panel-year-select,
.ant-calendar-month-panel-header .ant-calendar-month-panel-month-select {
  display: inline-block;
  padding: 0 2px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  line-height: 40px;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-century-select-arrow,
.ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select-arrow,
.ant-calendar-month-panel-header .ant-calendar-month-panel-year-select-arrow,
.ant-calendar-month-panel-header .ant-calendar-month-panel-month-select-arrow {
  display: none;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn {
  position: absolute;
  top: 0;
  display: inline-block;
  padding: 0 5px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 16px;
  font-family: Arial, 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Sans Serif', sans-serif;
  line-height: 40px;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn {
  left: 7px;
  height: 100%;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.8);
  transition: all 0.3s;
  content: '';
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn:hover::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn:hover::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn:hover::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn:hover::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn:hover::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn::after {
  display: none;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn::after {
  position: relative;
  left: -3px;
  display: inline-block;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn {
  right: 7px;
  height: 100%;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.8);
  transition: all 0.3s;
  content: '';
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:hover::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:hover::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:hover::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:hover::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:hover::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::after {
  display: none;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::after {
  transform: rotate(135deg) scale(0.8);
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::before {
  position: relative;
  left: 3px;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::after {
  display: inline-block;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn {
  left: 29px;
  height: 100%;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.8);
  transition: all 0.3s;
  content: '';
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn:hover::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn::after {
  display: none;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn {
  right: 29px;
  height: 100%;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.8);
  transition: all 0.3s;
  content: '';
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn:hover::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::after {
  display: none;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::after {
  transform: rotate(135deg) scale(0.8);
}
.ant-calendar-month-panel-body {
  flex: 1;
}
.ant-calendar-month-panel-footer {
  border-top: 1px solid #e8e8e8;
}
.ant-calendar-month-panel-footer .ant-calendar-footer-extra {
  padding: 0 12px;
}
.ant-calendar-month-panel-table {
  width: 100%;
  height: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month {
  color: #fff;
  background: #03a9f5;
}
.ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month:hover {
  color: #fff;
  background: #03a9f5;
}
.ant-calendar-month-panel-cell {
  text-align: center;
}
.ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month,
.ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month:hover {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  cursor: not-allowed;
}
.ant-calendar-month-panel-month {
  display: inline-block;
  height: 24px;
  margin: 0 auto;
  padding: 0 8px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 24px;
  text-align: center;
  background: transparent;
  border-radius: 2px;
  transition: background 0.3s ease;
}
.ant-calendar-month-panel-month:hover {
  background: #e6fbff;
  cursor: pointer;
}
.ant-calendar-year-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background: #fff;
  border-radius: 4px;
  outline: none;
}
.ant-calendar-year-panel > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ant-calendar-year-panel-hidden {
  display: none;
}
.ant-calendar-year-panel-header {
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
  user-select: none;
  position: relative;
}
.ant-calendar-year-panel-header a:hover {
  color: #2bc3ff;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-century-select,
.ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select,
.ant-calendar-year-panel-header .ant-calendar-year-panel-year-select,
.ant-calendar-year-panel-header .ant-calendar-year-panel-month-select {
  display: inline-block;
  padding: 0 2px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  line-height: 40px;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-century-select-arrow,
.ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select-arrow,
.ant-calendar-year-panel-header .ant-calendar-year-panel-year-select-arrow,
.ant-calendar-year-panel-header .ant-calendar-year-panel-month-select-arrow {
  display: none;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn {
  position: absolute;
  top: 0;
  display: inline-block;
  padding: 0 5px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 16px;
  font-family: Arial, 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Sans Serif', sans-serif;
  line-height: 40px;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn {
  left: 7px;
  height: 100%;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.8);
  transition: all 0.3s;
  content: '';
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn:hover::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn:hover::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn:hover::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn:hover::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn:hover::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn::after {
  display: none;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn::after {
  position: relative;
  left: -3px;
  display: inline-block;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn {
  right: 7px;
  height: 100%;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.8);
  transition: all 0.3s;
  content: '';
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:hover::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:hover::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:hover::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:hover::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:hover::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::after {
  display: none;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::after {
  transform: rotate(135deg) scale(0.8);
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::before {
  position: relative;
  left: 3px;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::after {
  display: inline-block;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn {
  left: 29px;
  height: 100%;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.8);
  transition: all 0.3s;
  content: '';
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn:hover::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn::after {
  display: none;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn {
  right: 29px;
  height: 100%;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.8);
  transition: all 0.3s;
  content: '';
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn:hover::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::after {
  display: none;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::after {
  transform: rotate(135deg) scale(0.8);
}
.ant-calendar-year-panel-body {
  flex: 1;
}
.ant-calendar-year-panel-footer {
  border-top: 1px solid #e8e8e8;
}
.ant-calendar-year-panel-footer .ant-calendar-footer-extra {
  padding: 0 12px;
}
.ant-calendar-year-panel-table {
  width: 100%;
  height: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.ant-calendar-year-panel-cell {
  text-align: center;
}
.ant-calendar-year-panel-year {
  display: inline-block;
  height: 24px;
  margin: 0 auto;
  padding: 0 8px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 24px;
  text-align: center;
  background: transparent;
  border-radius: 2px;
  transition: background 0.3s ease;
}
.ant-calendar-year-panel-year:hover {
  background: #e6fbff;
  cursor: pointer;
}
.ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year {
  color: #fff;
  background: #03a9f5;
}
.ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year:hover {
  color: #fff;
  background: #03a9f5;
}
.ant-calendar-year-panel-last-decade-cell .ant-calendar-year-panel-year,
.ant-calendar-year-panel-next-decade-cell .ant-calendar-year-panel-year {
  color: rgba(0, 0, 0, 0.25);
  user-select: none;
}
.ant-calendar-decade-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 4px;
  outline: none;
}
.ant-calendar-decade-panel-hidden {
  display: none;
}
.ant-calendar-decade-panel-header {
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
  user-select: none;
  position: relative;
}
.ant-calendar-decade-panel-header a:hover {
  color: #2bc3ff;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-century-select,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-decade-select,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-year-select,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-month-select {
  display: inline-block;
  padding: 0 2px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  line-height: 40px;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-century-select-arrow,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-decade-select-arrow,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-year-select-arrow,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-month-select-arrow {
  display: none;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn {
  position: absolute;
  top: 0;
  display: inline-block;
  padding: 0 5px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 16px;
  font-family: Arial, 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Sans Serif', sans-serif;
  line-height: 40px;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn {
  left: 7px;
  height: 100%;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.8);
  transition: all 0.3s;
  content: '';
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn:hover::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn:hover::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn:hover::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn:hover::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn:hover::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn::after {
  display: none;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn::after {
  position: relative;
  left: -3px;
  display: inline-block;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn {
  right: 7px;
  height: 100%;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.8);
  transition: all 0.3s;
  content: '';
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:hover::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:hover::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:hover::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:hover::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:hover::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::after {
  display: none;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::after {
  transform: rotate(135deg) scale(0.8);
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::before {
  position: relative;
  left: 3px;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::after {
  display: inline-block;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn {
  left: 29px;
  height: 100%;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.8);
  transition: all 0.3s;
  content: '';
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn:hover::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn::after {
  display: none;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn {
  right: 29px;
  height: 100%;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.8);
  transition: all 0.3s;
  content: '';
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn:hover::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::after {
  display: none;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::after {
  transform: rotate(135deg) scale(0.8);
}
.ant-calendar-decade-panel-body {
  flex: 1;
}
.ant-calendar-decade-panel-footer {
  border-top: 1px solid #e8e8e8;
}
.ant-calendar-decade-panel-footer .ant-calendar-footer-extra {
  padding: 0 12px;
}
.ant-calendar-decade-panel-table {
  width: 100%;
  height: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.ant-calendar-decade-panel-cell {
  white-space: nowrap;
  text-align: center;
}
.ant-calendar-decade-panel-decade {
  display: inline-block;
  height: 24px;
  margin: 0 auto;
  padding: 0 6px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 24px;
  text-align: center;
  background: transparent;
  border-radius: 2px;
  transition: background 0.3s ease;
}
.ant-calendar-decade-panel-decade:hover {
  background: #e6fbff;
  cursor: pointer;
}
.ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade {
  color: #fff;
  background: #03a9f5;
}
.ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade:hover {
  color: #fff;
  background: #03a9f5;
}
.ant-calendar-decade-panel-last-century-cell .ant-calendar-decade-panel-decade,
.ant-calendar-decade-panel-next-century-cell .ant-calendar-decade-panel-decade {
  color: rgba(0, 0, 0, 0.25);
  user-select: none;
}
.ant-calendar-month .ant-calendar-month-header-wrap {
  position: relative;
  height: 288px;
}
.ant-calendar-month .ant-calendar-month-panel,
.ant-calendar-month .ant-calendar-year-panel {
  top: 0;
  height: 100%;
}
.ant-calendar-week-number-cell {
  opacity: 0.5;
}
.ant-calendar-week-number .ant-calendar-body tr {
  cursor: pointer;
  transition: all 0.3s;
}
.ant-calendar-week-number .ant-calendar-body tr:hover {
  background: #e6fbff;
}
.ant-calendar-week-number .ant-calendar-body tr.ant-calendar-active-week {
  font-weight: bold;
  background: #a6efff;
}
.ant-calendar-week-number .ant-calendar-body tr .ant-calendar-selected-day .ant-calendar-date,
.ant-calendar-week-number .ant-calendar-body tr .ant-calendar-selected-day:hover .ant-calendar-date {
  color: rgba(0, 0, 0, 0.65);
  background: transparent;
}
.ant-descriptions-title {
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
}
.ant-descriptions-view {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}
.ant-descriptions-view table {
  width: 100%;
  table-layout: fixed;
}
.ant-descriptions-row > th,
.ant-descriptions-row > td {
  padding-bottom: 16px;
}
.ant-descriptions-row:last-child {
  border-bottom: none;
}
.ant-descriptions-item-label {
  color: rgba(0, 0, 0, 0.85);
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5;
}
.ant-descriptions-item-label::after {
  position: relative;
  top: -0.5px;
  margin: 0 8px 0 2px;
  content: ' ';
}
.ant-descriptions-item-colon::after {
  content: ':';
}
.ant-descriptions-item-no-label::after {
  margin: 0;
  content: '';
}
.ant-descriptions-item-content {
  display: table-cell;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
}
.ant-descriptions-item {
  padding-bottom: 0;
}
.ant-descriptions-item > span {
  display: inline-block;
}
.ant-descriptions-middle .ant-descriptions-row > th,
.ant-descriptions-middle .ant-descriptions-row > td {
  padding-bottom: 12px;
}
.ant-descriptions-small .ant-descriptions-row > th,
.ant-descriptions-small .ant-descriptions-row > td {
  padding-bottom: 8px;
}
.ant-descriptions-bordered .ant-descriptions-view {
  border: 1px solid #e8e8e8;
}
.ant-descriptions-bordered .ant-descriptions-view > table {
  table-layout: auto;
}
.ant-descriptions-bordered .ant-descriptions-item-label,
.ant-descriptions-bordered .ant-descriptions-item-content {
  padding: 16px 24px;
  border-right: 1px solid #e8e8e8;
}
.ant-descriptions-bordered .ant-descriptions-item-label:last-child,
.ant-descriptions-bordered .ant-descriptions-item-content:last-child {
  border-right: none;
}
.ant-descriptions-bordered .ant-descriptions-item-label {
  background-color: #fafafa;
}
.ant-descriptions-bordered .ant-descriptions-item-label::after {
  display: none;
}
.ant-descriptions-bordered .ant-descriptions-row {
  border-bottom: 1px solid #e8e8e8;
}
.ant-descriptions-bordered .ant-descriptions-row:last-child {
  border-bottom: none;
}
.ant-descriptions-bordered.ant-descriptions-middle .ant-descriptions-item-label,
.ant-descriptions-bordered.ant-descriptions-middle .ant-descriptions-item-content {
  padding: 12px 24px;
}
.ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label,
.ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-content {
  padding: 8px 16px;
}
.ant-divider {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  background: #e8e8e8;
}
.ant-divider,
.ant-divider-vertical {
  position: relative;
  top: -0.06em;
  display: inline-block;
  width: 1px;
  height: 0.9em;
  margin: 0 8px;
  vertical-align: middle;
}
.ant-divider-horizontal {
  display: block;
  clear: both;
  width: 100%;
  min-width: 100%;
  height: 1px;
  margin: 24px 0;
}
.ant-divider-horizontal.ant-divider-with-text-center,
.ant-divider-horizontal.ant-divider-with-text-left,
.ant-divider-horizontal.ant-divider-with-text-right {
  display: table;
  margin: 16px 0;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  text-align: center;
  background: transparent;
}
.ant-divider-horizontal.ant-divider-with-text-center::before,
.ant-divider-horizontal.ant-divider-with-text-left::before,
.ant-divider-horizontal.ant-divider-with-text-right::before,
.ant-divider-horizontal.ant-divider-with-text-center::after,
.ant-divider-horizontal.ant-divider-with-text-left::after,
.ant-divider-horizontal.ant-divider-with-text-right::after {
  position: relative;
  top: 50%;
  display: table-cell;
  width: 50%;
  border-top: 1px solid #e8e8e8;
  transform: translateY(50%);
  content: '';
}
.ant-divider-horizontal.ant-divider-with-text-left .ant-divider-inner-text,
.ant-divider-horizontal.ant-divider-with-text-right .ant-divider-inner-text {
  display: inline-block;
  padding: 0 10px;
}
.ant-divider-horizontal.ant-divider-with-text-left::before {
  top: 50%;
  width: 5%;
}
.ant-divider-horizontal.ant-divider-with-text-left::after {
  top: 50%;
  width: 95%;
}
.ant-divider-horizontal.ant-divider-with-text-right::before {
  top: 50%;
  width: 95%;
}
.ant-divider-horizontal.ant-divider-with-text-right::after {
  top: 50%;
  width: 5%;
}
.ant-divider-inner-text {
  display: inline-block;
  padding: 0 24px;
}
.ant-divider-dashed {
  background: none;
  border-color: #e8e8e8;
  border-style: dashed;
  border-width: 1px 0 0;
}
.ant-divider-horizontal.ant-divider-with-text-center.ant-divider-dashed,
.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-dashed,
.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-dashed {
  border-top: 0;
}
.ant-divider-horizontal.ant-divider-with-text-center.ant-divider-dashed::before,
.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-dashed::before,
.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-dashed::before,
.ant-divider-horizontal.ant-divider-with-text-center.ant-divider-dashed::after,
.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-dashed::after,
.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-dashed::after {
  border-style: dashed none none;
}
.ant-divider-vertical.ant-divider-dashed {
  border-width: 0 0 0 1px;
}
.ant-drawer {
  position: fixed;
  z-index: 1000;
  width: 0%;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1), height 0s ease 0.3s, width 0s ease 0.3s;
}
.ant-drawer > * {
  transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1), box-shadow 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
}
.ant-drawer-content-wrapper {
  position: absolute;
}
.ant-drawer .ant-drawer-content {
  width: 100%;
  height: 100%;
}
.ant-drawer-left,
.ant-drawer-right {
  top: 0;
  width: 0%;
  height: 100%;
}
.ant-drawer-left .ant-drawer-content-wrapper,
.ant-drawer-right .ant-drawer-content-wrapper {
  height: 100%;
}
.ant-drawer-left.ant-drawer-open,
.ant-drawer-right.ant-drawer-open {
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
}
.ant-drawer-left.ant-drawer-open.no-mask,
.ant-drawer-right.ant-drawer-open.no-mask {
  width: 0%;
}
.ant-drawer-left.ant-drawer-open .ant-drawer-content-wrapper {
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
}
.ant-drawer-right {
  right: 0;
}
.ant-drawer-right .ant-drawer-content-wrapper {
  right: 0;
}
.ant-drawer-right.ant-drawer-open .ant-drawer-content-wrapper {
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
}
.ant-drawer-right.ant-drawer-open.no-mask {
  right: 1px;
  transform: translateX(1px);
}
.ant-drawer-top,
.ant-drawer-bottom {
  left: 0;
  width: 100%;
  height: 0%;
}
.ant-drawer-top .ant-drawer-content-wrapper,
.ant-drawer-bottom .ant-drawer-content-wrapper {
  width: 100%;
}
.ant-drawer-top.ant-drawer-open,
.ant-drawer-bottom.ant-drawer-open {
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
}
.ant-drawer-top.ant-drawer-open.no-mask,
.ant-drawer-bottom.ant-drawer-open.no-mask {
  height: 0%;
}
.ant-drawer-top {
  top: 0;
}
.ant-drawer-top.ant-drawer-open .ant-drawer-content-wrapper {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-drawer-bottom {
  bottom: 0;
}
.ant-drawer-bottom .ant-drawer-content-wrapper {
  bottom: 0;
}
.ant-drawer-bottom.ant-drawer-open .ant-drawer-content-wrapper {
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}
.ant-drawer-bottom.ant-drawer-open.no-mask {
  bottom: 1px;
  transform: translateY(1px);
}
.ant-drawer.ant-drawer-open .ant-drawer-mask {
  height: 100%;
  opacity: 1;
  transition: none;
  animation: antdDrawerFadeIn 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
}
.ant-drawer-title {
  margin: 0;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}
.ant-drawer-content {
  position: relative;
  z-index: 1;
  overflow: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
}
.ant-drawer-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: block;
  width: 56px;
  height: 56px;
  padding: 0;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 700;
  font-size: 16px;
  font-style: normal;
  line-height: 56px;
  text-align: center;
  text-transform: none;
  text-decoration: none;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  transition: color 0.3s;
  text-rendering: auto;
}
.ant-drawer-close:focus,
.ant-drawer-close:hover {
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
}
.ant-drawer-header {
  position: relative;
  padding: 16px 24px;
  color: rgba(0, 0, 0, 0.65);
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 4px 4px 0 0;
}
.ant-drawer-header-no-title {
  color: rgba(0, 0, 0, 0.65);
  background: #fff;
}
.ant-drawer-body {
  padding: 24px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}
.ant-drawer-wrapper-body {
  height: 100%;
  overflow: auto;
}
.ant-drawer-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  filter: alpha(opacity=45);
  transition: opacity 0.3s linear, height 0s ease 0.3s;
}
.ant-drawer-open-content {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@keyframes antdDrawerFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ant-dropdown {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
  display: block;
}
.ant-dropdown::before {
  position: absolute;
  top: -7px;
  right: 0;
  bottom: -7px;
  left: -7px;
  z-index: -9999;
  opacity: 0.0001;
  content: ' ';
}
.ant-dropdown-wrap {
  position: relative;
}
.ant-dropdown-wrap .ant-btn > .anticon-down {
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  transform: scale(0.83333333) rotate(0deg);
}
:root .ant-dropdown-wrap .ant-btn > .anticon-down {
  font-size: 12px;
}
.ant-dropdown-wrap .anticon-down::before {
  transition: transform 0.2s;
}
.ant-dropdown-wrap-open .anticon-down::before {
  transform: rotate(180deg);
}
.ant-dropdown-hidden,
.ant-dropdown-menu-hidden {
  display: none;
}
.ant-dropdown-menu {
  position: relative;
  margin: 0;
  padding: 4px 0;
  text-align: left;
  list-style-type: none;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 4px;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  -webkit-transform: translate3d(0, 0, 0);
}
.ant-dropdown-menu-item-group-title {
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.45);
  transition: all 0.3s;
}
.ant-dropdown-menu-submenu-popup {
  position: absolute;
  z-index: 1050;
}
.ant-dropdown-menu-submenu-popup > .ant-dropdown-menu {
  transform-origin: 0 0;
}
.ant-dropdown-menu-submenu-popup ul,
.ant-dropdown-menu-submenu-popup li {
  list-style: none;
}
.ant-dropdown-menu-submenu-popup ul {
  margin-right: 0.3em;
  margin-left: 0.3em;
  padding: 0;
}
.ant-dropdown-menu-item,
.ant-dropdown-menu-submenu-title {
  clear: both;
  margin: 0;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-dropdown-menu-item > .anticon:first-child,
.ant-dropdown-menu-submenu-title > .anticon:first-child,
.ant-dropdown-menu-item > span > .anticon:first-child,
.ant-dropdown-menu-submenu-title > span > .anticon:first-child {
  min-width: 12px;
  margin-right: 8px;
  font-size: 12px;
}
.ant-dropdown-menu-item > a,
.ant-dropdown-menu-submenu-title > a {
  display: block;
  margin: -5px -12px;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.65);
  transition: all 0.3s;
}
.ant-dropdown-menu-item-selected,
.ant-dropdown-menu-submenu-title-selected,
.ant-dropdown-menu-item-selected > a,
.ant-dropdown-menu-submenu-title-selected > a {
  color: #03a9f5;
  background-color: #e6fbff;
}
.ant-dropdown-menu-item:hover,
.ant-dropdown-menu-submenu-title:hover {
  background-color: #e6fbff;
}
.ant-dropdown-menu-item-disabled,
.ant-dropdown-menu-submenu-title-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-dropdown-menu-item-disabled:hover,
.ant-dropdown-menu-submenu-title-disabled:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #fff;
  cursor: not-allowed;
}
.ant-dropdown-menu-item-divider,
.ant-dropdown-menu-submenu-title-divider {
  height: 1px;
  margin: 4px 0;
  overflow: hidden;
  line-height: 0;
  background-color: #e8e8e8;
}
.ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow,
.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow {
  position: absolute;
  right: 8px;
}
.ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon,
.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {
  color: rgba(0, 0, 0, 0.45);
  font-style: normal;
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  transform: scale(0.83333333) rotate(0deg);
}
:root .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon,
:root .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {
  font-size: 12px;
}
.ant-dropdown-menu-item-group-list {
  margin: 0 8px;
  padding: 0;
  list-style: none;
}
.ant-dropdown-menu-submenu-title {
  padding-right: 26px;
}
.ant-dropdown-menu-submenu-vertical {
  position: relative;
}
.ant-dropdown-menu-submenu-vertical > .ant-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 100%;
  margin-left: 4px;
  transform-origin: 0 0;
}
.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title,
.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {
  color: rgba(0, 0, 0, 0.25);
  background-color: #fff;
  cursor: not-allowed;
}
.ant-dropdown-menu-submenu-selected .ant-dropdown-menu-submenu-title {
  color: #03a9f5;
}
.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomLeft,
.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomLeft,
.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomCenter,
.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomCenter,
.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomRight,
.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomRight {
  animation-name: antSlideUpIn;
}
.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topLeft,
.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topLeft,
.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topCenter,
.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topCenter,
.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topRight,
.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topRight {
  animation-name: antSlideDownIn;
}
.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomLeft,
.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomCenter,
.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomRight {
  animation-name: antSlideUpOut;
}
.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topLeft,
.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topCenter,
.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topRight {
  animation-name: antSlideDownOut;
}
.ant-dropdown-trigger > .anticon.anticon-down,
.ant-dropdown-link > .anticon.anticon-down {
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  transform: scale(0.83333333) rotate(0deg);
}
:root .ant-dropdown-trigger > .anticon.anticon-down,
:root .ant-dropdown-link > .anticon.anticon-down {
  font-size: 12px;
}
.ant-dropdown-button {
  white-space: nowrap;
}
.ant-dropdown-button.ant-btn-group > .ant-btn:last-child:not(:first-child) {
  padding-right: 8px;
  padding-left: 8px;
}
.ant-dropdown-button .anticon.anticon-down {
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  transform: scale(0.83333333) rotate(0deg);
}
:root .ant-dropdown-button .anticon.anticon-down {
  font-size: 12px;
}
.ant-dropdown-menu-dark,
.ant-dropdown-menu-dark .ant-dropdown-menu {
  background: #001529;
}
.ant-dropdown-menu-dark .ant-dropdown-menu-item,
.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > a {
  color: rgba(255, 255, 255, 0.65);
}
.ant-dropdown-menu-dark .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow::after,
.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow::after,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > a .ant-dropdown-menu-submenu-arrow::after {
  color: rgba(255, 255, 255, 0.65);
}
.ant-dropdown-menu-dark .ant-dropdown-menu-item:hover,
.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title:hover,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > a:hover {
  color: #fff;
  background: transparent;
}
.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected,
.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected:hover,
.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected > a {
  color: #fff;
  background: #03a9f5;
}
.ant-empty {
  margin: 0 8px;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}
.ant-empty-image {
  height: 100px;
  margin-bottom: 8px;
}
.ant-empty-image img {
  height: 100%;
}
.ant-empty-image svg {
  height: 100%;
  margin: auto;
}
.ant-empty-description {
  margin: 0;
}
.ant-empty-footer {
  margin-top: 16px;
}
.ant-empty-normal {
  margin: 32px 0;
  color: rgba(0, 0, 0, 0.25);
}
.ant-empty-normal .ant-empty-image {
  height: 40px;
}
.ant-empty-small {
  margin: 8px 0;
  color: rgba(0, 0, 0, 0.25);
}
.ant-empty-small .ant-empty-image {
  height: 35px;
}
.ant-form {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
}
.ant-form legend {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  color: rgba(0, 0, 0, 0.45);
  font-size: 16px;
  line-height: inherit;
  border: 0;
  border-bottom: 1px solid #d9d9d9;
}
.ant-form label {
  font-size: 14px;
}
.ant-form input[type='search'] {
  box-sizing: border-box;
}
.ant-form input[type='radio'],
.ant-form input[type='checkbox'] {
  line-height: normal;
}
.ant-form input[type='file'] {
  display: block;
}
.ant-form input[type='range'] {
  display: block;
  width: 100%;
}
.ant-form select[multiple],
.ant-form select[size] {
  height: auto;
}
.ant-form input[type='file']:focus,
.ant-form input[type='radio']:focus,
.ant-form input[type='checkbox']:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.ant-form output {
  display: block;
  padding-top: 15px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
}
.ant-form-item-required::before {
  display: inline-block;
  margin-right: 4px;
  color: #f5222d;
  font-size: 14px;
  font-family: SimSun, sans-serif;
  line-height: 1;
  content: '*';
}
.ant-form-hide-required-mark .ant-form-item-required::before {
  display: none;
}
.ant-form-item-label > label {
  color: rgba(0, 0, 0, 0.85);
}
.ant-form-item-label > label::after {
  content: ':';
  position: relative;
  top: -0.5px;
  margin: 0 8px 0 2px;
}
.ant-form-item-label > label.ant-form-item-no-colon::after {
  content: ' ';
}
.ant-form-item {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  margin-bottom: 24px;
  vertical-align: top;
}
.ant-form-item label {
  position: relative;
}
.ant-form-item label > .anticon {
  font-size: 14px;
  vertical-align: top;
}
.ant-form-item-control {
  position: relative;
  line-height: 40px;
  zoom: 1;
}
.ant-form-item-control::before,
.ant-form-item-control::after {
  display: table;
  content: '';
}
.ant-form-item-control::after {
  clear: both;
}
.ant-form-item-children {
  position: relative;
}
.ant-form-item-with-help {
  margin-bottom: 5px;
}
.ant-form-item-label {
  display: inline-block;
  overflow: hidden;
  line-height: 39.9999px;
  white-space: nowrap;
  text-align: right;
  vertical-align: middle;
}
.ant-form-item-label-left {
  text-align: left;
}
.ant-form-item .ant-switch {
  margin: 2px 0 4px;
}
.ant-form-explain,
.ant-form-extra {
  clear: both;
  min-height: 22px;
  margin-top: -2px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ant-form-explain {
  margin-bottom: -1px;
}
.ant-form-extra {
  padding-top: 4px;
}
.ant-form-text {
  display: inline-block;
  padding-right: 8px;
}
.ant-form-split {
  display: block;
  text-align: center;
}
form .has-feedback .ant-input {
  padding-right: 30px;
}
form .has-feedback .ant-input-affix-wrapper .ant-input-suffix {
  padding-right: 18px;
}
form .has-feedback .ant-input-affix-wrapper .ant-input {
  padding-right: 49px;
}
form .has-feedback .ant-input-affix-wrapper.ant-input-affix-wrapper-input-with-clear-btn .ant-input {
  padding-right: 68px;
}
form .has-feedback > .ant-select .ant-select-arrow,
form .has-feedback > .ant-select .ant-select-selection__clear,
form .has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-arrow,
form .has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection__clear {
  right: 28px;
}
form .has-feedback > .ant-select .ant-select-selection-selected-value,
form .has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection-selected-value {
  padding-right: 42px;
}
form .has-feedback .ant-cascader-picker-arrow {
  margin-right: 17px;
}
form .has-feedback .ant-cascader-picker-clear {
  right: 28px;
}
form .has-feedback .ant-input-search:not(.ant-input-search-enter-button) .ant-input-suffix {
  right: 28px;
}
form .has-feedback .ant-calendar-picker-icon,
form .has-feedback .ant-time-picker-icon,
form .has-feedback .ant-calendar-picker-clear,
form .has-feedback .ant-time-picker-clear {
  right: 28px;
}
form .ant-mentions,
form textarea.ant-input {
  height: auto;
  margin-bottom: 4px;
}
form .ant-upload {
  background: transparent;
}
form input[type='radio'],
form input[type='checkbox'] {
  width: 14px;
  height: 14px;
}
form .ant-radio-inline,
form .ant-checkbox-inline {
  display: inline-block;
  margin-left: 8px;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}
form .ant-radio-inline:first-child,
form .ant-checkbox-inline:first-child {
  margin-left: 0;
}
form .ant-checkbox-vertical,
form .ant-radio-vertical {
  display: block;
}
form .ant-checkbox-vertical + .ant-checkbox-vertical,
form .ant-radio-vertical + .ant-radio-vertical {
  margin-left: 0;
}
form .ant-input-number + .ant-form-text {
  margin-left: 8px;
}
form .ant-input-number-handler-wrap {
  z-index: 2;
}
form .ant-select,
form .ant-cascader-picker {
  width: 100%;
}
form .ant-input-group .ant-select,
form .ant-input-group .ant-cascader-picker {
  width: auto;
}
form :not(.ant-input-group-wrapper) > .ant-input-group,
form .ant-input-group-wrapper {
  display: inline-block;
  vertical-align: middle;
}
form:not(.ant-form-vertical) :not(.ant-input-group-wrapper) > .ant-input-group,
form:not(.ant-form-vertical) .ant-input-group-wrapper {
  position: relative;
  top: -1px;
}
.ant-form-vertical .ant-form-item-label,
.ant-col-24.ant-form-item-label,
.ant-col-xl-24.ant-form-item-label {
  display: block;
  margin: 0;
  padding: 0 0 8px;
  line-height: 1.5;
  white-space: initial;
  text-align: left;
}
.ant-form-vertical .ant-form-item-label label::after,
.ant-col-24.ant-form-item-label label::after,
.ant-col-xl-24.ant-form-item-label label::after {
  display: none;
}
.ant-form-vertical .ant-form-item {
  padding-bottom: 8px;
}
.ant-form-vertical .ant-form-item-control {
  line-height: 1.5;
}
.ant-form-vertical .ant-form-explain {
  margin-top: 2px;
  margin-bottom: -5px;
}
.ant-form-vertical .ant-form-extra {
  margin-top: 2px;
  margin-bottom: -4px;
}
@media (max-width: 575px) {
  .ant-form-item-label,
  .ant-form-item-control-wrapper {
    display: block;
    width: 100%;
  }
  .ant-form-item-label {
    display: block;
    margin: 0;
    padding: 0 0 8px;
    line-height: 1.5;
    white-space: initial;
    text-align: left;
  }
  .ant-form-item-label label::after {
    display: none;
  }
  .ant-col-xs-24.ant-form-item-label {
    display: block;
    margin: 0;
    padding: 0 0 8px;
    line-height: 1.5;
    white-space: initial;
    text-align: left;
  }
  .ant-col-xs-24.ant-form-item-label label::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .ant-col-sm-24.ant-form-item-label {
    display: block;
    margin: 0;
    padding: 0 0 8px;
    line-height: 1.5;
    white-space: initial;
    text-align: left;
  }
  .ant-col-sm-24.ant-form-item-label label::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .ant-col-md-24.ant-form-item-label {
    display: block;
    margin: 0;
    padding: 0 0 8px;
    line-height: 1.5;
    white-space: initial;
    text-align: left;
  }
  .ant-col-md-24.ant-form-item-label label::after {
    display: none;
  }
}
@media (max-width: 1199px) {
  .ant-col-lg-24.ant-form-item-label {
    display: block;
    margin: 0;
    padding: 0 0 8px;
    line-height: 1.5;
    white-space: initial;
    text-align: left;
  }
  .ant-col-lg-24.ant-form-item-label label::after {
    display: none;
  }
}
@media (max-width: 1599px) {
  .ant-col-xl-24.ant-form-item-label {
    display: block;
    margin: 0;
    padding: 0 0 8px;
    line-height: 1.5;
    white-space: initial;
    text-align: left;
  }
  .ant-col-xl-24.ant-form-item-label label::after {
    display: none;
  }
}
.ant-form-inline .ant-form-item {
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 0;
}
.ant-form-inline .ant-form-item-with-help {
  margin-bottom: 24px;
}
.ant-form-inline .ant-form-item > .ant-form-item-control-wrapper,
.ant-form-inline .ant-form-item > .ant-form-item-label {
  display: inline-block;
  vertical-align: top;
}
.ant-form-inline .ant-form-text {
  display: inline-block;
}
.ant-form-inline .has-feedback {
  display: inline-block;
}
.has-success.has-feedback .ant-form-item-children-icon,
.has-warning.has-feedback .ant-form-item-children-icon,
.has-error.has-feedback .ant-form-item-children-icon,
.is-validating.has-feedback .ant-form-item-children-icon {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  width: 32px;
  height: 20px;
  margin-top: -10px;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  visibility: visible;
  animation: zoomIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  pointer-events: none;
}
.has-success.has-feedback .ant-form-item-children-icon svg,
.has-warning.has-feedback .ant-form-item-children-icon svg,
.has-error.has-feedback .ant-form-item-children-icon svg,
.is-validating.has-feedback .ant-form-item-children-icon svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.has-success.has-feedback .ant-form-item-children-icon {
  color: #52c41a;
  animation-name: diffZoomIn1 !important;
}
.has-warning .ant-form-explain,
.has-warning .ant-form-split {
  color: #faad14;
}
.has-warning .ant-input,
.has-warning .ant-input:hover {
  background-color: #fff;
  border-color: #faad14;
}
.has-warning .ant-input:focus {
  border-color: #ffc53d;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
}
.has-warning .ant-input:not([disabled]):hover {
  border-color: #faad14;
}
.has-warning .ant-calendar-picker-open .ant-calendar-picker-input {
  border-color: #ffc53d;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
}
.has-warning .ant-input-affix-wrapper .ant-input,
.has-warning .ant-input-affix-wrapper .ant-input:hover {
  background-color: #fff;
  border-color: #faad14;
}
.has-warning .ant-input-affix-wrapper .ant-input:focus {
  border-color: #ffc53d;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
}
.has-warning .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled) {
  border-color: #faad14;
}
.has-warning .ant-input-prefix {
  color: #faad14;
}
.has-warning .ant-input-group-addon {
  color: #faad14;
  background-color: #fff;
  border-color: #faad14;
}
.has-warning .has-feedback {
  color: #faad14;
}
.has-warning.has-feedback .ant-form-item-children-icon {
  color: #faad14;
  animation-name: diffZoomIn3 !important;
}
.has-warning .ant-select-selection {
  border-color: #faad14;
}
.has-warning .ant-select-selection:hover {
  border-color: #faad14;
}
.has-warning .ant-select-open .ant-select-selection,
.has-warning .ant-select-focused .ant-select-selection {
  border-color: #ffc53d;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
}
.has-warning .ant-calendar-picker-icon::after,
.has-warning .ant-time-picker-icon::after,
.has-warning .ant-picker-icon::after,
.has-warning .ant-select-arrow,
.has-warning .ant-cascader-picker-arrow {
  color: #faad14;
}
.has-warning .ant-input-number,
.has-warning .ant-time-picker-input {
  border-color: #faad14;
}
.has-warning .ant-input-number-focused,
.has-warning .ant-time-picker-input-focused,
.has-warning .ant-input-number:focus,
.has-warning .ant-time-picker-input:focus {
  border-color: #ffc53d;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
}
.has-warning .ant-input-number:not([disabled]):hover,
.has-warning .ant-time-picker-input:not([disabled]):hover {
  border-color: #faad14;
}
.has-warning .ant-cascader-picker:focus .ant-cascader-input {
  border-color: #ffc53d;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
}
.has-warning .ant-cascader-picker:hover .ant-cascader-input {
  border-color: #faad14;
}
.has-error .ant-form-explain,
.has-error .ant-form-split {
  color: #f5222d;
}
.has-error .ant-input,
.has-error .ant-input:hover {
  background-color: #fff;
  border-color: #f5222d;
}
.has-error .ant-input:focus {
  border-color: #ff4d4f;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2);
}
.has-error .ant-input:not([disabled]):hover {
  border-color: #f5222d;
}
.has-error .ant-calendar-picker-open .ant-calendar-picker-input {
  border-color: #ff4d4f;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2);
}
.has-error .ant-input-affix-wrapper .ant-input,
.has-error .ant-input-affix-wrapper .ant-input:hover {
  background-color: #fff;
  border-color: #f5222d;
}
.has-error .ant-input-affix-wrapper .ant-input:focus {
  border-color: #ff4d4f;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2);
}
.has-error .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled) {
  border-color: #f5222d;
}
.has-error .ant-input-prefix {
  color: #f5222d;
}
.has-error .ant-input-group-addon {
  color: #f5222d;
  background-color: #fff;
  border-color: #f5222d;
}
.has-error .has-feedback {
  color: #f5222d;
}
.has-error.has-feedback .ant-form-item-children-icon {
  color: #f5222d;
  animation-name: diffZoomIn2 !important;
}
.has-error .ant-select-selection {
  border-color: #f5222d;
}
.has-error .ant-select-selection:hover {
  border-color: #f5222d;
}
.has-error .ant-select-open .ant-select-selection,
.has-error .ant-select-focused .ant-select-selection {
  border-color: #ff4d4f;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2);
}
.has-error .ant-select.ant-select-auto-complete .ant-input:focus {
  border-color: #f5222d;
}
.has-error .ant-input-group-addon .ant-select-selection {
  border-color: transparent;
  box-shadow: none;
}
.has-error .ant-calendar-picker-icon::after,
.has-error .ant-time-picker-icon::after,
.has-error .ant-picker-icon::after,
.has-error .ant-select-arrow,
.has-error .ant-cascader-picker-arrow {
  color: #f5222d;
}
.has-error .ant-input-number,
.has-error .ant-time-picker-input {
  border-color: #f5222d;
}
.has-error .ant-input-number-focused,
.has-error .ant-time-picker-input-focused,
.has-error .ant-input-number:focus,
.has-error .ant-time-picker-input:focus {
  border-color: #ff4d4f;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2);
}
.has-error .ant-input-number:not([disabled]):hover,
.has-error .ant-time-picker-input:not([disabled]):hover {
  border-color: #f5222d;
}
.has-error .ant-mention-wrapper .ant-mention-editor,
.has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):hover {
  border-color: #f5222d;
}
.has-error .ant-mention-wrapper.ant-mention-active:not([disabled]) .ant-mention-editor,
.has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):focus {
  border-color: #ff4d4f;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2);
}
.has-error .ant-cascader-picker:focus .ant-cascader-input {
  border-color: #ff4d4f;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2);
}
.has-error .ant-cascader-picker:hover .ant-cascader-input {
  border-color: #f5222d;
}
.has-error .ant-transfer-list {
  border-color: #f5222d;
}
.has-error .ant-transfer-list-search:not([disabled]) {
  border-color: #EAEAEA;
}
.has-error .ant-transfer-list-search:not([disabled]):hover {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
}
.has-error .ant-transfer-list-search:not([disabled]):focus {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(3, 169, 245, 0.2);
}
.is-validating.has-feedback .ant-form-item-children-icon {
  display: inline-block;
  color: #03a9f5;
}
.ant-advanced-search-form .ant-form-item {
  margin-bottom: 24px;
}
.ant-advanced-search-form .ant-form-item-with-help {
  margin-bottom: 5px;
}
.show-help-enter,
.show-help-appear {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.show-help-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.show-help-enter.show-help-enter-active,
.show-help-appear.show-help-appear-active {
  animation-name: antShowHelpIn;
  animation-play-state: running;
}
.show-help-leave.show-help-leave-active {
  animation-name: antShowHelpOut;
  animation-play-state: running;
  pointer-events: none;
}
.show-help-enter,
.show-help-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.show-help-leave {
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
@keyframes antShowHelpIn {
  0% {
    transform: translateY(-5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes antShowHelpOut {
  to {
    transform: translateY(-5px);
    opacity: 0;
  }
}
@keyframes diffZoomIn1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes diffZoomIn2 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes diffZoomIn3 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.ant-row {
  position: relative;
  height: auto;
  margin-right: 0;
  margin-left: 0;
  zoom: 1;
  display: block;
  box-sizing: border-box;
}
.ant-row::before,
.ant-row::after {
  display: table;
  content: '';
}
.ant-row::after {
  clear: both;
}
.ant-row + .ant-row::before {
  clear: both;
}
.ant-row-flex {
  display: flex;
  flex-flow: row wrap;
}
.ant-row-flex::before,
.ant-row-flex::after {
  display: flex;
}
.ant-row-flex-start {
  justify-content: flex-start;
}
.ant-row-flex-center {
  justify-content: center;
}
.ant-row-flex-end {
  justify-content: flex-end;
}
.ant-row-flex-space-between {
  justify-content: space-between;
}
.ant-row-flex-space-around {
  justify-content: space-around;
}
.ant-row-flex-top {
  align-items: flex-start;
}
.ant-row-flex-middle {
  align-items: center;
}
.ant-row-flex-bottom {
  align-items: flex-end;
}
.ant-col {
  position: relative;
  min-height: 1px;
}
.ant-col-1,
.ant-col-xs-1,
.ant-col-sm-1,
.ant-col-md-1,
.ant-col-lg-1,
.ant-col-2,
.ant-col-xs-2,
.ant-col-sm-2,
.ant-col-md-2,
.ant-col-lg-2,
.ant-col-3,
.ant-col-xs-3,
.ant-col-sm-3,
.ant-col-md-3,
.ant-col-lg-3,
.ant-col-4,
.ant-col-xs-4,
.ant-col-sm-4,
.ant-col-md-4,
.ant-col-lg-4,
.ant-col-5,
.ant-col-xs-5,
.ant-col-sm-5,
.ant-col-md-5,
.ant-col-lg-5,
.ant-col-6,
.ant-col-xs-6,
.ant-col-sm-6,
.ant-col-md-6,
.ant-col-lg-6,
.ant-col-7,
.ant-col-xs-7,
.ant-col-sm-7,
.ant-col-md-7,
.ant-col-lg-7,
.ant-col-8,
.ant-col-xs-8,
.ant-col-sm-8,
.ant-col-md-8,
.ant-col-lg-8,
.ant-col-9,
.ant-col-xs-9,
.ant-col-sm-9,
.ant-col-md-9,
.ant-col-lg-9,
.ant-col-10,
.ant-col-xs-10,
.ant-col-sm-10,
.ant-col-md-10,
.ant-col-lg-10,
.ant-col-11,
.ant-col-xs-11,
.ant-col-sm-11,
.ant-col-md-11,
.ant-col-lg-11,
.ant-col-12,
.ant-col-xs-12,
.ant-col-sm-12,
.ant-col-md-12,
.ant-col-lg-12,
.ant-col-13,
.ant-col-xs-13,
.ant-col-sm-13,
.ant-col-md-13,
.ant-col-lg-13,
.ant-col-14,
.ant-col-xs-14,
.ant-col-sm-14,
.ant-col-md-14,
.ant-col-lg-14,
.ant-col-15,
.ant-col-xs-15,
.ant-col-sm-15,
.ant-col-md-15,
.ant-col-lg-15,
.ant-col-16,
.ant-col-xs-16,
.ant-col-sm-16,
.ant-col-md-16,
.ant-col-lg-16,
.ant-col-17,
.ant-col-xs-17,
.ant-col-sm-17,
.ant-col-md-17,
.ant-col-lg-17,
.ant-col-18,
.ant-col-xs-18,
.ant-col-sm-18,
.ant-col-md-18,
.ant-col-lg-18,
.ant-col-19,
.ant-col-xs-19,
.ant-col-sm-19,
.ant-col-md-19,
.ant-col-lg-19,
.ant-col-20,
.ant-col-xs-20,
.ant-col-sm-20,
.ant-col-md-20,
.ant-col-lg-20,
.ant-col-21,
.ant-col-xs-21,
.ant-col-sm-21,
.ant-col-md-21,
.ant-col-lg-21,
.ant-col-22,
.ant-col-xs-22,
.ant-col-sm-22,
.ant-col-md-22,
.ant-col-lg-22,
.ant-col-23,
.ant-col-xs-23,
.ant-col-sm-23,
.ant-col-md-23,
.ant-col-lg-23,
.ant-col-24,
.ant-col-xs-24,
.ant-col-sm-24,
.ant-col-md-24,
.ant-col-lg-24 {
  position: relative;
  padding-right: 0;
  padding-left: 0;
}
.ant-col-1,
.ant-col-2,
.ant-col-3,
.ant-col-4,
.ant-col-5,
.ant-col-6,
.ant-col-7,
.ant-col-8,
.ant-col-9,
.ant-col-10,
.ant-col-11,
.ant-col-12,
.ant-col-13,
.ant-col-14,
.ant-col-15,
.ant-col-16,
.ant-col-17,
.ant-col-18,
.ant-col-19,
.ant-col-20,
.ant-col-21,
.ant-col-22,
.ant-col-23,
.ant-col-24 {
  flex: 0 0 auto;
  float: left;
}
.ant-col-24 {
  display: block;
  box-sizing: border-box;
  width: 100%;
}
.ant-col-push-24 {
  left: 100%;
}
.ant-col-pull-24 {
  right: 100%;
}
.ant-col-offset-24 {
  margin-left: 100%;
}
.ant-col-order-24 {
  order: 24;
}
.ant-col-23 {
  display: block;
  box-sizing: border-box;
  width: 95.83333333%;
}
.ant-col-push-23 {
  left: 95.83333333%;
}
.ant-col-pull-23 {
  right: 95.83333333%;
}
.ant-col-offset-23 {
  margin-left: 95.83333333%;
}
.ant-col-order-23 {
  order: 23;
}
.ant-col-22 {
  display: block;
  box-sizing: border-box;
  width: 91.66666667%;
}
.ant-col-push-22 {
  left: 91.66666667%;
}
.ant-col-pull-22 {
  right: 91.66666667%;
}
.ant-col-offset-22 {
  margin-left: 91.66666667%;
}
.ant-col-order-22 {
  order: 22;
}
.ant-col-21 {
  display: block;
  box-sizing: border-box;
  width: 87.5%;
}
.ant-col-push-21 {
  left: 87.5%;
}
.ant-col-pull-21 {
  right: 87.5%;
}
.ant-col-offset-21 {
  margin-left: 87.5%;
}
.ant-col-order-21 {
  order: 21;
}
.ant-col-20 {
  display: block;
  box-sizing: border-box;
  width: 83.33333333%;
}
.ant-col-push-20 {
  left: 83.33333333%;
}
.ant-col-pull-20 {
  right: 83.33333333%;
}
.ant-col-offset-20 {
  margin-left: 83.33333333%;
}
.ant-col-order-20 {
  order: 20;
}
.ant-col-19 {
  display: block;
  box-sizing: border-box;
  width: 79.16666667%;
}
.ant-col-push-19 {
  left: 79.16666667%;
}
.ant-col-pull-19 {
  right: 79.16666667%;
}
.ant-col-offset-19 {
  margin-left: 79.16666667%;
}
.ant-col-order-19 {
  order: 19;
}
.ant-col-18 {
  display: block;
  box-sizing: border-box;
  width: 75%;
}
.ant-col-push-18 {
  left: 75%;
}
.ant-col-pull-18 {
  right: 75%;
}
.ant-col-offset-18 {
  margin-left: 75%;
}
.ant-col-order-18 {
  order: 18;
}
.ant-col-17 {
  display: block;
  box-sizing: border-box;
  width: 70.83333333%;
}
.ant-col-push-17 {
  left: 70.83333333%;
}
.ant-col-pull-17 {
  right: 70.83333333%;
}
.ant-col-offset-17 {
  margin-left: 70.83333333%;
}
.ant-col-order-17 {
  order: 17;
}
.ant-col-16 {
  display: block;
  box-sizing: border-box;
  width: 66.66666667%;
}
.ant-col-push-16 {
  left: 66.66666667%;
}
.ant-col-pull-16 {
  right: 66.66666667%;
}
.ant-col-offset-16 {
  margin-left: 66.66666667%;
}
.ant-col-order-16 {
  order: 16;
}
.ant-col-15 {
  display: block;
  box-sizing: border-box;
  width: 62.5%;
}
.ant-col-push-15 {
  left: 62.5%;
}
.ant-col-pull-15 {
  right: 62.5%;
}
.ant-col-offset-15 {
  margin-left: 62.5%;
}
.ant-col-order-15 {
  order: 15;
}
.ant-col-14 {
  display: block;
  box-sizing: border-box;
  width: 58.33333333%;
}
.ant-col-push-14 {
  left: 58.33333333%;
}
.ant-col-pull-14 {
  right: 58.33333333%;
}
.ant-col-offset-14 {
  margin-left: 58.33333333%;
}
.ant-col-order-14 {
  order: 14;
}
.ant-col-13 {
  display: block;
  box-sizing: border-box;
  width: 54.16666667%;
}
.ant-col-push-13 {
  left: 54.16666667%;
}
.ant-col-pull-13 {
  right: 54.16666667%;
}
.ant-col-offset-13 {
  margin-left: 54.16666667%;
}
.ant-col-order-13 {
  order: 13;
}
.ant-col-12 {
  display: block;
  box-sizing: border-box;
  width: 50%;
}
.ant-col-push-12 {
  left: 50%;
}
.ant-col-pull-12 {
  right: 50%;
}
.ant-col-offset-12 {
  margin-left: 50%;
}
.ant-col-order-12 {
  order: 12;
}
.ant-col-11 {
  display: block;
  box-sizing: border-box;
  width: 45.83333333%;
}
.ant-col-push-11 {
  left: 45.83333333%;
}
.ant-col-pull-11 {
  right: 45.83333333%;
}
.ant-col-offset-11 {
  margin-left: 45.83333333%;
}
.ant-col-order-11 {
  order: 11;
}
.ant-col-10 {
  display: block;
  box-sizing: border-box;
  width: 41.66666667%;
}
.ant-col-push-10 {
  left: 41.66666667%;
}
.ant-col-pull-10 {
  right: 41.66666667%;
}
.ant-col-offset-10 {
  margin-left: 41.66666667%;
}
.ant-col-order-10 {
  order: 10;
}
.ant-col-9 {
  display: block;
  box-sizing: border-box;
  width: 37.5%;
}
.ant-col-push-9 {
  left: 37.5%;
}
.ant-col-pull-9 {
  right: 37.5%;
}
.ant-col-offset-9 {
  margin-left: 37.5%;
}
.ant-col-order-9 {
  order: 9;
}
.ant-col-8 {
  display: block;
  box-sizing: border-box;
  width: 33.33333333%;
}
.ant-col-push-8 {
  left: 33.33333333%;
}
.ant-col-pull-8 {
  right: 33.33333333%;
}
.ant-col-offset-8 {
  margin-left: 33.33333333%;
}
.ant-col-order-8 {
  order: 8;
}
.ant-col-7 {
  display: block;
  box-sizing: border-box;
  width: 29.16666667%;
}
.ant-col-push-7 {
  left: 29.16666667%;
}
.ant-col-pull-7 {
  right: 29.16666667%;
}
.ant-col-offset-7 {
  margin-left: 29.16666667%;
}
.ant-col-order-7 {
  order: 7;
}
.ant-col-6 {
  display: block;
  box-sizing: border-box;
  width: 25%;
}
.ant-col-push-6 {
  left: 25%;
}
.ant-col-pull-6 {
  right: 25%;
}
.ant-col-offset-6 {
  margin-left: 25%;
}
.ant-col-order-6 {
  order: 6;
}
.ant-col-5 {
  display: block;
  box-sizing: border-box;
  width: 20.83333333%;
}
.ant-col-push-5 {
  left: 20.83333333%;
}
.ant-col-pull-5 {
  right: 20.83333333%;
}
.ant-col-offset-5 {
  margin-left: 20.83333333%;
}
.ant-col-order-5 {
  order: 5;
}
.ant-col-4 {
  display: block;
  box-sizing: border-box;
  width: 16.66666667%;
}
.ant-col-push-4 {
  left: 16.66666667%;
}
.ant-col-pull-4 {
  right: 16.66666667%;
}
.ant-col-offset-4 {
  margin-left: 16.66666667%;
}
.ant-col-order-4 {
  order: 4;
}
.ant-col-3 {
  display: block;
  box-sizing: border-box;
  width: 12.5%;
}
.ant-col-push-3 {
  left: 12.5%;
}
.ant-col-pull-3 {
  right: 12.5%;
}
.ant-col-offset-3 {
  margin-left: 12.5%;
}
.ant-col-order-3 {
  order: 3;
}
.ant-col-2 {
  display: block;
  box-sizing: border-box;
  width: 8.33333333%;
}
.ant-col-push-2 {
  left: 8.33333333%;
}
.ant-col-pull-2 {
  right: 8.33333333%;
}
.ant-col-offset-2 {
  margin-left: 8.33333333%;
}
.ant-col-order-2 {
  order: 2;
}
.ant-col-1 {
  display: block;
  box-sizing: border-box;
  width: 4.16666667%;
}
.ant-col-push-1 {
  left: 4.16666667%;
}
.ant-col-pull-1 {
  right: 4.16666667%;
}
.ant-col-offset-1 {
  margin-left: 4.16666667%;
}
.ant-col-order-1 {
  order: 1;
}
.ant-col-0 {
  display: none;
}
.ant-col-push-0 {
  left: auto;
}
.ant-col-pull-0 {
  right: auto;
}
.ant-col-push-0 {
  left: auto;
}
.ant-col-pull-0 {
  right: auto;
}
.ant-col-offset-0 {
  margin-left: 0;
}
.ant-col-order-0 {
  order: 0;
}
.ant-col-xs-1,
.ant-col-xs-2,
.ant-col-xs-3,
.ant-col-xs-4,
.ant-col-xs-5,
.ant-col-xs-6,
.ant-col-xs-7,
.ant-col-xs-8,
.ant-col-xs-9,
.ant-col-xs-10,
.ant-col-xs-11,
.ant-col-xs-12,
.ant-col-xs-13,
.ant-col-xs-14,
.ant-col-xs-15,
.ant-col-xs-16,
.ant-col-xs-17,
.ant-col-xs-18,
.ant-col-xs-19,
.ant-col-xs-20,
.ant-col-xs-21,
.ant-col-xs-22,
.ant-col-xs-23,
.ant-col-xs-24 {
  flex: 0 0 auto;
  float: left;
}
.ant-col-xs-24 {
  display: block;
  box-sizing: border-box;
  width: 100%;
}
.ant-col-xs-push-24 {
  left: 100%;
}
.ant-col-xs-pull-24 {
  right: 100%;
}
.ant-col-xs-offset-24 {
  margin-left: 100%;
}
.ant-col-xs-order-24 {
  order: 24;
}
.ant-col-xs-23 {
  display: block;
  box-sizing: border-box;
  width: 95.83333333%;
}
.ant-col-xs-push-23 {
  left: 95.83333333%;
}
.ant-col-xs-pull-23 {
  right: 95.83333333%;
}
.ant-col-xs-offset-23 {
  margin-left: 95.83333333%;
}
.ant-col-xs-order-23 {
  order: 23;
}
.ant-col-xs-22 {
  display: block;
  box-sizing: border-box;
  width: 91.66666667%;
}
.ant-col-xs-push-22 {
  left: 91.66666667%;
}
.ant-col-xs-pull-22 {
  right: 91.66666667%;
}
.ant-col-xs-offset-22 {
  margin-left: 91.66666667%;
}
.ant-col-xs-order-22 {
  order: 22;
}
.ant-col-xs-21 {
  display: block;
  box-sizing: border-box;
  width: 87.5%;
}
.ant-col-xs-push-21 {
  left: 87.5%;
}
.ant-col-xs-pull-21 {
  right: 87.5%;
}
.ant-col-xs-offset-21 {
  margin-left: 87.5%;
}
.ant-col-xs-order-21 {
  order: 21;
}
.ant-col-xs-20 {
  display: block;
  box-sizing: border-box;
  width: 83.33333333%;
}
.ant-col-xs-push-20 {
  left: 83.33333333%;
}
.ant-col-xs-pull-20 {
  right: 83.33333333%;
}
.ant-col-xs-offset-20 {
  margin-left: 83.33333333%;
}
.ant-col-xs-order-20 {
  order: 20;
}
.ant-col-xs-19 {
  display: block;
  box-sizing: border-box;
  width: 79.16666667%;
}
.ant-col-xs-push-19 {
  left: 79.16666667%;
}
.ant-col-xs-pull-19 {
  right: 79.16666667%;
}
.ant-col-xs-offset-19 {
  margin-left: 79.16666667%;
}
.ant-col-xs-order-19 {
  order: 19;
}
.ant-col-xs-18 {
  display: block;
  box-sizing: border-box;
  width: 75%;
}
.ant-col-xs-push-18 {
  left: 75%;
}
.ant-col-xs-pull-18 {
  right: 75%;
}
.ant-col-xs-offset-18 {
  margin-left: 75%;
}
.ant-col-xs-order-18 {
  order: 18;
}
.ant-col-xs-17 {
  display: block;
  box-sizing: border-box;
  width: 70.83333333%;
}
.ant-col-xs-push-17 {
  left: 70.83333333%;
}
.ant-col-xs-pull-17 {
  right: 70.83333333%;
}
.ant-col-xs-offset-17 {
  margin-left: 70.83333333%;
}
.ant-col-xs-order-17 {
  order: 17;
}
.ant-col-xs-16 {
  display: block;
  box-sizing: border-box;
  width: 66.66666667%;
}
.ant-col-xs-push-16 {
  left: 66.66666667%;
}
.ant-col-xs-pull-16 {
  right: 66.66666667%;
}
.ant-col-xs-offset-16 {
  margin-left: 66.66666667%;
}
.ant-col-xs-order-16 {
  order: 16;
}
.ant-col-xs-15 {
  display: block;
  box-sizing: border-box;
  width: 62.5%;
}
.ant-col-xs-push-15 {
  left: 62.5%;
}
.ant-col-xs-pull-15 {
  right: 62.5%;
}
.ant-col-xs-offset-15 {
  margin-left: 62.5%;
}
.ant-col-xs-order-15 {
  order: 15;
}
.ant-col-xs-14 {
  display: block;
  box-sizing: border-box;
  width: 58.33333333%;
}
.ant-col-xs-push-14 {
  left: 58.33333333%;
}
.ant-col-xs-pull-14 {
  right: 58.33333333%;
}
.ant-col-xs-offset-14 {
  margin-left: 58.33333333%;
}
.ant-col-xs-order-14 {
  order: 14;
}
.ant-col-xs-13 {
  display: block;
  box-sizing: border-box;
  width: 54.16666667%;
}
.ant-col-xs-push-13 {
  left: 54.16666667%;
}
.ant-col-xs-pull-13 {
  right: 54.16666667%;
}
.ant-col-xs-offset-13 {
  margin-left: 54.16666667%;
}
.ant-col-xs-order-13 {
  order: 13;
}
.ant-col-xs-12 {
  display: block;
  box-sizing: border-box;
  width: 50%;
}
.ant-col-xs-push-12 {
  left: 50%;
}
.ant-col-xs-pull-12 {
  right: 50%;
}
.ant-col-xs-offset-12 {
  margin-left: 50%;
}
.ant-col-xs-order-12 {
  order: 12;
}
.ant-col-xs-11 {
  display: block;
  box-sizing: border-box;
  width: 45.83333333%;
}
.ant-col-xs-push-11 {
  left: 45.83333333%;
}
.ant-col-xs-pull-11 {
  right: 45.83333333%;
}
.ant-col-xs-offset-11 {
  margin-left: 45.83333333%;
}
.ant-col-xs-order-11 {
  order: 11;
}
.ant-col-xs-10 {
  display: block;
  box-sizing: border-box;
  width: 41.66666667%;
}
.ant-col-xs-push-10 {
  left: 41.66666667%;
}
.ant-col-xs-pull-10 {
  right: 41.66666667%;
}
.ant-col-xs-offset-10 {
  margin-left: 41.66666667%;
}
.ant-col-xs-order-10 {
  order: 10;
}
.ant-col-xs-9 {
  display: block;
  box-sizing: border-box;
  width: 37.5%;
}
.ant-col-xs-push-9 {
  left: 37.5%;
}
.ant-col-xs-pull-9 {
  right: 37.5%;
}
.ant-col-xs-offset-9 {
  margin-left: 37.5%;
}
.ant-col-xs-order-9 {
  order: 9;
}
.ant-col-xs-8 {
  display: block;
  box-sizing: border-box;
  width: 33.33333333%;
}
.ant-col-xs-push-8 {
  left: 33.33333333%;
}
.ant-col-xs-pull-8 {
  right: 33.33333333%;
}
.ant-col-xs-offset-8 {
  margin-left: 33.33333333%;
}
.ant-col-xs-order-8 {
  order: 8;
}
.ant-col-xs-7 {
  display: block;
  box-sizing: border-box;
  width: 29.16666667%;
}
.ant-col-xs-push-7 {
  left: 29.16666667%;
}
.ant-col-xs-pull-7 {
  right: 29.16666667%;
}
.ant-col-xs-offset-7 {
  margin-left: 29.16666667%;
}
.ant-col-xs-order-7 {
  order: 7;
}
.ant-col-xs-6 {
  display: block;
  box-sizing: border-box;
  width: 25%;
}
.ant-col-xs-push-6 {
  left: 25%;
}
.ant-col-xs-pull-6 {
  right: 25%;
}
.ant-col-xs-offset-6 {
  margin-left: 25%;
}
.ant-col-xs-order-6 {
  order: 6;
}
.ant-col-xs-5 {
  display: block;
  box-sizing: border-box;
  width: 20.83333333%;
}
.ant-col-xs-push-5 {
  left: 20.83333333%;
}
.ant-col-xs-pull-5 {
  right: 20.83333333%;
}
.ant-col-xs-offset-5 {
  margin-left: 20.83333333%;
}
.ant-col-xs-order-5 {
  order: 5;
}
.ant-col-xs-4 {
  display: block;
  box-sizing: border-box;
  width: 16.66666667%;
}
.ant-col-xs-push-4 {
  left: 16.66666667%;
}
.ant-col-xs-pull-4 {
  right: 16.66666667%;
}
.ant-col-xs-offset-4 {
  margin-left: 16.66666667%;
}
.ant-col-xs-order-4 {
  order: 4;
}
.ant-col-xs-3 {
  display: block;
  box-sizing: border-box;
  width: 12.5%;
}
.ant-col-xs-push-3 {
  left: 12.5%;
}
.ant-col-xs-pull-3 {
  right: 12.5%;
}
.ant-col-xs-offset-3 {
  margin-left: 12.5%;
}
.ant-col-xs-order-3 {
  order: 3;
}
.ant-col-xs-2 {
  display: block;
  box-sizing: border-box;
  width: 8.33333333%;
}
.ant-col-xs-push-2 {
  left: 8.33333333%;
}
.ant-col-xs-pull-2 {
  right: 8.33333333%;
}
.ant-col-xs-offset-2 {
  margin-left: 8.33333333%;
}
.ant-col-xs-order-2 {
  order: 2;
}
.ant-col-xs-1 {
  display: block;
  box-sizing: border-box;
  width: 4.16666667%;
}
.ant-col-xs-push-1 {
  left: 4.16666667%;
}
.ant-col-xs-pull-1 {
  right: 4.16666667%;
}
.ant-col-xs-offset-1 {
  margin-left: 4.16666667%;
}
.ant-col-xs-order-1 {
  order: 1;
}
.ant-col-xs-0 {
  display: none;
}
.ant-col-push-0 {
  left: auto;
}
.ant-col-pull-0 {
  right: auto;
}
.ant-col-xs-push-0 {
  left: auto;
}
.ant-col-xs-pull-0 {
  right: auto;
}
.ant-col-xs-offset-0 {
  margin-left: 0;
}
.ant-col-xs-order-0 {
  order: 0;
}
@media (min-width: 576px) {
  .ant-col-sm-1,
  .ant-col-sm-2,
  .ant-col-sm-3,
  .ant-col-sm-4,
  .ant-col-sm-5,
  .ant-col-sm-6,
  .ant-col-sm-7,
  .ant-col-sm-8,
  .ant-col-sm-9,
  .ant-col-sm-10,
  .ant-col-sm-11,
  .ant-col-sm-12,
  .ant-col-sm-13,
  .ant-col-sm-14,
  .ant-col-sm-15,
  .ant-col-sm-16,
  .ant-col-sm-17,
  .ant-col-sm-18,
  .ant-col-sm-19,
  .ant-col-sm-20,
  .ant-col-sm-21,
  .ant-col-sm-22,
  .ant-col-sm-23,
  .ant-col-sm-24 {
    flex: 0 0 auto;
    float: left;
  }
  .ant-col-sm-24 {
    display: block;
    box-sizing: border-box;
    width: 100%;
  }
  .ant-col-sm-push-24 {
    left: 100%;
  }
  .ant-col-sm-pull-24 {
    right: 100%;
  }
  .ant-col-sm-offset-24 {
    margin-left: 100%;
  }
  .ant-col-sm-order-24 {
    order: 24;
  }
  .ant-col-sm-23 {
    display: block;
    box-sizing: border-box;
    width: 95.83333333%;
  }
  .ant-col-sm-push-23 {
    left: 95.83333333%;
  }
  .ant-col-sm-pull-23 {
    right: 95.83333333%;
  }
  .ant-col-sm-offset-23 {
    margin-left: 95.83333333%;
  }
  .ant-col-sm-order-23 {
    order: 23;
  }
  .ant-col-sm-22 {
    display: block;
    box-sizing: border-box;
    width: 91.66666667%;
  }
  .ant-col-sm-push-22 {
    left: 91.66666667%;
  }
  .ant-col-sm-pull-22 {
    right: 91.66666667%;
  }
  .ant-col-sm-offset-22 {
    margin-left: 91.66666667%;
  }
  .ant-col-sm-order-22 {
    order: 22;
  }
  .ant-col-sm-21 {
    display: block;
    box-sizing: border-box;
    width: 87.5%;
  }
  .ant-col-sm-push-21 {
    left: 87.5%;
  }
  .ant-col-sm-pull-21 {
    right: 87.5%;
  }
  .ant-col-sm-offset-21 {
    margin-left: 87.5%;
  }
  .ant-col-sm-order-21 {
    order: 21;
  }
  .ant-col-sm-20 {
    display: block;
    box-sizing: border-box;
    width: 83.33333333%;
  }
  .ant-col-sm-push-20 {
    left: 83.33333333%;
  }
  .ant-col-sm-pull-20 {
    right: 83.33333333%;
  }
  .ant-col-sm-offset-20 {
    margin-left: 83.33333333%;
  }
  .ant-col-sm-order-20 {
    order: 20;
  }
  .ant-col-sm-19 {
    display: block;
    box-sizing: border-box;
    width: 79.16666667%;
  }
  .ant-col-sm-push-19 {
    left: 79.16666667%;
  }
  .ant-col-sm-pull-19 {
    right: 79.16666667%;
  }
  .ant-col-sm-offset-19 {
    margin-left: 79.16666667%;
  }
  .ant-col-sm-order-19 {
    order: 19;
  }
  .ant-col-sm-18 {
    display: block;
    box-sizing: border-box;
    width: 75%;
  }
  .ant-col-sm-push-18 {
    left: 75%;
  }
  .ant-col-sm-pull-18 {
    right: 75%;
  }
  .ant-col-sm-offset-18 {
    margin-left: 75%;
  }
  .ant-col-sm-order-18 {
    order: 18;
  }
  .ant-col-sm-17 {
    display: block;
    box-sizing: border-box;
    width: 70.83333333%;
  }
  .ant-col-sm-push-17 {
    left: 70.83333333%;
  }
  .ant-col-sm-pull-17 {
    right: 70.83333333%;
  }
  .ant-col-sm-offset-17 {
    margin-left: 70.83333333%;
  }
  .ant-col-sm-order-17 {
    order: 17;
  }
  .ant-col-sm-16 {
    display: block;
    box-sizing: border-box;
    width: 66.66666667%;
  }
  .ant-col-sm-push-16 {
    left: 66.66666667%;
  }
  .ant-col-sm-pull-16 {
    right: 66.66666667%;
  }
  .ant-col-sm-offset-16 {
    margin-left: 66.66666667%;
  }
  .ant-col-sm-order-16 {
    order: 16;
  }
  .ant-col-sm-15 {
    display: block;
    box-sizing: border-box;
    width: 62.5%;
  }
  .ant-col-sm-push-15 {
    left: 62.5%;
  }
  .ant-col-sm-pull-15 {
    right: 62.5%;
  }
  .ant-col-sm-offset-15 {
    margin-left: 62.5%;
  }
  .ant-col-sm-order-15 {
    order: 15;
  }
  .ant-col-sm-14 {
    display: block;
    box-sizing: border-box;
    width: 58.33333333%;
  }
  .ant-col-sm-push-14 {
    left: 58.33333333%;
  }
  .ant-col-sm-pull-14 {
    right: 58.33333333%;
  }
  .ant-col-sm-offset-14 {
    margin-left: 58.33333333%;
  }
  .ant-col-sm-order-14 {
    order: 14;
  }
  .ant-col-sm-13 {
    display: block;
    box-sizing: border-box;
    width: 54.16666667%;
  }
  .ant-col-sm-push-13 {
    left: 54.16666667%;
  }
  .ant-col-sm-pull-13 {
    right: 54.16666667%;
  }
  .ant-col-sm-offset-13 {
    margin-left: 54.16666667%;
  }
  .ant-col-sm-order-13 {
    order: 13;
  }
  .ant-col-sm-12 {
    display: block;
    box-sizing: border-box;
    width: 50%;
  }
  .ant-col-sm-push-12 {
    left: 50%;
  }
  .ant-col-sm-pull-12 {
    right: 50%;
  }
  .ant-col-sm-offset-12 {
    margin-left: 50%;
  }
  .ant-col-sm-order-12 {
    order: 12;
  }
  .ant-col-sm-11 {
    display: block;
    box-sizing: border-box;
    width: 45.83333333%;
  }
  .ant-col-sm-push-11 {
    left: 45.83333333%;
  }
  .ant-col-sm-pull-11 {
    right: 45.83333333%;
  }
  .ant-col-sm-offset-11 {
    margin-left: 45.83333333%;
  }
  .ant-col-sm-order-11 {
    order: 11;
  }
  .ant-col-sm-10 {
    display: block;
    box-sizing: border-box;
    width: 41.66666667%;
  }
  .ant-col-sm-push-10 {
    left: 41.66666667%;
  }
  .ant-col-sm-pull-10 {
    right: 41.66666667%;
  }
  .ant-col-sm-offset-10 {
    margin-left: 41.66666667%;
  }
  .ant-col-sm-order-10 {
    order: 10;
  }
  .ant-col-sm-9 {
    display: block;
    box-sizing: border-box;
    width: 37.5%;
  }
  .ant-col-sm-push-9 {
    left: 37.5%;
  }
  .ant-col-sm-pull-9 {
    right: 37.5%;
  }
  .ant-col-sm-offset-9 {
    margin-left: 37.5%;
  }
  .ant-col-sm-order-9 {
    order: 9;
  }
  .ant-col-sm-8 {
    display: block;
    box-sizing: border-box;
    width: 33.33333333%;
  }
  .ant-col-sm-push-8 {
    left: 33.33333333%;
  }
  .ant-col-sm-pull-8 {
    right: 33.33333333%;
  }
  .ant-col-sm-offset-8 {
    margin-left: 33.33333333%;
  }
  .ant-col-sm-order-8 {
    order: 8;
  }
  .ant-col-sm-7 {
    display: block;
    box-sizing: border-box;
    width: 29.16666667%;
  }
  .ant-col-sm-push-7 {
    left: 29.16666667%;
  }
  .ant-col-sm-pull-7 {
    right: 29.16666667%;
  }
  .ant-col-sm-offset-7 {
    margin-left: 29.16666667%;
  }
  .ant-col-sm-order-7 {
    order: 7;
  }
  .ant-col-sm-6 {
    display: block;
    box-sizing: border-box;
    width: 25%;
  }
  .ant-col-sm-push-6 {
    left: 25%;
  }
  .ant-col-sm-pull-6 {
    right: 25%;
  }
  .ant-col-sm-offset-6 {
    margin-left: 25%;
  }
  .ant-col-sm-order-6 {
    order: 6;
  }
  .ant-col-sm-5 {
    display: block;
    box-sizing: border-box;
    width: 20.83333333%;
  }
  .ant-col-sm-push-5 {
    left: 20.83333333%;
  }
  .ant-col-sm-pull-5 {
    right: 20.83333333%;
  }
  .ant-col-sm-offset-5 {
    margin-left: 20.83333333%;
  }
  .ant-col-sm-order-5 {
    order: 5;
  }
  .ant-col-sm-4 {
    display: block;
    box-sizing: border-box;
    width: 16.66666667%;
  }
  .ant-col-sm-push-4 {
    left: 16.66666667%;
  }
  .ant-col-sm-pull-4 {
    right: 16.66666667%;
  }
  .ant-col-sm-offset-4 {
    margin-left: 16.66666667%;
  }
  .ant-col-sm-order-4 {
    order: 4;
  }
  .ant-col-sm-3 {
    display: block;
    box-sizing: border-box;
    width: 12.5%;
  }
  .ant-col-sm-push-3 {
    left: 12.5%;
  }
  .ant-col-sm-pull-3 {
    right: 12.5%;
  }
  .ant-col-sm-offset-3 {
    margin-left: 12.5%;
  }
  .ant-col-sm-order-3 {
    order: 3;
  }
  .ant-col-sm-2 {
    display: block;
    box-sizing: border-box;
    width: 8.33333333%;
  }
  .ant-col-sm-push-2 {
    left: 8.33333333%;
  }
  .ant-col-sm-pull-2 {
    right: 8.33333333%;
  }
  .ant-col-sm-offset-2 {
    margin-left: 8.33333333%;
  }
  .ant-col-sm-order-2 {
    order: 2;
  }
  .ant-col-sm-1 {
    display: block;
    box-sizing: border-box;
    width: 4.16666667%;
  }
  .ant-col-sm-push-1 {
    left: 4.16666667%;
  }
  .ant-col-sm-pull-1 {
    right: 4.16666667%;
  }
  .ant-col-sm-offset-1 {
    margin-left: 4.16666667%;
  }
  .ant-col-sm-order-1 {
    order: 1;
  }
  .ant-col-sm-0 {
    display: none;
  }
  .ant-col-push-0 {
    left: auto;
  }
  .ant-col-pull-0 {
    right: auto;
  }
  .ant-col-sm-push-0 {
    left: auto;
  }
  .ant-col-sm-pull-0 {
    right: auto;
  }
  .ant-col-sm-offset-0 {
    margin-left: 0;
  }
  .ant-col-sm-order-0 {
    order: 0;
  }
}
@media (min-width: 768px) {
  .ant-col-md-1,
  .ant-col-md-2,
  .ant-col-md-3,
  .ant-col-md-4,
  .ant-col-md-5,
  .ant-col-md-6,
  .ant-col-md-7,
  .ant-col-md-8,
  .ant-col-md-9,
  .ant-col-md-10,
  .ant-col-md-11,
  .ant-col-md-12,
  .ant-col-md-13,
  .ant-col-md-14,
  .ant-col-md-15,
  .ant-col-md-16,
  .ant-col-md-17,
  .ant-col-md-18,
  .ant-col-md-19,
  .ant-col-md-20,
  .ant-col-md-21,
  .ant-col-md-22,
  .ant-col-md-23,
  .ant-col-md-24 {
    flex: 0 0 auto;
    float: left;
  }
  .ant-col-md-24 {
    display: block;
    box-sizing: border-box;
    width: 100%;
  }
  .ant-col-md-push-24 {
    left: 100%;
  }
  .ant-col-md-pull-24 {
    right: 100%;
  }
  .ant-col-md-offset-24 {
    margin-left: 100%;
  }
  .ant-col-md-order-24 {
    order: 24;
  }
  .ant-col-md-23 {
    display: block;
    box-sizing: border-box;
    width: 95.83333333%;
  }
  .ant-col-md-push-23 {
    left: 95.83333333%;
  }
  .ant-col-md-pull-23 {
    right: 95.83333333%;
  }
  .ant-col-md-offset-23 {
    margin-left: 95.83333333%;
  }
  .ant-col-md-order-23 {
    order: 23;
  }
  .ant-col-md-22 {
    display: block;
    box-sizing: border-box;
    width: 91.66666667%;
  }
  .ant-col-md-push-22 {
    left: 91.66666667%;
  }
  .ant-col-md-pull-22 {
    right: 91.66666667%;
  }
  .ant-col-md-offset-22 {
    margin-left: 91.66666667%;
  }
  .ant-col-md-order-22 {
    order: 22;
  }
  .ant-col-md-21 {
    display: block;
    box-sizing: border-box;
    width: 87.5%;
  }
  .ant-col-md-push-21 {
    left: 87.5%;
  }
  .ant-col-md-pull-21 {
    right: 87.5%;
  }
  .ant-col-md-offset-21 {
    margin-left: 87.5%;
  }
  .ant-col-md-order-21 {
    order: 21;
  }
  .ant-col-md-20 {
    display: block;
    box-sizing: border-box;
    width: 83.33333333%;
  }
  .ant-col-md-push-20 {
    left: 83.33333333%;
  }
  .ant-col-md-pull-20 {
    right: 83.33333333%;
  }
  .ant-col-md-offset-20 {
    margin-left: 83.33333333%;
  }
  .ant-col-md-order-20 {
    order: 20;
  }
  .ant-col-md-19 {
    display: block;
    box-sizing: border-box;
    width: 79.16666667%;
  }
  .ant-col-md-push-19 {
    left: 79.16666667%;
  }
  .ant-col-md-pull-19 {
    right: 79.16666667%;
  }
  .ant-col-md-offset-19 {
    margin-left: 79.16666667%;
  }
  .ant-col-md-order-19 {
    order: 19;
  }
  .ant-col-md-18 {
    display: block;
    box-sizing: border-box;
    width: 75%;
  }
  .ant-col-md-push-18 {
    left: 75%;
  }
  .ant-col-md-pull-18 {
    right: 75%;
  }
  .ant-col-md-offset-18 {
    margin-left: 75%;
  }
  .ant-col-md-order-18 {
    order: 18;
  }
  .ant-col-md-17 {
    display: block;
    box-sizing: border-box;
    width: 70.83333333%;
  }
  .ant-col-md-push-17 {
    left: 70.83333333%;
  }
  .ant-col-md-pull-17 {
    right: 70.83333333%;
  }
  .ant-col-md-offset-17 {
    margin-left: 70.83333333%;
  }
  .ant-col-md-order-17 {
    order: 17;
  }
  .ant-col-md-16 {
    display: block;
    box-sizing: border-box;
    width: 66.66666667%;
  }
  .ant-col-md-push-16 {
    left: 66.66666667%;
  }
  .ant-col-md-pull-16 {
    right: 66.66666667%;
  }
  .ant-col-md-offset-16 {
    margin-left: 66.66666667%;
  }
  .ant-col-md-order-16 {
    order: 16;
  }
  .ant-col-md-15 {
    display: block;
    box-sizing: border-box;
    width: 62.5%;
  }
  .ant-col-md-push-15 {
    left: 62.5%;
  }
  .ant-col-md-pull-15 {
    right: 62.5%;
  }
  .ant-col-md-offset-15 {
    margin-left: 62.5%;
  }
  .ant-col-md-order-15 {
    order: 15;
  }
  .ant-col-md-14 {
    display: block;
    box-sizing: border-box;
    width: 58.33333333%;
  }
  .ant-col-md-push-14 {
    left: 58.33333333%;
  }
  .ant-col-md-pull-14 {
    right: 58.33333333%;
  }
  .ant-col-md-offset-14 {
    margin-left: 58.33333333%;
  }
  .ant-col-md-order-14 {
    order: 14;
  }
  .ant-col-md-13 {
    display: block;
    box-sizing: border-box;
    width: 54.16666667%;
  }
  .ant-col-md-push-13 {
    left: 54.16666667%;
  }
  .ant-col-md-pull-13 {
    right: 54.16666667%;
  }
  .ant-col-md-offset-13 {
    margin-left: 54.16666667%;
  }
  .ant-col-md-order-13 {
    order: 13;
  }
  .ant-col-md-12 {
    display: block;
    box-sizing: border-box;
    width: 50%;
  }
  .ant-col-md-push-12 {
    left: 50%;
  }
  .ant-col-md-pull-12 {
    right: 50%;
  }
  .ant-col-md-offset-12 {
    margin-left: 50%;
  }
  .ant-col-md-order-12 {
    order: 12;
  }
  .ant-col-md-11 {
    display: block;
    box-sizing: border-box;
    width: 45.83333333%;
  }
  .ant-col-md-push-11 {
    left: 45.83333333%;
  }
  .ant-col-md-pull-11 {
    right: 45.83333333%;
  }
  .ant-col-md-offset-11 {
    margin-left: 45.83333333%;
  }
  .ant-col-md-order-11 {
    order: 11;
  }
  .ant-col-md-10 {
    display: block;
    box-sizing: border-box;
    width: 41.66666667%;
  }
  .ant-col-md-push-10 {
    left: 41.66666667%;
  }
  .ant-col-md-pull-10 {
    right: 41.66666667%;
  }
  .ant-col-md-offset-10 {
    margin-left: 41.66666667%;
  }
  .ant-col-md-order-10 {
    order: 10;
  }
  .ant-col-md-9 {
    display: block;
    box-sizing: border-box;
    width: 37.5%;
  }
  .ant-col-md-push-9 {
    left: 37.5%;
  }
  .ant-col-md-pull-9 {
    right: 37.5%;
  }
  .ant-col-md-offset-9 {
    margin-left: 37.5%;
  }
  .ant-col-md-order-9 {
    order: 9;
  }
  .ant-col-md-8 {
    display: block;
    box-sizing: border-box;
    width: 33.33333333%;
  }
  .ant-col-md-push-8 {
    left: 33.33333333%;
  }
  .ant-col-md-pull-8 {
    right: 33.33333333%;
  }
  .ant-col-md-offset-8 {
    margin-left: 33.33333333%;
  }
  .ant-col-md-order-8 {
    order: 8;
  }
  .ant-col-md-7 {
    display: block;
    box-sizing: border-box;
    width: 29.16666667%;
  }
  .ant-col-md-push-7 {
    left: 29.16666667%;
  }
  .ant-col-md-pull-7 {
    right: 29.16666667%;
  }
  .ant-col-md-offset-7 {
    margin-left: 29.16666667%;
  }
  .ant-col-md-order-7 {
    order: 7;
  }
  .ant-col-md-6 {
    display: block;
    box-sizing: border-box;
    width: 25%;
  }
  .ant-col-md-push-6 {
    left: 25%;
  }
  .ant-col-md-pull-6 {
    right: 25%;
  }
  .ant-col-md-offset-6 {
    margin-left: 25%;
  }
  .ant-col-md-order-6 {
    order: 6;
  }
  .ant-col-md-5 {
    display: block;
    box-sizing: border-box;
    width: 20.83333333%;
  }
  .ant-col-md-push-5 {
    left: 20.83333333%;
  }
  .ant-col-md-pull-5 {
    right: 20.83333333%;
  }
  .ant-col-md-offset-5 {
    margin-left: 20.83333333%;
  }
  .ant-col-md-order-5 {
    order: 5;
  }
  .ant-col-md-4 {
    display: block;
    box-sizing: border-box;
    width: 16.66666667%;
  }
  .ant-col-md-push-4 {
    left: 16.66666667%;
  }
  .ant-col-md-pull-4 {
    right: 16.66666667%;
  }
  .ant-col-md-offset-4 {
    margin-left: 16.66666667%;
  }
  .ant-col-md-order-4 {
    order: 4;
  }
  .ant-col-md-3 {
    display: block;
    box-sizing: border-box;
    width: 12.5%;
  }
  .ant-col-md-push-3 {
    left: 12.5%;
  }
  .ant-col-md-pull-3 {
    right: 12.5%;
  }
  .ant-col-md-offset-3 {
    margin-left: 12.5%;
  }
  .ant-col-md-order-3 {
    order: 3;
  }
  .ant-col-md-2 {
    display: block;
    box-sizing: border-box;
    width: 8.33333333%;
  }
  .ant-col-md-push-2 {
    left: 8.33333333%;
  }
  .ant-col-md-pull-2 {
    right: 8.33333333%;
  }
  .ant-col-md-offset-2 {
    margin-left: 8.33333333%;
  }
  .ant-col-md-order-2 {
    order: 2;
  }
  .ant-col-md-1 {
    display: block;
    box-sizing: border-box;
    width: 4.16666667%;
  }
  .ant-col-md-push-1 {
    left: 4.16666667%;
  }
  .ant-col-md-pull-1 {
    right: 4.16666667%;
  }
  .ant-col-md-offset-1 {
    margin-left: 4.16666667%;
  }
  .ant-col-md-order-1 {
    order: 1;
  }
  .ant-col-md-0 {
    display: none;
  }
  .ant-col-push-0 {
    left: auto;
  }
  .ant-col-pull-0 {
    right: auto;
  }
  .ant-col-md-push-0 {
    left: auto;
  }
  .ant-col-md-pull-0 {
    right: auto;
  }
  .ant-col-md-offset-0 {
    margin-left: 0;
  }
  .ant-col-md-order-0 {
    order: 0;
  }
}
@media (min-width: 992px) {
  .ant-col-lg-1,
  .ant-col-lg-2,
  .ant-col-lg-3,
  .ant-col-lg-4,
  .ant-col-lg-5,
  .ant-col-lg-6,
  .ant-col-lg-7,
  .ant-col-lg-8,
  .ant-col-lg-9,
  .ant-col-lg-10,
  .ant-col-lg-11,
  .ant-col-lg-12,
  .ant-col-lg-13,
  .ant-col-lg-14,
  .ant-col-lg-15,
  .ant-col-lg-16,
  .ant-col-lg-17,
  .ant-col-lg-18,
  .ant-col-lg-19,
  .ant-col-lg-20,
  .ant-col-lg-21,
  .ant-col-lg-22,
  .ant-col-lg-23,
  .ant-col-lg-24 {
    flex: 0 0 auto;
    float: left;
  }
  .ant-col-lg-24 {
    display: block;
    box-sizing: border-box;
    width: 100%;
  }
  .ant-col-lg-push-24 {
    left: 100%;
  }
  .ant-col-lg-pull-24 {
    right: 100%;
  }
  .ant-col-lg-offset-24 {
    margin-left: 100%;
  }
  .ant-col-lg-order-24 {
    order: 24;
  }
  .ant-col-lg-23 {
    display: block;
    box-sizing: border-box;
    width: 95.83333333%;
  }
  .ant-col-lg-push-23 {
    left: 95.83333333%;
  }
  .ant-col-lg-pull-23 {
    right: 95.83333333%;
  }
  .ant-col-lg-offset-23 {
    margin-left: 95.83333333%;
  }
  .ant-col-lg-order-23 {
    order: 23;
  }
  .ant-col-lg-22 {
    display: block;
    box-sizing: border-box;
    width: 91.66666667%;
  }
  .ant-col-lg-push-22 {
    left: 91.66666667%;
  }
  .ant-col-lg-pull-22 {
    right: 91.66666667%;
  }
  .ant-col-lg-offset-22 {
    margin-left: 91.66666667%;
  }
  .ant-col-lg-order-22 {
    order: 22;
  }
  .ant-col-lg-21 {
    display: block;
    box-sizing: border-box;
    width: 87.5%;
  }
  .ant-col-lg-push-21 {
    left: 87.5%;
  }
  .ant-col-lg-pull-21 {
    right: 87.5%;
  }
  .ant-col-lg-offset-21 {
    margin-left: 87.5%;
  }
  .ant-col-lg-order-21 {
    order: 21;
  }
  .ant-col-lg-20 {
    display: block;
    box-sizing: border-box;
    width: 83.33333333%;
  }
  .ant-col-lg-push-20 {
    left: 83.33333333%;
  }
  .ant-col-lg-pull-20 {
    right: 83.33333333%;
  }
  .ant-col-lg-offset-20 {
    margin-left: 83.33333333%;
  }
  .ant-col-lg-order-20 {
    order: 20;
  }
  .ant-col-lg-19 {
    display: block;
    box-sizing: border-box;
    width: 79.16666667%;
  }
  .ant-col-lg-push-19 {
    left: 79.16666667%;
  }
  .ant-col-lg-pull-19 {
    right: 79.16666667%;
  }
  .ant-col-lg-offset-19 {
    margin-left: 79.16666667%;
  }
  .ant-col-lg-order-19 {
    order: 19;
  }
  .ant-col-lg-18 {
    display: block;
    box-sizing: border-box;
    width: 75%;
  }
  .ant-col-lg-push-18 {
    left: 75%;
  }
  .ant-col-lg-pull-18 {
    right: 75%;
  }
  .ant-col-lg-offset-18 {
    margin-left: 75%;
  }
  .ant-col-lg-order-18 {
    order: 18;
  }
  .ant-col-lg-17 {
    display: block;
    box-sizing: border-box;
    width: 70.83333333%;
  }
  .ant-col-lg-push-17 {
    left: 70.83333333%;
  }
  .ant-col-lg-pull-17 {
    right: 70.83333333%;
  }
  .ant-col-lg-offset-17 {
    margin-left: 70.83333333%;
  }
  .ant-col-lg-order-17 {
    order: 17;
  }
  .ant-col-lg-16 {
    display: block;
    box-sizing: border-box;
    width: 66.66666667%;
  }
  .ant-col-lg-push-16 {
    left: 66.66666667%;
  }
  .ant-col-lg-pull-16 {
    right: 66.66666667%;
  }
  .ant-col-lg-offset-16 {
    margin-left: 66.66666667%;
  }
  .ant-col-lg-order-16 {
    order: 16;
  }
  .ant-col-lg-15 {
    display: block;
    box-sizing: border-box;
    width: 62.5%;
  }
  .ant-col-lg-push-15 {
    left: 62.5%;
  }
  .ant-col-lg-pull-15 {
    right: 62.5%;
  }
  .ant-col-lg-offset-15 {
    margin-left: 62.5%;
  }
  .ant-col-lg-order-15 {
    order: 15;
  }
  .ant-col-lg-14 {
    display: block;
    box-sizing: border-box;
    width: 58.33333333%;
  }
  .ant-col-lg-push-14 {
    left: 58.33333333%;
  }
  .ant-col-lg-pull-14 {
    right: 58.33333333%;
  }
  .ant-col-lg-offset-14 {
    margin-left: 58.33333333%;
  }
  .ant-col-lg-order-14 {
    order: 14;
  }
  .ant-col-lg-13 {
    display: block;
    box-sizing: border-box;
    width: 54.16666667%;
  }
  .ant-col-lg-push-13 {
    left: 54.16666667%;
  }
  .ant-col-lg-pull-13 {
    right: 54.16666667%;
  }
  .ant-col-lg-offset-13 {
    margin-left: 54.16666667%;
  }
  .ant-col-lg-order-13 {
    order: 13;
  }
  .ant-col-lg-12 {
    display: block;
    box-sizing: border-box;
    width: 50%;
  }
  .ant-col-lg-push-12 {
    left: 50%;
  }
  .ant-col-lg-pull-12 {
    right: 50%;
  }
  .ant-col-lg-offset-12 {
    margin-left: 50%;
  }
  .ant-col-lg-order-12 {
    order: 12;
  }
  .ant-col-lg-11 {
    display: block;
    box-sizing: border-box;
    width: 45.83333333%;
  }
  .ant-col-lg-push-11 {
    left: 45.83333333%;
  }
  .ant-col-lg-pull-11 {
    right: 45.83333333%;
  }
  .ant-col-lg-offset-11 {
    margin-left: 45.83333333%;
  }
  .ant-col-lg-order-11 {
    order: 11;
  }
  .ant-col-lg-10 {
    display: block;
    box-sizing: border-box;
    width: 41.66666667%;
  }
  .ant-col-lg-push-10 {
    left: 41.66666667%;
  }
  .ant-col-lg-pull-10 {
    right: 41.66666667%;
  }
  .ant-col-lg-offset-10 {
    margin-left: 41.66666667%;
  }
  .ant-col-lg-order-10 {
    order: 10;
  }
  .ant-col-lg-9 {
    display: block;
    box-sizing: border-box;
    width: 37.5%;
  }
  .ant-col-lg-push-9 {
    left: 37.5%;
  }
  .ant-col-lg-pull-9 {
    right: 37.5%;
  }
  .ant-col-lg-offset-9 {
    margin-left: 37.5%;
  }
  .ant-col-lg-order-9 {
    order: 9;
  }
  .ant-col-lg-8 {
    display: block;
    box-sizing: border-box;
    width: 33.33333333%;
  }
  .ant-col-lg-push-8 {
    left: 33.33333333%;
  }
  .ant-col-lg-pull-8 {
    right: 33.33333333%;
  }
  .ant-col-lg-offset-8 {
    margin-left: 33.33333333%;
  }
  .ant-col-lg-order-8 {
    order: 8;
  }
  .ant-col-lg-7 {
    display: block;
    box-sizing: border-box;
    width: 29.16666667%;
  }
  .ant-col-lg-push-7 {
    left: 29.16666667%;
  }
  .ant-col-lg-pull-7 {
    right: 29.16666667%;
  }
  .ant-col-lg-offset-7 {
    margin-left: 29.16666667%;
  }
  .ant-col-lg-order-7 {
    order: 7;
  }
  .ant-col-lg-6 {
    display: block;
    box-sizing: border-box;
    width: 25%;
  }
  .ant-col-lg-push-6 {
    left: 25%;
  }
  .ant-col-lg-pull-6 {
    right: 25%;
  }
  .ant-col-lg-offset-6 {
    margin-left: 25%;
  }
  .ant-col-lg-order-6 {
    order: 6;
  }
  .ant-col-lg-5 {
    display: block;
    box-sizing: border-box;
    width: 20.83333333%;
  }
  .ant-col-lg-push-5 {
    left: 20.83333333%;
  }
  .ant-col-lg-pull-5 {
    right: 20.83333333%;
  }
  .ant-col-lg-offset-5 {
    margin-left: 20.83333333%;
  }
  .ant-col-lg-order-5 {
    order: 5;
  }
  .ant-col-lg-4 {
    display: block;
    box-sizing: border-box;
    width: 16.66666667%;
  }
  .ant-col-lg-push-4 {
    left: 16.66666667%;
  }
  .ant-col-lg-pull-4 {
    right: 16.66666667%;
  }
  .ant-col-lg-offset-4 {
    margin-left: 16.66666667%;
  }
  .ant-col-lg-order-4 {
    order: 4;
  }
  .ant-col-lg-3 {
    display: block;
    box-sizing: border-box;
    width: 12.5%;
  }
  .ant-col-lg-push-3 {
    left: 12.5%;
  }
  .ant-col-lg-pull-3 {
    right: 12.5%;
  }
  .ant-col-lg-offset-3 {
    margin-left: 12.5%;
  }
  .ant-col-lg-order-3 {
    order: 3;
  }
  .ant-col-lg-2 {
    display: block;
    box-sizing: border-box;
    width: 8.33333333%;
  }
  .ant-col-lg-push-2 {
    left: 8.33333333%;
  }
  .ant-col-lg-pull-2 {
    right: 8.33333333%;
  }
  .ant-col-lg-offset-2 {
    margin-left: 8.33333333%;
  }
  .ant-col-lg-order-2 {
    order: 2;
  }
  .ant-col-lg-1 {
    display: block;
    box-sizing: border-box;
    width: 4.16666667%;
  }
  .ant-col-lg-push-1 {
    left: 4.16666667%;
  }
  .ant-col-lg-pull-1 {
    right: 4.16666667%;
  }
  .ant-col-lg-offset-1 {
    margin-left: 4.16666667%;
  }
  .ant-col-lg-order-1 {
    order: 1;
  }
  .ant-col-lg-0 {
    display: none;
  }
  .ant-col-push-0 {
    left: auto;
  }
  .ant-col-pull-0 {
    right: auto;
  }
  .ant-col-lg-push-0 {
    left: auto;
  }
  .ant-col-lg-pull-0 {
    right: auto;
  }
  .ant-col-lg-offset-0 {
    margin-left: 0;
  }
  .ant-col-lg-order-0 {
    order: 0;
  }
}
@media (min-width: 1200px) {
  .ant-col-xl-1,
  .ant-col-xl-2,
  .ant-col-xl-3,
  .ant-col-xl-4,
  .ant-col-xl-5,
  .ant-col-xl-6,
  .ant-col-xl-7,
  .ant-col-xl-8,
  .ant-col-xl-9,
  .ant-col-xl-10,
  .ant-col-xl-11,
  .ant-col-xl-12,
  .ant-col-xl-13,
  .ant-col-xl-14,
  .ant-col-xl-15,
  .ant-col-xl-16,
  .ant-col-xl-17,
  .ant-col-xl-18,
  .ant-col-xl-19,
  .ant-col-xl-20,
  .ant-col-xl-21,
  .ant-col-xl-22,
  .ant-col-xl-23,
  .ant-col-xl-24 {
    flex: 0 0 auto;
    float: left;
  }
  .ant-col-xl-24 {
    display: block;
    box-sizing: border-box;
    width: 100%;
  }
  .ant-col-xl-push-24 {
    left: 100%;
  }
  .ant-col-xl-pull-24 {
    right: 100%;
  }
  .ant-col-xl-offset-24 {
    margin-left: 100%;
  }
  .ant-col-xl-order-24 {
    order: 24;
  }
  .ant-col-xl-23 {
    display: block;
    box-sizing: border-box;
    width: 95.83333333%;
  }
  .ant-col-xl-push-23 {
    left: 95.83333333%;
  }
  .ant-col-xl-pull-23 {
    right: 95.83333333%;
  }
  .ant-col-xl-offset-23 {
    margin-left: 95.83333333%;
  }
  .ant-col-xl-order-23 {
    order: 23;
  }
  .ant-col-xl-22 {
    display: block;
    box-sizing: border-box;
    width: 91.66666667%;
  }
  .ant-col-xl-push-22 {
    left: 91.66666667%;
  }
  .ant-col-xl-pull-22 {
    right: 91.66666667%;
  }
  .ant-col-xl-offset-22 {
    margin-left: 91.66666667%;
  }
  .ant-col-xl-order-22 {
    order: 22;
  }
  .ant-col-xl-21 {
    display: block;
    box-sizing: border-box;
    width: 87.5%;
  }
  .ant-col-xl-push-21 {
    left: 87.5%;
  }
  .ant-col-xl-pull-21 {
    right: 87.5%;
  }
  .ant-col-xl-offset-21 {
    margin-left: 87.5%;
  }
  .ant-col-xl-order-21 {
    order: 21;
  }
  .ant-col-xl-20 {
    display: block;
    box-sizing: border-box;
    width: 83.33333333%;
  }
  .ant-col-xl-push-20 {
    left: 83.33333333%;
  }
  .ant-col-xl-pull-20 {
    right: 83.33333333%;
  }
  .ant-col-xl-offset-20 {
    margin-left: 83.33333333%;
  }
  .ant-col-xl-order-20 {
    order: 20;
  }
  .ant-col-xl-19 {
    display: block;
    box-sizing: border-box;
    width: 79.16666667%;
  }
  .ant-col-xl-push-19 {
    left: 79.16666667%;
  }
  .ant-col-xl-pull-19 {
    right: 79.16666667%;
  }
  .ant-col-xl-offset-19 {
    margin-left: 79.16666667%;
  }
  .ant-col-xl-order-19 {
    order: 19;
  }
  .ant-col-xl-18 {
    display: block;
    box-sizing: border-box;
    width: 75%;
  }
  .ant-col-xl-push-18 {
    left: 75%;
  }
  .ant-col-xl-pull-18 {
    right: 75%;
  }
  .ant-col-xl-offset-18 {
    margin-left: 75%;
  }
  .ant-col-xl-order-18 {
    order: 18;
  }
  .ant-col-xl-17 {
    display: block;
    box-sizing: border-box;
    width: 70.83333333%;
  }
  .ant-col-xl-push-17 {
    left: 70.83333333%;
  }
  .ant-col-xl-pull-17 {
    right: 70.83333333%;
  }
  .ant-col-xl-offset-17 {
    margin-left: 70.83333333%;
  }
  .ant-col-xl-order-17 {
    order: 17;
  }
  .ant-col-xl-16 {
    display: block;
    box-sizing: border-box;
    width: 66.66666667%;
  }
  .ant-col-xl-push-16 {
    left: 66.66666667%;
  }
  .ant-col-xl-pull-16 {
    right: 66.66666667%;
  }
  .ant-col-xl-offset-16 {
    margin-left: 66.66666667%;
  }
  .ant-col-xl-order-16 {
    order: 16;
  }
  .ant-col-xl-15 {
    display: block;
    box-sizing: border-box;
    width: 62.5%;
  }
  .ant-col-xl-push-15 {
    left: 62.5%;
  }
  .ant-col-xl-pull-15 {
    right: 62.5%;
  }
  .ant-col-xl-offset-15 {
    margin-left: 62.5%;
  }
  .ant-col-xl-order-15 {
    order: 15;
  }
  .ant-col-xl-14 {
    display: block;
    box-sizing: border-box;
    width: 58.33333333%;
  }
  .ant-col-xl-push-14 {
    left: 58.33333333%;
  }
  .ant-col-xl-pull-14 {
    right: 58.33333333%;
  }
  .ant-col-xl-offset-14 {
    margin-left: 58.33333333%;
  }
  .ant-col-xl-order-14 {
    order: 14;
  }
  .ant-col-xl-13 {
    display: block;
    box-sizing: border-box;
    width: 54.16666667%;
  }
  .ant-col-xl-push-13 {
    left: 54.16666667%;
  }
  .ant-col-xl-pull-13 {
    right: 54.16666667%;
  }
  .ant-col-xl-offset-13 {
    margin-left: 54.16666667%;
  }
  .ant-col-xl-order-13 {
    order: 13;
  }
  .ant-col-xl-12 {
    display: block;
    box-sizing: border-box;
    width: 50%;
  }
  .ant-col-xl-push-12 {
    left: 50%;
  }
  .ant-col-xl-pull-12 {
    right: 50%;
  }
  .ant-col-xl-offset-12 {
    margin-left: 50%;
  }
  .ant-col-xl-order-12 {
    order: 12;
  }
  .ant-col-xl-11 {
    display: block;
    box-sizing: border-box;
    width: 45.83333333%;
  }
  .ant-col-xl-push-11 {
    left: 45.83333333%;
  }
  .ant-col-xl-pull-11 {
    right: 45.83333333%;
  }
  .ant-col-xl-offset-11 {
    margin-left: 45.83333333%;
  }
  .ant-col-xl-order-11 {
    order: 11;
  }
  .ant-col-xl-10 {
    display: block;
    box-sizing: border-box;
    width: 41.66666667%;
  }
  .ant-col-xl-push-10 {
    left: 41.66666667%;
  }
  .ant-col-xl-pull-10 {
    right: 41.66666667%;
  }
  .ant-col-xl-offset-10 {
    margin-left: 41.66666667%;
  }
  .ant-col-xl-order-10 {
    order: 10;
  }
  .ant-col-xl-9 {
    display: block;
    box-sizing: border-box;
    width: 37.5%;
  }
  .ant-col-xl-push-9 {
    left: 37.5%;
  }
  .ant-col-xl-pull-9 {
    right: 37.5%;
  }
  .ant-col-xl-offset-9 {
    margin-left: 37.5%;
  }
  .ant-col-xl-order-9 {
    order: 9;
  }
  .ant-col-xl-8 {
    display: block;
    box-sizing: border-box;
    width: 33.33333333%;
  }
  .ant-col-xl-push-8 {
    left: 33.33333333%;
  }
  .ant-col-xl-pull-8 {
    right: 33.33333333%;
  }
  .ant-col-xl-offset-8 {
    margin-left: 33.33333333%;
  }
  .ant-col-xl-order-8 {
    order: 8;
  }
  .ant-col-xl-7 {
    display: block;
    box-sizing: border-box;
    width: 29.16666667%;
  }
  .ant-col-xl-push-7 {
    left: 29.16666667%;
  }
  .ant-col-xl-pull-7 {
    right: 29.16666667%;
  }
  .ant-col-xl-offset-7 {
    margin-left: 29.16666667%;
  }
  .ant-col-xl-order-7 {
    order: 7;
  }
  .ant-col-xl-6 {
    display: block;
    box-sizing: border-box;
    width: 25%;
  }
  .ant-col-xl-push-6 {
    left: 25%;
  }
  .ant-col-xl-pull-6 {
    right: 25%;
  }
  .ant-col-xl-offset-6 {
    margin-left: 25%;
  }
  .ant-col-xl-order-6 {
    order: 6;
  }
  .ant-col-xl-5 {
    display: block;
    box-sizing: border-box;
    width: 20.83333333%;
  }
  .ant-col-xl-push-5 {
    left: 20.83333333%;
  }
  .ant-col-xl-pull-5 {
    right: 20.83333333%;
  }
  .ant-col-xl-offset-5 {
    margin-left: 20.83333333%;
  }
  .ant-col-xl-order-5 {
    order: 5;
  }
  .ant-col-xl-4 {
    display: block;
    box-sizing: border-box;
    width: 16.66666667%;
  }
  .ant-col-xl-push-4 {
    left: 16.66666667%;
  }
  .ant-col-xl-pull-4 {
    right: 16.66666667%;
  }
  .ant-col-xl-offset-4 {
    margin-left: 16.66666667%;
  }
  .ant-col-xl-order-4 {
    order: 4;
  }
  .ant-col-xl-3 {
    display: block;
    box-sizing: border-box;
    width: 12.5%;
  }
  .ant-col-xl-push-3 {
    left: 12.5%;
  }
  .ant-col-xl-pull-3 {
    right: 12.5%;
  }
  .ant-col-xl-offset-3 {
    margin-left: 12.5%;
  }
  .ant-col-xl-order-3 {
    order: 3;
  }
  .ant-col-xl-2 {
    display: block;
    box-sizing: border-box;
    width: 8.33333333%;
  }
  .ant-col-xl-push-2 {
    left: 8.33333333%;
  }
  .ant-col-xl-pull-2 {
    right: 8.33333333%;
  }
  .ant-col-xl-offset-2 {
    margin-left: 8.33333333%;
  }
  .ant-col-xl-order-2 {
    order: 2;
  }
  .ant-col-xl-1 {
    display: block;
    box-sizing: border-box;
    width: 4.16666667%;
  }
  .ant-col-xl-push-1 {
    left: 4.16666667%;
  }
  .ant-col-xl-pull-1 {
    right: 4.16666667%;
  }
  .ant-col-xl-offset-1 {
    margin-left: 4.16666667%;
  }
  .ant-col-xl-order-1 {
    order: 1;
  }
  .ant-col-xl-0 {
    display: none;
  }
  .ant-col-push-0 {
    left: auto;
  }
  .ant-col-pull-0 {
    right: auto;
  }
  .ant-col-xl-push-0 {
    left: auto;
  }
  .ant-col-xl-pull-0 {
    right: auto;
  }
  .ant-col-xl-offset-0 {
    margin-left: 0;
  }
  .ant-col-xl-order-0 {
    order: 0;
  }
}
@media (min-width: 1600px) {
  .ant-col-xxl-1,
  .ant-col-xxl-2,
  .ant-col-xxl-3,
  .ant-col-xxl-4,
  .ant-col-xxl-5,
  .ant-col-xxl-6,
  .ant-col-xxl-7,
  .ant-col-xxl-8,
  .ant-col-xxl-9,
  .ant-col-xxl-10,
  .ant-col-xxl-11,
  .ant-col-xxl-12,
  .ant-col-xxl-13,
  .ant-col-xxl-14,
  .ant-col-xxl-15,
  .ant-col-xxl-16,
  .ant-col-xxl-17,
  .ant-col-xxl-18,
  .ant-col-xxl-19,
  .ant-col-xxl-20,
  .ant-col-xxl-21,
  .ant-col-xxl-22,
  .ant-col-xxl-23,
  .ant-col-xxl-24 {
    flex: 0 0 auto;
    float: left;
  }
  .ant-col-xxl-24 {
    display: block;
    box-sizing: border-box;
    width: 100%;
  }
  .ant-col-xxl-push-24 {
    left: 100%;
  }
  .ant-col-xxl-pull-24 {
    right: 100%;
  }
  .ant-col-xxl-offset-24 {
    margin-left: 100%;
  }
  .ant-col-xxl-order-24 {
    order: 24;
  }
  .ant-col-xxl-23 {
    display: block;
    box-sizing: border-box;
    width: 95.83333333%;
  }
  .ant-col-xxl-push-23 {
    left: 95.83333333%;
  }
  .ant-col-xxl-pull-23 {
    right: 95.83333333%;
  }
  .ant-col-xxl-offset-23 {
    margin-left: 95.83333333%;
  }
  .ant-col-xxl-order-23 {
    order: 23;
  }
  .ant-col-xxl-22 {
    display: block;
    box-sizing: border-box;
    width: 91.66666667%;
  }
  .ant-col-xxl-push-22 {
    left: 91.66666667%;
  }
  .ant-col-xxl-pull-22 {
    right: 91.66666667%;
  }
  .ant-col-xxl-offset-22 {
    margin-left: 91.66666667%;
  }
  .ant-col-xxl-order-22 {
    order: 22;
  }
  .ant-col-xxl-21 {
    display: block;
    box-sizing: border-box;
    width: 87.5%;
  }
  .ant-col-xxl-push-21 {
    left: 87.5%;
  }
  .ant-col-xxl-pull-21 {
    right: 87.5%;
  }
  .ant-col-xxl-offset-21 {
    margin-left: 87.5%;
  }
  .ant-col-xxl-order-21 {
    order: 21;
  }
  .ant-col-xxl-20 {
    display: block;
    box-sizing: border-box;
    width: 83.33333333%;
  }
  .ant-col-xxl-push-20 {
    left: 83.33333333%;
  }
  .ant-col-xxl-pull-20 {
    right: 83.33333333%;
  }
  .ant-col-xxl-offset-20 {
    margin-left: 83.33333333%;
  }
  .ant-col-xxl-order-20 {
    order: 20;
  }
  .ant-col-xxl-19 {
    display: block;
    box-sizing: border-box;
    width: 79.16666667%;
  }
  .ant-col-xxl-push-19 {
    left: 79.16666667%;
  }
  .ant-col-xxl-pull-19 {
    right: 79.16666667%;
  }
  .ant-col-xxl-offset-19 {
    margin-left: 79.16666667%;
  }
  .ant-col-xxl-order-19 {
    order: 19;
  }
  .ant-col-xxl-18 {
    display: block;
    box-sizing: border-box;
    width: 75%;
  }
  .ant-col-xxl-push-18 {
    left: 75%;
  }
  .ant-col-xxl-pull-18 {
    right: 75%;
  }
  .ant-col-xxl-offset-18 {
    margin-left: 75%;
  }
  .ant-col-xxl-order-18 {
    order: 18;
  }
  .ant-col-xxl-17 {
    display: block;
    box-sizing: border-box;
    width: 70.83333333%;
  }
  .ant-col-xxl-push-17 {
    left: 70.83333333%;
  }
  .ant-col-xxl-pull-17 {
    right: 70.83333333%;
  }
  .ant-col-xxl-offset-17 {
    margin-left: 70.83333333%;
  }
  .ant-col-xxl-order-17 {
    order: 17;
  }
  .ant-col-xxl-16 {
    display: block;
    box-sizing: border-box;
    width: 66.66666667%;
  }
  .ant-col-xxl-push-16 {
    left: 66.66666667%;
  }
  .ant-col-xxl-pull-16 {
    right: 66.66666667%;
  }
  .ant-col-xxl-offset-16 {
    margin-left: 66.66666667%;
  }
  .ant-col-xxl-order-16 {
    order: 16;
  }
  .ant-col-xxl-15 {
    display: block;
    box-sizing: border-box;
    width: 62.5%;
  }
  .ant-col-xxl-push-15 {
    left: 62.5%;
  }
  .ant-col-xxl-pull-15 {
    right: 62.5%;
  }
  .ant-col-xxl-offset-15 {
    margin-left: 62.5%;
  }
  .ant-col-xxl-order-15 {
    order: 15;
  }
  .ant-col-xxl-14 {
    display: block;
    box-sizing: border-box;
    width: 58.33333333%;
  }
  .ant-col-xxl-push-14 {
    left: 58.33333333%;
  }
  .ant-col-xxl-pull-14 {
    right: 58.33333333%;
  }
  .ant-col-xxl-offset-14 {
    margin-left: 58.33333333%;
  }
  .ant-col-xxl-order-14 {
    order: 14;
  }
  .ant-col-xxl-13 {
    display: block;
    box-sizing: border-box;
    width: 54.16666667%;
  }
  .ant-col-xxl-push-13 {
    left: 54.16666667%;
  }
  .ant-col-xxl-pull-13 {
    right: 54.16666667%;
  }
  .ant-col-xxl-offset-13 {
    margin-left: 54.16666667%;
  }
  .ant-col-xxl-order-13 {
    order: 13;
  }
  .ant-col-xxl-12 {
    display: block;
    box-sizing: border-box;
    width: 50%;
  }
  .ant-col-xxl-push-12 {
    left: 50%;
  }
  .ant-col-xxl-pull-12 {
    right: 50%;
  }
  .ant-col-xxl-offset-12 {
    margin-left: 50%;
  }
  .ant-col-xxl-order-12 {
    order: 12;
  }
  .ant-col-xxl-11 {
    display: block;
    box-sizing: border-box;
    width: 45.83333333%;
  }
  .ant-col-xxl-push-11 {
    left: 45.83333333%;
  }
  .ant-col-xxl-pull-11 {
    right: 45.83333333%;
  }
  .ant-col-xxl-offset-11 {
    margin-left: 45.83333333%;
  }
  .ant-col-xxl-order-11 {
    order: 11;
  }
  .ant-col-xxl-10 {
    display: block;
    box-sizing: border-box;
    width: 41.66666667%;
  }
  .ant-col-xxl-push-10 {
    left: 41.66666667%;
  }
  .ant-col-xxl-pull-10 {
    right: 41.66666667%;
  }
  .ant-col-xxl-offset-10 {
    margin-left: 41.66666667%;
  }
  .ant-col-xxl-order-10 {
    order: 10;
  }
  .ant-col-xxl-9 {
    display: block;
    box-sizing: border-box;
    width: 37.5%;
  }
  .ant-col-xxl-push-9 {
    left: 37.5%;
  }
  .ant-col-xxl-pull-9 {
    right: 37.5%;
  }
  .ant-col-xxl-offset-9 {
    margin-left: 37.5%;
  }
  .ant-col-xxl-order-9 {
    order: 9;
  }
  .ant-col-xxl-8 {
    display: block;
    box-sizing: border-box;
    width: 33.33333333%;
  }
  .ant-col-xxl-push-8 {
    left: 33.33333333%;
  }
  .ant-col-xxl-pull-8 {
    right: 33.33333333%;
  }
  .ant-col-xxl-offset-8 {
    margin-left: 33.33333333%;
  }
  .ant-col-xxl-order-8 {
    order: 8;
  }
  .ant-col-xxl-7 {
    display: block;
    box-sizing: border-box;
    width: 29.16666667%;
  }
  .ant-col-xxl-push-7 {
    left: 29.16666667%;
  }
  .ant-col-xxl-pull-7 {
    right: 29.16666667%;
  }
  .ant-col-xxl-offset-7 {
    margin-left: 29.16666667%;
  }
  .ant-col-xxl-order-7 {
    order: 7;
  }
  .ant-col-xxl-6 {
    display: block;
    box-sizing: border-box;
    width: 25%;
  }
  .ant-col-xxl-push-6 {
    left: 25%;
  }
  .ant-col-xxl-pull-6 {
    right: 25%;
  }
  .ant-col-xxl-offset-6 {
    margin-left: 25%;
  }
  .ant-col-xxl-order-6 {
    order: 6;
  }
  .ant-col-xxl-5 {
    display: block;
    box-sizing: border-box;
    width: 20.83333333%;
  }
  .ant-col-xxl-push-5 {
    left: 20.83333333%;
  }
  .ant-col-xxl-pull-5 {
    right: 20.83333333%;
  }
  .ant-col-xxl-offset-5 {
    margin-left: 20.83333333%;
  }
  .ant-col-xxl-order-5 {
    order: 5;
  }
  .ant-col-xxl-4 {
    display: block;
    box-sizing: border-box;
    width: 16.66666667%;
  }
  .ant-col-xxl-push-4 {
    left: 16.66666667%;
  }
  .ant-col-xxl-pull-4 {
    right: 16.66666667%;
  }
  .ant-col-xxl-offset-4 {
    margin-left: 16.66666667%;
  }
  .ant-col-xxl-order-4 {
    order: 4;
  }
  .ant-col-xxl-3 {
    display: block;
    box-sizing: border-box;
    width: 12.5%;
  }
  .ant-col-xxl-push-3 {
    left: 12.5%;
  }
  .ant-col-xxl-pull-3 {
    right: 12.5%;
  }
  .ant-col-xxl-offset-3 {
    margin-left: 12.5%;
  }
  .ant-col-xxl-order-3 {
    order: 3;
  }
  .ant-col-xxl-2 {
    display: block;
    box-sizing: border-box;
    width: 8.33333333%;
  }
  .ant-col-xxl-push-2 {
    left: 8.33333333%;
  }
  .ant-col-xxl-pull-2 {
    right: 8.33333333%;
  }
  .ant-col-xxl-offset-2 {
    margin-left: 8.33333333%;
  }
  .ant-col-xxl-order-2 {
    order: 2;
  }
  .ant-col-xxl-1 {
    display: block;
    box-sizing: border-box;
    width: 4.16666667%;
  }
  .ant-col-xxl-push-1 {
    left: 4.16666667%;
  }
  .ant-col-xxl-pull-1 {
    right: 4.16666667%;
  }
  .ant-col-xxl-offset-1 {
    margin-left: 4.16666667%;
  }
  .ant-col-xxl-order-1 {
    order: 1;
  }
  .ant-col-xxl-0 {
    display: none;
  }
  .ant-col-push-0 {
    left: auto;
  }
  .ant-col-pull-0 {
    right: auto;
  }
  .ant-col-xxl-push-0 {
    left: auto;
  }
  .ant-col-xxl-pull-0 {
    right: auto;
  }
  .ant-col-xxl-offset-0 {
    margin-left: 0;
  }
  .ant-col-xxl-order-0 {
    order: 0;
  }
}
.ant-input {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  width: 100%;
  height: 32px;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  background-image: none;
  border: 1px solid #EAEAEA;
  border-radius: 4px;
  transition: all 0.3s;
}
.ant-input::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-input:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-input::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-input:hover {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
}
.ant-input:focus {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(3, 169, 245, 0.2);
}
.ant-input-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input-disabled:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
.ant-input[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input[disabled]:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
textarea.ant-input {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}
.ant-input-lg {
  height: 40px;
  padding: 6px 11px;
  font-size: 16px;
}
.ant-input-sm {
  height: 24px;
  padding: 1px 7px;
}
.ant-input-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.ant-input-group[class*='col-'] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.ant-input-group > [class*='col-'] {
  padding-right: 8px;
}
.ant-input-group > [class*='col-']:last-child {
  padding-right: 0;
}
.ant-input-group-addon,
.ant-input-group-wrap,
.ant-input-group > .ant-input {
  display: table-cell;
}
.ant-input-group-addon:not(:first-child):not(:last-child),
.ant-input-group-wrap:not(:first-child):not(:last-child),
.ant-input-group > .ant-input:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.ant-input-group-addon,
.ant-input-group-wrap {
  width: 1px;
  white-space: nowrap;
  vertical-align: middle;
}
.ant-input-group-wrap > * {
  display: block !important;
}
.ant-input-group .ant-input {
  float: left;
  width: 100%;
  margin-bottom: 0;
  text-align: inherit;
}
.ant-input-group .ant-input:focus {
  z-index: 1;
  border-right-width: 1px;
}
.ant-input-group .ant-input:hover {
  z-index: 1;
  border-right-width: 1px;
}
.ant-input-group-addon {
  position: relative;
  padding: 0 11px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: normal;
  font-size: 14px;
  text-align: center;
  background-color: #fafafa;
  border: 1px solid #EAEAEA;
  border-radius: 4px;
  transition: all 0.3s;
}
.ant-input-group-addon .ant-select {
  margin: -5px -11px;
}
.ant-input-group-addon .ant-select .ant-select-selection {
  margin: -1px;
  background-color: inherit;
  border: 1px solid transparent;
  box-shadow: none;
}
.ant-input-group-addon .ant-select-open .ant-select-selection,
.ant-input-group-addon .ant-select-focused .ant-select-selection {
  color: #03a9f5;
}
.ant-input-group-addon > i:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}
.ant-input-group > .ant-input:first-child,
.ant-input-group-addon:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-input-group > .ant-input:first-child .ant-select .ant-select-selection,
.ant-input-group-addon:first-child .ant-select .ant-select-selection {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-input-group > .ant-input-affix-wrapper:not(:first-child) .ant-input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-input-group > .ant-input-affix-wrapper:not(:last-child) .ant-input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-input-group-addon:first-child {
  border-right: 0;
}
.ant-input-group-addon:last-child {
  border-left: 0;
}
.ant-input-group > .ant-input:last-child,
.ant-input-group-addon:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-input-group > .ant-input:last-child .ant-select .ant-select-selection,
.ant-input-group-addon:last-child .ant-select .ant-select-selection {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-input-group-lg .ant-input,
.ant-input-group-lg > .ant-input-group-addon {
  height: 40px;
  padding: 6px 11px;
  font-size: 16px;
}
.ant-input-group-sm .ant-input,
.ant-input-group-sm > .ant-input-group-addon {
  height: 24px;
  padding: 1px 7px;
}
.ant-input-group-lg .ant-select-selection--single {
  height: 40px;
}
.ant-input-group-sm .ant-select-selection--single {
  height: 24px;
}
.ant-input-group .ant-input-affix-wrapper {
  display: table-cell;
  float: left;
  width: 100%;
}
.ant-input-group.ant-input-group-compact {
  display: block;
  zoom: 1;
}
.ant-input-group.ant-input-group-compact::before,
.ant-input-group.ant-input-group-compact::after {
  display: table;
  content: '';
}
.ant-input-group.ant-input-group-compact::after {
  clear: both;
}
.ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child),
.ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child),
.ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child) {
  border-right-width: 1px;
}
.ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child):hover,
.ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child):hover,
.ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child):hover {
  z-index: 1;
}
.ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child):focus,
.ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child):focus,
.ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child):focus {
  z-index: 1;
}
.ant-input-group.ant-input-group-compact > * {
  display: inline-block;
  float: none;
  vertical-align: top;
  border-radius: 0;
}
.ant-input-group.ant-input-group-compact > *:not(:last-child) {
  margin-right: -1px;
  border-right-width: 1px;
}
.ant-input-group.ant-input-group-compact .ant-input {
  float: none;
}
.ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selection,
.ant-input-group.ant-input-group-compact > .ant-calendar-picker .ant-input,
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker .ant-input,
.ant-input-group.ant-input-group-compact > .ant-mention-wrapper .ant-mention-editor,
.ant-input-group.ant-input-group-compact > .ant-time-picker .ant-time-picker-input,
.ant-input-group.ant-input-group-compact > .ant-input-group-wrapper .ant-input {
  border-right-width: 1px;
  border-radius: 0;
}
.ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selection:hover,
.ant-input-group.ant-input-group-compact > .ant-calendar-picker .ant-input:hover,
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input:hover,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker .ant-input:hover,
.ant-input-group.ant-input-group-compact > .ant-mention-wrapper .ant-mention-editor:hover,
.ant-input-group.ant-input-group-compact > .ant-time-picker .ant-time-picker-input:hover,
.ant-input-group.ant-input-group-compact > .ant-input-group-wrapper .ant-input:hover {
  z-index: 1;
}
.ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selection:focus,
.ant-input-group.ant-input-group-compact > .ant-calendar-picker .ant-input:focus,
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input:focus,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker .ant-input:focus,
.ant-input-group.ant-input-group-compact > .ant-mention-wrapper .ant-mention-editor:focus,
.ant-input-group.ant-input-group-compact > .ant-time-picker .ant-time-picker-input:focus,
.ant-input-group.ant-input-group-compact > .ant-input-group-wrapper .ant-input:focus {
  z-index: 1;
}
.ant-input-group.ant-input-group-compact > *:first-child,
.ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selection,
.ant-input-group.ant-input-group-compact > .ant-calendar-picker:first-child .ant-input,
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:first-child .ant-input,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker:first-child .ant-input,
.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:first-child .ant-mention-editor,
.ant-input-group.ant-input-group-compact > .ant-time-picker:first-child .ant-time-picker-input {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ant-input-group.ant-input-group-compact > *:last-child,
.ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selection,
.ant-input-group.ant-input-group-compact > .ant-calendar-picker:last-child .ant-input,
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:last-child .ant-input,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker:last-child .ant-input,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker-focused:last-child .ant-input,
.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:last-child .ant-mention-editor,
.ant-input-group.ant-input-group-compact > .ant-time-picker:last-child .ant-time-picker-input {
  border-right-width: 1px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input {
  vertical-align: top;
}
.ant-input-group-wrapper {
  display: inline-block;
  width: 100%;
  text-align: start;
  vertical-align: top;
}
.ant-input-affix-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: start;
}
.ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled) {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
}
.ant-input-affix-wrapper .ant-input {
  position: relative;
  text-align: inherit;
}
.ant-input-affix-wrapper .ant-input-prefix,
.ant-input-affix-wrapper .ant-input-suffix {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.65);
  line-height: 0;
  transform: translateY(-50%);
}
.ant-input-affix-wrapper .ant-input-prefix :not(.anticon),
.ant-input-affix-wrapper .ant-input-suffix :not(.anticon) {
  line-height: 1.5;
}
.ant-input-affix-wrapper .ant-input-disabled ~ .ant-input-suffix .anticon {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-input-affix-wrapper .ant-input-prefix {
  left: 12px;
}
.ant-input-affix-wrapper .ant-input-suffix {
  right: 12px;
}
.ant-input-affix-wrapper .ant-input:not(:first-child) {
  padding-left: 30px;
}
.ant-input-affix-wrapper .ant-input:not(:last-child) {
  padding-right: 30px;
}
.ant-input-affix-wrapper.ant-input-affix-wrapper-input-with-clear-btn .ant-input:not(:last-child) {
  padding-right: 49px;
}
.ant-input-affix-wrapper.ant-input-affix-wrapper-textarea-with-clear-btn .ant-input {
  padding-right: 22px;
}
.ant-input-affix-wrapper .ant-input {
  min-height: 100%;
}
.ant-input-password-icon {
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: all 0.3s;
}
.ant-input-password-icon:hover {
  color: #333;
}
.ant-input-clear-icon {
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  cursor: pointer;
  transition: color 0.3s;
  vertical-align: 0;
}
.ant-input-clear-icon:hover {
  color: rgba(0, 0, 0, 0.45);
}
.ant-input-clear-icon:active {
  color: rgba(0, 0, 0, 0.65);
}
.ant-input-clear-icon + i {
  margin-left: 6px;
}
.ant-input-textarea-clear-icon {
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  cursor: pointer;
  transition: color 0.3s;
  position: absolute;
  top: 0;
  right: 0;
  margin: 8px 8px 0 0;
}
.ant-input-textarea-clear-icon:hover {
  color: rgba(0, 0, 0, 0.45);
}
.ant-input-textarea-clear-icon:active {
  color: rgba(0, 0, 0, 0.65);
}
.ant-input-textarea-clear-icon + i {
  margin-left: 6px;
}
.ant-input-search-icon {
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: all 0.3s;
}
.ant-input-search-icon:hover {
  color: rgba(0, 0, 0, 0.8);
}
.ant-input-search-enter-button input {
  border-right: 0;
}
.ant-input-search-enter-button + .ant-input-group-addon,
.ant-input-search-enter-button input + .ant-input-group-addon {
  padding: 0;
  border: 0;
}
.ant-input-search-enter-button + .ant-input-group-addon .ant-input-search-button,
.ant-input-search-enter-button input + .ant-input-group-addon .ant-input-search-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-input-number {
  box-sizing: border-box;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  width: 100%;
  height: 32px;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  background-image: none;
  border: 1px solid #EAEAEA;
  transition: all 0.3s;
  display: inline-block;
  width: 90px;
  margin: 0;
  padding: 0;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.ant-input-number::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-input-number:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-input-number::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-input-number:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-input-number:hover {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
}
.ant-input-number:focus {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(3, 169, 245, 0.2);
}
.ant-input-number-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input-number-disabled:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
.ant-input-number[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input-number[disabled]:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
textarea.ant-input-number {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}
.ant-input-number-lg {
  height: 40px;
  padding: 6px 11px;
  font-size: 16px;
}
.ant-input-number-sm {
  height: 24px;
  padding: 1px 7px;
}
.ant-input-number-handler {
  position: relative;
  display: block;
  width: 100%;
  height: 50%;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.45);
  font-weight: bold;
  line-height: 0;
  text-align: center;
  transition: all 0.1s linear;
}
.ant-input-number-handler:active {
  background: #f4f4f4;
}
.ant-input-number-handler:hover .ant-input-number-handler-up-inner,
.ant-input-number-handler:hover .ant-input-number-handler-down-inner {
  color: #2bc3ff;
}
.ant-input-number-handler-up-inner,
.ant-input-number-handler-down-inner {
  display: inline-block;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 4px;
  width: 12px;
  height: 12px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 12px;
  transition: all 0.1s linear;
  user-select: none;
}
.ant-input-number-handler-up-inner > *,
.ant-input-number-handler-down-inner > * {
  line-height: 1;
}
.ant-input-number-handler-up-inner svg,
.ant-input-number-handler-down-inner svg {
  display: inline-block;
}
.ant-input-number-handler-up-inner::before,
.ant-input-number-handler-down-inner::before {
  display: none;
}
.ant-input-number-handler-up-inner .ant-input-number-handler-up-inner-icon,
.ant-input-number-handler-up-inner .ant-input-number-handler-down-inner-icon,
.ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon,
.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon {
  display: block;
}
.ant-input-number:hover {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
}
.ant-input-number-focused {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(3, 169, 245, 0.2);
}
.ant-input-number-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input-number-disabled:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
.ant-input-number-disabled .ant-input-number-input {
  cursor: not-allowed;
}
.ant-input-number-disabled .ant-input-number-handler-wrap {
  display: none;
}
.ant-input-number-input {
  width: 100%;
  height: 30px;
  padding: 0 11px;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 4px;
  outline: 0;
  transition: all 0.3s linear;
  -moz-appearance: textfield !important;
}
.ant-input-number-input::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-input-number-input:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-input-number-input::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-input-number-input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-input-number-input[type='number']::-webkit-inner-spin-button,
.ant-input-number-input[type='number']::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.ant-input-number-lg {
  padding: 0;
  font-size: 16px;
}
.ant-input-number-lg input {
  height: 38px;
}
.ant-input-number-sm {
  padding: 0;
}
.ant-input-number-sm input {
  height: 22px;
  padding: 0 7px;
}
.ant-input-number-handler-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 100%;
  background: #fff;
  border-left: 1px solid #EAEAEA;
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: opacity 0.24s linear 0.1s;
}
.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner,
.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner {
  display: inline-block;
  font-size: 12px;
  font-size: 7px \9;
  transform: scale(0.58333333) rotate(0deg);
  min-width: auto;
  margin-right: 0;
}
:root .ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner,
:root .ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner {
  font-size: 12px;
}
.ant-input-number-handler-wrap:hover .ant-input-number-handler {
  height: 40%;
}
.ant-input-number:hover .ant-input-number-handler-wrap {
  opacity: 1;
}
.ant-input-number-handler-up {
  border-top-right-radius: 4px;
  cursor: pointer;
}
.ant-input-number-handler-up-inner {
  top: 50%;
  margin-top: -5px;
  text-align: center;
}
.ant-input-number-handler-up:hover {
  height: 60% !important;
}
.ant-input-number-handler-down {
  top: 0;
  border-top: 1px solid #d9d9d9;
  border-bottom-right-radius: 4px;
  cursor: pointer;
}
.ant-input-number-handler-down-inner {
  top: 50%;
  margin-top: -6px;
  text-align: center;
}
.ant-input-number-handler-down:hover {
  height: 60% !important;
}
.ant-input-number-handler-up-disabled,
.ant-input-number-handler-down-disabled {
  cursor: not-allowed;
}
.ant-input-number-handler-up-disabled:hover .ant-input-number-handler-up-inner,
.ant-input-number-handler-down-disabled:hover .ant-input-number-handler-down-inner {
  color: rgba(0, 0, 0, 0.25);
}
.ant-layout {
  display: flex;
  flex: auto;
  flex-direction: column;
  /* fix firefox can't set height smaller than content on flex item */
  min-height: 0;
  background: #f0f2f5;
}
.ant-layout,
.ant-layout * {
  box-sizing: border-box;
}
.ant-layout.ant-layout-has-sider {
  flex-direction: row;
}
.ant-layout.ant-layout-has-sider > .ant-layout,
.ant-layout.ant-layout-has-sider > .ant-layout-content {
  overflow-x: hidden;
}
.ant-layout-header,
.ant-layout-footer {
  flex: 0 0 auto;
}
.ant-layout-header {
  height: 64px;
  padding: 0 50px;
  line-height: 64px;
  background: #001529;
}
.ant-layout-footer {
  padding: 24px 50px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  background: #f0f2f5;
}
.ant-layout-content {
  flex: auto;
  /* fix firefox can't set height smaller than content on flex item */
  min-height: 0;
}
.ant-layout-sider {
  position: relative;
  /* fix firefox can't set width smaller than content on flex item */
  min-width: 0;
  background: #001529;
  transition: all 0.2s;
}
.ant-layout-sider-children {
  height: 100%;
  margin-top: -0.1px;
  padding-top: 0.1px;
}
.ant-layout-sider-has-trigger {
  padding-bottom: 48px;
}
.ant-layout-sider-right {
  order: 1;
}
.ant-layout-sider-trigger {
  position: fixed;
  bottom: 0;
  z-index: 1;
  height: 48px;
  color: #fff;
  line-height: 48px;
  text-align: center;
  background: #002140;
  cursor: pointer;
  transition: all 0.2s;
}
.ant-layout-sider-zero-width > * {
  overflow: hidden;
}
.ant-layout-sider-zero-width-trigger {
  position: absolute;
  top: 64px;
  right: -36px;
  z-index: 1;
  width: 36px;
  height: 42px;
  color: #fff;
  font-size: 18px;
  line-height: 42px;
  text-align: center;
  background: #001529;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}
.ant-layout-sider-zero-width-trigger:hover {
  background: #192c3e;
}
.ant-layout-sider-zero-width-trigger-right {
  left: -36px;
  border-radius: 4px 0 0 4px;
}
.ant-layout-sider-light {
  background: #fff;
}
.ant-layout-sider-light .ant-layout-sider-trigger {
  color: rgba(0, 0, 0, 0.65);
  background: #fff;
}
.ant-layout-sider-light .ant-layout-sider-zero-width-trigger {
  color: rgba(0, 0, 0, 0.65);
  background: #fff;
}
.ant-list {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
}
.ant-list * {
  outline: none;
}
.ant-list-pagination {
  margin-top: 24px;
  text-align: right;
}
.ant-list-pagination .ant-pagination-options {
  text-align: left;
}
.ant-list-more {
  margin-top: 12px;
  text-align: center;
}
.ant-list-more button {
  padding-right: 32px;
  padding-left: 32px;
}
.ant-list-spin {
  min-height: 40px;
  text-align: center;
}
.ant-list-empty-text {
  padding: 16px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 14px;
  text-align: center;
}
.ant-list-items {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.ant-list-item-content {
  color: rgba(0, 0, 0, 0.65);
}
.ant-list-item-meta {
  display: flex;
  flex: 1;
  align-items: flex-start;
  font-size: 0;
}
.ant-list-item-meta-avatar {
  margin-right: 16px;
}
.ant-list-item-meta-content {
  flex: 1 0;
}
.ant-list-item-meta-title {
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 22px;
}
.ant-list-item-meta-title > a {
  color: rgba(0, 0, 0, 0.65);
  transition: all 0.3s;
}
.ant-list-item-meta-title > a:hover {
  color: #03a9f5;
}
.ant-list-item-meta-description {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 22px;
}
.ant-list-item-action {
  flex: 0 0 auto;
  margin-left: 48px;
  padding: 0;
  font-size: 0;
  list-style: none;
}
.ant-list-item-action > li {
  position: relative;
  display: inline-block;
  padding: 0 8px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
}
.ant-list-item-action > li:first-child {
  padding-left: 0;
}
.ant-list-item-action-split {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 14px;
  margin-top: -7px;
  background-color: #e8e8e8;
}
.ant-list-header {
  background: transparent;
}
.ant-list-footer {
  background: transparent;
}
.ant-list-header,
.ant-list-footer {
  padding-top: 12px;
  padding-bottom: 12px;
}
.ant-list-empty {
  padding: 16px 0;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  text-align: center;
}
.ant-list-split .ant-list-item {
  border-bottom: 1px solid #e8e8e8;
}
.ant-list-split .ant-list-item:last-child {
  border-bottom: none;
}
.ant-list-split .ant-list-header {
  border-bottom: 1px solid #e8e8e8;
}
.ant-list-loading .ant-list-spin-nested-loading {
  min-height: 32px;
}
.ant-list-something-after-last-item .ant-spin-container > .ant-list-items > .ant-list-item:last-child {
  border-bottom: 1px solid #e8e8e8;
}
.ant-list-lg .ant-list-item {
  padding-top: 16px;
  padding-bottom: 16px;
}
.ant-list-sm .ant-list-item {
  padding-top: 8px;
  padding-bottom: 8px;
}
.ant-list-vertical .ant-list-item {
  align-items: initial;
}
.ant-list-vertical .ant-list-item-main {
  display: block;
  flex: 1;
}
.ant-list-vertical .ant-list-item-extra {
  margin-left: 40px;
}
.ant-list-vertical .ant-list-item-meta {
  margin-bottom: 16px;
}
.ant-list-vertical .ant-list-item-meta-title {
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
  line-height: 24px;
}
.ant-list-vertical .ant-list-item-action {
  margin-top: 16px;
  margin-left: auto;
}
.ant-list-vertical .ant-list-item-action > li {
  padding: 0 16px;
}
.ant-list-vertical .ant-list-item-action > li:first-child {
  padding-left: 0;
}
.ant-list-grid .ant-col > .ant-list-item {
  display: block;
  max-width: 100%;
  margin-bottom: 16px;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.ant-list-item-no-flex {
  display: block;
}
.ant-list:not(.ant-list-vertical) .ant-list-item-no-flex .ant-list-item-action {
  float: right;
}
.ant-list-bordered {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.ant-list-bordered .ant-list-header {
  padding-right: 24px;
  padding-left: 24px;
}
.ant-list-bordered .ant-list-footer {
  padding-right: 24px;
  padding-left: 24px;
}
.ant-list-bordered .ant-list-item {
  padding-right: 24px;
  padding-left: 24px;
  border-bottom: 1px solid #e8e8e8;
}
.ant-list-bordered .ant-list-pagination {
  margin: 16px 24px;
}
.ant-list-bordered.ant-list-sm .ant-list-item {
  padding-right: 16px;
  padding-left: 16px;
}
.ant-list-bordered.ant-list-sm .ant-list-header,
.ant-list-bordered.ant-list-sm .ant-list-footer {
  padding: 8px 16px;
}
.ant-list-bordered.ant-list-lg .ant-list-header,
.ant-list-bordered.ant-list-lg .ant-list-footer {
  padding: 16px 24px;
}
@media screen and (max-width: 768px) {
  .ant-list-item-action {
    margin-left: 24px;
  }
  .ant-list-vertical .ant-list-item-extra {
    margin-left: 24px;
  }
}
@media screen and (max-width: 576px) {
  .ant-list-item {
    flex-wrap: wrap;
  }
  .ant-list-item-action {
    margin-left: 12px;
  }
  .ant-list-vertical .ant-list-item {
    flex-wrap: wrap-reverse;
  }
  .ant-list-vertical .ant-list-item-main {
    min-width: 220px;
  }
  .ant-list-vertical .ant-list-item-extra {
    margin: auto auto 16px;
  }
}
.ant-mentions-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
}
.ant-mentions-wrapper .ant-mentions-editor {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 32px;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #EAEAEA;
  border-radius: 4px;
  transition: all 0.3s;
  display: block;
  height: auto;
  min-height: 32px;
  padding: 0;
  line-height: 1.5;
}
.ant-mentions-wrapper .ant-mentions-editor::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-mentions-wrapper .ant-mentions-editor:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-mentions-wrapper .ant-mentions-editor::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-mentions-wrapper .ant-mentions-editor:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-mentions-wrapper .ant-mentions-editor:hover {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
}
.ant-mentions-wrapper .ant-mentions-editor:focus {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(3, 169, 245, 0.2);
}
.ant-mentions-wrapper .ant-mentions-editor-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-mentions-wrapper .ant-mentions-editor-disabled:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
.ant-mentions-wrapper .ant-mentions-editor[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-mentions-wrapper .ant-mentions-editor[disabled]:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
textarea.ant-mentions-wrapper .ant-mentions-editor {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}
.ant-mentions-wrapper .ant-mentions-editor-lg {
  height: 40px;
  padding: 6px 11px;
  font-size: 16px;
}
.ant-mentions-wrapper .ant-mentions-editor-sm {
  height: 24px;
  padding: 1px 7px;
}
.ant-mentions-wrapper .ant-mentions-editor-wrapper {
  height: auto;
  overflow-y: auto;
}
.ant-mentions-wrapper.ant-mentions-active:not(.disabled) .ant-mentions-editor {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(3, 169, 245, 0.2);
}
.ant-mentions-wrapper.disabled .ant-mentions-editor {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-mentions-wrapper.disabled .ant-mentions-editor:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
.ant-mentions-wrapper .public-DraftEditorPlaceholder-root {
  position: absolute;
  pointer-events: none;
}
.ant-mentions-wrapper .public-DraftEditorPlaceholder-root .public-DraftEditorPlaceholder-inner {
  height: auto;
  padding: 5px 11px;
  color: #bfbfbf;
  white-space: pre-wrap;
  word-wrap: break-word;
  outline: none;
  opacity: 1;
}
.ant-mentions-wrapper .DraftEditor-editorContainer .public-DraftEditor-content {
  height: auto;
  padding: 5px 11px;
}
.ant-mentions-dropdown {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
  min-width: 120px;
  max-height: 250px;
  margin-top: 1.5em;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 4px;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-mentions-dropdown-placement-top {
  margin-top: -0.1em;
}
.ant-mentions-dropdown-notfound.ant-mentions-dropdown-item {
  color: rgba(0, 0, 0, 0.25);
}
.ant-mentions-dropdown-notfound.ant-mentions-dropdown-item .anticon-loading {
  display: block;
  color: #03a9f5;
  text-align: center;
}
.ant-mentions-dropdown-item {
  position: relative;
  display: block;
  padding: 5px 12px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.65);
  font-weight: normal;
  line-height: 22px;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: background 0.3s;
}
.ant-mentions-dropdown-item:hover {
  background-color: #e6fbff;
}
.ant-mentions-dropdown-item.focus,
.ant-mentions-dropdown-item-active {
  background-color: #e6fbff;
}
.ant-mentions-dropdown-item-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-mentions-dropdown-item-disabled:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #fff;
  cursor: not-allowed;
}
.ant-mentions-dropdown-item-selected,
.ant-mentions-dropdown-item-selected:hover {
  color: rgba(0, 0, 0, 0.65);
  font-weight: bold;
  background-color: #f5f5f5;
}
.ant-mentions-dropdown-item-divider {
  height: 1px;
  margin: 1px 0;
  overflow: hidden;
  line-height: 0;
  background-color: #e8e8e8;
}
.ant-mentions {
  box-sizing: border-box;
  margin: 0;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: 'tnum';
  width: 100%;
  height: 32px;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #EAEAEA;
  border-radius: 4px;
  transition: all 0.3s;
  position: relative;
  display: inline-block;
  height: auto;
  padding: 0;
  overflow: hidden;
  line-height: 1.5;
  white-space: pre-wrap;
  vertical-align: bottom;
}
.ant-mentions::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-mentions:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-mentions::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-mentions:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-mentions:hover {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
}
.ant-mentions:focus {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(3, 169, 245, 0.2);
}
.ant-mentions-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-mentions-disabled:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
.ant-mentions[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-mentions[disabled]:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
textarea.ant-mentions {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}
.ant-mentions-lg {
  height: 40px;
  padding: 6px 11px;
  font-size: 16px;
}
.ant-mentions-sm {
  height: 24px;
  padding: 1px 7px;
}
.ant-mentions-disabled > textarea {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-mentions-disabled > textarea:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
.ant-mentions-focused {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(3, 169, 245, 0.2);
}
.ant-mentions > textarea,
.ant-mentions-measure {
  min-height: 30px;
  margin: 0;
  padding: 4px 11px;
  overflow: inherit;
  overflow-x: hidden;
  overflow-y: auto;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  font-style: inherit;
  font-variant: inherit;
  font-size-adjust: inherit;
  font-stretch: inherit;
  line-height: inherit;
  direction: inherit;
  letter-spacing: inherit;
  white-space: inherit;
  text-align: inherit;
  vertical-align: top;
  word-wrap: break-word;
  word-break: inherit;
  tab-size: inherit;
}
.ant-mentions > textarea {
  width: 100%;
  border: none;
  outline: none;
  resize: none;
}
.ant-mentions > textarea::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-mentions > textarea:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-mentions > textarea::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-mentions > textarea:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-mentions > textarea:read-only {
  cursor: default;
}
.ant-mentions-measure {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  color: transparent;
  pointer-events: none;
}
.ant-mentions-measure > span {
  display: inline-block;
  min-height: 1em;
}
.ant-mentions-dropdown {
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
  box-sizing: border-box;
  font-size: 14px;
  font-variant: initial;
  background-color: #fff;
  border-radius: 4px;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-mentions-dropdown-hidden {
  display: none;
}
.ant-mentions-dropdown-menu {
  max-height: 250px;
  margin-bottom: 0;
  padding-left: 0;
  overflow: auto;
  list-style: none;
  outline: none;
}
.ant-mentions-dropdown-menu-item {
  position: relative;
  display: block;
  min-width: 100px;
  padding: 5px 12px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.65);
  font-weight: normal;
  line-height: 22px;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: background 0.3s ease;
}
.ant-mentions-dropdown-menu-item:hover {
  background-color: #e6fbff;
}
.ant-mentions-dropdown-menu-item:first-child {
  border-radius: 4px 4px 0 0;
}
.ant-mentions-dropdown-menu-item:last-child {
  border-radius: 0 0 4px 4px;
}
.ant-mentions-dropdown-menu-item-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-mentions-dropdown-menu-item-disabled:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #fff;
  cursor: not-allowed;
}
.ant-mentions-dropdown-menu-item-selected {
  color: rgba(0, 0, 0, 0.65);
  font-weight: 600;
  background-color: #fafafa;
}
.ant-mentions-dropdown-menu-item-active {
  background-color: #e6fbff;
}
.ant-menu {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  font-feature-settings: 'tnum';
  margin-bottom: 0;
  padding-left: 0;
  color: rgba(0, 0, 0, 0.65);
  line-height: 0;
  list-style: none;
  background: #fff;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.3s, width 0.2s;
  zoom: 1;
}
.ant-menu::before,
.ant-menu::after {
  display: table;
  content: '';
}
.ant-menu::after {
  clear: both;
}
.ant-menu ul,
.ant-menu ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-menu-hidden {
  display: none;
}
.ant-menu-item-group-title {
  padding: 8px 16px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.3s;
}
.ant-menu-submenu,
.ant-menu-submenu-inline {
  transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-submenu-selected {
  color: #03a9f5;
}
.ant-menu-item:active,
.ant-menu-submenu-title:active {
  background: #e6fbff;
}
.ant-menu-submenu .ant-menu-sub {
  cursor: initial;
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-item > a {
  display: block;
  color: rgba(0, 0, 0, 0.65);
}
.ant-menu-item > a:hover {
  color: #03a9f5;
}
.ant-menu-item > a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  content: '';
}
.ant-menu-item > .ant-badge > a {
  color: rgba(0, 0, 0, 0.65);
}
.ant-menu-item > .ant-badge > a:hover {
  color: #03a9f5;
}
.ant-menu-item-divider {
  height: 1px;
  overflow: hidden;
  line-height: 0;
  background-color: #e8e8e8;
}
.ant-menu-item:hover,
.ant-menu-item-active,
.ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open,
.ant-menu-submenu-active,
.ant-menu-submenu-title:hover {
  color: #03a9f5;
}
.ant-menu-horizontal .ant-menu-item,
.ant-menu-horizontal .ant-menu-submenu {
  margin-top: -1px;
}
.ant-menu-horizontal > .ant-menu-item:hover,
.ant-menu-horizontal > .ant-menu-item-active,
.ant-menu-horizontal > .ant-menu-submenu .ant-menu-submenu-title:hover {
  background-color: transparent;
}
.ant-menu-item-selected {
  color: #03a9f5;
}
.ant-menu-item-selected > a,
.ant-menu-item-selected > a:hover {
  color: #03a9f5;
}
.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected {
  background-color: #e6fbff;
}
.ant-menu-inline,
.ant-menu-vertical,
.ant-menu-vertical-left {
  border-right: 1px solid #e8e8e8;
}
.ant-menu-vertical-right {
  border-left: 1px solid #e8e8e8;
}
.ant-menu-vertical.ant-menu-sub,
.ant-menu-vertical-left.ant-menu-sub,
.ant-menu-vertical-right.ant-menu-sub {
  min-width: 160px;
  padding: 0;
  border-right: 0;
  transform-origin: 0 0;
}
.ant-menu-vertical.ant-menu-sub .ant-menu-item,
.ant-menu-vertical-left.ant-menu-sub .ant-menu-item,
.ant-menu-vertical-right.ant-menu-sub .ant-menu-item {
  left: 0;
  margin-left: 0;
  border-right: 0;
}
.ant-menu-vertical.ant-menu-sub .ant-menu-item::after,
.ant-menu-vertical-left.ant-menu-sub .ant-menu-item::after,
.ant-menu-vertical-right.ant-menu-sub .ant-menu-item::after {
  border-right: 0;
}
.ant-menu-vertical.ant-menu-sub > .ant-menu-item,
.ant-menu-vertical-left.ant-menu-sub > .ant-menu-item,
.ant-menu-vertical-right.ant-menu-sub > .ant-menu-item,
.ant-menu-vertical.ant-menu-sub > .ant-menu-submenu,
.ant-menu-vertical-left.ant-menu-sub > .ant-menu-submenu,
.ant-menu-vertical-right.ant-menu-sub > .ant-menu-submenu {
  transform-origin: 0 0;
}
.ant-menu-horizontal.ant-menu-sub {
  min-width: 114px;
}
.ant-menu-item,
.ant-menu-submenu-title {
  position: relative;
  display: block;
  margin: 0;
  padding: 0 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-item .anticon,
.ant-menu-submenu-title .anticon {
  min-width: 14px;
  margin-right: 10px;
  font-size: 14px;
  transition: font-size 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-item .anticon + span,
.ant-menu-submenu-title .anticon + span {
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu > .ant-menu-item-divider {
  height: 1px;
  margin: 1px 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  background-color: #e8e8e8;
}
.ant-menu-submenu-popup {
  position: absolute;
  z-index: 1050;
  background: #fff;
  border-radius: 4px;
}
.ant-menu-submenu-popup .submenu-title-wrapper {
  padding-right: 20px;
}
.ant-menu-submenu-popup::before {
  position: absolute;
  top: -7px;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.0001;
  content: ' ';
}
.ant-menu-submenu > .ant-menu {
  background-color: #fff;
  border-radius: 4px;
}
.ant-menu-submenu > .ant-menu-submenu-title::after {
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  position: absolute;
  width: 6px;
  height: 1.5px;
  background: #fff;
  background: rgba(0, 0, 0, 0.65) \9;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
  background-image: none \9;
  border-radius: 2px;
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  content: '';
}
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  transform: rotate(45deg) translateY(-2px);
}
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  transform: rotate(-45deg) translateY(2px);
}
.ant-menu-submenu-vertical > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::after,
.ant-menu-submenu-inline > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::before,
.ant-menu-submenu-inline > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::before {
  background: linear-gradient(to right, #03a9f5, #03a9f5);
}
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  transform: rotate(-45deg) translateX(2px);
}
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  transform: rotate(45deg) translateX(-2px);
}
.ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow {
  transform: translateY(-2px);
}
.ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  transform: rotate(-45deg) translateX(-2px);
}
.ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  transform: rotate(45deg) translateX(2px);
}
.ant-menu-vertical .ant-menu-submenu-selected,
.ant-menu-vertical-left .ant-menu-submenu-selected,
.ant-menu-vertical-right .ant-menu-submenu-selected {
  color: #03a9f5;
}
.ant-menu-vertical .ant-menu-submenu-selected > a,
.ant-menu-vertical-left .ant-menu-submenu-selected > a,
.ant-menu-vertical-right .ant-menu-submenu-selected > a {
  color: #03a9f5;
}
.ant-menu-horizontal {
  line-height: 46px;
  white-space: nowrap;
  border: 0;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: none;
}
.ant-menu-horizontal > .ant-menu-item,
.ant-menu-horizontal > .ant-menu-submenu {
  position: relative;
  top: 1px;
  display: inline-block;
  vertical-align: bottom;
  border-bottom: 2px solid transparent;
}
.ant-menu-horizontal > .ant-menu-item:hover,
.ant-menu-horizontal > .ant-menu-submenu:hover,
.ant-menu-horizontal > .ant-menu-item-active,
.ant-menu-horizontal > .ant-menu-submenu-active,
.ant-menu-horizontal > .ant-menu-item-open,
.ant-menu-horizontal > .ant-menu-submenu-open,
.ant-menu-horizontal > .ant-menu-item-selected,
.ant-menu-horizontal > .ant-menu-submenu-selected {
  color: #03a9f5;
  border-bottom: 2px solid #03a9f5;
}
.ant-menu-horizontal > .ant-menu-item > a {
  display: block;
  color: rgba(0, 0, 0, 0.65);
}
.ant-menu-horizontal > .ant-menu-item > a:hover {
  color: #03a9f5;
}
.ant-menu-horizontal > .ant-menu-item > a::before {
  bottom: -2px;
}
.ant-menu-horizontal > .ant-menu-item-selected > a {
  color: #03a9f5;
}
.ant-menu-horizontal::after {
  display: block;
  clear: both;
  height: 0;
  content: '\20';
}
.ant-menu-vertical .ant-menu-item,
.ant-menu-vertical-left .ant-menu-item,
.ant-menu-vertical-right .ant-menu-item,
.ant-menu-inline .ant-menu-item {
  position: relative;
}
.ant-menu-vertical .ant-menu-item::after,
.ant-menu-vertical-left .ant-menu-item::after,
.ant-menu-vertical-right .ant-menu-item::after,
.ant-menu-inline .ant-menu-item::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-right: 3px solid #03a9f5;
  transform: scaleY(0.0001);
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  content: '';
}
.ant-menu-vertical .ant-menu-item,
.ant-menu-vertical-left .ant-menu-item,
.ant-menu-vertical-right .ant-menu-item,
.ant-menu-inline .ant-menu-item,
.ant-menu-vertical .ant-menu-submenu-title,
.ant-menu-vertical-left .ant-menu-submenu-title,
.ant-menu-vertical-right .ant-menu-submenu-title,
.ant-menu-inline .ant-menu-submenu-title {
  height: 40px;
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 0 16px;
  overflow: hidden;
  font-size: 14px;
  line-height: 40px;
  text-overflow: ellipsis;
}
.ant-menu-vertical .ant-menu-submenu,
.ant-menu-vertical-left .ant-menu-submenu,
.ant-menu-vertical-right .ant-menu-submenu,
.ant-menu-inline .ant-menu-submenu {
  padding-bottom: 0.02px;
}
.ant-menu-vertical .ant-menu-item:not(:last-child),
.ant-menu-vertical-left .ant-menu-item:not(:last-child),
.ant-menu-vertical-right .ant-menu-item:not(:last-child),
.ant-menu-inline .ant-menu-item:not(:last-child) {
  margin-bottom: 8px;
}
.ant-menu-vertical > .ant-menu-item,
.ant-menu-vertical-left > .ant-menu-item,
.ant-menu-vertical-right > .ant-menu-item,
.ant-menu-inline > .ant-menu-item,
.ant-menu-vertical > .ant-menu-submenu > .ant-menu-submenu-title,
.ant-menu-vertical-left > .ant-menu-submenu > .ant-menu-submenu-title,
.ant-menu-vertical-right > .ant-menu-submenu > .ant-menu-submenu-title,
.ant-menu-inline > .ant-menu-submenu > .ant-menu-submenu-title {
  height: 40px;
  line-height: 40px;
}
.ant-menu-inline {
  width: 100%;
}
.ant-menu-inline .ant-menu-selected::after,
.ant-menu-inline .ant-menu-item-selected::after {
  transform: scaleY(1);
  opacity: 1;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-inline .ant-menu-item,
.ant-menu-inline .ant-menu-submenu-title {
  width: calc(100% + 1px);
}
.ant-menu-inline .ant-menu-submenu-title {
  padding-right: 34px;
}
.ant-menu-inline-collapsed {
  width: 80px;
}
.ant-menu-inline-collapsed > .ant-menu-item,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title,
.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title {
  left: 0;
  padding: 0 32px !important;
  text-overflow: clip;
}
.ant-menu-inline-collapsed > .ant-menu-item .ant-menu-submenu-arrow,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .ant-menu-submenu-arrow,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-submenu-arrow {
  display: none;
}
.ant-menu-inline-collapsed > .ant-menu-item .anticon,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .anticon,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .anticon,
.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .anticon {
  margin: 0;
  font-size: 16px;
  line-height: 40px;
}
.ant-menu-inline-collapsed > .ant-menu-item .anticon + span,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .anticon + span,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .anticon + span,
.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .anticon + span {
  display: inline-block;
  max-width: 0;
  opacity: 0;
}
.ant-menu-inline-collapsed-tooltip {
  pointer-events: none;
}
.ant-menu-inline-collapsed-tooltip .anticon {
  display: none;
}
.ant-menu-inline-collapsed-tooltip a {
  color: rgba(255, 255, 255, 0.85);
}
.ant-menu-inline-collapsed .ant-menu-item-group-title {
  padding-right: 4px;
  padding-left: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-menu-item-group-list {
  margin: 0;
  padding: 0;
}
.ant-menu-item-group-list .ant-menu-item,
.ant-menu-item-group-list .ant-menu-submenu-title {
  padding: 0 16px 0 28px;
}
.ant-menu-root.ant-menu-vertical,
.ant-menu-root.ant-menu-vertical-left,
.ant-menu-root.ant-menu-vertical-right,
.ant-menu-root.ant-menu-inline {
  box-shadow: none;
}
.ant-menu-sub.ant-menu-inline {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.ant-menu-sub.ant-menu-inline > .ant-menu-item,
.ant-menu-sub.ant-menu-inline > .ant-menu-submenu > .ant-menu-submenu-title {
  height: 40px;
  line-height: 40px;
  list-style-position: inside;
  list-style-type: disc;
}
.ant-menu-sub.ant-menu-inline .ant-menu-item-group-title {
  padding-left: 32px;
}
.ant-menu-item-disabled,
.ant-menu-submenu-disabled {
  color: rgba(0, 0, 0, 0.25) !important;
  background: none;
  border-color: transparent !important;
  cursor: not-allowed;
}
.ant-menu-item-disabled > a,
.ant-menu-submenu-disabled > a {
  color: rgba(0, 0, 0, 0.25) !important;
  pointer-events: none;
}
.ant-menu-item-disabled > .ant-menu-submenu-title,
.ant-menu-submenu-disabled > .ant-menu-submenu-title {
  color: rgba(0, 0, 0, 0.25) !important;
  cursor: not-allowed;
}
.ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after {
  background: rgba(0, 0, 0, 0.25) !important;
}
.ant-menu-dark,
.ant-menu-dark .ant-menu-sub {
  color: rgba(255, 255, 255, 0.65);
  background: #001529;
}
.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow {
  opacity: 0.45;
  transition: all 0.3s;
}
.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  background: #fff;
}
.ant-menu-dark.ant-menu-submenu-popup {
  background: transparent;
}
.ant-menu-dark .ant-menu-inline.ant-menu-sub {
  background: #000c17;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45) inset;
}
.ant-menu-dark.ant-menu-horizontal {
  border-bottom: 0;
}
.ant-menu-dark.ant-menu-horizontal > .ant-menu-item,
.ant-menu-dark.ant-menu-horizontal > .ant-menu-submenu {
  top: 0;
  margin-top: 0;
  border-color: #001529;
  border-bottom: 0;
}
.ant-menu-dark.ant-menu-horizontal > .ant-menu-item > a::before {
  bottom: 0;
}
.ant-menu-dark .ant-menu-item,
.ant-menu-dark .ant-menu-item-group-title,
.ant-menu-dark .ant-menu-item > a {
  color: rgba(255, 255, 255, 0.65);
}
.ant-menu-dark.ant-menu-inline,
.ant-menu-dark.ant-menu-vertical,
.ant-menu-dark.ant-menu-vertical-left,
.ant-menu-dark.ant-menu-vertical-right {
  border-right: 0;
}
.ant-menu-dark.ant-menu-inline .ant-menu-item,
.ant-menu-dark.ant-menu-vertical .ant-menu-item,
.ant-menu-dark.ant-menu-vertical-left .ant-menu-item,
.ant-menu-dark.ant-menu-vertical-right .ant-menu-item {
  left: 0;
  margin-left: 0;
  border-right: 0;
}
.ant-menu-dark.ant-menu-inline .ant-menu-item::after,
.ant-menu-dark.ant-menu-vertical .ant-menu-item::after,
.ant-menu-dark.ant-menu-vertical-left .ant-menu-item::after,
.ant-menu-dark.ant-menu-vertical-right .ant-menu-item::after {
  border-right: 0;
}
.ant-menu-dark.ant-menu-inline .ant-menu-item,
.ant-menu-dark.ant-menu-inline .ant-menu-submenu-title {
  width: 100%;
}
.ant-menu-dark .ant-menu-item:hover,
.ant-menu-dark .ant-menu-item-active,
.ant-menu-dark .ant-menu-submenu-active,
.ant-menu-dark .ant-menu-submenu-open,
.ant-menu-dark .ant-menu-submenu-selected,
.ant-menu-dark .ant-menu-submenu-title:hover {
  color: #fff;
  background-color: transparent;
}
.ant-menu-dark .ant-menu-item:hover > a,
.ant-menu-dark .ant-menu-item-active > a,
.ant-menu-dark .ant-menu-submenu-active > a,
.ant-menu-dark .ant-menu-submenu-open > a,
.ant-menu-dark .ant-menu-submenu-selected > a,
.ant-menu-dark .ant-menu-submenu-title:hover > a {
  color: #fff;
}
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow {
  opacity: 1;
}
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before {
  background: #fff;
}
.ant-menu-dark .ant-menu-item:hover {
  background-color: transparent;
}
.ant-menu-dark .ant-menu-item-selected {
  color: #fff;
  border-right: 0;
}
.ant-menu-dark .ant-menu-item-selected::after {
  border-right: 0;
}
.ant-menu-dark .ant-menu-item-selected > a,
.ant-menu-dark .ant-menu-item-selected > a:hover {
  color: #fff;
}
.ant-menu-dark .ant-menu-item-selected .anticon {
  color: #fff;
}
.ant-menu-dark .ant-menu-item-selected .anticon + span {
  color: #fff;
}
.ant-menu.ant-menu-dark .ant-menu-item-selected,
.ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected {
  background-color: #03a9f5;
}
.ant-menu-dark .ant-menu-item-disabled,
.ant-menu-dark .ant-menu-submenu-disabled,
.ant-menu-dark .ant-menu-item-disabled > a,
.ant-menu-dark .ant-menu-submenu-disabled > a {
  color: rgba(255, 255, 255, 0.35) !important;
  opacity: 0.8;
}
.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title,
.ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title {
  color: rgba(255, 255, 255, 0.35) !important;
}
.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after {
  background: rgba(255, 255, 255, 0.35) !important;
}
.ant-message {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: fixed;
  top: 16px;
  left: 0;
  z-index: 1010;
  width: 100%;
  pointer-events: none;
}
.ant-message-notice {
  padding: 8px;
  text-align: center;
}
.ant-message-notice:first-child {
  margin-top: -8px;
}
.ant-message-notice-content {
  display: inline-block;
  padding: 10px 16px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: all;
}
.ant-message-success .anticon {
  color: #52c41a;
}
.ant-message-error .anticon {
  color: #f5222d;
}
.ant-message-warning .anticon {
  color: #faad14;
}
.ant-message-info .anticon,
.ant-message-loading .anticon {
  color: #1890ff;
}
.ant-message .anticon {
  position: relative;
  top: 1px;
  margin-right: 8px;
  font-size: 16px;
}
.ant-message-notice.move-up-leave.move-up-leave-active {
  overflow: hidden;
  animation-name: MessageMoveOut;
  animation-duration: 0.3s;
}
@keyframes MessageMoveOut {
  0% {
    max-height: 150px;
    padding: 8px;
    opacity: 1;
  }
  100% {
    max-height: 0;
    padding: 0;
    opacity: 0;
  }
}
.ant-modal {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  top: 100px;
  width: auto;
  margin: 0 auto;
  padding-bottom: 24px;
  pointer-events: none;
}
.ant-modal-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  overflow: auto;
  outline: 0;
  -webkit-overflow-scrolling: touch;
}
.ant-modal-title {
  margin: 0;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  word-wrap: break-word;
}
.ant-modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
}
.ant-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 0;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  transition: color 0.3s;
}
.ant-modal-close-x {
  display: block;
  width: 56px;
  height: 56px;
  font-size: 16px;
  font-style: normal;
  line-height: 56px;
  text-align: center;
  text-transform: none;
  text-rendering: auto;
}
.ant-modal-close:focus,
.ant-modal-close:hover {
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
}
.ant-modal-header {
  padding: 16px 24px;
  color: rgba(0, 0, 0, 0.65);
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 4px 4px 0 0;
}
.ant-modal-body {
  padding: 24px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}
.ant-modal-footer {
  padding: 10px 16px;
  text-align: right;
  background: transparent;
  border-top: 1px solid #e8e8e8;
  border-radius: 0 0 4px 4px;
}
.ant-modal-footer button + button {
  margin-bottom: 0;
  margin-left: 8px;
}
.ant-modal.zoom-enter,
.ant-modal.zoom-appear {
  transform: none;
  opacity: 0;
  animation-duration: 0.3s;
  user-select: none;
}
.ant-modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  filter: alpha(opacity=50);
}
.ant-modal-mask-hidden {
  display: none;
}
.ant-modal-open {
  overflow: hidden;
}
.ant-modal-centered {
  text-align: center;
}
.ant-modal-centered::before {
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  content: '';
}
.ant-modal-centered .ant-modal {
  top: 0;
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .ant-modal {
    max-width: calc(100vw - 16px);
    margin: 8px auto;
  }
  .ant-modal-centered .ant-modal {
    flex: 1;
  }
}
.ant-modal-confirm .ant-modal-header {
  display: none;
}
.ant-modal-confirm .ant-modal-close {
  display: none;
}
.ant-modal-confirm .ant-modal-body {
  padding: 32px 32px 24px;
}
.ant-modal-confirm-body-wrapper {
  zoom: 1;
}
.ant-modal-confirm-body-wrapper::before,
.ant-modal-confirm-body-wrapper::after {
  display: table;
  content: '';
}
.ant-modal-confirm-body-wrapper::after {
  clear: both;
}
.ant-modal-confirm-body .ant-modal-confirm-title {
  display: block;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}
.ant-modal-confirm-body .ant-modal-confirm-content {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
}
.ant-modal-confirm-body > .anticon {
  float: left;
  margin-right: 16px;
  font-size: 22px;
}
.ant-modal-confirm-body > .anticon + .ant-modal-confirm-title + .ant-modal-confirm-content {
  margin-left: 38px;
}
.ant-modal-confirm .ant-modal-confirm-btns {
  float: right;
  margin-top: 24px;
}
.ant-modal-confirm .ant-modal-confirm-btns button + button {
  margin-bottom: 0;
  margin-left: 8px;
}
.ant-modal-confirm-error .ant-modal-confirm-body > .anticon {
  color: #f5222d;
}
.ant-modal-confirm-warning .ant-modal-confirm-body > .anticon,
.ant-modal-confirm-confirm .ant-modal-confirm-body > .anticon {
  color: #faad14;
}
.ant-modal-confirm-info .ant-modal-confirm-body > .anticon {
  color: #1890ff;
}
.ant-modal-confirm-success .ant-modal-confirm-body > .anticon {
  color: #52c41a;
}
.ant-notification {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: fixed;
  z-index: 1010;
  width: 384px;
  max-width: calc(100vw - 32px);
  margin-right: 24px;
}
.ant-notification-topLeft,
.ant-notification-bottomLeft {
  margin-right: 0;
  margin-left: 24px;
}
.ant-notification-topLeft .ant-notification-fade-enter.ant-notification-fade-enter-active,
.ant-notification-bottomLeft .ant-notification-fade-enter.ant-notification-fade-enter-active,
.ant-notification-topLeft .ant-notification-fade-appear.ant-notification-fade-appear-active,
.ant-notification-bottomLeft .ant-notification-fade-appear.ant-notification-fade-appear-active {
  animation-name: NotificationLeftFadeIn;
}
.ant-notification-close-icon {
  font-size: 14px;
  cursor: pointer;
}
.ant-notification-notice {
  position: relative;
  margin-bottom: 16px;
  padding: 16px 24px;
  overflow: hidden;
  line-height: 1.5;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ant-notification-notice-message {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
  line-height: 24px;
}
.ant-notification-notice-message-single-line-auto-margin {
  display: block;
  width: calc(384px - 24px * 2 - 24px - 48px - 100%);
  max-width: 4px;
  background-color: transparent;
  pointer-events: none;
}
.ant-notification-notice-message-single-line-auto-margin::before {
  display: block;
  content: '';
}
.ant-notification-notice-description {
  font-size: 14px;
}
.ant-notification-notice-closable .ant-notification-notice-message {
  padding-right: 24px;
}
.ant-notification-notice-with-icon .ant-notification-notice-message {
  margin-bottom: 4px;
  margin-left: 48px;
  font-size: 16px;
}
.ant-notification-notice-with-icon .ant-notification-notice-description {
  margin-left: 48px;
  font-size: 14px;
}
.ant-notification-notice-icon {
  position: absolute;
  margin-left: 4px;
  font-size: 24px;
  line-height: 24px;
}
.anticon.ant-notification-notice-icon-success {
  color: #52c41a;
}
.anticon.ant-notification-notice-icon-info {
  color: #1890ff;
}
.anticon.ant-notification-notice-icon-warning {
  color: #faad14;
}
.anticon.ant-notification-notice-icon-error {
  color: #f5222d;
}
.ant-notification-notice-close {
  position: absolute;
  top: 16px;
  right: 22px;
  color: rgba(0, 0, 0, 0.45);
  outline: none;
}
.ant-notification-notice-close:hover {
  color: rgba(0, 0, 0, 0.67);
}
.ant-notification-notice-btn {
  float: right;
  margin-top: 16px;
}
.ant-notification .notification-fade-effect {
  animation-duration: 0.24s;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-fill-mode: both;
}
.ant-notification-fade-enter,
.ant-notification-fade-appear {
  opacity: 0;
  animation-duration: 0.24s;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-notification-fade-leave {
  animation-duration: 0.24s;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-fill-mode: both;
  animation-duration: 0.2s;
  animation-play-state: paused;
}
.ant-notification-fade-enter.ant-notification-fade-enter-active,
.ant-notification-fade-appear.ant-notification-fade-appear-active {
  animation-name: NotificationFadeIn;
  animation-play-state: running;
}
.ant-notification-fade-leave.ant-notification-fade-leave-active {
  animation-name: NotificationFadeOut;
  animation-play-state: running;
}
@keyframes NotificationFadeIn {
  0% {
    left: 384px;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes NotificationLeftFadeIn {
  0% {
    right: 384px;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
@keyframes NotificationFadeOut {
  0% {
    max-height: 150px;
    margin-bottom: 16px;
    padding-top: 16px 24px;
    padding-bottom: 16px 24px;
    opacity: 1;
  }
  100% {
    max-height: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
  }
}
.ant-page-header {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  padding: 16px 24px;
  background-color: #fff;
}
.ant-page-header-ghost {
  background-color: inherit;
}
.ant-page-header.has-breadcrumb {
  padding-top: 12px;
}
.ant-page-header.has-footer {
  padding-bottom: 0;
}
.ant-page-header-back {
  float: left;
  margin: 8px 0;
  margin-right: 16px;
  font-size: 16px;
  line-height: 1;
}
.ant-page-header-back-button {
  color: #03a9f5;
  text-decoration: none;
  outline: none;
  transition: color 0.3s;
  color: #000;
  cursor: pointer;
}
.ant-page-header-back-button:focus,
.ant-page-header-back-button:hover {
  color: #2bc3ff;
}
.ant-page-header-back-button:active {
  color: #0086cf;
}
.ant-page-header .ant-divider-vertical {
  height: 14px;
  margin: 0 12px;
  vertical-align: middle;
}
.ant-breadcrumb + .ant-page-header-heading {
  margin-top: 8px;
}
.ant-page-header-heading {
  width: 100%;
  overflow: hidden;
}
.ant-page-header-heading-title {
  display: block;
  float: left;
  margin-bottom: 0;
  padding-right: 12px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
}
.ant-page-header-heading .ant-avatar {
  float: left;
  margin-right: 12px;
}
.ant-page-header-heading-sub-title {
  float: left;
  margin: 5px 0;
  margin-right: 12px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 22px;
}
.ant-page-header-heading-tags {
  float: left;
  margin: 4px 0;
}
.ant-page-header-heading-extra {
  float: right;
}
.ant-page-header-heading-extra > * {
  margin-left: 8px;
}
.ant-page-header-heading-extra > *:first-child {
  margin-left: 0;
}
.ant-page-header-content {
  padding-top: 12px;
  overflow: hidden;
}
.ant-page-header-footer {
  margin-top: 16px;
}
.ant-page-header-footer .ant-tabs-bar {
  margin-bottom: 1px;
  border-bottom: 0;
}
.ant-page-header-footer .ant-tabs-bar .ant-tabs-nav .ant-tabs-tab {
  padding: 8px;
  font-size: 16px;
}
@media (max-width: 576px) {
  .ant-page-header-heading-extra {
    display: block;
    float: unset;
    width: 100%;
    padding-top: 12px;
    overflow: hidden;
  }
}
.ant-pagination {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
}
.ant-pagination ul,
.ant-pagination ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-pagination::after {
  display: block;
  clear: both;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  content: ' ';
}
.ant-pagination-total-text {
  display: inline-block;
  height: 32px;
  margin-right: 8px;
  line-height: 30px;
  vertical-align: middle;
}
.ant-pagination-item {
  display: inline-block;
  min-width: 32px;
  height: 32px;
  margin-right: 8px;
  font-family: Arial;
  line-height: 30px;
  text-align: center;
  vertical-align: middle;
  list-style: none;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  outline: 0;
  cursor: pointer;
  user-select: none;
}
.ant-pagination-item a {
  display: block;
  padding: 0 6px;
  color: rgba(0, 0, 0, 0.65);
  transition: none;
}
.ant-pagination-item a:hover {
  text-decoration: none;
}
.ant-pagination-item:focus,
.ant-pagination-item:hover {
  border-color: #03a9f5;
  transition: all 0.3s;
}
.ant-pagination-item:focus a,
.ant-pagination-item:hover a {
  color: #03a9f5;
}
.ant-pagination-item-active {
  font-weight: 500;
  background: #fff;
  border-color: #03a9f5;
}
.ant-pagination-item-active a {
  color: #03a9f5;
}
.ant-pagination-item-active:focus,
.ant-pagination-item-active:hover {
  border-color: #2bc3ff;
}
.ant-pagination-item-active:focus a,
.ant-pagination-item-active:hover a {
  color: #2bc3ff;
}
.ant-pagination-jump-prev,
.ant-pagination-jump-next {
  outline: 0;
}
.ant-pagination-jump-prev .ant-pagination-item-container,
.ant-pagination-jump-next .ant-pagination-item-container {
  position: relative;
}
.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon,
.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon {
  display: inline-block;
  font-size: 12px;
  font-size: 12px \9;
  transform: scale(1) rotate(0deg);
  color: #03a9f5;
  letter-spacing: -1px;
  opacity: 0;
  transition: all 0.2s;
}
:root .ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon,
:root .ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon {
  font-size: 12px;
}
.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon-svg,
.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon-svg {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-ellipsis,
.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-ellipsis {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  color: rgba(0, 0, 0, 0.25);
  letter-spacing: 2px;
  text-align: center;
  text-indent: 0.13em;
  opacity: 1;
  transition: all 0.2s;
}
.ant-pagination-jump-prev:focus .ant-pagination-item-link-icon,
.ant-pagination-jump-next:focus .ant-pagination-item-link-icon,
.ant-pagination-jump-prev:hover .ant-pagination-item-link-icon,
.ant-pagination-jump-next:hover .ant-pagination-item-link-icon {
  opacity: 1;
}
.ant-pagination-jump-prev:focus .ant-pagination-item-ellipsis,
.ant-pagination-jump-next:focus .ant-pagination-item-ellipsis,
.ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis,
.ant-pagination-jump-next:hover .ant-pagination-item-ellipsis {
  opacity: 0;
}
.ant-pagination-prev,
.ant-pagination-jump-prev,
.ant-pagination-jump-next {
  margin-right: 8px;
}
.ant-pagination-prev,
.ant-pagination-next,
.ant-pagination-jump-prev,
.ant-pagination-jump-next {
  display: inline-block;
  min-width: 32px;
  height: 32px;
  color: rgba(0, 0, 0, 0.65);
  font-family: Arial;
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
  list-style: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-pagination-prev,
.ant-pagination-next {
  outline: 0;
}
.ant-pagination-prev a,
.ant-pagination-next a {
  color: rgba(0, 0, 0, 0.65);
  user-select: none;
}
.ant-pagination-prev:hover a,
.ant-pagination-next:hover a {
  border-color: #2bc3ff;
}
.ant-pagination-prev .ant-pagination-item-link,
.ant-pagination-next .ant-pagination-item-link {
  display: block;
  height: 100%;
  font-size: 12px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  outline: none;
  transition: all 0.3s;
}
.ant-pagination-prev:focus .ant-pagination-item-link,
.ant-pagination-next:focus .ant-pagination-item-link,
.ant-pagination-prev:hover .ant-pagination-item-link,
.ant-pagination-next:hover .ant-pagination-item-link {
  color: #03a9f5;
  border-color: #03a9f5;
}
.ant-pagination-disabled,
.ant-pagination-disabled:hover,
.ant-pagination-disabled:focus {
  cursor: not-allowed;
}
.ant-pagination-disabled a,
.ant-pagination-disabled:hover a,
.ant-pagination-disabled:focus a,
.ant-pagination-disabled .ant-pagination-item-link,
.ant-pagination-disabled:hover .ant-pagination-item-link,
.ant-pagination-disabled:focus .ant-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  cursor: not-allowed;
}
.ant-pagination-slash {
  margin: 0 10px 0 5px;
}
.ant-pagination-options {
  display: inline-block;
  margin-left: 16px;
  vertical-align: middle;
}
.ant-pagination-options-size-changer.ant-select {
  display: inline-block;
  width: auto;
  margin-right: 8px;
}
.ant-pagination-options-quick-jumper {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  vertical-align: top;
}
.ant-pagination-options-quick-jumper input {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 32px;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  background-image: none;
  border: 1px solid #EAEAEA;
  border-radius: 4px;
  transition: all 0.3s;
  width: 50px;
  margin: 0 8px;
}
.ant-pagination-options-quick-jumper input::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-pagination-options-quick-jumper input:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-pagination-options-quick-jumper input::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-pagination-options-quick-jumper input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-pagination-options-quick-jumper input:hover {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
}
.ant-pagination-options-quick-jumper input:focus {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(3, 169, 245, 0.2);
}
.ant-pagination-options-quick-jumper input-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-pagination-options-quick-jumper input-disabled:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
.ant-pagination-options-quick-jumper input[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-pagination-options-quick-jumper input[disabled]:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
textarea.ant-pagination-options-quick-jumper input {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}
.ant-pagination-options-quick-jumper input-lg {
  height: 40px;
  padding: 6px 11px;
  font-size: 16px;
}
.ant-pagination-options-quick-jumper input-sm {
  height: 24px;
  padding: 1px 7px;
}
.ant-pagination-simple .ant-pagination-prev,
.ant-pagination-simple .ant-pagination-next {
  height: 24px;
  line-height: 24px;
  vertical-align: top;
}
.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link,
.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link {
  height: 24px;
  border: 0;
}
.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link::after,
.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link::after {
  height: 24px;
  line-height: 24px;
}
.ant-pagination-simple .ant-pagination-simple-pager {
  display: inline-block;
  height: 24px;
  margin-right: 8px;
}
.ant-pagination-simple .ant-pagination-simple-pager input {
  box-sizing: border-box;
  height: 100%;
  margin-right: 8px;
  padding: 0 6px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
}
.ant-pagination-simple .ant-pagination-simple-pager input:hover {
  border-color: #03a9f5;
}
.ant-pagination.mini .ant-pagination-total-text,
.ant-pagination.mini .ant-pagination-simple-pager {
  height: 24px;
  line-height: 24px;
}
.ant-pagination.mini .ant-pagination-item {
  min-width: 24px;
  height: 24px;
  margin: 0;
  line-height: 22px;
}
.ant-pagination.mini .ant-pagination-item:not(.ant-pagination-item-active) {
  background: transparent;
  border-color: transparent;
}
.ant-pagination.mini .ant-pagination-prev,
.ant-pagination.mini .ant-pagination-next {
  min-width: 24px;
  height: 24px;
  margin: 0;
  line-height: 24px;
}
.ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link,
.ant-pagination.mini .ant-pagination-next .ant-pagination-item-link {
  background: transparent;
  border-color: transparent;
}
.ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link::after,
.ant-pagination.mini .ant-pagination-next .ant-pagination-item-link::after {
  height: 24px;
  line-height: 24px;
}
.ant-pagination.mini .ant-pagination-jump-prev,
.ant-pagination.mini .ant-pagination-jump-next {
  height: 24px;
  margin-right: 0;
  line-height: 24px;
}
.ant-pagination.mini .ant-pagination-options {
  margin-left: 2px;
}
.ant-pagination.mini .ant-pagination-options-quick-jumper {
  height: 24px;
  line-height: 24px;
}
.ant-pagination.mini .ant-pagination-options-quick-jumper input {
  height: 24px;
  padding: 1px 7px;
  width: 44px;
}
.ant-pagination.ant-pagination-disabled {
  cursor: not-allowed;
}
.ant-pagination.ant-pagination-disabled .ant-pagination-item {
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}
.ant-pagination.ant-pagination-disabled .ant-pagination-item a {
  color: rgba(0, 0, 0, 0.25);
  background: transparent;
  border: none;
  cursor: not-allowed;
}
.ant-pagination.ant-pagination-disabled .ant-pagination-item-active {
  background: #dbdbdb;
  border-color: transparent;
}
.ant-pagination.ant-pagination-disabled .ant-pagination-item-active a {
  color: #fff;
}
.ant-pagination.ant-pagination-disabled .ant-pagination-item-link,
.ant-pagination.ant-pagination-disabled .ant-pagination-item-link:hover,
.ant-pagination.ant-pagination-disabled .ant-pagination-item-link:focus {
  color: rgba(0, 0, 0, 0.45);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}
.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:focus .ant-pagination-item-link-icon,
.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:focus .ant-pagination-item-link-icon,
.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:hover .ant-pagination-item-link-icon,
.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:hover .ant-pagination-item-link-icon {
  opacity: 0;
}
.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:focus .ant-pagination-item-ellipsis,
.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:focus .ant-pagination-item-ellipsis,
.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis,
.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:hover .ant-pagination-item-ellipsis {
  opacity: 1;
}
@media only screen and (max-width: 992px) {
  .ant-pagination-item-after-jump-prev,
  .ant-pagination-item-before-jump-next {
    display: none;
  }
}
@media only screen and (max-width: 576px) {
  .ant-pagination-options {
    display: none;
  }
}
.ant-popover {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1030;
  font-weight: normal;
  white-space: normal;
  text-align: left;
  cursor: auto;
  user-select: text;
}
.ant-popover::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.01);
  content: '';
}
.ant-popover-hidden {
  display: none;
}
.ant-popover-placement-top,
.ant-popover-placement-topLeft,
.ant-popover-placement-topRight {
  padding-bottom: 10px;
}
.ant-popover-placement-right,
.ant-popover-placement-rightTop,
.ant-popover-placement-rightBottom {
  padding-left: 10px;
}
.ant-popover-placement-bottom,
.ant-popover-placement-bottomLeft,
.ant-popover-placement-bottomRight {
  padding-top: 10px;
}
.ant-popover-placement-left,
.ant-popover-placement-leftTop,
.ant-popover-placement-leftBottom {
  padding-right: 10px;
}
.ant-popover-inner {
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15) \9;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ant-popover {
    /* IE10+ */
  }
  .ant-popover-inner {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
}
.ant-popover-title {
  min-width: 177px;
  min-height: 32px;
  margin: 0;
  padding: 5px 16px 4px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  border-bottom: 1px solid #e8e8e8;
}
.ant-popover-inner-content {
  padding: 12px 16px;
  color: rgba(0, 0, 0, 0.65);
}
.ant-popover-message {
  position: relative;
  padding: 4px 0 12px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
}
.ant-popover-message > .anticon {
  position: absolute;
  top: 8px;
  color: #faad14;
  font-size: 14px;
}
.ant-popover-message-title {
  padding-left: 22px;
}
.ant-popover-buttons {
  margin-bottom: 4px;
  text-align: right;
}
.ant-popover-buttons button {
  margin-left: 8px;
}
.ant-popover-arrow {
  position: absolute;
  display: block;
  width: 8.48528137px;
  height: 8.48528137px;
  background: transparent;
  border-style: solid;
  border-width: 4.24264069px;
  transform: rotate(45deg);
}
.ant-popover-placement-top > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-topLeft > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-topRight > .ant-popover-content > .ant-popover-arrow {
  bottom: 6.2px;
  border-top-color: transparent;
  border-right-color: #fff;
  border-bottom-color: #fff;
  border-left-color: transparent;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
}
.ant-popover-placement-top > .ant-popover-content > .ant-popover-arrow {
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.ant-popover-placement-topLeft > .ant-popover-content > .ant-popover-arrow {
  left: 16px;
}
.ant-popover-placement-topRight > .ant-popover-content > .ant-popover-arrow {
  right: 16px;
}
.ant-popover-placement-right > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-rightTop > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-rightBottom > .ant-popover-content > .ant-popover-arrow {
  left: 6px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #fff;
  border-left-color: #fff;
  box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
}
.ant-popover-placement-right > .ant-popover-content > .ant-popover-arrow {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.ant-popover-placement-rightTop > .ant-popover-content > .ant-popover-arrow {
  top: 12px;
}
.ant-popover-placement-rightBottom > .ant-popover-content > .ant-popover-arrow {
  bottom: 12px;
}
.ant-popover-placement-bottom > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-bottomLeft > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-bottomRight > .ant-popover-content > .ant-popover-arrow {
  top: 6px;
  border-top-color: #fff;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #fff;
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06);
}
.ant-popover-placement-bottom > .ant-popover-content > .ant-popover-arrow {
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.ant-popover-placement-bottomLeft > .ant-popover-content > .ant-popover-arrow {
  left: 16px;
}
.ant-popover-placement-bottomRight > .ant-popover-content > .ant-popover-arrow {
  right: 16px;
}
.ant-popover-placement-left > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-leftTop > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-leftBottom > .ant-popover-content > .ant-popover-arrow {
  right: 6px;
  border-top-color: #fff;
  border-right-color: #fff;
  border-bottom-color: transparent;
  border-left-color: transparent;
  box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
}
.ant-popover-placement-left > .ant-popover-content > .ant-popover-arrow {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.ant-popover-placement-leftTop > .ant-popover-content > .ant-popover-arrow {
  top: 12px;
}
.ant-popover-placement-leftBottom > .ant-popover-content > .ant-popover-arrow {
  bottom: 12px;
}
.ant-progress {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
}
.ant-progress-line {
  position: relative;
  width: 100%;
  font-size: 14px;
}
.ant-progress-small.ant-progress-line,
.ant-progress-small.ant-progress-line .ant-progress-text .anticon {
  font-size: 12px;
}
.ant-progress-outer {
  display: inline-block;
  width: 100%;
  margin-right: 0;
  padding-right: 0;
}
.ant-progress-show-info .ant-progress-outer {
  margin-right: calc(-2em - 8px);
  padding-right: calc(2em + 8px);
}
.ant-progress-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  vertical-align: middle;
  background-color: #f5f5f5;
  border-radius: 100px;
}
.ant-progress-circle-trail {
  stroke: #f5f5f5;
}
.ant-progress-circle-path {
  animation: ant-progress-appear 0.3s;
}
.ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
  stroke: #1890ff;
}
.ant-progress-success-bg,
.ant-progress-bg {
  position: relative;
  background-color: #1890ff;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
}
.ant-progress-success-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #52c41a;
}
.ant-progress-text {
  display: inline-block;
  width: 2em;
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 1em;
  line-height: 1;
  white-space: nowrap;
  text-align: left;
  vertical-align: middle;
  word-break: normal;
}
.ant-progress-text .anticon {
  font-size: 14px;
}
.ant-progress-status-active .ant-progress-bg::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  border-radius: 10px;
  opacity: 0;
  animation: ant-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  content: '';
}
.ant-progress-status-exception .ant-progress-bg {
  background-color: #f5222d;
}
.ant-progress-status-exception .ant-progress-text {
  color: #f5222d;
}
.ant-progress-status-exception .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
  stroke: #f5222d;
}
.ant-progress-status-success .ant-progress-bg {
  background-color: #52c41a;
}
.ant-progress-status-success .ant-progress-text {
  color: #52c41a;
}
.ant-progress-status-success .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
  stroke: #52c41a;
}
.ant-progress-circle .ant-progress-inner {
  position: relative;
  line-height: 1;
  background-color: transparent;
}
.ant-progress-circle .ant-progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1;
  white-space: normal;
  text-align: center;
  transform: translate(-50%, -50%);
}
.ant-progress-circle .ant-progress-text .anticon {
  font-size: 1.16666667em;
}
.ant-progress-circle.ant-progress-status-exception .ant-progress-text {
  color: #f5222d;
}
.ant-progress-circle.ant-progress-status-success .ant-progress-text {
  color: #52c41a;
}
@keyframes ant-progress-active {
  0% {
    width: 0;
    opacity: 0.1;
  }
  20% {
    width: 0;
    opacity: 0.5;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}
.ant-radio-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
}
.ant-radio-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  margin-right: 8px;
  white-space: nowrap;
  cursor: pointer;
}
.ant-radio {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  vertical-align: sub;
  outline: none;
  cursor: pointer;
}
.ant-radio-wrapper:hover .ant-radio,
.ant-radio:hover .ant-radio-inner,
.ant-radio-input:focus + .ant-radio-inner {
  border-color: #03a9f5;
}
.ant-radio-input:focus + .ant-radio-inner {
  box-shadow: 0 0 0 3px rgba(3, 169, 245, 0.08);
}
.ant-radio-checked::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #03a9f5;
  border-radius: 50%;
  visibility: hidden;
  animation: antRadioEffect 0.36s ease-in-out;
  animation-fill-mode: both;
  content: '';
}
.ant-radio:hover::after,
.ant-radio-wrapper:hover .ant-radio::after {
  visibility: visible;
}
.ant-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: 100px;
  transition: all 0.3s;
}
.ant-radio-inner::after {
  position: absolute;
  top: 3px;
  left: 3px;
  display: table;
  width: 8px;
  height: 8px;
  background-color: #03a9f5;
  border-top: 0;
  border-left: 0;
  border-radius: 8px;
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  content: ' ';
}
.ant-radio-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}
.ant-radio-checked .ant-radio-inner {
  border-color: #03a9f5;
}
.ant-radio-checked .ant-radio-inner::after {
  transform: scale(1);
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-radio-disabled .ant-radio-inner {
  background-color: #f5f5f5;
  border-color: #d9d9d9 !important;
  cursor: not-allowed;
}
.ant-radio-disabled .ant-radio-inner::after {
  background-color: rgba(0, 0, 0, 0.2);
}
.ant-radio-disabled .ant-radio-input {
  cursor: not-allowed;
}
.ant-radio-disabled + span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
span.ant-radio + * {
  padding-right: 8px;
  padding-left: 8px;
}
.ant-radio-button-wrapper {
  position: relative;
  display: inline-block;
  height: 32px;
  margin: 0;
  padding: 0 15px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 30px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top-width: 1.02px;
  border-left: 0;
  cursor: pointer;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.ant-radio-button-wrapper a {
  color: rgba(0, 0, 0, 0.65);
}
.ant-radio-button-wrapper > .ant-radio-button {
  display: block;
  width: 0;
  height: 0;
  margin-left: 0;
}
.ant-radio-group-large .ant-radio-button-wrapper {
  height: 40px;
  font-size: 16px;
  line-height: 38px;
}
.ant-radio-group-small .ant-radio-button-wrapper {
  height: 24px;
  padding: 0 7px;
  line-height: 22px;
}
.ant-radio-button-wrapper:not(:first-child)::before {
  position: absolute;
  top: 0;
  left: -1px;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #d9d9d9;
  content: '';
}
.ant-radio-button-wrapper:first-child {
  border-left: 1px solid #d9d9d9;
  border-radius: 4px 0 0 4px;
}
.ant-radio-button-wrapper:last-child {
  border-radius: 0 4px 4px 0;
}
.ant-radio-button-wrapper:first-child:last-child {
  border-radius: 4px;
}
.ant-radio-button-wrapper:hover {
  position: relative;
  color: #03a9f5;
}
.ant-radio-button-wrapper:focus-within {
  outline: 3px solid rgba(3, 169, 245, 0.06);
}
.ant-radio-button-wrapper .ant-radio-inner,
.ant-radio-button-wrapper input[type='checkbox'],
.ant-radio-button-wrapper input[type='radio'] {
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
  z-index: 1;
  color: #03a9f5;
  background: #fff;
  border-color: #03a9f5;
  box-shadow: -1px 0 0 0 #03a9f5;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before {
  background-color: #03a9f5 !important;
  opacity: 0.1;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
  border-color: #03a9f5;
  box-shadow: none !important;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
  color: #2bc3ff;
  border-color: #2bc3ff;
  box-shadow: -1px 0 0 0 #2bc3ff;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
  color: #0086cf;
  border-color: #0086cf;
  box-shadow: -1px 0 0 0 #0086cf;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
  outline: 3px solid rgba(3, 169, 245, 0.06);
}
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
  color: #fff;
  background: #03a9f5;
  border-color: #03a9f5;
}
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
  color: #fff;
  background: #2bc3ff;
  border-color: #2bc3ff;
}
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
  color: #fff;
  background: #0086cf;
  border-color: #0086cf;
}
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
  outline: 3px solid rgba(3, 169, 245, 0.06);
}
.ant-radio-button-wrapper-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}
.ant-radio-button-wrapper-disabled:first-child,
.ant-radio-button-wrapper-disabled:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
}
.ant-radio-button-wrapper-disabled:first-child {
  border-left-color: #d9d9d9;
}
.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
  color: #fff;
  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;
  }
}
@supports (-moz-appearance: meterbar) and (background-blend-mode: difference, normal) {
  .ant-radio {
    vertical-align: text-bottom;
  }
}
.ant-rate {
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  font-feature-settings: 'tnum';
  display: inline-block;
  margin: 0;
  padding: 0;
  color: #fadb14;
  font-size: 20px;
  line-height: unset;
  list-style: none;
  outline: none;
}
.ant-rate-disabled .ant-rate-star {
  cursor: default;
}
.ant-rate-disabled .ant-rate-star:hover {
  transform: scale(1);
}
.ant-rate-star {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-rate-star:not(:last-child) {
  margin-right: 8px;
}
.ant-rate-star > div:focus {
  outline: 0;
}
.ant-rate-star > div:hover,
.ant-rate-star > div:focus {
  transform: scale(1.1);
}
.ant-rate-star-first,
.ant-rate-star-second {
  color: #e8e8e8;
  transition: all 0.3s;
  user-select: none;
}
.ant-rate-star-first .anticon,
.ant-rate-star-second .anticon {
  vertical-align: middle;
}
.ant-rate-star-first {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
}
.ant-rate-star-half .ant-rate-star-first,
.ant-rate-star-half .ant-rate-star-second {
  opacity: 1;
}
.ant-rate-star-half .ant-rate-star-first,
.ant-rate-star-full .ant-rate-star-second {
  color: inherit;
}
.ant-rate-text {
  display: inline-block;
  margin-left: 8px;
  font-size: 14px;
}
.ant-result {
  padding: 48px 32px;
}
.ant-result-success .ant-result-icon > .anticon {
  color: #52c41a;
}
.ant-result-error .ant-result-icon > .anticon {
  color: #f5222d;
}
.ant-result-info .ant-result-icon > .anticon {
  color: #1890ff;
}
.ant-result-warning .ant-result-icon > .anticon {
  color: #faad14;
}
.ant-result-image {
  width: 250px;
  height: 295px;
  margin: auto;
}
.ant-result-icon {
  margin-bottom: 24px;
  text-align: center;
}
.ant-result-icon > .anticon {
  font-size: 72px;
}
.ant-result-title {
  color: rgba(0, 0, 0, 0.85);
  font-size: 24px;
  line-height: 1.8;
  text-align: center;
}
.ant-result-subtitle {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
.ant-result-extra {
  margin-top: 32px;
  text-align: center;
}
.ant-result-extra > * {
  margin-right: 8px;
}
.ant-result-extra > *:last-child {
  margin-right: 0;
}
.ant-result-content {
  margin-top: 24px;
  padding: 24px 40px;
  background-color: #fafafa;
}
.ant-select {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  outline: 0;
}
.ant-select ul,
.ant-select ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-select > ul > li > a {
  padding: 0;
  background-color: #fff;
}
.ant-select-arrow {
  display: inline-block;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 11px;
  margin-top: -6px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  line-height: 1;
  transform-origin: 50% 50%;
}
.ant-select-arrow > * {
  line-height: 1;
}
.ant-select-arrow svg {
  display: inline-block;
}
.ant-select-arrow::before {
  display: none;
}
.ant-select-arrow .ant-select-arrow-icon {
  display: block;
}
.ant-select-arrow .ant-select-arrow-icon svg {
  transition: transform 0.3s;
}
.ant-select-selection {
  display: block;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #EAEAEA;
  border-top-width: 1.02px;
  border-radius: 4px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  user-select: none;
}
.ant-select-selection:hover {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
}
.ant-select-focused .ant-select-selection,
.ant-select-selection:focus,
.ant-select-selection:active {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(3, 169, 245, 0.2);
}
.ant-select-selection__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: 12px;
  text-align: center;
  text-transform: none;
  background: #fff;
  cursor: pointer;
  opacity: 0;
  transition: color 0.3s ease, opacity 0.15s ease;
  text-rendering: auto;
}
.ant-select-selection__clear::before {
  display: block;
}
.ant-select-selection__clear:hover {
  color: rgba(0, 0, 0, 0.45);
}
.ant-select-selection:hover .ant-select-selection__clear {
  opacity: 1;
}
.ant-select-selection-selected-value {
  float: left;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-select-no-arrow .ant-select-selection-selected-value {
  padding-right: 0;
}
.ant-select-disabled {
  color: rgba(0, 0, 0, 0.25);
}
.ant-select-disabled .ant-select-selection {
  background: #f5f5f5;
  cursor: not-allowed;
}
.ant-select-disabled .ant-select-selection:hover,
.ant-select-disabled .ant-select-selection:focus,
.ant-select-disabled .ant-select-selection:active {
  border-color: #EAEAEA;
  box-shadow: none;
}
.ant-select-disabled .ant-select-selection__clear {
  display: none;
  visibility: hidden;
  pointer-events: none;
}
.ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice {
  padding-right: 10px;
  color: rgba(0, 0, 0, 0.33);
  background: #f5f5f5;
}
.ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice__remove {
  display: none;
}
.ant-select-selection--single {
  position: relative;
  height: 32px;
  cursor: pointer;
}
.ant-select-selection--single .ant-select-selection__rendered {
  margin-right: 24px;
}
.ant-select-no-arrow .ant-select-selection__rendered {
  margin-right: 11px;
}
.ant-select-selection__rendered {
  position: relative;
  display: block;
  margin-right: 11px;
  margin-left: 11px;
  line-height: 30px;
}
.ant-select-selection__rendered::after {
  display: inline-block;
  width: 0;
  visibility: hidden;
  content: '.';
  pointer-events: none;
}
.ant-select-lg {
  font-size: 16px;
}
.ant-select-lg .ant-select-selection--single {
  height: 40px;
}
.ant-select-lg .ant-select-selection__rendered {
  line-height: 38px;
}
.ant-select-lg .ant-select-selection--multiple {
  min-height: 40px;
}
.ant-select-lg .ant-select-selection--multiple .ant-select-selection__rendered li {
  height: 32px;
  line-height: 32px;
}
.ant-select-lg .ant-select-selection--multiple .ant-select-selection__clear,
.ant-select-lg .ant-select-selection--multiple .ant-select-arrow {
  top: 20px;
}
.ant-select-sm .ant-select-selection--single {
  height: 24px;
}
.ant-select-sm .ant-select-selection__rendered {
  margin-left: 7px;
  line-height: 22px;
}
.ant-select-sm .ant-select-selection--multiple {
  min-height: 24px;
}
.ant-select-sm .ant-select-selection--multiple .ant-select-selection__rendered li {
  height: 16px;
  line-height: 14px;
}
.ant-select-sm .ant-select-selection--multiple .ant-select-selection__clear,
.ant-select-sm .ant-select-selection--multiple .ant-select-arrow {
  top: 12px;
}
.ant-select-sm .ant-select-selection__clear,
.ant-select-sm .ant-select-arrow {
  right: 8px;
}
.ant-select-disabled .ant-select-selection__choice__remove {
  color: rgba(0, 0, 0, 0.25);
  cursor: default;
}
.ant-select-disabled .ant-select-selection__choice__remove:hover {
  color: rgba(0, 0, 0, 0.25);
}
.ant-select-search__field__wrap {
  position: relative;
  display: inline-block;
}
.ant-select-selection__placeholder,
.ant-select-search__field__placeholder {
  position: absolute;
  top: 50%;
  right: 9px;
  left: 0;
  max-width: 100%;
  height: 20px;
  margin-top: -10px;
  overflow: hidden;
  color: #bfbfbf;
  line-height: 20px;
  white-space: nowrap;
  text-align: left;
  text-overflow: ellipsis;
}
.ant-select-search__field__placeholder {
  left: 12px;
}
.ant-select-search__field__mirror {
  position: absolute;
  top: 0;
  left: 0;
  white-space: pre;
  opacity: 0;
  pointer-events: none;
}
.ant-select-search--inline {
  position: absolute;
  width: 100%;
  height: 100%;
}
.ant-select-search--inline .ant-select-search__field__wrap {
  width: 100%;
  height: 100%;
}
.ant-select-search--inline .ant-select-search__field {
  width: 100%;
  height: 100%;
  font-size: 100%;
  line-height: 1;
  background: transparent;
  border-width: 0;
  border-radius: 4px;
  outline: 0;
}
.ant-select-search--inline > i {
  float: right;
}
.ant-select-selection--multiple {
  min-height: 32px;
  padding-bottom: 3px;
  cursor: text;
  zoom: 1;
}
.ant-select-selection--multiple::before,
.ant-select-selection--multiple::after {
  display: table;
  content: '';
}
.ant-select-selection--multiple::after {
  clear: both;
}
.ant-select-selection--multiple .ant-select-search--inline {
  position: static;
  float: left;
  width: auto;
  max-width: 100%;
  padding: 0;
}
.ant-select-selection--multiple .ant-select-search--inline .ant-select-search__field {
  width: 0.75em;
  max-width: 100%;
  padding: 1px;
}
.ant-select-selection--multiple .ant-select-selection__rendered {
  height: auto;
  margin-bottom: -3px;
  margin-left: 5px;
}
.ant-select-selection--multiple .ant-select-selection__placeholder {
  margin-left: 6px;
}
.ant-select-selection--multiple > ul > li,
.ant-select-selection--multiple .ant-select-selection__rendered > ul > li {
  height: 24px;
  margin-top: 3px;
  line-height: 22px;
}
.ant-select-selection--multiple .ant-select-selection__choice {
  position: relative;
  float: left;
  max-width: 99%;
  margin-right: 4px;
  padding: 0 20px 0 10px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.65);
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  cursor: default;
  transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-select-selection--multiple .ant-select-selection__choice__disabled {
  padding: 0 10px;
}
.ant-select-selection--multiple .ant-select-selection__choice__content {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-select-selection--multiple .ant-select-selection__choice__remove {
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 4px;
  color: rgba(0, 0, 0, 0.45);
  font-weight: bold;
  line-height: inherit;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  transform: scale(0.83333333) rotate(0deg);
}
.ant-select-selection--multiple .ant-select-selection__choice__remove > * {
  line-height: 1;
}
.ant-select-selection--multiple .ant-select-selection__choice__remove svg {
  display: inline-block;
}
.ant-select-selection--multiple .ant-select-selection__choice__remove::before {
  display: none;
}
.ant-select-selection--multiple .ant-select-selection__choice__remove .ant-select-selection--multiple .ant-select-selection__choice__remove-icon {
  display: block;
}
:root .ant-select-selection--multiple .ant-select-selection__choice__remove {
  font-size: 12px;
}
.ant-select-selection--multiple .ant-select-selection__choice__remove:hover {
  color: rgba(0, 0, 0, 0.75);
}
.ant-select-selection--multiple .ant-select-selection__clear,
.ant-select-selection--multiple .ant-select-arrow {
  top: 16px;
}
.ant-select-allow-clear .ant-select-selection--multiple .ant-select-selection__rendered,
.ant-select-show-arrow .ant-select-selection--multiple .ant-select-selection__rendered {
  margin-right: 20px;
}
.ant-select-open .ant-select-arrow-icon svg {
  transform: rotate(180deg);
}
.ant-select-open .ant-select-selection {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(3, 169, 245, 0.2);
}
.ant-select-combobox .ant-select-arrow {
  display: none;
}
.ant-select-combobox .ant-select-search--inline {
  float: none;
  width: 100%;
  height: 100%;
}
.ant-select-combobox .ant-select-search__field__wrap {
  width: 100%;
  height: 100%;
}
.ant-select-combobox .ant-select-search__field {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), height 0s;
}
.ant-select-combobox.ant-select-allow-clear .ant-select-selection:hover .ant-select-selection__rendered,
.ant-select-combobox.ant-select-show-arrow .ant-select-selection:hover .ant-select-selection__rendered {
  margin-right: 20px;
}
.ant-select-dropdown {
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
  box-sizing: border-box;
  font-size: 14px;
  font-variant: initial;
  background-color: #fff;
  border-radius: 4px;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-bottomLeft,
.ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-bottomLeft {
  animation-name: antSlideUpIn;
}
.ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-topLeft,
.ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-topLeft {
  animation-name: antSlideDownIn;
}
.ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-bottomLeft {
  animation-name: antSlideUpOut;
}
.ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-topLeft {
  animation-name: antSlideDownOut;
}
.ant-select-dropdown-hidden {
  display: none;
}
.ant-select-dropdown-menu {
  max-height: 250px;
  margin-bottom: 0;
  padding: 4px 0;
  padding-left: 0;
  overflow: auto;
  list-style: none;
  outline: none;
}
.ant-select-dropdown-menu-item-group-list {
  margin: 0;
  padding: 0;
}
.ant-select-dropdown-menu-item-group-list > .ant-select-dropdown-menu-item {
  padding-left: 20px;
}
.ant-select-dropdown-menu-item-group-title {
  height: 32px;
  padding: 0 12px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  line-height: 32px;
}
.ant-select-dropdown-menu-item-group-list .ant-select-dropdown-menu-item:first-child:not(:last-child),
.ant-select-dropdown-menu-item-group:not(:last-child) .ant-select-dropdown-menu-item-group-list .ant-select-dropdown-menu-item:last-child {
  border-radius: 0;
}
.ant-select-dropdown-menu-item {
  position: relative;
  display: block;
  padding: 5px 12px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.65);
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: background 0.3s ease;
}
.ant-select-dropdown-menu-item:hover:not(.ant-select-dropdown-menu-item-disabled) {
  background-color: #e6fbff;
}
.ant-select-dropdown-menu-item-selected {
  color: rgba(0, 0, 0, 0.65);
  font-weight: 600;
  background-color: #fafafa;
}
.ant-select-dropdown-menu-item-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-select-dropdown-menu-item-disabled:hover {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-select-dropdown-menu-item-active:not(.ant-select-dropdown-menu-item-disabled) {
  background-color: #e6fbff;
}
.ant-select-dropdown-menu-item-divider {
  height: 1px;
  margin: 1px 0;
  overflow: hidden;
  line-height: 0;
  background-color: #e8e8e8;
}
.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item {
  padding-right: 32px;
}
.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item .ant-select-selected-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  color: transparent;
  font-weight: bold;
  font-size: 12px;
  text-shadow: 0 0.1px 0, 0.1px 0 0, 0 -0.1px 0, -0.1px 0;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:hover .ant-select-selected-icon {
  color: rgba(0, 0, 0, 0.87);
}
.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-disabled .ant-select-selected-icon {
  display: none;
}
.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected .ant-select-selected-icon,
.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected:hover .ant-select-selected-icon {
  display: inline-block;
  color: #03a9f5;
}
.ant-select-dropdown--empty.ant-select-dropdown--multiple .ant-select-dropdown-menu-item {
  padding-right: 12px;
}
.ant-select-dropdown-container-open .ant-select-dropdown,
.ant-select-dropdown-open .ant-select-dropdown {
  display: block;
}
.ant-skeleton {
  display: table;
  width: 100%;
}
.ant-skeleton-header {
  display: table-cell;
  padding-right: 16px;
  vertical-align: top;
}
.ant-skeleton-header .ant-skeleton-avatar {
  display: inline-block;
  vertical-align: top;
  background: #f2f2f2;
  width: 32px;
  height: 32px;
  line-height: 32px;
}
.ant-skeleton-header .ant-skeleton-avatar.ant-skeleton-avatar-circle {
  border-radius: 50%;
}
.ant-skeleton-header .ant-skeleton-avatar-lg {
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.ant-skeleton-header .ant-skeleton-avatar-lg.ant-skeleton-avatar-circle {
  border-radius: 50%;
}
.ant-skeleton-header .ant-skeleton-avatar-sm {
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.ant-skeleton-header .ant-skeleton-avatar-sm.ant-skeleton-avatar-circle {
  border-radius: 50%;
}
.ant-skeleton-content {
  display: table-cell;
  width: 100%;
  vertical-align: top;
}
.ant-skeleton-content .ant-skeleton-title {
  width: 100%;
  height: 16px;
  margin-top: 16px;
  background: #f2f2f2;
}
.ant-skeleton-content .ant-skeleton-title + .ant-skeleton-paragraph {
  margin-top: 24px;
}
.ant-skeleton-content .ant-skeleton-paragraph {
  padding: 0;
}
.ant-skeleton-content .ant-skeleton-paragraph > li {
  width: 100%;
  height: 16px;
  list-style: none;
  background: #f2f2f2;
}
.ant-skeleton-content .ant-skeleton-paragraph > li:last-child:not(:first-child):not(:nth-child(2)) {
  width: 61%;
}
.ant-skeleton-content .ant-skeleton-paragraph > li + li {
  margin-top: 16px;
}
.ant-skeleton-with-avatar .ant-skeleton-content .ant-skeleton-title {
  margin-top: 12px;
}
.ant-skeleton-with-avatar .ant-skeleton-content .ant-skeleton-title + .ant-skeleton-paragraph {
  margin-top: 28px;
}
.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-title,
.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-paragraph > li {
  background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
  background-size: 400% 100%;
  animation: ant-skeleton-loading 1.4s ease infinite;
}
.ant-skeleton.ant-skeleton-active .ant-skeleton-avatar {
  background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
  background-size: 400% 100%;
  animation: ant-skeleton-loading 1.4s ease infinite;
}
@keyframes ant-skeleton-loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.ant-slider {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  height: 12px;
  margin: 14px 6px 10px;
  padding: 4px 0;
  cursor: pointer;
  touch-action: none;
}
.ant-slider-vertical {
  width: 12px;
  height: 100%;
  margin: 6px 10px;
  padding: 0 4px;
}
.ant-slider-vertical .ant-slider-rail {
  width: 4px;
  height: 100%;
}
.ant-slider-vertical .ant-slider-track {
  width: 4px;
}
.ant-slider-vertical .ant-slider-handle {
  margin-bottom: -7px;
  margin-left: -5px;
}
.ant-slider-vertical .ant-slider-mark {
  top: 0;
  left: 12px;
  width: 18px;
  height: 100%;
}
.ant-slider-vertical .ant-slider-mark-text {
  left: 4px;
  white-space: nowrap;
}
.ant-slider-vertical .ant-slider-step {
  width: 4px;
  height: 100%;
}
.ant-slider-vertical .ant-slider-dot {
  top: auto;
  left: 2px;
  margin-bottom: -4px;
}
.ant-slider-tooltip .ant-tooltip-inner {
  min-width: unset;
}
.ant-slider-with-marks {
  margin-bottom: 28px;
}
.ant-slider-rail {
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #f5f5f5;
  border-radius: 2px;
  transition: background-color 0.3s;
}
.ant-slider-track {
  position: absolute;
  height: 4px;
  background-color: #7de3ff;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.ant-slider-handle {
  position: absolute;
  width: 14px;
  height: 14px;
  margin-top: -5px;
  background-color: #fff;
  border: solid 2px #7de3ff;
  border-radius: 50%;
  box-shadow: 0;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.6s, transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.ant-slider-handle:focus {
  border-color: #35baf7;
  outline: none;
  box-shadow: 0 0 0 5px rgba(3, 169, 245, 0.2);
}
.ant-slider-handle.ant-tooltip-open {
  border-color: #03a9f5;
}
.ant-slider:hover .ant-slider-rail {
  background-color: #e1e1e1;
}
.ant-slider:hover .ant-slider-track {
  background-color: #54d4ff;
}
.ant-slider:hover .ant-slider-handle:not(.ant-tooltip-open) {
  border-color: #54d4ff;
}
.ant-slider-mark {
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  font-size: 14px;
}
.ant-slider-mark-text {
  position: absolute;
  display: inline-block;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
  word-break: keep-all;
  cursor: pointer;
}
.ant-slider-mark-text-active {
  color: rgba(0, 0, 0, 0.65);
}
.ant-slider-step {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
}
.ant-slider-dot {
  position: absolute;
  top: -2px;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  background-color: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 50%;
  cursor: pointer;
}
.ant-slider-dot:first-child {
  margin-left: -4px;
}
.ant-slider-dot:last-child {
  margin-left: -4px;
}
.ant-slider-dot-active {
  border-color: #81d4fa;
}
.ant-slider-disabled {
  cursor: not-allowed;
}
.ant-slider-disabled .ant-slider-track {
  background-color: rgba(0, 0, 0, 0.25) !important;
}
.ant-slider-disabled .ant-slider-handle,
.ant-slider-disabled .ant-slider-dot {
  background-color: #fff;
  border-color: rgba(0, 0, 0, 0.25) !important;
  box-shadow: none;
  cursor: not-allowed;
}
.ant-slider-disabled .ant-slider-mark-text,
.ant-slider-disabled .ant-slider-dot {
  cursor: not-allowed !important;
}
.ant-spin {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  display: none;
  color: #03a9f5;
  text-align: center;
  vertical-align: middle;
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-spin-spinning {
  position: static;
  display: inline-block;
  opacity: 1;
}
.ant-spin-nested-loading {
  position: relative;
}
.ant-spin-nested-loading > div > .ant-spin {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 400px;
}
.ant-spin-nested-loading > div > .ant-spin .ant-spin-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px;
}
.ant-spin-nested-loading > div > .ant-spin .ant-spin-text {
  position: absolute;
  top: 50%;
  width: 100%;
  padding-top: 5px;
  text-shadow: 0 1px 2px #fff;
}
.ant-spin-nested-loading > div > .ant-spin.ant-spin-show-text .ant-spin-dot {
  margin-top: -20px;
}
.ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-dot {
  margin: -7px;
}
.ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-text {
  padding-top: 2px;
}
.ant-spin-nested-loading > div > .ant-spin-sm.ant-spin-show-text .ant-spin-dot {
  margin-top: -17px;
}
.ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-dot {
  margin: -16px;
}
.ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-text {
  padding-top: 11px;
}
.ant-spin-nested-loading > div > .ant-spin-lg.ant-spin-show-text .ant-spin-dot {
  margin-top: -26px;
}
.ant-spin-container {
  position: relative;
  transition: opacity 0.3s;
}
.ant-spin-container::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: none \9;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: all 0.3s;
  content: '';
  pointer-events: none;
}
.ant-spin-blur {
  clear: both;
  overflow: hidden;
  opacity: 0.5;
  user-select: none;
  pointer-events: none;
}
.ant-spin-blur::after {
  opacity: 0.4;
  pointer-events: auto;
}
.ant-spin-tip {
  color: rgba(0, 0, 0, 0.45);
}
.ant-spin-dot {
  position: relative;
  display: inline-block;
  font-size: 20px;
  width: 1em;
  height: 1em;
}
.ant-spin-dot-item {
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  background-color: #03a9f5;
  border-radius: 100%;
  transform: scale(0.75);
  transform-origin: 50% 50%;
  opacity: 0.3;
  animation: antSpinMove 1s infinite linear alternate;
}
.ant-spin-dot-item:nth-child(1) {
  top: 0;
  left: 0;
}
.ant-spin-dot-item:nth-child(2) {
  top: 0;
  right: 0;
  animation-delay: 0.4s;
}
.ant-spin-dot-item:nth-child(3) {
  right: 0;
  bottom: 0;
  animation-delay: 0.8s;
}
.ant-spin-dot-item:nth-child(4) {
  bottom: 0;
  left: 0;
  animation-delay: 1.2s;
}
.ant-spin-dot-spin {
  transform: rotate(45deg);
  animation: antRotate 1.2s infinite linear;
}
.ant-spin-sm .ant-spin-dot {
  font-size: 14px;
}
.ant-spin-sm .ant-spin-dot i {
  width: 6px;
  height: 6px;
}
.ant-spin-lg .ant-spin-dot {
  font-size: 32px;
}
.ant-spin-lg .ant-spin-dot i {
  width: 14px;
  height: 14px;
}
.ant-spin.ant-spin-show-text .ant-spin-text {
  display: block;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ */
  .ant-spin-blur {
    background: #fff;
    opacity: 0.5;
  }
}
@keyframes antSpinMove {
  to {
    opacity: 1;
  }
}
@keyframes antRotate {
  to {
    transform: rotate(405deg);
  }
}
.ant-statistic {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
}
.ant-statistic-title {
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.ant-statistic-content {
  color: rgba(0, 0, 0, 0.85);
  font-size: 24px;
  font-family: Helvetica, Arial, sans-serif;
}
.ant-statistic-content-value-decimal {
  font-size: 16px;
}
.ant-statistic-content-prefix,
.ant-statistic-content-suffix {
  display: inline-block;
}
.ant-statistic-content-prefix {
  margin-right: 4px;
}
.ant-statistic-content-suffix {
  margin-left: 4px;
  font-size: 16px;
}
.ant-steps {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  display: flex;
  width: 100%;
  font-size: 0;
}
.ant-steps-item {
  position: relative;
  display: inline-block;
  flex: 1;
  overflow: hidden;
  vertical-align: top;
}
.ant-steps-item-container {
  outline: none;
}
.ant-steps-item:last-child {
  flex: none;
}
.ant-steps-item:last-child > .ant-steps-item-container > .ant-steps-item-tail,
.ant-steps-item:last-child > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
  display: none;
}
.ant-steps-item-icon,
.ant-steps-item-content {
  display: inline-block;
  vertical-align: top;
}
.ant-steps-item-icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  font-size: 16px;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 32px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 32px;
  transition: background-color 0.3s, border-color 0.3s;
}
.ant-steps-item-icon > .ant-steps-icon {
  position: relative;
  top: -1px;
  color: #03a9f5;
  line-height: 1;
}
.ant-steps-item-tail {
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  padding: 0 10px;
}
.ant-steps-item-tail::after {
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #e8e8e8;
  border-radius: 1px;
  transition: background 0.3s;
  content: '';
}
.ant-steps-item-title {
  position: relative;
  display: inline-block;
  padding-right: 16px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 16px;
  line-height: 32px;
}
.ant-steps-item-title::after {
  position: absolute;
  top: 16px;
  left: 100%;
  display: block;
  width: 9999px;
  height: 1px;
  background: #e8e8e8;
  content: '';
}
.ant-steps-item-subtitle {
  display: inline;
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.45);
  font-weight: normal;
  font-size: 14px;
}
.ant-steps-item-description {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.ant-steps-item-wait .ant-steps-item-icon {
  background-color: #fff;
  border-color: rgba(0, 0, 0, 0.25);
}
.ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon {
  color: rgba(0, 0, 0, 0.25);
}
.ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
  background: rgba(0, 0, 0, 0.25);
}
.ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title {
  color: rgba(0, 0, 0, 0.45);
}
.ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
  background-color: #e8e8e8;
}
.ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description {
  color: rgba(0, 0, 0, 0.45);
}
.ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-tail::after {
  background-color: #e8e8e8;
}
.ant-steps-item-process .ant-steps-item-icon {
  background-color: #fff;
  border-color: #03a9f5;
}
.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon {
  color: #03a9f5;
}
.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
  background: #03a9f5;
}
.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title {
  color: rgba(0, 0, 0, 0.85);
}
.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
  background-color: #e8e8e8;
}
.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description {
  color: rgba(0, 0, 0, 0.65);
}
.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-tail::after {
  background-color: #e8e8e8;
}
.ant-steps-item-process .ant-steps-item-icon {
  background: #03a9f5;
}
.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon {
  color: #fff;
}
.ant-steps-item-process .ant-steps-item-title {
  font-weight: 500;
}
.ant-steps-item-finish .ant-steps-item-icon {
  background-color: #fff;
  border-color: #03a9f5;
}
.ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon {
  color: #03a9f5;
}
.ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
  background: #03a9f5;
}
.ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title {
  color: rgba(0, 0, 0, 0.65);
}
.ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
  background-color: #03a9f5;
}
.ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description {
  color: rgba(0, 0, 0, 0.45);
}
.ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-tail::after {
  background-color: #03a9f5;
}
.ant-steps-item-error .ant-steps-item-icon {
  background-color: #fff;
  border-color: #f5222d;
}
.ant-steps-item-error .ant-steps-item-icon > .ant-steps-icon {
  color: #f5222d;
}
.ant-steps-item-error .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
  background: #f5222d;
}
.ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title {
  color: #f5222d;
}
.ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
  background-color: #e8e8e8;
}
.ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description {
  color: #f5222d;
}
.ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-tail::after {
  background-color: #e8e8e8;
}
.ant-steps-item.ant-steps-next-error .ant-steps-item-title::after {
  background: #f5222d;
}
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] {
  cursor: pointer;
}
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] .ant-steps-item-title,
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] .ant-steps-item-description,
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] .ant-steps-item-icon .ant-steps-icon {
  transition: color 0.3s;
}
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-title,
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-subtitle,
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-description {
  color: #03a9f5;
}
.ant-steps .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process) > .ant-steps-item-container[role='button']:hover .ant-steps-item-icon {
  border-color: #03a9f5;
}
.ant-steps .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process) > .ant-steps-item-container[role='button']:hover .ant-steps-item-icon .ant-steps-icon {
  color: #03a9f5;
}
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item {
  margin-right: 16px;
  white-space: nowrap;
}
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child {
  margin-right: 0;
}
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child .ant-steps-item-title {
  padding-right: 0;
}
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item-tail {
  display: none;
}
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item-description {
  max-width: 140px;
  white-space: normal;
}
.ant-steps-item-custom .ant-steps-item-icon {
  height: auto;
  background: none;
  border: 0;
}
.ant-steps-item-custom .ant-steps-item-icon > .ant-steps-icon {
  top: 0;
  left: 0.5px;
  width: 32px;
  height: 32px;
  font-size: 24px;
  line-height: 32px;
}
.ant-steps-item-custom.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon {
  color: #03a9f5;
}
.ant-steps:not(.ant-steps-vertical) .ant-steps-item-custom .ant-steps-item-icon {
  width: auto;
}
.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item {
  margin-right: 12px;
}
.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child {
  margin-right: 0;
}
.ant-steps-small .ant-steps-item-icon {
  width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  border-radius: 24px;
}
.ant-steps-small .ant-steps-item-title {
  padding-right: 12px;
  font-size: 14px;
  line-height: 24px;
}
.ant-steps-small .ant-steps-item-title::after {
  top: 12px;
}
.ant-steps-small .ant-steps-item-description {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.ant-steps-small .ant-steps-item-tail {
  top: 8px;
}
.ant-steps-small .ant-steps-item-custom .ant-steps-item-icon {
  width: inherit;
  height: inherit;
  line-height: inherit;
  background: none;
  border: 0;
  border-radius: 0;
}
.ant-steps-small .ant-steps-item-custom .ant-steps-item-icon > .ant-steps-icon {
  font-size: 24px;
  line-height: 24px;
  transform: none;
}
.ant-steps-vertical {
  display: block;
}
.ant-steps-vertical .ant-steps-item {
  display: block;
  overflow: visible;
}
.ant-steps-vertical .ant-steps-item-icon {
  float: left;
  margin-right: 16px;
}
.ant-steps-vertical .ant-steps-item-content {
  display: block;
  min-height: 48px;
  overflow: hidden;
}
.ant-steps-vertical .ant-steps-item-title {
  line-height: 32px;
}
.ant-steps-vertical .ant-steps-item-description {
  padding-bottom: 12px;
}
.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
  position: absolute;
  top: 0;
  left: 16px;
  width: 1px;
  height: 100%;
  padding: 38px 0 6px;
}
.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail::after {
  width: 1px;
  height: 100%;
}
.ant-steps-vertical > .ant-steps-item:not(:last-child) > .ant-steps-item-container > .ant-steps-item-tail {
  display: block;
}
.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
  display: none;
}
.ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-tail {
  position: absolute;
  top: 0;
  left: 12px;
  padding: 30px 0 6px;
}
.ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-title {
  line-height: 24px;
}
@media (max-width: 480px) {
  .ant-steps-horizontal.ant-steps-label-horizontal {
    display: block;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
    display: block;
    overflow: visible;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon {
    float: left;
    margin-right: 16px;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-content {
    display: block;
    min-height: 48px;
    overflow: hidden;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-title {
    line-height: 32px;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-description {
    padding-bottom: 12px;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
    position: absolute;
    top: 0;
    left: 16px;
    width: 1px;
    height: 100%;
    padding: 38px 0 6px;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail::after {
    width: 1px;
    height: 100%;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal > .ant-steps-item:not(:last-child) > .ant-steps-item-container > .ant-steps-item-tail {
    display: block;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
    display: none;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal.ant-steps-small .ant-steps-item-container .ant-steps-item-tail {
    position: absolute;
    top: 0;
    left: 12px;
    padding: 30px 0 6px;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal.ant-steps-small .ant-steps-item-container .ant-steps-item-title {
    line-height: 24px;
  }
}
.ant-steps-label-vertical .ant-steps-item {
  overflow: visible;
}
.ant-steps-label-vertical .ant-steps-item-tail {
  margin-left: 58px;
  padding: 3.5px 24px;
}
.ant-steps-label-vertical .ant-steps-item-content {
  display: block;
  width: 116px;
  margin-top: 8px;
  text-align: center;
}
.ant-steps-label-vertical .ant-steps-item-icon {
  display: inline-block;
  margin-left: 42px;
}
.ant-steps-label-vertical .ant-steps-item-title {
  padding-right: 0;
}
.ant-steps-label-vertical .ant-steps-item-title::after {
  display: none;
}
.ant-steps-label-vertical .ant-steps-item-subtitle {
  display: block;
  margin-bottom: 4px;
  margin-left: 0;
  line-height: 1.5;
}
.ant-steps-label-vertical.ant-steps-small:not(.ant-steps-dot) .ant-steps-item-icon {
  margin-left: 46px;
}
.ant-steps-dot .ant-steps-item-title,
.ant-steps-dot.ant-steps-small .ant-steps-item-title {
  line-height: 1.5;
}
.ant-steps-dot .ant-steps-item-tail,
.ant-steps-dot.ant-steps-small .ant-steps-item-tail {
  top: 2px;
  width: 100%;
  margin: 0 0 0 70px;
  padding: 0;
}
.ant-steps-dot .ant-steps-item-tail::after,
.ant-steps-dot.ant-steps-small .ant-steps-item-tail::after {
  width: calc(100% - 20px);
  height: 3px;
  margin-left: 12px;
}
.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot,
.ant-steps-dot.ant-steps-small .ant-steps-item:first-child .ant-steps-icon-dot {
  left: 2px;
}
.ant-steps-dot .ant-steps-item-icon,
.ant-steps-dot.ant-steps-small .ant-steps-item-icon {
  width: 8px;
  height: 8px;
  margin-left: 67px;
  padding-right: 0;
  line-height: 8px;
  background: transparent;
  border: 0;
}
.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot,
.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  transition: all 0.3s;
  /* expand hover area */
}
.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot::after,
.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot::after {
  position: absolute;
  top: -12px;
  left: -26px;
  width: 60px;
  height: 32px;
  background: rgba(0, 0, 0, 0.001);
  content: '';
}
.ant-steps-dot .ant-steps-item-content,
.ant-steps-dot.ant-steps-small .ant-steps-item-content {
  width: 140px;
}
.ant-steps-dot .ant-steps-item-process .ant-steps-item-icon,
.ant-steps-dot.ant-steps-small .ant-steps-item-process .ant-steps-item-icon {
  width: 10px;
  height: 10px;
  line-height: 10px;
}
.ant-steps-dot .ant-steps-item-process .ant-steps-item-icon .ant-steps-icon-dot,
.ant-steps-dot.ant-steps-small .ant-steps-item-process .ant-steps-item-icon .ant-steps-icon-dot {
  top: -1px;
}
.ant-steps-vertical.ant-steps-dot .ant-steps-item-icon {
  margin-top: 8px;
  margin-left: 0;
}
.ant-steps-vertical.ant-steps-dot .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
  top: 2px;
  left: -9px;
  margin: 0;
  padding: 22px 0 4px;
}
.ant-steps-vertical.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot {
  left: 0;
}
.ant-steps-vertical.ant-steps-dot .ant-steps-item-process .ant-steps-icon-dot {
  left: -2px;
}
.ant-steps-navigation {
  padding-top: 12px;
}
.ant-steps-navigation.ant-steps-small .ant-steps-item-container {
  margin-left: -12px;
}
.ant-steps-navigation .ant-steps-item {
  overflow: visible;
  text-align: center;
}
.ant-steps-navigation .ant-steps-item-container {
  display: inline-block;
  height: 100%;
  margin-left: -16px;
  padding-bottom: 12px;
  text-align: left;
  transition: opacity 0.3s;
}
.ant-steps-navigation .ant-steps-item-container .ant-steps-item-content {
  max-width: auto;
}
.ant-steps-navigation .ant-steps-item-container .ant-steps-item-title {
  max-width: 100%;
  padding-right: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-steps-navigation .ant-steps-item-container .ant-steps-item-title::after {
  display: none;
}
.ant-steps-navigation .ant-steps-item:not(.ant-steps-item-active) .ant-steps-item-container[role='button'] {
  cursor: pointer;
}
.ant-steps-navigation .ant-steps-item:not(.ant-steps-item-active) .ant-steps-item-container[role='button']:hover {
  opacity: 0.85;
}
.ant-steps-navigation .ant-steps-item:last-child {
  flex: 1;
}
.ant-steps-navigation .ant-steps-item:last-child::after {
  display: none;
}
.ant-steps-navigation .ant-steps-item::after {
  position: absolute;
  top: 50%;
  left: 100%;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-top: -14px;
  margin-left: -2px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-bottom: none;
  border-left: none;
  transform: rotate(45deg);
  content: '';
}
.ant-steps-navigation .ant-steps-item::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: inline-block;
  width: 0;
  height: 3px;
  background-color: #03a9f5;
  transition: width 0.3s, left 0.3s;
  transition-timing-function: ease-out;
  content: '';
}
.ant-steps-navigation .ant-steps-item.ant-steps-item-active::before {
  left: 0;
  width: 100%;
}
@media (max-width: 480px) {
  .ant-steps-navigation > .ant-steps-item {
    margin-right: 0 !important;
  }
  .ant-steps-navigation > .ant-steps-item::before {
    display: none;
  }
  .ant-steps-navigation > .ant-steps-item.ant-steps-item-active::before {
    top: 0;
    right: 0;
    left: unset;
    display: block;
    width: 3px;
    height: calc(100% - 24px);
  }
  .ant-steps-navigation > .ant-steps-item::after {
    position: relative;
    top: -2px;
    left: 50%;
    display: block;
    width: 8px;
    height: 8px;
    margin-bottom: 8px;
    text-align: center;
    transform: rotate(135deg);
  }
  .ant-steps-navigation > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
    visibility: hidden;
  }
}
.ant-steps-flex-not-supported.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
  margin-left: -16px;
  padding-left: 16px;
  background: #fff;
}
.ant-steps-flex-not-supported.ant-steps-horizontal.ant-steps-label-horizontal.ant-steps-small .ant-steps-item {
  margin-left: -12px;
  padding-left: 12px;
}
.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item:last-child {
  overflow: hidden;
}
.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item:last-child .ant-steps-icon-dot::after {
  right: -200px;
  width: 200px;
}
.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item .ant-steps-icon-dot::before,
.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item .ant-steps-icon-dot::after {
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 8px;
  background: #fff;
  content: '';
}
.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item .ant-steps-icon-dot::after {
  right: -10px;
  left: auto;
}
.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
  background: #ccc;
}
.ant-switch {
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  min-width: 44px;
  height: 22px;
  line-height: 20px;
  vertical-align: middle;
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.36s;
  user-select: none;
}
.ant-switch-inner {
  display: block;
  margin-right: 6px;
  margin-left: 24px;
  color: #fff;
  font-size: 12px;
}
.ant-switch-loading-icon,
.ant-switch::after {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.36s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  content: ' ';
}
.ant-switch::after {
  box-shadow: 0 2px 4px 0 rgba(0, 35, 11, 0.2);
}
.ant-switch:not(.ant-switch-disabled):active::before,
.ant-switch:not(.ant-switch-disabled):active::after {
  width: 24px;
}
.ant-switch-loading-icon {
  z-index: 1;
  display: none;
  font-size: 12px;
  background: transparent;
}
.ant-switch-loading-icon svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.ant-switch-loading .ant-switch-loading-icon {
  display: inline-block;
  color: rgba(0, 0, 0, 0.65);
}
.ant-switch-checked.ant-switch-loading .ant-switch-loading-icon {
  color: #03a9f5;
}
.ant-switch:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(3, 169, 245, 0.2);
}
.ant-switch:focus:hover {
  box-shadow: none;
}
.ant-switch-small {
  min-width: 28px;
  height: 16px;
  line-height: 14px;
}
.ant-switch-small .ant-switch-inner {
  margin-right: 3px;
  margin-left: 18px;
  font-size: 12px;
}
.ant-switch-small::after {
  width: 12px;
  height: 12px;
}
.ant-switch-small:active::before,
.ant-switch-small:active::after {
  width: 16px;
}
.ant-switch-small .ant-switch-loading-icon {
  width: 12px;
  height: 12px;
}
.ant-switch-small.ant-switch-checked .ant-switch-inner {
  margin-right: 18px;
  margin-left: 3px;
}
.ant-switch-small.ant-switch-checked .ant-switch-loading-icon {
  left: 100%;
  margin-left: -13px;
}
.ant-switch-small.ant-switch-loading .ant-switch-loading-icon {
  font-weight: bold;
  transform: scale(0.66667);
}
.ant-switch-checked {
  background-color: #03a9f5;
}
.ant-switch-checked .ant-switch-inner {
  margin-right: 24px;
  margin-left: 6px;
}
.ant-switch-checked::after {
  left: 100%;
  margin-left: -1px;
  transform: translateX(-100%);
}
.ant-switch-checked .ant-switch-loading-icon {
  left: 100%;
  margin-left: -19px;
}
.ant-switch-loading,
.ant-switch-disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.ant-switch-loading *,
.ant-switch-disabled * {
  cursor: not-allowed;
}
.ant-switch-loading::before,
.ant-switch-disabled::before,
.ant-switch-loading::after,
.ant-switch-disabled::after {
  cursor: not-allowed;
}
@keyframes AntSwitchSmallLoadingCircle {
  0% {
    transform: rotate(0deg) scale(0.66667);
    transform-origin: 50% 50%;
  }
  100% {
    transform: rotate(360deg) scale(0.66667);
    transform-origin: 50% 50%;
  }
}
.ant-table-wrapper {
  zoom: 1;
}
.ant-table-wrapper::before,
.ant-table-wrapper::after {
  display: table;
  content: '';
}
.ant-table-wrapper::after {
  clear: both;
}
.ant-table {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  clear: both;
}
.ant-table-body {
  transition: opacity 0.3s;
}
.ant-table-empty .ant-table-body {
  overflow-x: auto !important;
  overflow-y: hidden !important;
}
.ant-table table {
  width: 100%;
  text-align: left;
  border-radius: 4px 4px 0 0;
  border-collapse: separate;
  border-spacing: 0;
}
.ant-table-layout-fixed table {
  table-layout: fixed;
}
.ant-table-thead > tr > th {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  text-align: left;
  background: #fafafa;
  border-bottom: 1px solid #e8e8e8;
  transition: background 0.3s ease;
}
.ant-table-thead > tr > th[colspan]:not([colspan='1']) {
  text-align: center;
}
.ant-table-thead > tr > th .anticon-filter,
.ant-table-thead > tr > th .ant-table-filter-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 100%;
  color: #bfbfbf;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-table-thead > tr > th .anticon-filter > svg,
.ant-table-thead > tr > th .ant-table-filter-icon > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -6px;
}
.ant-table-thead > tr > th .ant-table-filter-selected.anticon {
  color: #03a9f5;
}
.ant-table-thead > tr > th .ant-table-column-sorter {
  display: table-cell;
  vertical-align: middle;
}
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner {
  height: 1em;
  margin-top: 0.35em;
  margin-left: 0.57142857em;
  color: #bfbfbf;
  line-height: 1em;
  text-align: center;
  transition: all 0.3s;
}
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up,
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down {
  display: inline-block;
  font-size: 12px;
  font-size: 11px \9;
  transform: scale(0.91666667) rotate(0deg);
  display: block;
  height: 1em;
  line-height: 1em;
  transition: all 0.3s;
}
:root .ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up,
:root .ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down {
  font-size: 12px;
}
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up.on,
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down.on {
  color: #03a9f5;
}
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner-full {
  margin-top: -0.15em;
}
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner-full .ant-table-column-sorter-up,
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner-full .ant-table-column-sorter-down {
  height: 0.5em;
  line-height: 0.5em;
}
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner-full .ant-table-column-sorter-down {
  margin-top: 0.125em;
}
.ant-table-thead > tr > th.ant-table-column-has-actions {
  position: relative;
  background-clip: padding-box;
  /* stylelint-disable-next-line */
  -webkit-background-clip: border-box;
}
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters {
  padding-right: 30px !important;
}
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters .anticon-filter.ant-table-filter-open,
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters .ant-table-filter-icon.ant-table-filter-open {
  color: rgba(0, 0, 0, 0.45);
  background: #e5e5e5;
}
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters:hover .anticon-filter:hover,
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters:hover .ant-table-filter-icon:hover {
  color: rgba(0, 0, 0, 0.45);
  background: #e5e5e5;
}
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters:hover .anticon-filter:active,
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters:hover .ant-table-filter-icon:active {
  color: rgba(0, 0, 0, 0.65);
}
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters {
  cursor: pointer;
}
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:hover {
  background: #f2f2f2;
}
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:hover .anticon-filter,
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:hover .ant-table-filter-icon {
  background: #f2f2f2;
}
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:active .ant-table-column-sorter-up:not(.on),
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:active .ant-table-column-sorter-down:not(.on) {
  color: rgba(0, 0, 0, 0.45);
}
.ant-table-thead > tr > th .ant-table-header-column {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}
.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters {
  display: table;
}
.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters > .ant-table-column-title {
  display: table-cell;
  vertical-align: middle;
}
.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters > *:not(.ant-table-column-sorter) {
  position: relative;
}
.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  transition: all 0.3s;
  content: '';
}
.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters:hover::before {
  background: rgba(0, 0, 0, 0.04);
}
.ant-table-thead > tr > th.ant-table-column-has-sorters {
  user-select: none;
}
.ant-table-thead > tr:first-child > th:first-child {
  border-top-left-radius: 4px;
}
.ant-table-thead > tr:first-child > th:last-child {
  border-top-right-radius: 4px;
}
.ant-table-thead > tr:not(:last-child) > th[colspan] {
  border-bottom: 0;
}
.ant-table-tbody > tr > td {
  border-bottom: 1px solid #e8e8e8;
  transition: all 0.3s, border 0s;
}
.ant-table-thead > tr,
.ant-table-tbody > tr {
  transition: all 0.3s, height 0s;
}
.ant-table-thead > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.ant-table-tbody > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.ant-table-thead > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td {
  background: #e6fbff;
}
.ant-table-thead > tr.ant-table-row-selected > td.ant-table-column-sort,
.ant-table-tbody > tr.ant-table-row-selected > td.ant-table-column-sort {
  background: #fafafa;
}
.ant-table-thead > tr:hover.ant-table-row-selected > td,
.ant-table-tbody > tr:hover.ant-table-row-selected > td {
  background: #fafafa;
}
.ant-table-thead > tr:hover.ant-table-row-selected > td.ant-table-column-sort,
.ant-table-tbody > tr:hover.ant-table-row-selected > td.ant-table-column-sort {
  background: #fafafa;
}
.ant-table-thead > tr:hover {
  background: none;
}
.ant-table-footer {
  position: relative;
  padding: 16px 16px;
  color: rgba(0, 0, 0, 0.85);
  background: #fafafa;
  border-top: 1px solid #e8e8e8;
  border-radius: 0 0 4px 4px;
}
.ant-table-footer::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fafafa;
  content: '';
}
.ant-table.ant-table-bordered .ant-table-footer {
  border: 1px solid #e8e8e8;
}
.ant-table-title {
  position: relative;
  top: 1px;
  padding: 16px 0;
  border-radius: 4px 4px 0 0;
}
.ant-table.ant-table-bordered .ant-table-title {
  padding-right: 16px;
  padding-left: 16px;
  border: 1px solid #e8e8e8;
}
.ant-table-title + .ant-table-content {
  position: relative;
  border-radius: 4px 4px 0 0;
}
.ant-table-bordered .ant-table-title + .ant-table-content,
.ant-table-bordered .ant-table-title + .ant-table-content table,
.ant-table-bordered .ant-table-title + .ant-table-content .ant-table-thead > tr:first-child > th {
  border-radius: 0;
}
.ant-table-without-column-header .ant-table-title + .ant-table-content,
.ant-table-without-column-header table {
  border-radius: 0;
}
.ant-table-without-column-header.ant-table-bordered.ant-table-empty .ant-table-placeholder {
  border-top: 1px solid #e8e8e8;
  border-radius: 4px;
}
.ant-table-tbody > tr.ant-table-row-selected td {
  color: inherit;
  background: #fafafa;
}
.ant-table-thead > tr > th.ant-table-column-sort {
  background: #f5f5f5;
}
.ant-table-tbody > tr > td.ant-table-column-sort {
  background: rgba(0, 0, 0, 0.01);
}
.ant-table-thead > tr > th,
.ant-table-tbody > tr > td {
  padding: 16px 16px;
  overflow-wrap: break-word;
}
.ant-table-expand-icon-th,
.ant-table-row-expand-icon-cell {
  width: 50px;
  min-width: 50px;
  text-align: center;
}
.ant-table-header {
  overflow: hidden;
  background: #fafafa;
}
.ant-table-header table {
  border-radius: 4px 4px 0 0;
}
.ant-table-loading {
  position: relative;
}
.ant-table-loading .ant-table-body {
  background: #fff;
  opacity: 0.5;
}
.ant-table-loading .ant-table-spin-holder {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 20px;
  margin-left: -30px;
  line-height: 20px;
}
.ant-table-loading .ant-table-with-pagination {
  margin-top: -20px;
}
.ant-table-loading .ant-table-without-pagination {
  margin-top: 10px;
}
.ant-table-bordered .ant-table-header > table,
.ant-table-bordered .ant-table-body > table,
.ant-table-bordered .ant-table-fixed-left table,
.ant-table-bordered .ant-table-fixed-right table {
  border: 1px solid #e8e8e8;
  border-right: 0;
  border-bottom: 0;
}
.ant-table-bordered.ant-table-empty .ant-table-placeholder {
  border-right: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
}
.ant-table-bordered.ant-table-fixed-header .ant-table-header > table {
  border-bottom: 0;
}
.ant-table-bordered.ant-table-fixed-header .ant-table-body > table {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.ant-table-bordered.ant-table-fixed-header .ant-table-header + .ant-table-body > table,
.ant-table-bordered.ant-table-fixed-header .ant-table-body-inner > table {
  border-top: 0;
}
.ant-table-bordered .ant-table-thead > tr:not(:last-child) > th {
  border-bottom: 1px solid #e8e8e8;
}
.ant-table-bordered .ant-table-thead > tr > th,
.ant-table-bordered .ant-table-tbody > tr > td {
  border-right: 1px solid #e8e8e8;
}
.ant-table-placeholder {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  padding: 16px 16px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 14px;
  text-align: center;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 0 0 4px 4px;
}
.ant-table-pagination.ant-pagination {
  float: right;
  margin: 16px 0;
}
.ant-table-filter-dropdown {
  position: relative;
  min-width: 96px;
  margin-left: -8px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-table-filter-dropdown .ant-dropdown-menu {
  max-height: calc(100vh - 130px);
  overflow-x: hidden;
  border: 0;
  border-radius: 4px 4px 0 0;
  box-shadow: none;
}
.ant-table-filter-dropdown .ant-dropdown-menu-item > label + span {
  padding-right: 0;
}
.ant-table-filter-dropdown .ant-dropdown-menu-sub {
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-table-filter-dropdown .ant-dropdown-menu .ant-dropdown-submenu-contain-selected .ant-dropdown-menu-submenu-title::after {
  color: #03a9f5;
  font-weight: bold;
  text-shadow: 0 0 2px #a6efff;
}
.ant-table-filter-dropdown .ant-dropdown-menu-item {
  overflow: hidden;
}
.ant-table-filter-dropdown > .ant-dropdown-menu > .ant-dropdown-menu-item:last-child,
.ant-table-filter-dropdown > .ant-dropdown-menu > .ant-dropdown-menu-submenu:last-child .ant-dropdown-menu-submenu-title {
  border-radius: 0;
}
.ant-table-filter-dropdown-btns {
  padding: 7px 8px;
  overflow: hidden;
  border-top: 1px solid #e8e8e8;
}
.ant-table-filter-dropdown-link {
  color: #03a9f5;
}
.ant-table-filter-dropdown-link:hover {
  color: #2bc3ff;
}
.ant-table-filter-dropdown-link:active {
  color: #0086cf;
}
.ant-table-filter-dropdown-link.confirm {
  float: left;
}
.ant-table-filter-dropdown-link.clear {
  float: right;
}
.ant-table-selection {
  white-space: nowrap;
}
.ant-table-selection-select-all-custom {
  margin-right: 4px !important;
}
.ant-table-selection .anticon-down {
  color: #bfbfbf;
  transition: all 0.3s;
}
.ant-table-selection-menu {
  min-width: 96px;
  margin-top: 5px;
  margin-left: -30px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-table-selection-menu .ant-action-down {
  color: #bfbfbf;
}
.ant-table-selection-down {
  display: inline-block;
  padding: 0;
  line-height: 1;
  cursor: pointer;
}
.ant-table-selection-down:hover .anticon-down {
  color: rgba(0, 0, 0, 0.6);
}
.ant-table-row-expand-icon {
  color: #03a9f5;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
  display: inline-block;
  width: 17px;
  height: 17px;
  color: inherit;
  line-height: 13px;
  text-align: center;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  outline: none;
  transition: all 0.3s;
  user-select: none;
}
.ant-table-row-expand-icon:focus,
.ant-table-row-expand-icon:hover {
  color: #2bc3ff;
}
.ant-table-row-expand-icon:active {
  color: #0086cf;
}
.ant-table-row-expand-icon:focus,
.ant-table-row-expand-icon:hover,
.ant-table-row-expand-icon:active {
  border-color: currentColor;
}
.ant-table-row-expanded::after {
  content: '-';
}
.ant-table-row-collapsed::after {
  content: '+';
}
.ant-table-row-spaced {
  visibility: hidden;
}
.ant-table-row-spaced::after {
  content: '.';
}
.ant-table-row-cell-ellipsis,
.ant-table-row-cell-ellipsis .ant-table-column-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-table-row-cell-ellipsis .ant-table-column-title {
  display: block;
}
.ant-table-row-cell-break-word {
  word-wrap: break-word;
  word-break: break-word;
}
tr.ant-table-expanded-row,
tr.ant-table-expanded-row:hover {
  background: #fbfbfb;
}
tr.ant-table-expanded-row td > .ant-table-wrapper {
  margin: -16px -16px -17px;
}
.ant-table .ant-table-row-indent + .ant-table-row-expand-icon {
  margin-right: 8px;
}
.ant-table-scroll {
  overflow: auto;
  overflow-x: hidden;
}
.ant-table-scroll table {
  min-width: 100%;
}
.ant-table-scroll table .ant-table-fixed-columns-in-body:not([colspan]) {
  color: transparent;
}
.ant-table-scroll table .ant-table-fixed-columns-in-body:not([colspan]) > * {
  visibility: hidden;
}
.ant-table-body-inner {
  height: 100%;
}
.ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  position: relative;
  background: #fff;
}
.ant-table-fixed-header .ant-table-body-inner {
  overflow: scroll;
}
.ant-table-fixed-header .ant-table-scroll .ant-table-header {
  margin-bottom: -20px;
  padding-bottom: 20px;
  overflow: scroll;
  opacity: 0.9999;
}
.ant-table-fixed-header .ant-table-scroll .ant-table-header::-webkit-scrollbar {
  border: 1px solid #e8e8e8;
  border-width: 0 0 1px 0;
}
.ant-table-hide-scrollbar {
  scrollbar-color: transparent transparent;
  min-width: unset;
}
.ant-table-hide-scrollbar::-webkit-scrollbar {
  min-width: inherit;
  background-color: transparent;
}
.ant-table-bordered.ant-table-fixed-header .ant-table-scroll .ant-table-header::-webkit-scrollbar {
  border: 1px solid #e8e8e8;
  border-width: 1px 1px 1px 0;
}
.ant-table-bordered.ant-table-fixed-header .ant-table-scroll .ant-table-header.ant-table-hide-scrollbar .ant-table-thead > tr:only-child > th:last-child {
  border-right-color: transparent;
}
.ant-table-fixed-left,
.ant-table-fixed-right {
  position: absolute;
  top: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 0;
  transition: box-shadow 0.3s ease;
}
.ant-table-fixed-left table,
.ant-table-fixed-right table {
  width: auto;
  background: #fff;
}
.ant-table-fixed-header .ant-table-fixed-left .ant-table-body-outer .ant-table-fixed,
.ant-table-fixed-header .ant-table-fixed-right .ant-table-body-outer .ant-table-fixed {
  border-radius: 0;
}
.ant-table-fixed-left {
  left: 0;
  box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15);
}
.ant-table-fixed-left .ant-table-header {
  overflow-y: hidden;
}
.ant-table-fixed-left .ant-table-body-inner {
  margin-right: -20px;
  padding-right: 20px;
}
.ant-table-fixed-header .ant-table-fixed-left .ant-table-body-inner {
  padding-right: 0;
}
.ant-table-fixed-left,
.ant-table-fixed-left table {
  border-radius: 4px 0 0 0;
}
.ant-table-fixed-left .ant-table-thead > tr > th:last-child {
  border-top-right-radius: 0;
}
.ant-table-fixed-right {
  right: 0;
  box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.15);
}
.ant-table-fixed-right,
.ant-table-fixed-right table {
  border-radius: 0 4px 0 0;
}
.ant-table-fixed-right .ant-table-expanded-row {
  color: transparent;
  pointer-events: none;
}
.ant-table-fixed-right .ant-table-thead > tr > th:first-child {
  border-top-left-radius: 0;
}
.ant-table.ant-table-scroll-position-left .ant-table-fixed-left {
  box-shadow: none;
}
.ant-table.ant-table-scroll-position-right .ant-table-fixed-right {
  box-shadow: none;
}
.ant-table colgroup > col.ant-table-selection-col {
  width: 60px;
}
.ant-table-thead > tr > th.ant-table-selection-column-custom .ant-table-selection {
  margin-right: -15px;
}
.ant-table-thead > tr > th.ant-table-selection-column,
.ant-table-tbody > tr > td.ant-table-selection-column {
  text-align: center;
}
.ant-table-thead > tr > th.ant-table-selection-column .ant-radio-wrapper,
.ant-table-tbody > tr > td.ant-table-selection-column .ant-radio-wrapper {
  margin-right: 0;
}
.ant-table-row[class*='ant-table-row-level-0'] .ant-table-selection-column > span {
  display: inline-block;
}
.ant-table-filter-dropdown .ant-checkbox-wrapper + span,
.ant-table-filter-dropdown-submenu .ant-checkbox-wrapper + span {
  padding-left: 8px;
}
/**
* Another fix of Firefox:
*/
@supports (-moz-appearance: meterbar) {
  .ant-table-thead > tr > th.ant-table-column-has-actions {
    background-clip: padding-box;
  }
}
.ant-table-middle > .ant-table-title,
.ant-table-middle > .ant-table-content > .ant-table-footer {
  padding: 12px 8px;
}
.ant-table-middle > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-middle > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
.ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,
.ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
.ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
.ant-table-middle > .ant-table-content > .ant-table-header > table > .ant-table-tbody > tr > td,
.ant-table-middle > .ant-table-content > .ant-table-body > table > .ant-table-tbody > tr > td,
.ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-tbody > tr > td,
.ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-tbody > tr > td,
.ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-tbody > tr > td,
.ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-tbody > tr > td,
.ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td,
.ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td {
  padding: 12px 8px;
}
.ant-table-middle tr.ant-table-expanded-row td > .ant-table-wrapper {
  margin: -12px -8px -13px;
}
.ant-table-small {
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}
.ant-table-small > .ant-table-title,
.ant-table-small > .ant-table-content > .ant-table-footer {
  padding: 8px 8px;
}
.ant-table-small > .ant-table-title {
  top: 0;
  border-bottom: 1px solid #e8e8e8;
}
.ant-table-small > .ant-table-content > .ant-table-footer {
  background-color: transparent;
  border-top: 1px solid #e8e8e8;
}
.ant-table-small > .ant-table-content > .ant-table-footer::before {
  background-color: transparent;
}
.ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0 8px;
}
.ant-table-small > .ant-table-content > .ant-table-header > table,
.ant-table-small > .ant-table-content > .ant-table-body > table,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table {
  border: 0;
}
.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-tbody > tr > td,
.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-tbody > tr > td,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-tbody > tr > td,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-tbody > tr > td,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-tbody > tr > td,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-tbody > tr > td,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td {
  padding: 8px 8px;
}
.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
  background-color: transparent;
}
.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr,
.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr {
  border-bottom: 1px solid #e8e8e8;
}
.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th.ant-table-column-sort,
.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th.ant-table-column-sort,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th.ant-table-column-sort,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th.ant-table-column-sort,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th.ant-table-column-sort,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th.ant-table-column-sort,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th.ant-table-column-sort,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th.ant-table-column-sort {
  background-color: rgba(0, 0, 0, 0.01);
}
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table {
  padding: 0;
}
.ant-table-small > .ant-table-content .ant-table-header {
  background-color: transparent;
  border-radius: 4px 4px 0 0;
}
.ant-table-small > .ant-table-content .ant-table-placeholder,
.ant-table-small > .ant-table-content .ant-table-row:last-child td {
  border-bottom: 0;
}
.ant-table-small.ant-table-bordered {
  border-right: 0;
}
.ant-table-small.ant-table-bordered .ant-table-title {
  border: 0;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.ant-table-small.ant-table-bordered .ant-table-content {
  border-right: 1px solid #e8e8e8;
}
.ant-table-small.ant-table-bordered .ant-table-footer {
  border: 0;
  border-top: 1px solid #e8e8e8;
}
.ant-table-small.ant-table-bordered .ant-table-footer::before {
  display: none;
}
.ant-table-small.ant-table-bordered .ant-table-placeholder {
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}
.ant-table-small.ant-table-bordered .ant-table-thead > tr > th.ant-table-row-cell-last,
.ant-table-small.ant-table-bordered .ant-table-tbody > tr > td:last-child {
  border-right: none;
}
.ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-thead > tr > th:last-child,
.ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-tbody > tr > td:last-child {
  border-right: 1px solid #e8e8e8;
}
.ant-table-small.ant-table-bordered .ant-table-fixed-right {
  border-right: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
}
.ant-table-small tr.ant-table-expanded-row td > .ant-table-wrapper {
  margin: -8px -8px -9px;
}
.ant-table-small.ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  border-radius: 0 0 4px 4px;
}
.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-nav-container {
  height: 40px;
}
.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-ink-bar {
  visibility: hidden;
}
.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab {
  height: 40px;
  margin: 0;
  margin-right: 2px;
  padding: 0 16px;
  line-height: 38px;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 4px 4px 0 0;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-active {
  height: 40px;
  color: #03a9f5;
  background: #fff;
  border-color: #e8e8e8;
  border-bottom: 1px solid #fff;
}
.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-active::before {
  border-top: 2px solid transparent;
}
.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-disabled {
  color: #03a9f5;
  color: rgba(0, 0, 0, 0.25);
}
.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-inactive {
  padding: 0;
}
.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-nav-wrap {
  margin-bottom: 0;
}
.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab .ant-tabs-close-x {
  width: 16px;
  height: 16px;
  height: 14px;
  margin-right: -5px;
  margin-left: 3px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  vertical-align: middle;
  transition: all 0.3s;
}
.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab .ant-tabs-close-x:hover {
  color: rgba(0, 0, 0, 0.85);
}
.ant-tabs.ant-tabs-card .ant-tabs-card-content > .ant-tabs-tabpane,
.ant-tabs.ant-tabs-editable-card .ant-tabs-card-content > .ant-tabs-tabpane {
  transition: none !important;
}
.ant-tabs.ant-tabs-card .ant-tabs-card-content > .ant-tabs-tabpane-inactive,
.ant-tabs.ant-tabs-editable-card .ant-tabs-card-content > .ant-tabs-tabpane-inactive {
  overflow: hidden;
}
.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab:hover .anticon-close {
  opacity: 1;
}
.ant-tabs-extra-content {
  line-height: 45px;
}
.ant-tabs-extra-content .ant-tabs-new-tab {
  position: relative;
  width: 20px;
  height: 20px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-tabs-extra-content .ant-tabs-new-tab:hover {
  color: #03a9f5;
  border-color: #03a9f5;
}
.ant-tabs-extra-content .ant-tabs-new-tab svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.ant-tabs.ant-tabs-large .ant-tabs-extra-content {
  line-height: 56px;
}
.ant-tabs.ant-tabs-small .ant-tabs-extra-content {
  line-height: 37px;
}
.ant-tabs.ant-tabs-card .ant-tabs-extra-content {
  line-height: 40px;
}
.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-nav-container,
.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-nav-container {
  height: 100%;
}
.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-tab,
.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-tab {
  margin-bottom: 8px;
  border-bottom: 1px solid #e8e8e8;
}
.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-tab-active,
.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-tab-active {
  padding-bottom: 4px;
}
.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-tab:last-child,
.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-tab:last-child {
  margin-bottom: 8px;
}
.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-new-tab,
.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-new-tab {
  width: 90%;
}
.ant-tabs-vertical.ant-tabs-card.ant-tabs-left .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-nav-wrap {
  margin-right: 0;
}
.ant-tabs-vertical.ant-tabs-card.ant-tabs-left .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-tab {
  margin-right: 1px;
  border-right: 0;
  border-radius: 4px 0 0 4px;
}
.ant-tabs-vertical.ant-tabs-card.ant-tabs-left .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-tab-active {
  margin-right: -1px;
  padding-right: 18px;
}
.ant-tabs-vertical.ant-tabs-card.ant-tabs-right .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-nav-wrap {
  margin-left: 0;
}
.ant-tabs-vertical.ant-tabs-card.ant-tabs-right .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-tab {
  margin-left: 1px;
  border-left: 0;
  border-radius: 0 4px 4px 0;
}
.ant-tabs-vertical.ant-tabs-card.ant-tabs-right .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-tab-active {
  margin-left: -1px;
  padding-left: 18px;
}
.ant-tabs .ant-tabs-card-bar.ant-tabs-bottom-bar .ant-tabs-tab {
  height: auto;
  border-top: 0;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 0 0 4px 4px;
}
.ant-tabs .ant-tabs-card-bar.ant-tabs-bottom-bar .ant-tabs-tab-active {
  padding-top: 1px;
  padding-bottom: 0;
  color: #03a9f5;
}
.ant-tabs {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  overflow: hidden;
  zoom: 1;
}
.ant-tabs::before,
.ant-tabs::after {
  display: table;
  content: '';
}
.ant-tabs::after {
  clear: both;
}
.ant-tabs-ink-bar {
  position: absolute;
  bottom: 1px;
  left: 0;
  z-index: 1;
  box-sizing: border-box;
  width: 0;
  height: 2px;
  background-color: #03a9f5;
  transform-origin: 0 0;
}
.ant-tabs-bar {
  margin: 0 0 16px 0;
  border-bottom: 1px solid #e8e8e8;
  outline: none;
  transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-tabs-nav-container {
  position: relative;
  box-sizing: border-box;
  margin-bottom: -1px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
  transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  zoom: 1;
}
.ant-tabs-nav-container::before,
.ant-tabs-nav-container::after {
  display: table;
  content: '';
}
.ant-tabs-nav-container::after {
  clear: both;
}
.ant-tabs-nav-container-scrolling {
  padding-right: 32px;
  padding-left: 32px;
}
.ant-tabs-bottom .ant-tabs-bottom-bar {
  margin-top: 16px;
  margin-bottom: 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: none;
}
.ant-tabs-bottom .ant-tabs-bottom-bar .ant-tabs-ink-bar {
  top: 1px;
  bottom: auto;
}
.ant-tabs-bottom .ant-tabs-bottom-bar .ant-tabs-nav-container {
  margin-top: -1px;
  margin-bottom: 0;
}
.ant-tabs-tab-prev,
.ant-tabs-tab-next {
  position: absolute;
  z-index: 2;
  width: 0;
  height: 100%;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  opacity: 0;
  transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  user-select: none;
  pointer-events: none;
}
.ant-tabs-tab-prev.ant-tabs-tab-arrow-show,
.ant-tabs-tab-next.ant-tabs-tab-arrow-show {
  width: 32px;
  height: 100%;
  opacity: 1;
  pointer-events: auto;
}
.ant-tabs-tab-prev:hover,
.ant-tabs-tab-next:hover {
  color: rgba(0, 0, 0, 0.65);
}
.ant-tabs-tab-prev-icon,
.ant-tabs-tab-next-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: bold;
  font-style: normal;
  font-variant: normal;
  line-height: inherit;
  text-align: center;
  text-transform: none;
  transform: translate(-50%, -50%);
}
.ant-tabs-tab-prev-icon-target,
.ant-tabs-tab-next-icon-target {
  display: block;
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  transform: scale(0.83333333) rotate(0deg);
}
:root .ant-tabs-tab-prev-icon-target,
:root .ant-tabs-tab-next-icon-target {
  font-size: 12px;
}
.ant-tabs-tab-btn-disabled {
  cursor: not-allowed;
}
.ant-tabs-tab-btn-disabled,
.ant-tabs-tab-btn-disabled:hover {
  color: rgba(0, 0, 0, 0.25);
}
.ant-tabs-tab-next {
  right: 2px;
}
.ant-tabs-tab-prev {
  left: 0;
}
:root .ant-tabs-tab-prev {
  filter: none;
}
.ant-tabs-nav-wrap {
  margin-bottom: -1px;
  overflow: hidden;
}
.ant-tabs-nav-scroll {
  overflow: hidden;
  white-space: nowrap;
}
.ant-tabs-nav {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  margin: 0;
  padding-left: 0;
  list-style: none;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-tabs-nav::before,
.ant-tabs-nav::after {
  display: table;
  content: ' ';
}
.ant-tabs-nav::after {
  clear: both;
}
.ant-tabs-nav .ant-tabs-tab {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  height: 100%;
  margin: 0 32px 0 0;
  padding: 12px 16px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-tabs-nav .ant-tabs-tab::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  border-top: 2px solid transparent;
  border-radius: 4px 4px 0 0;
  transition: all 0.3s;
  content: '';
  pointer-events: none;
}
.ant-tabs-nav .ant-tabs-tab:last-child {
  margin-right: 0;
}
.ant-tabs-nav .ant-tabs-tab:hover {
  color: #2bc3ff;
}
.ant-tabs-nav .ant-tabs-tab:active {
  color: #0086cf;
}
.ant-tabs-nav .ant-tabs-tab .anticon {
  margin-right: 8px;
}
.ant-tabs-nav .ant-tabs-tab-active {
  color: #03a9f5;
  font-weight: 500;
}
.ant-tabs-nav .ant-tabs-tab-disabled,
.ant-tabs-nav .ant-tabs-tab-disabled:hover {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-tabs .ant-tabs-large-bar .ant-tabs-nav-container {
  font-size: 16px;
}
.ant-tabs .ant-tabs-large-bar .ant-tabs-tab {
  padding: 16px;
}
.ant-tabs .ant-tabs-small-bar .ant-tabs-nav-container {
  font-size: 14px;
}
.ant-tabs .ant-tabs-small-bar .ant-tabs-tab {
  padding: 8px 16px;
}
.ant-tabs-content::before {
  display: block;
  overflow: hidden;
  content: '';
}
.ant-tabs .ant-tabs-top-content,
.ant-tabs .ant-tabs-bottom-content {
  width: 100%;
}
.ant-tabs .ant-tabs-top-content > .ant-tabs-tabpane,
.ant-tabs .ant-tabs-bottom-content > .ant-tabs-tabpane {
  flex-shrink: 0;
  width: 100%;
  -webkit-backface-visibility: hidden;
  opacity: 1;
  transition: opacity 0.45s;
}
.ant-tabs .ant-tabs-top-content > .ant-tabs-tabpane-inactive,
.ant-tabs .ant-tabs-bottom-content > .ant-tabs-tabpane-inactive {
  height: 0;
  padding: 0 !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.ant-tabs .ant-tabs-top-content > .ant-tabs-tabpane-inactive input,
.ant-tabs .ant-tabs-bottom-content > .ant-tabs-tabpane-inactive input {
  visibility: hidden;
}
.ant-tabs .ant-tabs-top-content.ant-tabs-content-animated,
.ant-tabs .ant-tabs-bottom-content.ant-tabs-content-animated {
  display: flex;
  flex-direction: row;
  transition: margin-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: margin-left;
}
.ant-tabs .ant-tabs-left-bar,
.ant-tabs .ant-tabs-right-bar {
  height: 100%;
  border-bottom: 0;
}
.ant-tabs .ant-tabs-left-bar .ant-tabs-tab-arrow-show,
.ant-tabs .ant-tabs-right-bar .ant-tabs-tab-arrow-show {
  width: 100%;
  height: 32px;
}
.ant-tabs .ant-tabs-left-bar .ant-tabs-tab,
.ant-tabs .ant-tabs-right-bar .ant-tabs-tab {
  display: block;
  float: none;
  margin: 0 0 16px 0;
  padding: 8px 24px;
}
.ant-tabs .ant-tabs-left-bar .ant-tabs-tab:last-child,
.ant-tabs .ant-tabs-right-bar .ant-tabs-tab:last-child {
  margin-bottom: 0;
}
.ant-tabs .ant-tabs-left-bar .ant-tabs-extra-content,
.ant-tabs .ant-tabs-right-bar .ant-tabs-extra-content {
  text-align: center;
}
.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-scroll,
.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-scroll {
  width: auto;
}
.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-container,
.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-container,
.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-wrap,
.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-wrap {
  height: 100%;
}
.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-container,
.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-container {
  margin-bottom: 0;
}
.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-container.ant-tabs-nav-container-scrolling,
.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-container.ant-tabs-nav-container-scrolling {
  padding: 32px 0;
}
.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-wrap,
.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-wrap {
  margin-bottom: 0;
}
.ant-tabs .ant-tabs-left-bar .ant-tabs-nav,
.ant-tabs .ant-tabs-right-bar .ant-tabs-nav {
  width: 100%;
}
.ant-tabs .ant-tabs-left-bar .ant-tabs-ink-bar,
.ant-tabs .ant-tabs-right-bar .ant-tabs-ink-bar {
  top: 0;
  bottom: auto;
  left: auto;
  width: 2px;
  height: 0;
}
.ant-tabs .ant-tabs-left-bar .ant-tabs-tab-next,
.ant-tabs .ant-tabs-right-bar .ant-tabs-tab-next {
  right: 0;
  bottom: 0;
  width: 100%;
  height: 32px;
}
.ant-tabs .ant-tabs-left-bar .ant-tabs-tab-prev,
.ant-tabs .ant-tabs-right-bar .ant-tabs-tab-prev {
  top: 0;
  width: 100%;
  height: 32px;
}
.ant-tabs .ant-tabs-left-content,
.ant-tabs .ant-tabs-right-content {
  width: auto;
  margin-top: 0 !important;
  overflow: hidden;
}
.ant-tabs .ant-tabs-left-bar {
  float: left;
  margin-right: -1px;
  margin-bottom: 0;
  border-right: 1px solid #e8e8e8;
}
.ant-tabs .ant-tabs-left-bar .ant-tabs-tab {
  text-align: right;
}
.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-container {
  margin-right: -1px;
}
.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-wrap {
  margin-right: -1px;
}
.ant-tabs .ant-tabs-left-bar .ant-tabs-ink-bar {
  right: 1px;
}
.ant-tabs .ant-tabs-left-content {
  padding-left: 24px;
  border-left: 1px solid #e8e8e8;
}
.ant-tabs .ant-tabs-right-bar {
  float: right;
  margin-bottom: 0;
  margin-left: -1px;
  border-left: 1px solid #e8e8e8;
}
.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-container {
  margin-left: -1px;
}
.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-wrap {
  margin-left: -1px;
}
.ant-tabs .ant-tabs-right-bar .ant-tabs-ink-bar {
  left: 1px;
}
.ant-tabs .ant-tabs-right-content {
  padding-right: 24px;
  border-right: 1px solid #e8e8e8;
}
.ant-tabs-top .ant-tabs-ink-bar-animated,
.ant-tabs-bottom .ant-tabs-ink-bar-animated {
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-tabs-left .ant-tabs-ink-bar-animated,
.ant-tabs-right .ant-tabs-ink-bar-animated {
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.no-flex > .ant-tabs-content > .ant-tabs-content-animated,
.ant-tabs-no-animation > .ant-tabs-content > .ant-tabs-content-animated {
  margin-left: 0 !important;
  transform: none !important;
}
.no-flex > .ant-tabs-content > .ant-tabs-tabpane-inactive,
.ant-tabs-no-animation > .ant-tabs-content > .ant-tabs-tabpane-inactive {
  height: 0;
  padding: 0 !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.no-flex > .ant-tabs-content > .ant-tabs-tabpane-inactive input,
.ant-tabs-no-animation > .ant-tabs-content > .ant-tabs-tabpane-inactive input {
  visibility: hidden;
}
.ant-tabs-left-content > .ant-tabs-content-animated,
.ant-tabs-right-content > .ant-tabs-content-animated {
  margin-left: 0 !important;
  transform: none !important;
}
.ant-tabs-left-content > .ant-tabs-tabpane-inactive,
.ant-tabs-right-content > .ant-tabs-tabpane-inactive {
  height: 0;
  padding: 0 !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.ant-tabs-left-content > .ant-tabs-tabpane-inactive input,
.ant-tabs-right-content > .ant-tabs-tabpane-inactive input {
  visibility: hidden;
}
.ant-tag {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
  height: auto;
  margin-right: 8px;
  padding: 0 7px;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
  background: #fafafa;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  cursor: default;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-tag:hover {
  opacity: 0.85;
}
.ant-tag,
.ant-tag a,
.ant-tag a:hover {
  color: rgba(0, 0, 0, 0.65);
}
.ant-tag > a:first-child:last-child {
  display: inline-block;
  margin: 0 -8px;
  padding: 0 8px;
}
.ant-tag .anticon-close {
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  transform: scale(0.83333333) rotate(0deg);
  margin-left: 3px;
  color: rgba(0, 0, 0, 0.45);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
:root .ant-tag .anticon-close {
  font-size: 12px;
}
.ant-tag .anticon-close:hover {
  color: rgba(0, 0, 0, 0.85);
}
.ant-tag-has-color {
  border-color: transparent;
}
.ant-tag-has-color,
.ant-tag-has-color a,
.ant-tag-has-color a:hover,
.ant-tag-has-color .anticon-close,
.ant-tag-has-color .anticon-close:hover {
  color: #fff;
}
.ant-tag-checkable {
  background-color: transparent;
  border-color: transparent;
}
.ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
  color: #03a9f5;
}
.ant-tag-checkable:active,
.ant-tag-checkable-checked {
  color: #fff;
}
.ant-tag-checkable-checked {
  background-color: #03a9f5;
}
.ant-tag-checkable:active {
  background-color: #0086cf;
}
.ant-tag-hidden {
  display: none;
}
.ant-tag-pink {
  color: #eb2f96;
  background: #fff0f6;
  border-color: #ffadd2;
}
.ant-tag-pink-inverse {
  color: #fff;
  background: #eb2f96;
  border-color: #eb2f96;
}
.ant-tag-magenta {
  color: #eb2f96;
  background: #fff0f6;
  border-color: #ffadd2;
}
.ant-tag-magenta-inverse {
  color: #fff;
  background: #eb2f96;
  border-color: #eb2f96;
}
.ant-tag-red {
  color: #f5222d;
  background: #fff1f0;
  border-color: #ffa39e;
}
.ant-tag-red-inverse {
  color: #fff;
  background: #f5222d;
  border-color: #f5222d;
}
.ant-tag-volcano {
  color: #fa541c;
  background: #fff2e8;
  border-color: #ffbb96;
}
.ant-tag-volcano-inverse {
  color: #fff;
  background: #fa541c;
  border-color: #fa541c;
}
.ant-tag-orange {
  color: #fa8c16;
  background: #fff7e6;
  border-color: #ffd591;
}
.ant-tag-orange-inverse {
  color: #fff;
  background: #fa8c16;
  border-color: #fa8c16;
}
.ant-tag-yellow {
  color: #fadb14;
  background: #feffe6;
  border-color: #fffb8f;
}
.ant-tag-yellow-inverse {
  color: #fff;
  background: #fadb14;
  border-color: #fadb14;
}
.ant-tag-gold {
  color: #faad14;
  background: #fffbe6;
  border-color: #ffe58f;
}
.ant-tag-gold-inverse {
  color: #fff;
  background: #faad14;
  border-color: #faad14;
}
.ant-tag-cyan {
  color: #13c2c2;
  background: #e6fffb;
  border-color: #87e8de;
}
.ant-tag-cyan-inverse {
  color: #fff;
  background: #13c2c2;
  border-color: #13c2c2;
}
.ant-tag-lime {
  color: #a0d911;
  background: #fcffe6;
  border-color: #eaff8f;
}
.ant-tag-lime-inverse {
  color: #fff;
  background: #a0d911;
  border-color: #a0d911;
}
.ant-tag-green {
  color: #52c41a;
  background: #f6ffed;
  border-color: #b7eb8f;
}
.ant-tag-green-inverse {
  color: #fff;
  background: #52c41a;
  border-color: #52c41a;
}
.ant-tag-blue {
  color: #1890ff;
  background: #e6f7ff;
  border-color: #91d5ff;
}
.ant-tag-blue-inverse {
  color: #fff;
  background: #1890ff;
  border-color: #1890ff;
}
.ant-tag-geekblue {
  color: #2f54eb;
  background: #f0f5ff;
  border-color: #adc6ff;
}
.ant-tag-geekblue-inverse {
  color: #fff;
  background: #2f54eb;
  border-color: #2f54eb;
}
.ant-tag-purple {
  color: #722ed1;
  background: #f9f0ff;
  border-color: #d3adf7;
}
.ant-tag-purple-inverse {
  color: #fff;
  background: #722ed1;
  border-color: #722ed1;
}
.ant-time-picker-panel {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  z-index: 1050;
  font-family: Helvetica, Arial, sans-serif;
}
.ant-time-picker-panel-inner {
  position: relative;
  left: -2px;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 4px;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-time-picker-panel-input {
  width: 100%;
  max-width: 154px;
  margin: 0;
  padding: 0;
  line-height: normal;
  border: 0;
  outline: 0;
  cursor: auto;
}
.ant-time-picker-panel-input::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-time-picker-panel-input:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-time-picker-panel-input::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-time-picker-panel-input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-time-picker-panel-input-wrap {
  position: relative;
  padding: 7px 2px 7px 12px;
  border-bottom: 1px solid #e8e8e8;
}
.ant-time-picker-panel-input-invalid {
  border-color: #f5222d;
}
.ant-time-picker-panel-narrow .ant-time-picker-panel-input-wrap {
  max-width: 112px;
}
.ant-time-picker-panel-select {
  position: relative;
  float: left;
  width: 56px;
  max-height: 192px;
  overflow: hidden;
  font-size: 14px;
  border-left: 1px solid #e8e8e8;
}
.ant-time-picker-panel-select:hover {
  overflow-y: auto;
}
.ant-time-picker-panel-select:first-child {
  margin-left: 0;
  border-left: 0;
}
.ant-time-picker-panel-select:last-child {
  border-right: 0;
}
.ant-time-picker-panel-select:only-child {
  width: 100%;
}
.ant-time-picker-panel-select ul {
  width: 56px;
  margin: 0;
  padding: 0 0 160px;
  list-style: none;
}
.ant-time-picker-panel-select li {
  width: 100%;
  height: 32px;
  margin: 0;
  padding: 0 0 0 12px;
  line-height: 32px;
  text-align: left;
  list-style: none;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
}
.ant-time-picker-panel-select li:focus {
  color: #03a9f5;
  font-weight: 600;
  outline: none;
}
.ant-time-picker-panel-select li:hover {
  background: #e6fbff;
}
li.ant-time-picker-panel-select-option-selected {
  font-weight: 600;
  background: #f5f5f5;
}
li.ant-time-picker-panel-select-option-selected:hover {
  background: #f5f5f5;
}
li.ant-time-picker-panel-select-option-disabled {
  color: rgba(0, 0, 0, 0.25);
}
li.ant-time-picker-panel-select-option-disabled:hover {
  background: transparent;
  cursor: not-allowed;
}
li.ant-time-picker-panel-select-option-disabled:focus {
  color: rgba(0, 0, 0, 0.25);
  font-weight: inherit;
}
.ant-time-picker-panel-combobox {
  zoom: 1;
}
.ant-time-picker-panel-combobox::before,
.ant-time-picker-panel-combobox::after {
  display: table;
  content: '';
}
.ant-time-picker-panel-combobox::after {
  clear: both;
}
.ant-time-picker-panel-addon {
  padding: 8px;
  border-top: 1px solid #e8e8e8;
}
.ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-topLeft,
.ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-topRight,
.ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-topLeft,
.ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-topRight {
  animation-name: antSlideDownIn;
}
.ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-bottomLeft,
.ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-bottomRight,
.ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-bottomLeft,
.ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-bottomRight {
  animation-name: antSlideUpIn;
}
.ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-topLeft,
.ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-topRight {
  animation-name: antSlideDownOut;
}
.ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-bottomLeft,
.ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-bottomRight {
  animation-name: antSlideUpOut;
}
.ant-time-picker {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  width: 128px;
  outline: none;
  cursor: text;
  transition: opacity 0.3s;
}
.ant-time-picker-input {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 32px;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  background-image: none;
  border: 1px solid #EAEAEA;
  border-radius: 4px;
  transition: all 0.3s;
}
.ant-time-picker-input::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-time-picker-input:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-time-picker-input::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-time-picker-input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-time-picker-input:hover {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
}
.ant-time-picker-input:focus {
  border-color: #2bc3ff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(3, 169, 245, 0.2);
}
.ant-time-picker-input-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-time-picker-input-disabled:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
.ant-time-picker-input[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-time-picker-input[disabled]:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
textarea.ant-time-picker-input {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}
.ant-time-picker-input-lg {
  height: 40px;
  padding: 6px 11px;
  font-size: 16px;
}
.ant-time-picker-input-sm {
  height: 24px;
  padding: 1px 7px;
}
.ant-time-picker-input[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-time-picker-input[disabled]:hover {
  border-color: #EAEAEA;
  border-right-width: 1px !important;
}
.ant-time-picker-open {
  opacity: 0;
}
.ant-time-picker-icon,
.ant-time-picker-clear {
  position: absolute;
  top: 50%;
  right: 11px;
  z-index: 1;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  color: rgba(0, 0, 0, 0.25);
  line-height: 14px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  user-select: none;
}
.ant-time-picker-icon .ant-time-picker-clock-icon,
.ant-time-picker-clear .ant-time-picker-clock-icon {
  display: block;
  color: rgba(0, 0, 0, 0.25);
  line-height: 1;
}
.ant-time-picker-clear {
  z-index: 2;
  background: #fff;
  opacity: 0;
  pointer-events: none;
}
.ant-time-picker-clear:hover {
  color: rgba(0, 0, 0, 0.45);
}
.ant-time-picker:hover .ant-time-picker-clear {
  opacity: 1;
  pointer-events: auto;
}
.ant-time-picker-large .ant-time-picker-input {
  height: 40px;
  padding: 6px 11px;
  font-size: 16px;
}
.ant-time-picker-small .ant-time-picker-input {
  height: 24px;
  padding: 1px 7px;
}
.ant-time-picker-small .ant-time-picker-icon,
.ant-time-picker-small .ant-time-picker-clear {
  right: 7px;
}
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) and (stroke-color: transparent) {
    .ant-input {
      line-height: 1.5;
    }
  }
}
.ant-timeline {
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  font-feature-settings: 'tnum';
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-timeline-item {
  position: relative;
  margin: 0;
  padding: 0 0 20px;
  font-size: 14px;
  list-style: none;
}
.ant-timeline-item-tail {
  position: absolute;
  top: 10px;
  left: 4px;
  height: calc(100% - 10px);
  border-left: 2px solid #e8e8e8;
}
.ant-timeline-item-pending .ant-timeline-item-head {
  font-size: 12px;
  background-color: transparent;
}
.ant-timeline-item-pending .ant-timeline-item-tail {
  display: none;
}
.ant-timeline-item-head {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 100px;
}
.ant-timeline-item-head-blue {
  color: #03a9f5;
  border-color: #03a9f5;
}
.ant-timeline-item-head-red {
  color: #f5222d;
  border-color: #f5222d;
}
.ant-timeline-item-head-green {
  color: #52c41a;
  border-color: #52c41a;
}
.ant-timeline-item-head-gray {
  color: rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.25);
}
.ant-timeline-item-head-custom {
  position: absolute;
  top: 5.5px;
  left: 5px;
  width: auto;
  height: auto;
  margin-top: 0;
  padding: 3px 1px;
  line-height: 1;
  text-align: center;
  border: 0;
  border-radius: 0;
  transform: translate(-50%, -50%);
}
.ant-timeline-item-content {
  position: relative;
  top: -6px;
  margin: 0 0 0 18px;
  word-break: break-word;
}
.ant-timeline-item-last > .ant-timeline-item-tail {
  display: none;
}
.ant-timeline-item-last > .ant-timeline-item-content {
  min-height: 48px;
}
.ant-timeline.ant-timeline-alternate .ant-timeline-item-tail,
.ant-timeline.ant-timeline-right .ant-timeline-item-tail,
.ant-timeline.ant-timeline-alternate .ant-timeline-item-head,
.ant-timeline.ant-timeline-right .ant-timeline-item-head,
.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom,
.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom {
  left: 50%;
}
.ant-timeline.ant-timeline-alternate .ant-timeline-item-head,
.ant-timeline.ant-timeline-right .ant-timeline-item-head {
  margin-left: -4px;
}
.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom,
.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom {
  margin-left: 1px;
}
.ant-timeline.ant-timeline-alternate .ant-timeline-item-left .ant-timeline-item-content,
.ant-timeline.ant-timeline-right .ant-timeline-item-left .ant-timeline-item-content {
  left: calc(50% - 4px);
  width: calc(50% - 14px);
  text-align: left;
}
.ant-timeline.ant-timeline-alternate .ant-timeline-item-right .ant-timeline-item-content,
.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content {
  width: calc(50% - 12px);
  margin: 0;
  text-align: right;
}
.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-tail,
.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head,
.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head-custom {
  left: calc(100% - 4px - 2px);
}
.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content {
  width: calc(100% - 18px);
}
.ant-timeline.ant-timeline-pending .ant-timeline-item-last .ant-timeline-item-tail {
  display: block;
  height: calc(100% - 14px);
  border-left: 2px dotted #e8e8e8;
}
.ant-timeline.ant-timeline-reverse .ant-timeline-item-last .ant-timeline-item-tail {
  display: none;
}
.ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-tail {
  top: 15px;
  display: block;
  height: calc(100% - 15px);
  border-left: 2px dotted #e8e8e8;
}
.ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-content {
  min-height: 48px;
}
.ant-tooltip {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  z-index: 1060;
  display: block;
  max-width: 250px;
  visibility: visible;
}
.ant-tooltip-hidden {
  display: none;
}
.ant-tooltip-placement-top,
.ant-tooltip-placement-topLeft,
.ant-tooltip-placement-topRight {
  padding-bottom: 8px;
}
.ant-tooltip-placement-right,
.ant-tooltip-placement-rightTop,
.ant-tooltip-placement-rightBottom {
  padding-left: 8px;
}
.ant-tooltip-placement-bottom,
.ant-tooltip-placement-bottomLeft,
.ant-tooltip-placement-bottomRight {
  padding-top: 8px;
}
.ant-tooltip-placement-left,
.ant-tooltip-placement-leftTop,
.ant-tooltip-placement-leftBottom {
  padding-right: 8px;
}
.ant-tooltip-inner {
  min-width: 30px;
  min-height: 32px;
  padding: 6px 8px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  word-wrap: break-word;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-tooltip-arrow {
  position: absolute;
  display: block;
  width: 13.07106781px;
  height: 13.07106781px;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}
.ant-tooltip-arrow::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.75);
  content: '';
  pointer-events: auto;
}
.ant-tooltip-placement-top .ant-tooltip-arrow,
.ant-tooltip-placement-topLeft .ant-tooltip-arrow,
.ant-tooltip-placement-topRight .ant-tooltip-arrow {
  bottom: -5.07106781px;
}
.ant-tooltip-placement-top .ant-tooltip-arrow::before,
.ant-tooltip-placement-topLeft .ant-tooltip-arrow::before,
.ant-tooltip-placement-topRight .ant-tooltip-arrow::before {
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
  transform: translateY(-6.53553391px) rotate(45deg);
}
.ant-tooltip-placement-top .ant-tooltip-arrow {
  left: 50%;
  transform: translateX(-50%);
}
.ant-tooltip-placement-topLeft .ant-tooltip-arrow {
  left: 13px;
}
.ant-tooltip-placement-topRight .ant-tooltip-arrow {
  right: 13px;
}
.ant-tooltip-placement-right .ant-tooltip-arrow,
.ant-tooltip-placement-rightTop .ant-tooltip-arrow,
.ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
  left: -5.07106781px;
}
.ant-tooltip-placement-right .ant-tooltip-arrow::before,
.ant-tooltip-placement-rightTop .ant-tooltip-arrow::before,
.ant-tooltip-placement-rightBottom .ant-tooltip-arrow::before {
  box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
  transform: translateX(6.53553391px) rotate(45deg);
}
.ant-tooltip-placement-right .ant-tooltip-arrow {
  top: 50%;
  transform: translateY(-50%);
}
.ant-tooltip-placement-rightTop .ant-tooltip-arrow {
  top: 5px;
}
.ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
  bottom: 5px;
}
.ant-tooltip-placement-left .ant-tooltip-arrow,
.ant-tooltip-placement-leftTop .ant-tooltip-arrow,
.ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
  right: -5.07106781px;
}
.ant-tooltip-placement-left .ant-tooltip-arrow::before,
.ant-tooltip-placement-leftTop .ant-tooltip-arrow::before,
.ant-tooltip-placement-leftBottom .ant-tooltip-arrow::before {
  box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
  transform: translateX(-6.53553391px) rotate(45deg);
}
.ant-tooltip-placement-left .ant-tooltip-arrow {
  top: 50%;
  transform: translateY(-50%);
}
.ant-tooltip-placement-leftTop .ant-tooltip-arrow {
  top: 5px;
}
.ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
  bottom: 5px;
}
.ant-tooltip-placement-bottom .ant-tooltip-arrow,
.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow,
.ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
  top: -5.07106781px;
}
.ant-tooltip-placement-bottom .ant-tooltip-arrow::before,
.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow::before,
.ant-tooltip-placement-bottomRight .ant-tooltip-arrow::before {
  box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.07);
  transform: translateY(6.53553391px) rotate(45deg);
}
.ant-tooltip-placement-bottom .ant-tooltip-arrow {
  left: 50%;
  transform: translateX(-50%);
}
.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow {
  left: 13px;
}
.ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
  right: 13px;
}
.ant-transfer-customize-list {
  display: flex;
}
.ant-transfer-customize-list .ant-transfer-operation {
  flex: none;
  align-self: center;
}
.ant-transfer-customize-list .ant-transfer-list {
  flex: auto;
  width: auto;
  height: auto;
  min-height: 200px;
}
.ant-transfer-customize-list .ant-transfer-list-body-with-search {
  padding-top: 0;
}
.ant-transfer-customize-list .ant-transfer-list-body-search-wrapper {
  position: relative;
  padding-bottom: 0;
}
.ant-transfer-customize-list .ant-transfer-list-body-customize-wrapper {
  padding: 12px;
}
.ant-transfer-customize-list .ant-table-wrapper .ant-table-small {
  border: 0;
  border-radius: 0;
}
.ant-transfer-customize-list .ant-table-wrapper .ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th {
  background: #fafafa;
}
.ant-transfer-customize-list .ant-table-wrapper .ant-table-small > .ant-table-content .ant-table-row:last-child td {
  border-bottom: 1px solid #e8e8e8;
}
.ant-transfer-customize-list .ant-table-wrapper .ant-table-small .ant-table-body {
  margin: 0;
}
.ant-transfer-customize-list .ant-table-wrapper .ant-table-pagination.ant-pagination {
  margin: 16px 0 4px;
}
.ant-transfer {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
}
.ant-transfer-disabled .ant-transfer-list {
  background: #f5f5f5;
}
.ant-transfer-list {
  position: relative;
  display: inline-block;
  width: 180px;
  height: 200px;
  padding-top: 40px;
  vertical-align: middle;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.ant-transfer-list-with-footer {
  padding-bottom: 34px;
}
.ant-transfer-list-search {
  padding: 0 24px 0 8px;
}
.ant-transfer-list-search-action {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  width: 28px;
  color: rgba(0, 0, 0, 0.25);
  line-height: 32px;
  text-align: center;
}
.ant-transfer-list-search-action .anticon {
  color: rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}
.ant-transfer-list-search-action .anticon:hover {
  color: rgba(0, 0, 0, 0.45);
}
span.ant-transfer-list-search-action {
  pointer-events: none;
}
.ant-transfer-list-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 12px 9px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.65);
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 4px 4px 0 0;
}
.ant-transfer-list-header-title {
  position: absolute;
  right: 12px;
}
.ant-transfer-list-header .ant-checkbox-wrapper + span {
  padding-left: 8px;
}
.ant-transfer-list-body {
  position: relative;
  height: 100%;
  font-size: 14px;
}
.ant-transfer-list-body-search-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px;
}
.ant-transfer-list-body-with-search {
  padding-top: 56px;
}
.ant-transfer-list-content {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  list-style: none;
}
.ant-transfer-list-content > .LazyLoad {
  animation: transferHighlightIn 1s;
}
.ant-transfer-list-content-item {
  min-height: 32px;
  padding: 6px 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.3s;
}
.ant-transfer-list-content-item > span {
  padding-right: 0;
}
.ant-transfer-list-content-item-text {
  padding-left: 8px;
}
.ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover {
  background-color: #e6fbff;
  cursor: pointer;
}
.ant-transfer-list-content-item-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-transfer-list-body-not-found {
  position: absolute;
  top: 50%;
  width: 100%;
  padding-top: 0;
  color: rgba(0, 0, 0, 0.25);
  text-align: center;
  transform: translateY(-50%);
}
.ant-transfer-list-body-with-search .ant-transfer-list-body-not-found {
  margin-top: 16px;
}
.ant-transfer-list-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #e8e8e8;
  border-radius: 0 0 4px 4px;
}
.ant-transfer-operation {
  display: inline-block;
  margin: 0 8px;
  overflow: hidden;
  vertical-align: middle;
}
.ant-transfer-operation .ant-btn {
  display: block;
}
.ant-transfer-operation .ant-btn:first-child {
  margin-bottom: 4px;
}
.ant-transfer-operation .ant-btn .anticon {
  font-size: 12px;
}
@keyframes transferHighlightIn {
  0% {
    background: #a6efff;
  }
  100% {
    background: transparent;
  }
}
.ant-tree.ant-tree-directory {
  position: relative;
}
.ant-tree.ant-tree-directory > li span.ant-tree-switcher,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-switcher {
  position: relative;
  z-index: 1;
}
.ant-tree.ant-tree-directory > li span.ant-tree-switcher.ant-tree-switcher-noop,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-switcher.ant-tree-switcher-noop {
  pointer-events: none;
}
.ant-tree.ant-tree-directory > li span.ant-tree-checkbox,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-checkbox {
  position: relative;
  z-index: 1;
}
.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper {
  border-radius: 0;
  user-select: none;
}
.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper:hover,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper:hover {
  background: transparent;
}
.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper:hover::before,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper:hover::before {
  background: #e6fbff;
}
.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper.ant-tree-node-selected,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper.ant-tree-node-selected {
  color: #fff;
  background: transparent;
}
.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper::before,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 24px;
  transition: all 0.3s;
  content: '';
}
.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper > span,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper > span {
  position: relative;
  z-index: 1;
}
.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-switcher,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-switcher {
  color: #fff;
}
.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox .ant-tree-checkbox-inner,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox .ant-tree-checkbox-inner {
  border-color: #03a9f5;
}
.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked::after,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked::after {
  border-color: #fff;
}
.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner {
  background: #fff;
}
.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after {
  border-color: #03a9f5;
}
.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-node-content-wrapper::before,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-node-content-wrapper::before {
  background: #03a9f5;
}
.ant-tree-checkbox {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  top: -0.09em;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
  outline: none;
  cursor: pointer;
}
.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner,
.ant-tree-checkbox:hover .ant-tree-checkbox-inner,
.ant-tree-checkbox-input:focus + .ant-tree-checkbox-inner {
  border-color: #03a9f5;
}
.ant-tree-checkbox-checked::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #03a9f5;
  border-radius: 2px;
  visibility: hidden;
  animation: antCheckboxEffect 0.36s ease-in-out;
  animation-fill-mode: backwards;
  content: '';
}
.ant-tree-checkbox:hover::after,
.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox::after {
  visibility: visible;
}
.ant-tree-checkbox-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  border-collapse: separate;
  transition: all 0.3s;
}
.ant-tree-checkbox-inner::after {
  position: absolute;
  top: 50%;
  left: 22%;
  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: ' ';
}
.ant-tree-checkbox-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.ant-tree-checkbox-checked .ant-tree-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: ' ';
}
.ant-tree-checkbox-checked .ant-tree-checkbox-inner {
  background-color: #03a9f5;
  border-color: #03a9f5;
}
.ant-tree-checkbox-disabled {
  cursor: not-allowed;
}
.ant-tree-checkbox-disabled.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after {
  border-color: rgba(0, 0, 0, 0.25);
  animation-name: none;
}
.ant-tree-checkbox-disabled .ant-tree-checkbox-input {
  cursor: not-allowed;
}
.ant-tree-checkbox-disabled .ant-tree-checkbox-inner {
  background-color: #f5f5f5;
  border-color: #d9d9d9 !important;
}
.ant-tree-checkbox-disabled .ant-tree-checkbox-inner::after {
  border-color: #f5f5f5;
  border-collapse: separate;
  animation-name: none;
}
.ant-tree-checkbox-disabled + span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-tree-checkbox-disabled:hover::after,
.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-disabled::after {
  visibility: hidden;
}
.ant-tree-checkbox-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
  line-height: unset;
  cursor: pointer;
}
.ant-tree-checkbox-wrapper.ant-tree-checkbox-wrapper-disabled {
  cursor: not-allowed;
}
.ant-tree-checkbox-wrapper + .ant-tree-checkbox-wrapper {
  margin-left: 8px;
}
.ant-tree-checkbox + span {
  padding-right: 8px;
  padding-left: 8px;
}
.ant-tree-checkbox-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
}
.ant-tree-checkbox-group-item {
  display: inline-block;
  margin-right: 8px;
}
.ant-tree-checkbox-group-item:last-child {
  margin-right: 0;
}
.ant-tree-checkbox-group-item + .ant-tree-checkbox-group-item {
  margin-left: 0;
}
.ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner {
  background-color: #fff;
  border-color: #d9d9d9;
}
.ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner::after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #03a9f5;
  border: 0;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  content: ' ';
}
.ant-tree-checkbox-indeterminate.ant-tree-checkbox-disabled .ant-tree-checkbox-inner::after {
  background-color: rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.25);
}
.ant-tree {
  /* see https://github.com/ant-design/ant-design/issues/16259 */
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  margin: 0;
  padding: 0;
}
.ant-tree-checkbox-checked::after {
  position: absolute;
  top: 16.67%;
  left: 0;
  width: 100%;
  height: 66.67%;
}
.ant-tree ol,
.ant-tree ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-tree li {
  margin: 0;
  padding: 4px 0;
  white-space: nowrap;
  list-style: none;
  outline: 0;
}
.ant-tree li span[draggable],
.ant-tree li span[draggable='true'] {
  line-height: 20px;
  border-top: 2px transparent solid;
  border-bottom: 2px transparent solid;
  user-select: none;
  /* Required to make elements draggable in old WebKit */
  -khtml-user-drag: element;
  -webkit-user-drag: element;
}
.ant-tree li.drag-over > span[draggable] {
  color: white;
  background-color: #03a9f5;
  opacity: 0.8;
}
.ant-tree li.drag-over-gap-top > span[draggable] {
  border-top-color: #03a9f5;
}
.ant-tree li.drag-over-gap-bottom > span[draggable] {
  border-bottom-color: #03a9f5;
}
.ant-tree li.filter-node > span {
  color: #f5222d !important;
  font-weight: 500 !important;
}
.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-loading-icon,
.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-loading-icon {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 24px;
  height: 24px;
  color: #03a9f5;
  font-size: 14px;
  transform: none;
}
.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-loading-icon svg,
.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-loading-icon svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
:root .ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_open::after,
:root .ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_close::after {
  opacity: 0;
}
.ant-tree li ul {
  margin: 0;
  padding: 0 0 0 18px;
}
.ant-tree li .ant-tree-node-content-wrapper {
  display: inline-block;
  height: 24px;
  margin: 0;
  padding: 0 5px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 24px;
  text-decoration: none;
  vertical-align: top;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-tree li .ant-tree-node-content-wrapper:hover {
  background-color: #e6fbff;
}
.ant-tree li .ant-tree-node-content-wrapper.ant-tree-node-selected {
  background-color: #a6efff;
}
.ant-tree li span.ant-tree-checkbox {
  top: initial;
  height: 24px;
  margin: 0 4px 0 2px;
  padding: 4px 0;
}
.ant-tree li span.ant-tree-switcher,
.ant-tree li span.ant-tree-iconEle {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0;
  line-height: 24px;
  text-align: center;
  vertical-align: top;
  border: 0 none;
  outline: none;
  cursor: pointer;
}
.ant-tree li span.ant-tree-iconEle:empty {
  display: none;
}
.ant-tree li span.ant-tree-switcher {
  position: relative;
}
.ant-tree li span.ant-tree-switcher.ant-tree-switcher-noop {
  cursor: default;
}
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon,
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon {
  font-size: 12px;
  font-size: 10px \9;
  transform: scale(0.83333333) rotate(0deg);
  display: inline-block;
  font-weight: bold;
}
:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon,
:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon {
  font-size: 12px;
}
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon svg,
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon svg {
  transition: transform 0.3s;
}
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon,
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon {
  font-size: 12px;
  font-size: 10px \9;
  transform: scale(0.83333333) rotate(0deg);
  display: inline-block;
  font-weight: bold;
}
:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon,
:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon {
  font-size: 12px;
}
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon svg,
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon svg {
  transition: transform 0.3s;
}
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon svg {
  transform: rotate(-90deg);
}
.ant-tree li:last-child > span.ant-tree-switcher::before,
.ant-tree li:last-child > span.ant-tree-iconEle::before {
  display: none;
}
.ant-tree > li:first-child {
  padding-top: 7px;
}
.ant-tree > li:last-child {
  padding-bottom: 7px;
}
.ant-tree-child-tree > li:first-child {
  padding-top: 8px;
}
.ant-tree-child-tree > li:last-child {
  padding-bottom: 0;
}
li.ant-tree-treenode-disabled > span:not(.ant-tree-switcher),
li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper,
li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper:hover {
  background: transparent;
}
.ant-tree-icon__open {
  margin-right: 2px;
  vertical-align: top;
}
.ant-tree-icon__close {
  margin-right: 2px;
  vertical-align: top;
}
.ant-tree.ant-tree-show-line li {
  position: relative;
}
.ant-tree.ant-tree-show-line li span.ant-tree-switcher {
  color: rgba(0, 0, 0, 0.45);
  background: #fff;
}
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-tree-switcher-icon,
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-select-switcher-icon {
  display: inline-block;
  font-weight: normal;
  font-size: 12px;
}
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-tree-switcher-icon svg,
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-select-switcher-icon svg {
  transition: transform 0.3s;
}
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon,
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon {
  display: inline-block;
  font-weight: normal;
  font-size: 12px;
}
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon svg,
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon svg {
  transition: transform 0.3s;
}
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon,
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon {
  display: inline-block;
  font-weight: normal;
  font-size: 12px;
}
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon svg,
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon svg {
  transition: transform 0.3s;
}
.ant-tree.ant-tree-show-line li:not(:last-child)::before {
  position: absolute;
  left: 12px;
  width: 1px;
  height: 100%;
  height: calc(100% - 22px);
  margin: 22px 0 0;
  border-left: 1px solid #d9d9d9;
  content: ' ';
}
.ant-tree.ant-tree-icon-hide .ant-tree-treenode-loading .ant-tree-iconEle {
  display: none;
}
.ant-tree.ant-tree-block-node li .ant-tree-node-content-wrapper {
  width: calc(100% - 24px);
}
.ant-tree.ant-tree-block-node li span.ant-tree-checkbox + .ant-tree-node-content-wrapper {
  width: calc(100% - 46px);
}
.ant-select-tree-checkbox {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  top: -0.09em;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
  outline: none;
  cursor: pointer;
}
.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox-inner,
.ant-select-tree-checkbox:hover .ant-select-tree-checkbox-inner,
.ant-select-tree-checkbox-input:focus + .ant-select-tree-checkbox-inner {
  border-color: #03a9f5;
}
.ant-select-tree-checkbox-checked::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #03a9f5;
  border-radius: 2px;
  visibility: hidden;
  animation: antCheckboxEffect 0.36s ease-in-out;
  animation-fill-mode: backwards;
  content: '';
}
.ant-select-tree-checkbox:hover::after,
.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox::after {
  visibility: visible;
}
.ant-select-tree-checkbox-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  border-collapse: separate;
  transition: all 0.3s;
}
.ant-select-tree-checkbox-inner::after {
  position: absolute;
  top: 50%;
  left: 22%;
  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: ' ';
}
.ant-select-tree-checkbox-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.ant-select-tree-checkbox-checked .ant-select-tree-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: ' ';
}
.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner {
  background-color: #03a9f5;
  border-color: #03a9f5;
}
.ant-select-tree-checkbox-disabled {
  cursor: not-allowed;
}
.ant-select-tree-checkbox-disabled.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner::after {
  border-color: rgba(0, 0, 0, 0.25);
  animation-name: none;
}
.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-input {
  cursor: not-allowed;
}
.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner {
  background-color: #f5f5f5;
  border-color: #d9d9d9 !important;
}
.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner::after {
  border-color: #f5f5f5;
  border-collapse: separate;
  animation-name: none;
}
.ant-select-tree-checkbox-disabled + span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-select-tree-checkbox-disabled:hover::after,
.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox-disabled::after {
  visibility: hidden;
}
.ant-select-tree-checkbox-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
  line-height: unset;
  cursor: pointer;
}
.ant-select-tree-checkbox-wrapper.ant-select-tree-checkbox-wrapper-disabled {
  cursor: not-allowed;
}
.ant-select-tree-checkbox-wrapper + .ant-select-tree-checkbox-wrapper {
  margin-left: 8px;
}
.ant-select-tree-checkbox + span {
  padding-right: 8px;
  padding-left: 8px;
}
.ant-select-tree-checkbox-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
}
.ant-select-tree-checkbox-group-item {
  display: inline-block;
  margin-right: 8px;
}
.ant-select-tree-checkbox-group-item:last-child {
  margin-right: 0;
}
.ant-select-tree-checkbox-group-item + .ant-select-tree-checkbox-group-item {
  margin-left: 0;
}
.ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner {
  background-color: #fff;
  border-color: #d9d9d9;
}
.ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner::after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #03a9f5;
  border: 0;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  content: ' ';
}
.ant-select-tree-checkbox-indeterminate.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner::after {
  background-color: rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.25);
}
.ant-select-tree {
  box-sizing: border-box;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  margin: 0;
  margin-top: -4px;
  padding: 0 4px;
}
.ant-select-tree li {
  margin: 8px 0;
  padding: 0;
  white-space: nowrap;
  list-style: none;
  outline: 0;
}
.ant-select-tree li.filter-node > span {
  font-weight: 500;
}
.ant-select-tree li ul {
  margin: 0;
  padding: 0 0 0 18px;
}
.ant-select-tree li .ant-select-tree-node-content-wrapper {
  display: inline-block;
  width: calc(100% - 24px);
  margin: 0;
  padding: 3px 5px;
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-select-tree li .ant-select-tree-node-content-wrapper:hover {
  background-color: #e6fbff;
}
.ant-select-tree li .ant-select-tree-node-content-wrapper.ant-select-tree-node-selected {
  background-color: #a6efff;
}
.ant-select-tree li span.ant-select-tree-checkbox {
  margin: 0 4px 0 0;
}
.ant-select-tree li span.ant-select-tree-checkbox + .ant-select-tree-node-content-wrapper {
  width: calc(100% - 46px);
}
.ant-select-tree li span.ant-select-tree-switcher,
.ant-select-tree li span.ant-select-tree-iconEle {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0;
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
  border: 0 none;
  outline: none;
  cursor: pointer;
}
.ant-select-tree li span.ant-select-icon_loading .ant-select-switcher-loading-icon {
  position: absolute;
  left: 0;
  display: inline-block;
  color: #03a9f5;
  font-size: 14px;
  transform: none;
}
.ant-select-tree li span.ant-select-icon_loading .ant-select-switcher-loading-icon svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.ant-select-tree li span.ant-select-tree-switcher {
  position: relative;
}
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher-noop {
  cursor: auto;
}
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-tree-switcher-icon,
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-icon {
  font-size: 12px;
  font-size: 10px \9;
  transform: scale(0.83333333) rotate(0deg);
  display: inline-block;
  font-weight: bold;
}
:root .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-tree-switcher-icon,
:root .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-icon {
  font-size: 12px;
}
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-tree-switcher-icon svg,
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-icon svg {
  transition: transform 0.3s;
}
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-tree-switcher-icon,
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-icon {
  font-size: 12px;
  font-size: 10px \9;
  transform: scale(0.83333333) rotate(0deg);
  display: inline-block;
  font-weight: bold;
}
:root .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-tree-switcher-icon,
:root .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-icon {
  font-size: 12px;
}
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-tree-switcher-icon svg,
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-icon svg {
  transition: transform 0.3s;
}
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-icon svg {
  transform: rotate(-90deg);
}
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-loading-icon,
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-loading-icon {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 24px;
  height: 24px;
  color: #03a9f5;
  font-size: 14px;
  transform: none;
}
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-loading-icon svg,
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-loading-icon svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.ant-select-tree .ant-select-tree-treenode-loading .ant-select-tree-iconEle {
  display: none;
}
.ant-select-tree-child-tree {
  display: none;
}
.ant-select-tree-child-tree-open {
  display: block;
}
li.ant-select-tree-treenode-disabled > span:not(.ant-select-tree-switcher),
li.ant-select-tree-treenode-disabled > .ant-select-tree-node-content-wrapper,
li.ant-select-tree-treenode-disabled > .ant-select-tree-node-content-wrapper span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
li.ant-select-tree-treenode-disabled > .ant-select-tree-node-content-wrapper:hover {
  background: transparent;
}
.ant-select-tree-icon__open {
  margin-right: 2px;
  vertical-align: top;
}
.ant-select-tree-icon__close {
  margin-right: 2px;
  vertical-align: top;
}
.ant-select-tree-dropdown {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
}
.ant-select-tree-dropdown .ant-select-dropdown-search {
  position: sticky;
  top: 0;
  z-index: 1;
  display: block;
  padding: 4px;
  background: #fff;
}
.ant-select-tree-dropdown .ant-select-dropdown-search .ant-select-search__field__wrap {
  width: 100%;
}
.ant-select-tree-dropdown .ant-select-dropdown-search .ant-select-search__field {
  box-sizing: border-box;
  width: 100%;
  padding: 4px 7px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  outline: none;
}
.ant-select-tree-dropdown .ant-select-dropdown-search.ant-select-search--hide {
  display: none;
}
.ant-select-tree-dropdown .ant-select-not-found {
  display: block;
  padding: 7px 16px;
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-typography {
  color: rgba(0, 0, 0, 0.65);
}
.ant-typography.ant-typography-secondary {
  color: rgba(0, 0, 0, 0.45);
}
.ant-typography.ant-typography-warning {
  color: #faad14;
}
.ant-typography.ant-typography-danger {
  color: #f5222d;
}
.ant-typography.ant-typography-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
  user-select: none;
}
div.ant-typography,
.ant-typography p {
  margin-bottom: 1em;
}
h1.ant-typography,
.ant-typography h1 {
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
  font-size: 38px;
  line-height: 1.23;
}
h2.ant-typography,
.ant-typography h2 {
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.35;
}
h3.ant-typography,
.ant-typography h3 {
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.35;
}
h4.ant-typography,
.ant-typography h4 {
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
}
.ant-typography + h1.ant-typography,
.ant-typography + h2.ant-typography,
.ant-typography + h3.ant-typography,
.ant-typography + h4.ant-typography {
  margin-top: 1.2em;
}
.ant-typography div + h1,
.ant-typography ul + h1,
.ant-typography li + h1,
.ant-typography p + h1,
.ant-typography h1 + h1,
.ant-typography h2 + h1,
.ant-typography h3 + h1,
.ant-typography h4 + h1,
.ant-typography div + h2,
.ant-typography ul + h2,
.ant-typography li + h2,
.ant-typography p + h2,
.ant-typography h1 + h2,
.ant-typography h2 + h2,
.ant-typography h3 + h2,
.ant-typography h4 + h2,
.ant-typography div + h3,
.ant-typography ul + h3,
.ant-typography li + h3,
.ant-typography p + h3,
.ant-typography h1 + h3,
.ant-typography h2 + h3,
.ant-typography h3 + h3,
.ant-typography h4 + h3,
.ant-typography div + h4,
.ant-typography ul + h4,
.ant-typography li + h4,
.ant-typography p + h4,
.ant-typography h1 + h4,
.ant-typography h2 + h4,
.ant-typography h3 + h4,
.ant-typography h4 + h4 {
  margin-top: 1.2em;
}
span.ant-typography-ellipsis {
  display: inline-block;
}
.ant-typography a {
  color: #03a9f5;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: color 0.3s;
}
.ant-typography a:focus,
.ant-typography a:hover {
  color: #2bc3ff;
}
.ant-typography a:active {
  color: #0086cf;
}
.ant-typography a:active,
.ant-typography a:hover {
  text-decoration: none;
}
.ant-typography a[disabled] {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
  pointer-events: none;
}
.ant-typography code {
  margin: 0 0.2em;
  padding: 0.2em 0.4em 0.1em;
  font-size: 85%;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 3px;
}
.ant-typography mark {
  padding: 0;
  background-color: #ffe58f;
}
.ant-typography u,
.ant-typography ins {
  text-decoration: underline;
  text-decoration-skip-ink: auto;
}
.ant-typography s,
.ant-typography del {
  text-decoration: line-through;
}
.ant-typography strong {
  font-weight: 600;
}
.ant-typography-expand,
.ant-typography-edit,
.ant-typography-copy {
  color: #03a9f5;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: color 0.3s;
  margin-left: 8px;
}
.ant-typography-expand:focus,
.ant-typography-edit:focus,
.ant-typography-copy:focus,
.ant-typography-expand:hover,
.ant-typography-edit:hover,
.ant-typography-copy:hover {
  color: #2bc3ff;
}
.ant-typography-expand:active,
.ant-typography-edit:active,
.ant-typography-copy:active {
  color: #0086cf;
}
.ant-typography-copy-success,
.ant-typography-copy-success:hover,
.ant-typography-copy-success:focus {
  color: #52c41a;
}
.ant-typography-edit-content {
  position: relative;
}
div.ant-typography-edit-content {
  left: -12px;
  margin-top: -5px;
  margin-bottom: calc(1em - 4px - 2px);
}
.ant-typography-edit-content-confirm {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.ant-typography-edit-content textarea {
  -moz-transition: none;
}
.ant-typography ul,
.ant-typography ol {
  margin: 0 0 1em 0;
  padding: 0;
}
.ant-typography ul li,
.ant-typography ol li {
  margin: 0 0 0 20px;
  padding: 0 0 0 4px;
}
.ant-typography ul li {
  list-style-type: circle;
}
.ant-typography ul li li {
  list-style-type: disc;
}
.ant-typography ol li {
  list-style-type: decimal;
}
.ant-typography-ellipsis-single-line {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-typography-ellipsis-multiple-line {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ant-upload {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  outline: 0;
}
.ant-upload p {
  margin: 0;
}
.ant-upload-btn {
  display: block;
  width: 100%;
  outline: none;
}
.ant-upload input[type='file'] {
  cursor: pointer;
}
.ant-upload.ant-upload-select {
  display: inline-block;
}
.ant-upload.ant-upload-disabled {
  cursor: not-allowed;
}
.ant-upload.ant-upload-select-picture-card {
  display: table;
  float: left;
  width: 104px;
  height: 104px;
  margin-right: 8px;
  margin-bottom: 8px;
  text-align: center;
  vertical-align: top;
  background-color: #fafafa;
  border: 1px dashed #d9d9d9;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.ant-upload.ant-upload-select-picture-card > .ant-upload {
  display: table-cell;
  width: 100%;
  height: 100%;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
}
.ant-upload.ant-upload-select-picture-card:hover {
  border-color: #03a9f5;
}
.ant-upload.ant-upload-drag {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #fafafa;
  border: 1px dashed #d9d9d9;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.3s;
}
.ant-upload.ant-upload-drag .ant-upload {
  padding: 16px 0;
}
.ant-upload.ant-upload-drag.ant-upload-drag-hover:not(.ant-upload-disabled) {
  border-color: #0086cf;
}
.ant-upload.ant-upload-drag.ant-upload-disabled {
  cursor: not-allowed;
}
.ant-upload.ant-upload-drag .ant-upload-btn {
  display: table;
  height: 100%;
}
.ant-upload.ant-upload-drag .ant-upload-drag-container {
  display: table-cell;
  vertical-align: middle;
}
.ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover {
  border-color: #2bc3ff;
}
.ant-upload.ant-upload-drag p.ant-upload-drag-icon {
  margin-bottom: 20px;
}
.ant-upload.ant-upload-drag p.ant-upload-drag-icon .anticon {
  color: #2bc3ff;
  font-size: 48px;
}
.ant-upload.ant-upload-drag p.ant-upload-text {
  margin: 0 0 4px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
}
.ant-upload.ant-upload-drag p.ant-upload-hint {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.ant-upload.ant-upload-drag .anticon-plus {
  color: rgba(0, 0, 0, 0.25);
  font-size: 30px;
  transition: all 0.3s;
}
.ant-upload.ant-upload-drag .anticon-plus:hover {
  color: rgba(0, 0, 0, 0.45);
}
.ant-upload.ant-upload-drag:hover .anticon-plus {
  color: rgba(0, 0, 0, 0.45);
}
.ant-upload-picture-card-wrapper {
  zoom: 1;
  display: inline-block;
  width: 100%;
}
.ant-upload-picture-card-wrapper::before,
.ant-upload-picture-card-wrapper::after {
  display: table;
  content: '';
}
.ant-upload-picture-card-wrapper::after {
  clear: both;
}
.ant-upload-list {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  zoom: 1;
}
.ant-upload-list::before,
.ant-upload-list::after {
  display: table;
  content: '';
}
.ant-upload-list::after {
  clear: both;
}
.ant-upload-list-item-list-type-text:hover .ant-upload-list-item-name-icon-count-1 {
  padding-right: 14px;
}
.ant-upload-list-item-list-type-text:hover .ant-upload-list-item-name-icon-count-2 {
  padding-right: 28px;
}
.ant-upload-list-item {
  position: relative;
  height: 22px;
  margin-top: 8px;
  font-size: 14px;
}
.ant-upload-list-item-name {
  display: inline-block;
  width: 100%;
  padding-left: 22px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-upload-list-item-name-icon-count-1 {
  padding-right: 14px;
}
.ant-upload-list-item-card-actions {
  position: absolute;
  right: 0;
  opacity: 0;
}
.ant-upload-list-item-card-actions.picture {
  top: 25px;
  line-height: 1;
  opacity: 1;
}
.ant-upload-list-item-card-actions .anticon {
  padding-right: 6px;
  color: rgba(0, 0, 0, 0.45);
}
.ant-upload-list-item-info {
  height: 100%;
  padding: 0 12px 0 4px;
  transition: background-color 0.3s;
}
.ant-upload-list-item-info > span {
  display: block;
  width: 100%;
  height: 100%;
}
.ant-upload-list-item-info .anticon-loading,
.ant-upload-list-item-info .anticon-paper-clip {
  position: absolute;
  top: 5px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.ant-upload-list-item .anticon-close {
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  transform: scale(0.83333333) rotate(0deg);
  position: absolute;
  top: 6px;
  right: 4px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 0;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s;
}
:root .ant-upload-list-item .anticon-close {
  font-size: 12px;
}
.ant-upload-list-item .anticon-close:hover {
  color: rgba(0, 0, 0, 0.65);
}
.ant-upload-list-item:hover .ant-upload-list-item-info {
  background-color: #e6fbff;
}
.ant-upload-list-item:hover .anticon-close {
  opacity: 1;
}
.ant-upload-list-item:hover .ant-upload-list-item-card-actions {
  opacity: 1;
}
.ant-upload-list-item-error,
.ant-upload-list-item-error .anticon-paper-clip,
.ant-upload-list-item-error .ant-upload-list-item-name {
  color: #f5222d;
}
.ant-upload-list-item-error .ant-upload-list-item-card-actions {
  opacity: 1;
}
.ant-upload-list-item-error .ant-upload-list-item-card-actions .anticon {
  color: #f5222d;
}
.ant-upload-list-item-progress {
  position: absolute;
  bottom: -12px;
  width: 100%;
  padding-left: 26px;
  font-size: 14px;
  line-height: 0;
}
.ant-upload-list-picture .ant-upload-list-item,
.ant-upload-list-picture-card .ant-upload-list-item {
  position: relative;
  height: 66px;
  padding: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.ant-upload-list-picture .ant-upload-list-item:hover,
.ant-upload-list-picture-card .ant-upload-list-item:hover {
  background: transparent;
}
.ant-upload-list-picture .ant-upload-list-item-error,
.ant-upload-list-picture-card .ant-upload-list-item-error {
  border-color: #f5222d;
}
.ant-upload-list-picture .ant-upload-list-item-info,
.ant-upload-list-picture-card .ant-upload-list-item-info {
  padding: 0;
}
.ant-upload-list-picture .ant-upload-list-item:hover .ant-upload-list-item-info,
.ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info {
  background: transparent;
}
.ant-upload-list-picture .ant-upload-list-item-uploading,
.ant-upload-list-picture-card .ant-upload-list-item-uploading {
  border-style: dashed;
}
.ant-upload-list-picture .ant-upload-list-item-thumbnail,
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 48px;
  height: 48px;
  font-size: 26px;
  line-height: 54px;
  text-align: center;
  opacity: 0.8;
}
.ant-upload-list-picture .ant-upload-list-item-icon,
.ant-upload-list-picture-card .ant-upload-list-item-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 26px;
  transform: translate(-50%, -50%);
}
.ant-upload-list-picture .ant-upload-list-item-image,
.ant-upload-list-picture-card .ant-upload-list-item-image {
  max-width: 100%;
}
.ant-upload-list-picture .ant-upload-list-item-thumbnail img,
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail img {
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
}
.ant-upload-list-picture .ant-upload-list-item-name,
.ant-upload-list-picture-card .ant-upload-list-item-name {
  display: inline-block;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 0 0 8px;
  padding-right: 8px;
  padding-left: 48px;
  overflow: hidden;
  line-height: 44px;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.3s;
}
.ant-upload-list-picture .ant-upload-list-item-name-icon-count-1,
.ant-upload-list-picture-card .ant-upload-list-item-name-icon-count-1 {
  padding-right: 18px;
}
.ant-upload-list-picture .ant-upload-list-item-name-icon-count-2,
.ant-upload-list-picture-card .ant-upload-list-item-name-icon-count-2 {
  padding-right: 36px;
}
.ant-upload-list-picture .ant-upload-list-item-uploading .ant-upload-list-item-name,
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-name {
  line-height: 28px;
}
.ant-upload-list-picture .ant-upload-list-item-progress,
.ant-upload-list-picture-card .ant-upload-list-item-progress {
  bottom: 14px;
  width: calc(100% - 24px);
  margin-top: 0;
  padding-left: 56px;
}
.ant-upload-list-picture .anticon-close,
.ant-upload-list-picture-card .anticon-close {
  position: absolute;
  top: 8px;
  right: 8px;
  line-height: 1;
  opacity: 1;
}
.ant-upload-list-picture-card.ant-upload-list::after {
  display: none;
}
.ant-upload-list-picture-card-container {
  float: left;
  width: 104px;
  height: 104px;
  margin: 0 8px 8px 0;
}
.ant-upload-list-picture-card .ant-upload-list-item {
  float: left;
  width: 104px;
  height: 104px;
  margin: 0 8px 8px 0;
}
.ant-upload-list-picture-card .ant-upload-list-item-info {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.ant-upload-list-picture-card .ant-upload-list-item-info::before {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s;
  content: ' ';
}
.ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info::before {
  opacity: 1;
}
.ant-upload-list-picture-card .ant-upload-list-item-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s;
}
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye-o,
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download,
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete {
  z-index: 10;
  width: 16px;
  margin: 0 4px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye-o:hover,
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download:hover,
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete:hover {
  color: #fff;
}
.ant-upload-list-picture-card .ant-upload-list-item-info:hover + .ant-upload-list-item-actions,
.ant-upload-list-picture-card .ant-upload-list-item-actions:hover {
  opacity: 1;
}
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail,
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ant-upload-list-picture-card .ant-upload-list-item-name {
  display: none;
  margin: 8px 0 0;
  padding: 0;
  line-height: 1.5;
  text-align: center;
}
.ant-upload-list-picture-card .anticon-picture + .ant-upload-list-item-name {
  position: absolute;
  bottom: 10px;
  display: block;
}
.ant-upload-list-picture-card .ant-upload-list-item-uploading.ant-upload-list-item {
  background-color: #fafafa;
}
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info {
  height: auto;
}
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info::before,
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-eye-o,
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-delete {
  display: none;
}
.ant-upload-list-picture-card .ant-upload-list-item-uploading-text {
  margin-top: 18px;
  color: rgba(0, 0, 0, 0.45);
}
.ant-upload-list-picture-card .ant-upload-list-item-progress {
  bottom: 32px;
  padding-left: 0;
}
.ant-upload-list .ant-upload-success-icon {
  color: #52c41a;
  font-weight: bold;
}
.ant-upload-list .ant-upload-animate-enter,
.ant-upload-list .ant-upload-animate-leave,
.ant-upload-list .ant-upload-animate-inline-enter,
.ant-upload-list .ant-upload-animate-inline-leave {
  animation-duration: 0.3s;
  animation-fill-mode: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-upload-list .ant-upload-animate-enter {
  animation-name: uploadAnimateIn;
}
.ant-upload-list .ant-upload-animate-leave {
  animation-name: uploadAnimateOut;
}
.ant-upload-list .ant-upload-animate-inline-enter {
  animation-name: uploadAnimateInlineIn;
}
.ant-upload-list .ant-upload-animate-inline-leave {
  animation-name: uploadAnimateInlineOut;
}
@keyframes uploadAnimateIn {
  from {
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}
@keyframes uploadAnimateOut {
  to {
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}
@keyframes uploadAnimateInlineIn {
  from {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}
@keyframes uploadAnimateInlineOut {
  to {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}
/*
 * Integrating Ant Design into our project has had a few style conflicts.
 * Adding some global overrides here to help fix any major issues.
 */
[class*='ant-'] {
  box-sizing: border-box;
}
[class*='ant-']:before,
[class*='ant-']:after {
  box-sizing: border-box;
}
.ant-switch-checked {
  background-color: #03a9f5;
}
.ant-btn-primary {
  background-color: #03a9f5;
  border-color: #0398dc;
}
.ant-btn-primary:hover,
.ant-btn-primary:focus {
  background-color: #0993d2;
  border-color: #0398dc;
}
.ant-checkbox {
  top: 0;
}
.ant-drawer,
.ant-modal-mask {
  z-index: 1010;
}
.ant-select-dropdown,
.ant-dropdown,
.ant-modal-wrap {
  z-index: 1050;
}
.ant-input-number {
  border-color: #EAEAEA;
}
.ant-input-number-input {
  font-size: 13px;
  color: #444;
}
.ant-modal-header {
  border-bottom: none;
}
.ant-modal-footer {
  text-align: left;
  border-top: none;
}
.ant-btn.disabled,
.ant-btn[disabled],
.ant-btn.disabled:hover,
.ant-btn[disabled]:hover,
.ant-btn.disabled:focus,
.ant-btn[disabled]:focus,
.ant-btn.disabled:active,
.ant-btn[disabled]:active,
.ant-btn.disabled.active,
.ant-btn[disabled].active {
  opacity: 0.5;
}
.ant-dropdown-menu-item > .anticon:first-child,
.ant-dropdown-menu-submenu-title > .anticon:first-child,
.ant-dropdown-menu-item > span > .anticon:first-child,
.ant-dropdown-menu-submenu-title > span > .anticon:first-child {
  margin-right: 0;
}
.ant-input:focus,
.ant-input-number:focus,
.ant-input-number-focused,
.ant-select-focused .ant-select-selection,
.ant-select-selection:focus,
.ant-select-selection:active {
  outline: 0;
  -webkit-box-shadow: 0 0 6px rgba(102, 175, 233, 0.6);
  box-shadow: 0 0 6px rgba(102, 175, 233, 0.6);
}
.ant-input-number-handler,
.ant-input-number-handler-up:hover,
.ant-input-number-handler-down:hover {
  height: 50% !important;
}
.ant-tooltip-inner {
  word-break: break-word;
}
.ant-tooltip-arrow::before {
  background-color: #fff;
}
.ant-dropdown-menu-item-group-list {
  list-style-type: none;
  padding-inline-start: 0;
}
.ant-dropdown-menu-submenu-popup .ant-dropdown-menu {
  margin: 0!important;
}
.ant-dropdown-menu-submenu-popup ul {
  margin-right: 0;
  margin-left: 0;
}
.ant-dropdown-menu-submenu-title {
  width: 100%;
}
.ant-dropdown-menu-submenu-title:hover {
  background-color: transparent;
  color: #06a9f6;
}
.ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow,
.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow {
  position: absolute;
  right: 8px;
  transform: translate(-50%, -50%);
  top: 50%;
}
.ant-select-open .ant-select-selection {
  border-color: #d9d9d9;
}
.ant-select-selection {
  border-color: #EAEAEA;
}
.ant-select-dropdown-menu-item:not(.ant-select-dropdown-menu-item-disabled):hover {
  background-color: #f2f2f2;
  color: #06a9f6;
}
.ant-select-dropdown-menu-item-active {
  background-color: #f2f2f2;
  color: #06a9f6;
}
.ant-radio-button-wrapper {
  height: 30px;
  line-height: 28px;
}
button.modal-close {
  top: 12px;
  right: 12px;
}
.ant-select-selection__clear {
  right: 18px;
}
.ant-steps-label-vertical .ant-steps-item-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1px;
}
.ant-upload-list-picture .ant-upload-list-item-thumbnail.anticon:before {
  content: ' ';
  background-image: url('/app/images/icons/whyTrainWithMeVideo.png');
  background-size: 28px;
  background-position: center;
  background-repeat: no-repeat;
  height: 48px;
  width: 48px;
}
.ant-select-tree:focus,
.ant-select-dropdown > div {
  outline: none;
}
.ant-rate-star {
  margin-right: 6px;
}
.ant-rate-star svg,
.ant-rate-star svg use {
  fill: currentColor !important;
}
.ant-collapse {
  overflow: hidden;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header,
.ant-collapse-content > .ant-collapse-content-box {
  background-color: #fff;
  padding: 12px;
}
.ant-collapse.icon-right > .ant-collapse-item > .ant-collapse-header .arrow {
  display: none;
}
.ant-collapse.icon-right .collapse-expand-box__icons {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.ant-collapse.icon-right .collapse-expand-box__arrow,
.ant-collapse.icon-right .collapse-expand-box__extra-icon {
  line-height: 0;
}
.ant-collapse.icon-right .collapse-expand-box__arrow {
  margin-left: 20px;
}
.ant-collapse.icon-right > .ant-collapse-item .collapse-expand-box__arrow > * {
  transition: transform 0.3s;
}
.ant-collapse.icon-right > .ant-collapse-item-active .collapse-expand-box__arrow > * {
  transform: rotate(-180deg);
}
.ant-badge-dot {
  transform-origin: center;
  transform: unset;
}
.collapse-expand-box__header .ant-badge-dot {
  transform-origin: 0 100%;
}
.ant-calendar-header .ant-calendar-prev-century-btn,
.ant-calendar-header .ant-calendar-next-century-btn,
.ant-calendar-header .ant-calendar-prev-decade-btn,
.ant-calendar-header .ant-calendar-next-decade-btn,
.ant-calendar-header .ant-calendar-prev-month-btn,
.ant-calendar-header .ant-calendar-next-month-btn,
.ant-calendar-header .ant-calendar-prev-year-btn,
.ant-calendar-header .ant-calendar-next-year-btn {
  display: flex;
  align-items: center;
}
div.ant-calendar-month-panel-header > a.ant-calendar-month-panel-prev-year-btn,
div.ant-calendar-year-panel-header > a.ant-calendar-month-panel-prev-year-btn,
div.ant-calendar-month-panel-header > a.ant-calendar-year-panel-prev-decade-btn,
div.ant-calendar-year-panel-header > a.ant-calendar-year-panel-prev-decade-btn {
  line-height: 100%;
}
div.ant-calendar-month-panel-header > a.ant-calendar-month-panel-prev-year-btn::before,
div.ant-calendar-year-panel-header > a.ant-calendar-month-panel-prev-year-btn::before,
div.ant-calendar-month-panel-header > a.ant-calendar-year-panel-prev-decade-btn::before,
div.ant-calendar-year-panel-header > a.ant-calendar-year-panel-prev-decade-btn::before,
div.ant-calendar-month-panel-header > a.ant-calendar-month-panel-prev-year-btn::after,
div.ant-calendar-year-panel-header > a.ant-calendar-month-panel-prev-year-btn::after,
div.ant-calendar-month-panel-header > a.ant-calendar-year-panel-prev-decade-btn::after,
div.ant-calendar-year-panel-header > a.ant-calendar-year-panel-prev-decade-btn::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg) scale(0.8);
}
div.ant-calendar-month-panel-header > a.ant-calendar-month-panel-prev-year-btn::after,
div.ant-calendar-year-panel-header > a.ant-calendar-month-panel-prev-year-btn::after,
div.ant-calendar-month-panel-header > a.ant-calendar-year-panel-prev-decade-btn::after,
div.ant-calendar-year-panel-header > a.ant-calendar-year-panel-prev-decade-btn::after {
  left: 0;
}
div.ant-calendar-month-panel-header > a.ant-calendar-month-panel-next-year-btn,
div.ant-calendar-year-panel-header > a.ant-calendar-month-panel-next-year-btn,
div.ant-calendar-month-panel-header > a.ant-calendar-year-panel-next-decade-btn,
div.ant-calendar-year-panel-header > a.ant-calendar-year-panel-next-decade-btn {
  line-height: 100%;
}
div.ant-calendar-month-panel-header > a.ant-calendar-month-panel-next-year-btn::before,
div.ant-calendar-year-panel-header > a.ant-calendar-month-panel-next-year-btn::before,
div.ant-calendar-month-panel-header > a.ant-calendar-year-panel-next-decade-btn::before,
div.ant-calendar-year-panel-header > a.ant-calendar-year-panel-next-decade-btn::before,
div.ant-calendar-month-panel-header > a.ant-calendar-month-panel-next-year-btn::after,
div.ant-calendar-year-panel-header > a.ant-calendar-month-panel-next-year-btn::after,
div.ant-calendar-month-panel-header > a.ant-calendar-year-panel-next-decade-btn::after,
div.ant-calendar-year-panel-header > a.ant-calendar-year-panel-next-decade-btn::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(135deg) scale(0.8);
}
div.ant-calendar-month-panel-header > a.ant-calendar-month-panel-next-year-btn::before,
div.ant-calendar-year-panel-header > a.ant-calendar-month-panel-next-year-btn::before,
div.ant-calendar-month-panel-header > a.ant-calendar-year-panel-next-decade-btn::before,
div.ant-calendar-year-panel-header > a.ant-calendar-year-panel-next-decade-btn::before {
  left: 0;
}
div.ant-calendar-month-panel-header > a.ant-calendar-month-panel-next-year-btn::after,
div.ant-calendar-year-panel-header > a.ant-calendar-month-panel-next-year-btn::after,
div.ant-calendar-month-panel-header > a.ant-calendar-year-panel-next-decade-btn::after,
div.ant-calendar-year-panel-header > a.ant-calendar-year-panel-next-decade-btn::after {
  left: -5px;
}
i.anticon.anticon-close.ant-select-remove-icon {
  height: 100%;
  min-height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ant-select-selection__choice__remove {
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.ant-pagination-next .ant-pagination-item-link,
.ant-pagination-prev .ant-pagination-item-link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon,
.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon {
  margin-top: 10px;
}
.ant-select-selection--single .ant-select-selection__rendered {
  margin-right: 11px;
}
.ant-select-selection-selected-value {
  padding-right: 20px;
}
/* ==================================================================
 * RC-Dialog - https://github.com/react-component/dialog
 * ================================================================== */
.modal {
  position: relative;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.modal-wrap {
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px;
}
.modal-title {
  margin: 0;
  font-size: 14px;
  line-height: 21px;
  font-weight: bold;
}
.modal-content {
  position: relative;
  background-color: #ffffff;
  border: none;
  background-clip: padding-box;
  width: 100%;
  height: inherit;
  display: flex;
  flex-direction: column;
}
.modal-close {
  cursor: pointer;
  border: 0;
  background: transparent;
  font-size: 21px;
  position: absolute;
  right: 13px;
  top: 11px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  text-decoration: none;
  padding: 0;
  height: 16px;
  width: 16px;
  z-index: 10;
}
.modal-close-x:after {
  content: '×';
}
.modal-close:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  text-decoration: none;
}
.modal-header {
  width: 100%;
  box-sizing: border-box;
  padding: 32px 32px 16px 32px;
}
.modal-body:not(.no-pad) {
  padding: 32px;
}
.modal-footer {
  padding: 0 32px 32px 32px;
  text-align: right;
  border-radius: 0 0 5px 5px;
}
.modal-zoom-enter,
.modal-zoom-appear {
  opacity: 0;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  animation-play-state: paused;
}
.modal-zoom-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  animation-play-state: paused;
}
.modal-zoom-enter.modal-zoom-enter-active,
.modal-zoom-appear.modal-zoom-appear-active {
  animation-name: rcDialogZoomIn;
  animation-play-state: running;
}
.modal-zoom-leave.modal-zoom-leave-active {
  animation-name: rcDialogZoomOut;
  animation-play-state: running;
}
@keyframes rcDialogZoomIn {
  0% {
    opacity: 0;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@keyframes rcDialogZoomOut {
  0% {
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform: scale(0, 0);
  }
}
@media (min-width: 768px) {
  .modal {
    width: 600px;
  }
}
.modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.75);
  height: 100%;
  filter: alpha(opacity=50);
  z-index: 1050;
}
.modal-mask-hidden {
  display: none;
}
.modal-fade-enter,
.modal-fade-appear {
  opacity: 0;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  animation-play-state: paused;
}
.modal-fade-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  animation-play-state: paused;
}
.modal-fade-enter.modal-fade-enter-active,
.modal-fade-appear.modal-fade-appear-active {
  animation-name: rcDialogFadeIn;
  animation-play-state: running;
}
.modal-fade-leave.modal-fade-leave-active {
  animation-name: rcDialogFadeOut;
  animation-play-state: running;
}
@keyframes rcDialogFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rcDialogFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.modal-centered {
  text-align: center;
}
.modal-centered::before {
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  content: '';
}
.modal-centered .modal {
  top: 0;
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.modal-profile .modal-body {
  padding: 0;
}
@media (max-width: 767px) {
  .modal {
    max-width: calc(100vw - 16px);
    margin: 8px auto;
  }
  .modal-centered .modal {
    flex: 1;
  }
}

.exerciseList-exercise__name{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.workoutExercise__img,.trainerProfileDialog-locations__list .delete-location,.exerciseLibrary-selectedBar,.exerciseLibrary-youtube__container,.exerciseLibrary-youtube,.exerciseLibrary-exercise{transition:all .3s;transition-property:all;transition-duration:.3s;transition-timing-function:ease;transition-delay:0s}.mainContent{height:calc(100vh - 60px)}.text-align-right{text-align:right}.text-align-left{text-align:left}.relative{position:relative}.trBtn{font-weight:400;text-transform:uppercase;margin:0;text-shadow:none}.component-imageUploader__imgHover,.component-profileImageUploader__imgHover{width:100%;height:100%;background-color:#fff;border-radius:4px;border:1px dashed #229ed4}.component-imageUploader__imgDragDropBig,.component-profileImageUploader__imgDragDropBig{background-image:url(/app/images/dropZone/dragOverIconOnly.png);background-position:center;background-repeat:no-repeat;background-size:cover}.component-imageUploader__imgDragDropBigText,.component-profileImageUploader__imgDragDropBigText{color:#229ed4;text-align:center}.dnd{background-color:#fff;border-radius:4px;border:1px dashed #229ed4}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden !important}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.overflow-y-hidden{overflow-y:hidden}body,html,input,input[type=text],input[type=password],textarea{font-family:"Mulish",Helvetica,Arial,sans-serif}.designSystem h1,.modal h1{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:26px;color:#151112;font-weight:normal;line-height:34px}.designSystem h2,.modal h2{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:24px;color:#151112;font-weight:normal;line-height:31px}.designSystem h3,.modal h3{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:22px;color:#151112;font-weight:normal;line-height:28px}.designSystem h4,.modal h4{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:20px;color:#151112;font-weight:normal;line-height:25px}.designSystem h5,.modal h5{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:18px;color:#151112;font-weight:normal;line-height:22px}.designSystem h6,.modal h6{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:16px;color:#151112;font-weight:normal;line-height:20px}.tz-lp,p.tz-lp{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:16px;color:#6e6e6e;font-weight:400;line-height:20px;margin:0px;padding:0px}.tz-p,.customForm__wrap .ant-radio-wrapper span:not(.ant-radio):not(.ant-radio-inner):not(.ant-checkbox):not(.ant-checkbox-inner),.customForm__wrap .ant-checkbox-wrapper span:not(.ant-radio):not(.ant-radio-inner):not(.ant-checkbox):not(.ant-checkbox-inner),.customForm__wrap .ant-form-item-label,.iCsvDialog .textGuide__text,.clientForm__row .ant-radio-group label,.clientForm__row label,p.tz-p{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:14px;color:#6e6e6e;font-weight:400;line-height:18px;margin:0px;padding:0px}.tz-sp,.iCsvDialog .dropArea__fileName,.sidebar .sidebar-challenge__expanded a.section-link,.sidebar .sidebar-program--expanded a.section-link,.sidebar .sidebar-userProgram--expanded a.section-link,p.tz-sp{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:12px;color:#6e6e6e;font-weight:400;line-height:16px;margin:0px;padding:0px}.tz-cp,p.tz-cp{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:10px;color:#6e6e6e;font-weight:400;line-height:14px;margin:0px;padding:0px}label.tz-label--small{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:12px;color:#151112;font-weight:normal;line-height:16px;margin:0px;padding:0px}label.tz-label,label.tz-label--medium{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:14px;color:#151112;font-weight:normal;line-height:18px;margin:0px;padding:0px}label.tz-label--large{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:16px;color:#151112;font-weight:normal;line-height:20px;margin:0px;padding:0px}.tz-textButton--small{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:12px;color:#229ed4;font-weight:normal;line-height:16px;margin:0px;padding:0px;text-decoration:none;cursor:pointer}.tz-textButton,.tz-textButton--medium{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:14px;color:#229ed4;font-weight:normal;line-height:18px;margin:0px;padding:0px;text-decoration:none;cursor:pointer}.tz-textButton--large{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:16px;color:#229ed4;font-weight:normal;line-height:20px;margin:0px;padding:0px;text-decoration:none;cursor:pointer}.whiteSpace--preWrap{white-space:pre-wrap}.whiteSpace--pre{white-space:pre}.whiteSpace--preLine{white-space:pre-line}.whiteSpace--normal{white-space:normal}.text--center,p.text--center,label.text--center,h1.text--center,h2.text--center,h3.text--center,h4.text--center,h5.text--center,h6.text--center{text-align:center}.text--left,p.text--left,label.text--left,h1.text--left,h2.text--left,h3.text--left,h4.text--left,h5.text--left,h6.text--left{text-align:left}.text--right,p.text--right,label.text--right,h1.text--right,h2.text--right,h3.text--right,h4.text--right,h5.text--right,h6.text--right{text-align:right}.text--bold,p.text--bold,label.text--bold,h1.text--bold,h2.text--bold,h3.text--bold,h4.text--bold,h5.text--bold,h6.text--bold{font-weight:800}.text--inline,p.text--inline,label.text--inline,h1.text--inline,h2.text--inline,h3.text--inline,h4.text--inline,h5.text--inline,h6.text--inline{display:inline}.text--strikeThrough,p.text--strikeThrough,label.text--strikeThrough,h1.text--strikeThrough,h2.text--strikeThrough,h3.text--strikeThrough,h4.text--strikeThrough,h5.text--strikeThrough,h6.text--strikeThrough{text-decoration:line-through}input.tz-input--small,input.tz-input--small input,span.tz-input--small,span.tz-input--small input{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:14px;color:#151112;font-weight:normal}input.tz-input--small:-webkit-autofill::first-line,input.tz-input--small:-webkit-autofill,input.tz-input--small:-webkit-autofill:hover,input.tz-input--small:-webkit-autofill:focus,input.tz-input--small:-webkit-autofill:active,input.tz-input--small input:-webkit-autofill::first-line,input.tz-input--small input:-webkit-autofill,input.tz-input--small input:-webkit-autofill:hover,input.tz-input--small input:-webkit-autofill:focus,input.tz-input--small input:-webkit-autofill:active,span.tz-input--small:-webkit-autofill::first-line,span.tz-input--small:-webkit-autofill,span.tz-input--small:-webkit-autofill:hover,span.tz-input--small:-webkit-autofill:focus,span.tz-input--small:-webkit-autofill:active,span.tz-input--small input:-webkit-autofill::first-line,span.tz-input--small input:-webkit-autofill,span.tz-input--small input:-webkit-autofill:hover,span.tz-input--small input:-webkit-autofill:focus,span.tz-input--small input:-webkit-autofill:active{font-family:"Mulish",Helvetica,Arial,sans-serif !important;font-size:14px}input.tz-input--small:focus,input.tz-input--small input:focus,span.tz-input--small:focus,span.tz-input--small input:focus{border:1px solid #6e6e6e}input.tz-input--medium,input.tz-input--medium input,span.tz-input--medium,span.tz-input--medium input{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:14px;color:#151112;font-weight:normal}input.tz-input--medium:-webkit-autofill::first-line,input.tz-input--medium:-webkit-autofill,input.tz-input--medium:-webkit-autofill:hover,input.tz-input--medium:-webkit-autofill:focus,input.tz-input--medium:-webkit-autofill:active,input.tz-input--medium input:-webkit-autofill::first-line,input.tz-input--medium input:-webkit-autofill,input.tz-input--medium input:-webkit-autofill:hover,input.tz-input--medium input:-webkit-autofill:focus,input.tz-input--medium input:-webkit-autofill:active,span.tz-input--medium:-webkit-autofill::first-line,span.tz-input--medium:-webkit-autofill,span.tz-input--medium:-webkit-autofill:hover,span.tz-input--medium:-webkit-autofill:focus,span.tz-input--medium:-webkit-autofill:active,span.tz-input--medium input:-webkit-autofill::first-line,span.tz-input--medium input:-webkit-autofill,span.tz-input--medium input:-webkit-autofill:hover,span.tz-input--medium input:-webkit-autofill:focus,span.tz-input--medium input:-webkit-autofill:active{font-family:"Mulish",Helvetica,Arial,sans-serif !important;font-size:14px}input.tz-input--medium:focus,input.tz-input--medium input:focus,span.tz-input--medium:focus,span.tz-input--medium input:focus{border:1px solid #6e6e6e}input.tz-input--large,input.tz-input--large input,span.tz-input--large,span.tz-input--large input{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:14px;color:#151112;font-weight:normal}input.tz-input--large:-webkit-autofill::first-line,input.tz-input--large:-webkit-autofill,input.tz-input--large:-webkit-autofill:hover,input.tz-input--large:-webkit-autofill:focus,input.tz-input--large:-webkit-autofill:active,input.tz-input--large input:-webkit-autofill::first-line,input.tz-input--large input:-webkit-autofill,input.tz-input--large input:-webkit-autofill:hover,input.tz-input--large input:-webkit-autofill:focus,input.tz-input--large input:-webkit-autofill:active,span.tz-input--large:-webkit-autofill::first-line,span.tz-input--large:-webkit-autofill,span.tz-input--large:-webkit-autofill:hover,span.tz-input--large:-webkit-autofill:focus,span.tz-input--large:-webkit-autofill:active,span.tz-input--large input:-webkit-autofill::first-line,span.tz-input--large input:-webkit-autofill,span.tz-input--large input:-webkit-autofill:hover,span.tz-input--large input:-webkit-autofill:focus,span.tz-input--large input:-webkit-autofill:active{font-family:"Mulish",Helvetica,Arial,sans-serif !important;font-size:14px}input.tz-input--large:focus,input.tz-input--large input:focus,span.tz-input--large:focus,span.tz-input--large input:focus{border:1px solid #6e6e6e}.color--white,p.color--white,span.color--white,input.color--white,textarea.color--white,h1.color--white,h2.color--white,h3.color--white,h4.color--white,h5.color--white,h6.color--white,label.color--white{color:#fff}.color--red,p.color--red,span.color--red,input.color--red,textarea.color--red,h1.color--red,h2.color--red,h3.color--red,h4.color--red,h5.color--red,h6.color--red,label.color--red{color:#ff5366}.color--blue,p.color--blue,span.color--blue,input.color--blue,textarea.color--blue,h1.color--blue,h2.color--blue,h3.color--blue,h4.color--blue,h5.color--blue,h6.color--blue,label.color--blue{color:#229ed4}.color--orange,p.color--orange,span.color--orange,input.color--orange,textarea.color--orange,h1.color--orange,h2.color--orange,h3.color--orange,h4.color--orange,h5.color--orange,h6.color--orange,label.color--orange{color:#ff9801}.color--black,.color--secondary-black,p.color--black,p.color--secondary-black,span.color--black,span.color--secondary-black,input.color--black,input.color--secondary-black,textarea.color--black,textarea.color--secondary-black,h1.color--black,h1.color--secondary-black,h2.color--black,h2.color--secondary-black,h3.color--black,h3.color--secondary-black,h4.color--black,h4.color--secondary-black,h5.color--black,h5.color--secondary-black,h6.color--black,h6.color--secondary-black,label.color--black,label.color--secondary-black{color:#151112}.color--primary-gray,p.color--primary-gray,span.color--primary-gray,input.color--primary-gray,textarea.color--primary-gray,h1.color--primary-gray,h2.color--primary-gray,h3.color--primary-gray,h4.color--primary-gray,h5.color--primary-gray,h6.color--primary-gray,label.color--primary-gray{color:#606366}.color--gray0,p.color--gray0,span.color--gray0,input.color--gray0,textarea.color--gray0,h1.color--gray0,h2.color--gray0,h3.color--gray0,h4.color--gray0,h5.color--gray0,h6.color--gray0,label.color--gray0{color:#fcfcfc}.color--gray20,p.color--gray20,span.color--gray20,input.color--gray20,textarea.color--gray20,h1.color--gray20,h2.color--gray20,h3.color--gray20,h4.color--gray20,h5.color--gray20,h6.color--gray20,label.color--gray20{color:#eee}.color--gray40,p.color--gray40,span.color--gray40,input.color--gray40,textarea.color--gray40,h1.color--gray40,h2.color--gray40,h3.color--gray40,h4.color--gray40,h5.color--gray40,h6.color--gray40,label.color--gray40{color:#dbdbdb}.color--gray60,p.color--gray60,span.color--gray60,input.color--gray60,textarea.color--gray60,h1.color--gray60,h2.color--gray60,h3.color--gray60,h4.color--gray60,h5.color--gray60,h6.color--gray60,label.color--gray60{color:#cfcfcf}.color--gray80,.color--primary-grayBlue,p.color--gray80,p.color--primary-grayBlue,span.color--gray80,span.color--primary-grayBlue,input.color--gray80,input.color--primary-grayBlue,textarea.color--gray80,textarea.color--primary-grayBlue,h1.color--gray80,h1.color--primary-grayBlue,h2.color--gray80,h2.color--primary-grayBlue,h3.color--gray80,h3.color--primary-grayBlue,h4.color--gray80,h4.color--primary-grayBlue,h5.color--gray80,h5.color--primary-grayBlue,h6.color--gray80,h6.color--primary-grayBlue,label.color--gray80,label.color--primary-grayBlue{color:#a3a3a3}.color--gray100,.color--tertiary-gray,p.color--gray100,p.color--tertiary-gray,span.color--gray100,span.color--tertiary-gray,input.color--gray100,input.color--tertiary-gray,textarea.color--gray100,textarea.color--tertiary-gray,h1.color--gray100,h1.color--tertiary-gray,h2.color--gray100,h2.color--tertiary-gray,h3.color--gray100,h3.color--tertiary-gray,h4.color--gray100,h4.color--tertiary-gray,h5.color--gray100,h5.color--tertiary-gray,h6.color--gray100,h6.color--tertiary-gray,label.color--gray100,label.color--tertiary-gray{color:#6e6e6e}.color--secondary-gray,p.color--secondary-gray,span.color--secondary-gray,input.color--secondary-gray,textarea.color--secondary-gray,h1.color--secondary-gray,h2.color--secondary-gray,h3.color--secondary-gray,h4.color--secondary-gray,h5.color--secondary-gray,h6.color--secondary-gray,label.color--secondary-gray{color:#919599}.color--secondary-grayBlue,p.color--secondary-grayBlue,span.color--secondary-grayBlue,input.color--secondary-grayBlue,textarea.color--secondary-grayBlue,h1.color--secondary-grayBlue,h2.color--secondary-grayBlue,h3.color--secondary-grayBlue,h4.color--secondary-grayBlue,h5.color--secondary-grayBlue,h6.color--secondary-grayBlue,label.color--secondary-grayBlue{color:#c2c7cc}.color--secondary-green,p.color--secondary-green,span.color--secondary-green,input.color--secondary-green,textarea.color--secondary-green,h1.color--secondary-green,h2.color--secondary-green,h3.color--secondary-green,h4.color--secondary-green,h5.color--secondary-green,h6.color--secondary-green,label.color--secondary-green{color:#70d27c}.color--clickable,p.color--clickable,span.color--clickable,input.color--clickable,textarea.color--clickable,h1.color--clickable,h2.color--clickable,h3.color--clickable,h4.color--clickable,h5.color--clickable,h6.color--clickable,label.color--clickable{color:#229ed4}.color--error,p.color--error,span.color--error,input.color--error,textarea.color--error,h1.color--error,h2.color--error,h3.color--error,h4.color--error,h5.color--error,h6.color--error,label.color--error{color:#ff5366}.color--brand-orange,p.color--brand-orange,span.color--brand-orange,input.color--brand-orange,textarea.color--brand-orange,h1.color--brand-orange,h2.color--brand-orange,h3.color--brand-orange,h4.color--brand-orange,h5.color--brand-orange,h6.color--brand-orange,label.color--brand-orange{color:#ffcb10}.color--darkBlue,p.color--darkBlue,span.color--darkBlue,input.color--darkBlue,textarea.color--darkBlue,h1.color--darkBlue,h2.color--darkBlue,h3.color--darkBlue,h4.color--darkBlue,h5.color--darkBlue,h6.color--darkBlue,label.color--darkBlue{color:#3c4f62}.color--yellow,p.color--yellow,span.color--yellow,input.color--yellow,textarea.color--yellow,h1.color--yellow,h2.color--yellow,h3.color--yellow,h4.color--yellow,h5.color--yellow,h6.color--yellow,label.color--yellow{color:#ffce00}.hoverClickable:hover,p.hoverClickable:hover,span.hoverClickable:hover,input.hoverClickable:hover,textarea.hoverClickable:hover,h1.hoverClickable:hover,h2.hoverClickable:hover,h3.hoverClickable:hover,h4.hoverClickable:hover,h5.hoverClickable:hover,h6.hoverClickable:hover,label.hoverClickable:hover{color:#229ed4}.clickable:hover .hoverClickable{color:#229ed4}p.capitalizeFirst:first-letter,label.capitalizeFirst:first-letter{text-transform:capitalize}.p64t{padding-top:64px !important}.p64b{padding-bottom:64px !important}.pr0{padding-right:0 !important}.pt0{padding-top:0 !important}.pl0{padding-left:0 !important}.border__bottom{border-bottom:1px solid #606366}.border__bottom--gray{border-bottom:1px solid #eee}.border__bottom--black{border-bottom:1px solid #000}.border__bottom--none{border-bottom:none !important}.border__bottom--gray20{border-bottom:1px solid #eee}.border__top{border-top:1px solid #606366}.border__top--gray{border-top:1px solid #eee}.border__top--black{border-top:1px solid #000}.border__top--none{border-top:none !important}.border__right{border-right:1px solid #606366}.border__right--gray{border-right:1px solid #eee}.border__right--gray20{border-right:1px solid #eee}.border__right--black{border-right:1px solid #000}.border__left{border-left:1px solid #606366}.border__left--gray{border-left:1px solid #eee}.border__left--gray20{border-left:1px solid #eee}.border__left--black{border-left:1px solid #000}.border__left--none{border-left:none !important}.border__dashed--blue{border:1px dashed #229ed4}.border__dashed--grayBlue{border:1px dashed #c2c7cc}.border--gray{border:1px solid #eee}.border--pBlue{border:1px solid #229ed4}.border--none{border:none !important}.border--placeholder{border:1px solid rgba(0,0,0,0)}.border--1{border:1px solid #c2c7cc}.border--gray20{border:1px solid #eee}.border--gray40{border:1px solid #dbdbdb}.border--blueGray,.border--gray60{border:1px solid #cfcfcf}.border--error{border-color:#ff5366 !important}.border--radius-1{border-radius:1px}.border--radius-2{border-radius:2px}.border--radius-3{border-radius:3px}.border--radius-4{border-radius:4px}.border--radius-8{border-radius:8px}.border--radius-20{border-radius:20px !important}.border--radius-round{border-radius:50%}.ml24{margin-left:24px}.ml32{margin-left:32px}.ml64{margin-left:64px}.mla{margin-left:auto}.mr24{margin-right:24px}.mr32{margin-right:32px}.mr64{margin-right:64px}.mra{margin-right:auto}.mt24{margin-top:24px}.mt32{margin-top:32px}.mt64{margin-top:64px}.mta{margin-top:auto}.mb24{margin-bottom:24px}.mb32{margin-bottom:32px}.mb64{margin-bottom:64px}.mba{margin-bottom:auto}.p12{padding:12px}.pl24{padding-left:24px}.pl32{padding-left:32px}.pl64{padding-left:64px}.pr24{padding-right:24px}.pr32{padding-right:32px}.pr64{padding-right:64px}.pt24{padding-top:24px}.pt32{padding-top:32px}.pt64{padding-top:64px}.pb24{padding-bottom:24px}.pb32{padding-bottom:32px}.pb64{padding-bottom:64px}.background--white{background-color:#fff}.background--gray{background-color:#eee}.background--blueGray{background-color:#eff3f6}.background--gray0,.background--lightGray{background-color:#fcfcfc}.background--gray20{background-color:#eee}.background--gray40{background-color:#dbdbdb}.background--gray60{background-color:#cfcfcf}.background--gray80{background-color:#a3a3a3}.background--gray100{background-color:#a3a3a3}.flex__self--center{align-self:center}.hover{cursor:pointer}.hover--lighterGray:hover{background-color:#fcfcfc}.hover:hover label,.hover:hover p{cursor:pointer;color:#229ed4}.hover:hover .ant-badge p{color:#fff}.hover--ignore label,.hover--ignore p{color:initial !important}hr.divider{border-style:solid;border-top:0;border-color:#cfcfcf;margin:16px 0}hr.divider--fullWidth{border-left:0;border-right:0}*:not(.lottie *,.noFill,.anticon *,.ant-tooltip-arrow *){fill:inherit}svg:not(.anticon *){fill:none}svg:not(.anticon *) path:not(.lottie *,.anticon *){fill:inherit}svg:not(.anticon *) rect:not(.lottie *){fill:inherit}svg:not(.anticon *).lottie{fill:initial}.display--block{display:block !important}.display--flex--important{display:flex !important}.display--inlineBlock{display:inline-block}.display--inline{display:inline}.disabled{opacity:.5 !important;cursor:default !important;pointer-events:none}.relative{position:relative}.absolute{position:absolute}.absolute--centered{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.chartjs-tooltip{opacity:1;position:absolute;background:rgba(0,0,0,.7);color:#fff;border-radius:3px;-webkit-transition:all .1s ease;transition:all .1s ease;-webkit-transform:translate(-50%, 0);transform:translate(-50%, 0)}.chartjs-tooltip.top{-webkit-transform:translate(-50%, 10%);transform:translate(-50%, 10%)}.chartjs-tooltip.top:before{border:solid;border-color:#111 rgba(0,0,0,0);border-color:rgba(0,0,0,.7) rgba(0,0,0,0);position:absolute;z-index:99;bottom:1em;content:"";display:block;border-width:0 8px 8px 8px;left:50%;top:0;-webkit-transform:translate(-50%, -100%);transform:translate(-50%, -100%)}.chartjs-tooltip.center{-webkit-transform:translate(-50%, -110%);transform:translate(-50%, -110%)}.chartjs-tooltip.center:before{border:solid;border-color:#111 rgba(0,0,0,0);border-color:rgba(0,0,0,.7) rgba(0,0,0,0);position:absolute;z-index:99;bottom:1em;content:"";display:block;border-width:8px 8px 0 8px;left:50%;top:100%;-webkit-transform:translate(-50%, 0);transform:translate(-50%, 0)}.reactToolTip--overlay .ant-tooltip-inner{color:#606366;background-color:#fff;border:1px solid #c2c7cc;padding:16px}.reactToolTip--overlay .ant-tooltip-arrow{border-right-color:#fff;border-right-width:6px}.reactToolTip--overlay .ant-tooltip-arrow:before{position:absolute;content:" ";border:1px solid #c2c7cc;border-width:1px 1px 0 0;width:6px;height:8px;top:-4px;left:2px;transform:rotateZ(45deg)}.reactToolTip--overlay.ant-tooltip-placement-left .ant-tooltip-arrow{border-left-color:#fff;border-left-width:6px;border-right-width:0;right:-2px}.reactToolTip--overlay.ant-tooltip-placement-left .ant-tooltip-arrow:before{border-width:1px 1px 0 0;left:-8px}.reactToolTip--overlay.ant-tooltip-placement-right .ant-tooltip-arrow,.reactToolTip--overlay.ant-tooltip-placement-rightBottom .ant-tooltip-arrow,.reactToolTip--overlay.ant-tooltip-placement-rightTop .ant-tooltip-arrow{left:-1px}.reactToolTip--overlay.ant-tooltip-placement-right .ant-tooltip-arrow:before,.reactToolTip--overlay.ant-tooltip-placement-rightBottom .ant-tooltip-arrow:before,.reactToolTip--overlay.ant-tooltip-placement-rightTop .ant-tooltip-arrow:before{border-width:0 0 1px 1px;width:8px;height:8px;top:-4px;right:-3px}.reactToolTip--overlay.ant-tooltip-placement-right .ant-tooltip-arrow{border-bottom-color:#fff;border-left-width:0;border-right-width:6px;border-bottom-width:4px}.reactToolTip--overlay.ant-tooltip-placement-bottom .ant-tooltip-arrow,.reactToolTip--overlay.ant-tooltip-placement-bottomRight .ant-tooltip-arrow,.reactToolTip--overlay.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow{border-bottom-color:#fff;top:2px;border-width:0 6px 8px 6px}.reactToolTip--overlay.ant-tooltip-placement-bottom .ant-tooltip-arrow:before,.reactToolTip--overlay.ant-tooltip-placement-bottomRight .ant-tooltip-arrow:before,.reactToolTip--overlay.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow:before{border-width:1px 0 0 1px;width:8px;height:8px;top:1px;left:-3px}.reactToolTip--overlay.ant-tooltip-placement-bottomRight .ant-tooltip-arrow{right:16px}.reactToolTip--overlay.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow{left:16px}.reactToolTip--overlay.ant-tooltip-placement-top .ant-tooltip-arrow,.reactToolTip--overlay.ant-tooltip-placement-topLeft .ant-tooltip-arrow,.reactToolTip--overlay.ant-tooltip-placement-topRight .ant-tooltip-arrow{bottom:3px}.reactToolTip--overlay.ant-tooltip-placement-top .ant-tooltip-arrow,.reactToolTip--overlay.ant-tooltip-placement-topRight .ant-tooltip-arrow,.reactToolTip--overlay.ant-tooltip-placement-topLeft .ant-tooltip-arrow{border-top-color:#fff;border-right-color:rgba(0,0,0,0);border-width:8px 8px 0 6px;right:2px}.reactToolTip--overlay.ant-tooltip-placement-top .ant-tooltip-arrow:before,.reactToolTip--overlay.ant-tooltip-placement-topRight .ant-tooltip-arrow:before,.reactToolTip--overlay.ant-tooltip-placement-topLeft .ant-tooltip-arrow:before{border-width:0 1px 1px 0;width:8px;height:8px;bottom:1px;left:-3px;top:auto}.reactToolTip--overlay.ant-tooltip-placement-topRight .ant-tooltip-arrow{right:16px}.reactToolTip--overlay.ant-tooltip-placement-topLeft .ant-tooltip-arrow{left:16px}.reactToolTip--overlay.ant-tooltip-placement-leftTop .ant-tooltip-arrow,.reactToolTip--overlay.ant-tooltip-placement-leftBottom .ant-tooltip-arrow{right:2.5px}.video-js button.vjs-big-play-button{height:50px;width:50px;top:50%;left:50%;transform:translate(-50%, -50%);border-radius:50%;background-color:rgba(255,180,0,.85);border-width:1px}.video-js button.vjs-big-play-button .vjs-icon-placeholder:before{position:absolute;top:50%;left:50%;font-size:45px;transform:translate(-50%, -50%);height:inherit;width:inherit}.video-js button.vjs-big-play-button:focus{background-color:#ffb400}.video-js:hover button.vjs-big-play-button{background-color:#ffb400}.vjs-disabled button.vjs-big-play-button{pointer-events:none;cursor:unset;display:none}.aspect--16-9{padding-top:56.25%}input.noInputSpinner::-webkit-outer-spin-button,input.noInputSpinner::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}input.noInputSpinner[type=number]{-moz-appearance:textfield}.editableTextInput{border:1px solid rgba(0,0,0,0);cursor:pointer;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.editableTextInput:hover{border:1px solid #dbdbdb}.ant-select.errorBorder{border:none !important}.ant-select.errorBorder .ant-select-selection{border-color:#ff5366}.checkbox_rounded>.ant-checkbox>.ant-checkbox-inner{border-radius:50%}.isBeta{width:38px;height:14px;line-height:14px;font-size:8px;font-weight:700;border-radius:8px;display:inline-block;background-color:#ffe587;color:#151112;text-align:center;text-transform:uppercase}.nullContent{text-align:center}.nullContent h1{font-size:18px;font-weight:normal;font-style:normal;font-stretch:normal;line-height:normal;letter-spacing:.3px;text-align:center;color:#4a4a4a}.nullContent p{font-size:14px;font-weight:300;font-style:normal;font-stretch:normal;line-height:normal;letter-spacing:.2px;text-align:center;color:#797c80}.filterMenu{background-color:#f8f8f8}.filterMenu p{color:#606366;font-size:14px;font-weight:100}.filterMenu-content{padding:16px 8px}.filterMenu-filler{flex:1;min-height:0;overflow-y:auto;overflow-x:hidden;flex-direction:column}.filterMenu-dropdown{width:100%;padding:0 8px;box-sizing:border-box}.filterMenu-dropdown h5{color:#606366}.filterMenu-header{background-color:#f8f8f8;width:100%;height:40px;display:flex;flex-direction:row;align-items:center;padding:11px 11px 11px 16px;box-sizing:border-box;border-bottom:1px solid #ebebeb}.filterMenu-header h4{color:#303133;font-size:14px;font-weight:400}.filterMenu-footer{padding:8px}.filterMenu-footer img{padding-right:4px}.filterMenu-footer p{font-size:13px;margin:0;padding:0 4px}.print{margin:0px;padding:0px;clear:both;background-color:gray;page-break-after:always}.print button.btn,.print svg.icon.svg{display:none}.print:last-child{page-break-after:avoid;page-break-inside:avoid;margin-bottom:0px}@media all{.page-break{display:none}}@media print{html,body{height:99%;-webkit-print-color-adjust:exact;page-break-after:always;min-height:auto}}@media print{.page-break{display:block;page-break-before:auto}}@page{size:letter portrait}.hamburger-anker{display:flex;flex-direction:column;justify-content:center;align-items:center;position:relative;z-index:1;-webkit-user-select:none;user-select:none;cursor:move}.hamburger-anker span{display:block;width:22px;height:2px;margin-bottom:4px;position:relative;background:#cdcdcd}.hamburger-anker span:last-of-type{margin:0}@keyframes spinner{to{transform:rotate(360deg)}}.snake-loader{height:20px;width:20px;position:relative;flex-shrink:0}.snake-loader:before{content:"";box-sizing:border-box;position:absolute;top:50%;left:50%;width:100%;height:100%;margin-top:-50%;margin-left:-50%;border-radius:50%;border-top:2px solid #aaa;border-right:2px solid rgba(0,0,0,0);animation:spinner .6s linear infinite}.snake-loader--white:before{border-top:2px solid #fff}.snake-loader--black:before{border-top:2px solid #000}.loader-overlay{position:absolute;top:0;left:0;background-color:rgba(255,255,255,.75);z-index:5}.progress-bar .ant-progress-outer{box-sizing:border-box}.progress-bar .ant-progress-inner{background-color:#cfcfcf;box-sizing:border-box;overflow:hidden}.progress-bar .ant-progress-bg{border-top-right-radius:0px;border-bottom-right-radius:0px}.progress-bar .ant-progress-success-bg,.progress-bar .ant-progress-bg{background-color:#85d7fe}.progress-bar__success .ant-progress-bg{background:#70d27c;opacity:1}.progress-bar__error .ant-progress-bg{background:#ff5366;opacity:1}.reactModal{background-color:#fff;position:relative;padding:16px;box-sizing:border-box;top:50%;left:50%;transform:translate(-50%, -50%)}.reactModal-overlay{position:fixed;width:100%;height:100%;top:0;left:0;z-index:1001;padding:32px;background:rgba(0,0,0,.75);box-sizing:border-box}.exerciseVideo-failed{position:absolute;top:0;left:0;width:100%;height:30px;line-height:30px;text-align:center;color:#fff;background-color:#ff5265}.videoContainer-vimeo{background-color:#000}.videoContainer-general{background-color:#000}button.dialogHeader__close{background-color:rgba(0,0,0,0);background-image:url(/app/images/UI/close_white.png);background-size:100%;border:none;width:16px;height:16px;position:relative;z-index:101}button.dialogHeader__close:before,button.dialogHeader__close:hover:before{height:16px;width:16px;content:" ";background-image:url(/app/images/UI/close_blue.png);display:block;background-size:100%;opacity:0;position:absolute;top:0;left:0}button.dialogHeader__close:before{animation:fadeout .25s;animation-iteration-count:1;animation-fill-mode:forwards}button.dialogHeader__close:hover:before{animation:fadein .25s;animation-iteration-count:1;animation-fill-mode:forwards}.profileImage{box-sizing:border-box;border-radius:50%;position:relative;overflow:hidden}.profileImage__image{height:100%;width:100%;background-size:cover;background-repeat:no-repeat;background-position:center;box-sizing:border-box;border-color:#dbdbdb;border-style:solid;border-width:0}.profileImage__image--null{background-repeat:no-repeat;background-position:bottom}.profileImage .roundImg{border-radius:50%}.profileImage .squareImg{border-radius:0}.component-imageUploader__imgHover,.component-profileImageUploader__imgHover{background-color:rgba(255,255,255,.9);position:absolute;width:103%;height:103%;border-radius:50%;top:50%;left:50%;transform:translate(-50%, -50%);pointer-events:none;cursor:pointer;z-index:1}.component-profileImageUploader{box-sizing:border-box;border:2px solid #cdcdcd;background-color:#f7f7f7;border-radius:50%;position:relative}.component-profileImageUploader__img{background-size:cover;background-repeat:no-repeat;background-position:center;border-radius:50%}.component-profileImageUploader__null{background-size:70%;background-repeat:no-repeat;background-position:bottom}.component-profileImageUploader__upload{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%) !important;pointer-events:none;cursor:pointer;z-index:1}.component-profileImageUploader__imgHover--dark{background-color:rgba(0,0,0,.3)}.component-profileImageUploader__inputUploader{display:block;height:100%;width:100%}.component-profileImageUploader__inputUploader .ant-upload{height:100%;width:100%}.component-profileImageUploader__imgDragDropBig{width:40%;height:40%;position:absolute;top:30%;left:50%;transform:translate(-50%, -50%);pointer-events:none}.component-profileImageUploader__imgDragDropBigText{position:absolute;font-size:12px;top:50%;left:20%;margin-top:6px;pointer-events:none;display:flex;flex-direction:column;align-items:center;justify-content:center}.component-imageUploader{box-sizing:border-box;position:relative}.component-imageUploader__img{background-size:cover;background-repeat:no-repeat;background-position:center;border-radius:50%}.component-imageUploader__null{background-size:70%;background-repeat:no-repeat;background-position:bottom}.component-imageUploader__upload{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);pointer-events:none;cursor:pointer;z-index:1}.component-imageUploader__imgHover--dark{background-color:rgba(0,0,0,.3)}.component-imageUploader__inputUploader{display:block;height:100%;width:100%}.component-imageUploader__inputUploader .ant-upload{height:100%;width:100%}.component-imageUploader__imgDragDropBig{width:40%;height:40%;position:absolute;top:30%;left:50%;transform:translate(-50%, -50%);pointer-events:none}.component-imageUploader__imgDragDropBigText{position:absolute;font-size:12px;top:50%;left:20%;margin-top:6px;pointer-events:none;display:flex;flex-direction:column;align-items:center;justify-content:center}.imageCropper-preview p{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:14px;color:#606366;font-weight:100;margin:0;padding:0}.imageCropper-preview__container{padding-top:16px;background-color:#fff}.imageCropper-preview .cropper-preview,.imageCropper-preview .cropper-preview-inline{overflow:hidden;background:#000}.imageCropper-preview .cropper-preview-inline{border-radius:50%;border:2px solid #cdcdcd;background-color:#000}.imageCropper-preview .cropper-preview-dotMe{position:relative}.imageCropper-preview .cropper-preview-dotMe .cropper-preview{border:1px solid #cdcdcd}.imageCropper-preview .dotMe-details{position:absolute;bottom:0;left:0;background:rgba(20,21,24,.8);height:26%;width:100%;padding:9px 15px;display:flex;flex-direction:column}.imageCropper-preview .dotMe-details__name{color:#fff;font-size:13px;line-height:17px;display:block;overflow:hidden;text-overflow:ellipsis}.imageCropper-preview .dotMe-details__location{font-size:10px;font-weight:300;color:#fff}.imageCropper-preview .ant-modal-body{padding-top:0}.trainerRoleSelect .ant-select-selection--single{height:100%}.trainerRoleSelect.ant-select-open .ant-select-selection{border-color:#d9d9d9}.trainerRoleSelect span.tr-icon{margin-left:0 !important}.trainerRoleSelect-dropdown ul{margin-top:0}.trainerRoleSelect-dropdown .ant-select-dropdown-menu-item:hover{background-color:#f2f2f2}.trainerRoleSelect-dropdown .ant-select-dropdown-menu-item:hover h5{color:#06a9f6}.trainerRoleSelect-dropdown .ant-select-dropdown-menu-item-active{background-color:#fff}.trainerRoleSelect-option h5,.trainerRoleSelect .ant-select-selection--single h5{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:13px;color:#4c4c4c;font-weight:400;line-height:1.6em}.trainerRoleSelect-option p,.trainerRoleSelect .ant-select-selection--single p{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:12px;color:#9a9a9a;font-weight:100;line-height:1.2em;margin:0;padding:0;white-space:normal}.trainerRoleSelect-option{height:80px}.wtwm-video{width:750px;height:400px;border:1px solid #d8d8d8;background-color:#fff;display:flex;flex-direction:column;justify-content:space-between;align-content:center;cursor:auto}.wtwm-video__main{margin-top:70px;display:flex;flex-direction:row;justify-content:space-evenly;align-content:center}.wtwm-video__video-background{min-width:320px;min-height:220px;background-image:url("/app/react/assets/images/user/why-train-with-me-background.svg");background-repeat:no-repeat;position:relative}.wtwm-video__video-player{position:absolute;top:24px;left:27px;width:267px;height:167px;overflow:hidden;border-radius:10px}.wtwm-video__value-proposition{width:258px;display:flex;flex-direction:column;justify-content:space-evenly;align-items:center;text-align:left}.wtwm-video__heading{font-size:20px;color:#4a4a4a;width:258px}.wtwm-video__paragraph{font-size:14px;color:#797979;line-height:20px;width:258px}.wtwm-video__sample-profile-link{font-size:14px;line-height:20px;color:#06a9f6;cursor:pointer;width:258px}.wtwm-video__video-processing{position:absolute;top:75px;left:105px}.wtwm-video__video-null-img{position:absolute;top:51px;left:86px;width:150px}.wtwm-video__drop-hint{display:flex;flex-direction:column;justify-content:space-between;align-content:center;text-align:center;margin-bottom:15px}.wtwm-video__drop-hint--hidden{display:none}.wtwm-video__drop-text{font-size:14px;color:#797c80;line-height:12px}.wtwm-video__select-video-link{margin:13px auto 0 auto;width:100px;color:#06a9f6;font-size:14px;line-height:12px;cursor:pointer}.wtwm-video__drop-overlay{position:absolute;width:100%;height:100%;background-color:rgba(255,255,255,.6);z-index:2}.wtwm-video__drop-overlay-image{position:absolute;top:1px;left:1px}.wtwm-video__drop-overlay--hidden{display:none}#section_WTWM .ant-upload-list-item{display:none}.select-disabled--white.ant-select-disabled .ant-select-selection{background-color:#fff}.closeButton{display:block;background-color:rgba(0,0,0,0);background-image:url(/app/images/UI/close_white.png);background-size:100%;border:none;width:16px;height:16px;position:relative;opacity:.5}.closeButton:before,.closeButton:hover:before{height:16px;width:16px;content:" ";background-image:url(/app/images/UI/close_blue.png);display:block;background-size:100%;opacity:0;position:absolute;top:0;left:0}.closeButton:before{animation:fadeout .25s;animation-iteration-count:1;animation-fill-mode:forwards}.closeButton:hover:before{animation:fadein .25s;animation-iteration-count:1;animation-fill-mode:forwards}.component__planPicker .ant-select-selection--multiple{max-height:62px;overflow-y:auto}.component__planPicker__icon{height:20px;margin-right:3px;border-radius:50%}.fileUploaderIcon{background-image:url(/app/images/dropZone/dragOverIconOnly.svg);background-position:center;background-repeat:no-repeat;background-size:cover;width:18px;height:18px;margin-right:4px}.fileUploaderIconGrey{background-image:url(/app/images/dropZone/dragOverIconOnly-grey.svg);background-position:center;background-repeat:no-repeat;background-size:cover;width:18px;height:18px;margin-right:4px}.videoUploader{position:relative;box-sizing:border-box}.videoUploader .ant-upload{height:100%;width:100%}.videoUploader .ant-upload-list{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.videoUploader .ant-upload-list-picture .ant-upload-list-item-thumbnail,.videoUploader .ant-upload-list-picture-card .ant-upload-list-item-thumbnail{top:10px}.videoUploader__dashedBorder{border:2px dashed #c2c7cc}.videoUploader__dashedBorder:hover{border-color:#229ed4}.videoUploader__dashedBorder--active{border-color:#229ed4}.buttonDropdown__dropdown ul{padding:0}.buttonDropdown__dropdown li{height:36px;display:flex;align-items:center}.buttonDropdown__dropdown li:hover,.buttonDropdown__dropdown li:hover p,.buttonDropdown__dropdown li:hover li:hover p{color:#229ed4}.buttonDropdown__dropdown li:hover svg g use{fill:#229ed4 !important}.buttonDropdown__dropdown li:hover li p{color:#6e6e6e}.buttonDropdown__dropdown li:hover{background-color:#eff3f6}.buttonDropdown__dropdown li.ant-dropdown-menu-item-divider{height:1px;margin:0}.buttonDropdown__dropdown-limitHeight ul{max-height:275px;overflow-y:auto}.selectableList__checkboxGroup{height:350px;min-height:350px;max-height:350px;overflow:auto}.tooltip__targetTooltip .ant-tooltip-inner{color:#606366;background-color:#fff;border:1px solid #ccc}.tooltip__targetTooltip .ant-tooltip-arrow{border-right-color:#fff;border-right-width:6px}.tooltip__targetTooltip .ant-tooltip-arrow:before{position:absolute;content:" ";border:1px solid #ccc;border-width:0 0 1px 1px;width:6px;height:6px;top:-4px;left:1px;transform:rotateZ(45deg)}.tooltip--maxWidth{max-width:100%}.reactRadioButtonGroup .ant-radio-button-wrapper-checked{background-color:#229ed4;border-color:#229ed4;box-shadow:-1px 0 0 0 #229ed4;color:#fff}.fromHQIcon{position:relative}.fromHQIcon img{position:absolute;right:-4px;bottom:5px}.ant-select-tree li .ant-select-tree-node-content-wrapper.ant-select-tree-node-selected,.ant-select-tree li .ant-select-tree-node-content-wrapper:hover{background-color:#eff3f6}.nullContainer h3,.nullContainer h4,.nullContainer h5,.nullContainer p{white-space:break-spaces}.dualCalendarScheduler .ant-fullcalendar-header{display:none}.photoPreviewContainer--noArrow .ant-popover-arrow{display:none}.photoPreviewContainer .ant-popover-arrow,.photoPreviewContainer .ant-popover-inner,.photoPreviewContainer .ant-popover-inner-content{background-color:#151112 !important;border-radius:5px}.photoPreviewContainer .ant-popover-inner-content{padding:16px}.tabsContainer__emptyTab{height:40px;padding:0 16px;position:relative;border-bottom:1px solid #eee;background-color:#fcfcfc;flex-basis:0;flex-grow:3}.tabsContainer__tabLink{height:40px;padding:0 16px;cursor:pointer;position:relative;border-bottom:1px solid #eee;border-left:1px solid rgba(0,0,0,0);border-right:1px solid rgba(0,0,0,0);background-color:#fcfcfc;flex-basis:0;flex-grow:1}.tabsContainer__tabLink--active{z-index:5;background-color:#fff;border-bottom:1px solid rgba(0,0,0,0);border-left:1px solid #dbdbdb;border-right:1px solid #dbdbdb}.tabsContainer__tabLink--active:first-child{border-left:0}.tabsContainer__tabLink--active:last-child{border-right:0}.tabsContainer__tabLink:not(.tabsContainer__tabLink--active,.tabsContainer__tabLink:last-child)::after{content:"";z-index:10;position:absolute;right:-2px;top:12px;width:1px;height:18px;background-color:#dbdbdb}.tabsContainer__genericContentContainer{border-left:1px solid #dbdbdb;border-right:1px solid #dbdbdb;padding:16px}#gtLoader{position:fixed;bottom:-80px;z-index:9999;text-align:center;color:#fff;margin-bottom:20px;transition:bottom 1s ease;width:100%;height:36px;box-sizing:border-box;display:flex;align-items:center;justify-content:center;left:0}#gtLoader.show{bottom:0px}#gtLoader .gtLoader-check{background-color:#97ca55 !important}#gtLoader .gtLoader-error{background-color:#ff5366 !important}#gtLoader .gtLoader-warning{background-color:#ffb400 !important}#gtLoader .innerLoading{max-width:95%;display:flex;align-items:flex-start;justify-content:center;*zoom:1;color:#fff;font-size:12px;line-height:18px;padding:8px 12px;height:18px;background-color:#000;border-radius:17px}#gtLoader .innerLoading #dismiss{display:inline-block;cursor:pointer}.component__appointmentTypePicker .ant-select-selection--multiple .ant-select-selection__choice .appointmentTypeMultipleSelect{padding-right:0px !important;padding-left:3px}.component__appointmentTypePicker .ant-select-selection-selected-value{width:100%}.component__appointmentTypePicker .ant-select-selection-selected-value.appointmentTypeOption{width:100%}.component__appointmentTypePicker .ant-select-selection-selected-value .appointmentTypeLabel{flex:1;overflow-x:hidden;text-overflow:ellipsis}.component__appointmentTypePicker_dropdown .appointmentTypeLabel{overflow-x:hidden;text-overflow:ellipsis}.component__appointmentTypePicker_dropdown .appointmentTypeMultipleSelect{padding-right:0px !important;padding-left:3px}.component__locationPicker.invalid .ant-select-selection{border-color:#ff5366}.component__locationPicker .locationNameWrapper,.ant-select-dropdown-menu .locationNameWrapper{display:flex;align-items:center;gap:8px}.customLinks .ant-upload-list{padding:5px 0}.customLinks .ant-upload-list-item{margin-top:0}.customLinks .ant-upload-list-item-name{padding-right:8px}.customLinks-fileList{display:flex;height:44px;width:180px;border:1px dashed #eee;align-items:center;justify-content:space-evenly;background:#fff}.filterDrawer .ant-tag{cursor:default}.filterDrawer .ant-tree-checkbox-disabled{display:none}.filterDrawer .ant-drawer-body{height:100%;padding:0;display:flex;flex-direction:column;overflow:hidden}.filterDrawer .ant-drawer-wrapper-body{background-color:#fcfcfc}.filterDrawer .ant-tree .ant-tree-switcher{margin-left:8px;flex-shrink:0}.filterDrawer .ant-tree li{width:100%}.filterDrawer .ant-tree li .ant-tree-node-content-wrapper{color:#151112 !important;height:20px;line-height:18px !important;padding:0 16px}.filterDrawer .ant-tree li:last-child{padding-bottom:4px}.filterDrawer .ant-tree-node-content-wrapper.ant-tree-node-selected{background-color:inherit !important}.filterDrawer .ant-tree-node-content-wrapper:hover{background-color:inherit !important}.filterDrawer .ant-tree-treenode-switcher-close{border-bottom:1px solid #eee}.filterDrawer .ant-tree-child-tree{padding:10px 0 10px 10px;background-color:#eff3f6}.filterDrawer .ant-tree-child-tree .ant-tree-treenode-switcher-close{border-bottom:none;display:flex}.filterDrawer .ant-tree-child-tree .ant-tree-title{white-space:normal}.filterDrawer .ant-tree-child-tree .ant-tree-node-content-wrapper{height:auto !important}.filterDrawer__tree{flex:1;min-height:0;overflow:auto}.filterDrawer__tree>.ant-tree-treenode-switcher-close>.ant-tree-node-content-wrapper,.filterDrawer__tree>.ant-tree-treenode-switcher-open>.ant-tree-node-content-wrapper{margin:9.5px 0 !important;padding:0 16px !important}.filterDrawer__applyBtn{width:200px;margin:12px auto}.filterDrawer .filter-node{display:none !important}.filterDrawer__loadingOverlay{position:absolute;height:100%;width:100%;background-color:#fff;opacity:40%;z-index:999}.filterDrawer__header{box-sizing:border-box;padding:9.5px 16px;height:40px;border-bottom:1px solid #eee}.filterDrawer__content{flex:1;min-height:0;overflow:auto}.filterDrawer__footer{width:100%;padding:16px 0;display:flex;justify-content:center;align-items:center}.filterDrawer__footer button{margin:0 16px;width:100%}.filterDrawer .ant-tree-child-tree{padding:0 16px !important;background-color:#fff !important;border-top:1px solid #eee}.filterDrawer .ant-tree-child-tree .ant-tree-title{font-size:12px !important;font-weight:400 !important;line-height:16px !important}.filterDrawer .ant-tree .checkboxOptionLabel{display:flex;width:200px;justify-content:space-between;align-items:center}.filterDrawer .ant-tree .ant-tree-switcher{float:right;right:11px}.filterDrawer .ant-tree .ant-tree-switcher-noop{display:none}.filterDrawer .ant-tree .ant-tree-treenode-switcher-open{padding:0;border-bottom:1px solid #eee !important}.filterDrawer .ant-tree li.ant-tree-treenode-switcher-open span.ant-tree-node-content-wrapper-open{margin:9.5px 0 !important;color:#151112 !important}.filterDrawer .ant-tree li.ant-tree-treenode-switcher-close{padding:0 !important;align-items:center}.filterDrawer .ant-tree li.ant-tree-treenode-switcher-close span.ant-tree-switcher{margin-top:8px !important}.filterDrawer .ant-tree li.ant-tree-treenode-switcher-close span.ant-tree-node-content-wrapper-normal{padding:0 8px}.filterDrawer .ant-tree li.ant-tree-treenode-switcher-close span.ant-tree-node-content-wrapper-close{margin:9.5px 0 !important}.filterDrawer .ant-tree li.ant-tree-treenode-switcher-close span.ant-tree-node-content-wrapper-close span.ant-tree-title{color:#151112}.filterDrawer .ant-tree li.ant-tree-treenode-switcher-close .ant-tree-switcher,.filterDrawer .ant-tree li.ant-tree-treenode-switcher-open .ant-tree-switcher{margin-top:8px}.filterDrawer .ant-tree li.ant-tree-treenode-switcher-close ul.ant-tree-child-tree,.filterDrawer .ant-tree li.ant-tree-treenode-switcher-open ul.ant-tree-child-tree{padding-bottom:3px !important}.filterDrawer .ant-tree li.ant-tree-treenode-switcher-close ul.ant-tree-child-tree-open li.ant-tree-treenode-switcher-close,.filterDrawer .ant-tree li.ant-tree-treenode-switcher-open ul.ant-tree-child-tree-open li.ant-tree-treenode-switcher-close{padding:5px 0 !important}span.betaTag{display:flex}.datePickerButton__dropdown .ant-calendar-input-wrap{display:none}.announcement-banner{background-size:auto 100%;background-position:right top;background-repeat:no-repeat;transition:background-image .3s ease}.announcement-banner__edits{max-width:60%}@media(max-width: 1169px){.announcement-banner{background-image:none !important}.announcement-banner__edits{max-width:100%}}.workoutDetails-exerciseList{box-sizing:border-box}.wodSelectFolder{display:flex !important;align-items:center !important}.postWodDialogPicker .ant-select-selection-selected-value{display:flex !important;align-items:center}.workoutDetails-exerciseInline__wrapper{min-height:35px;height:35px}.workoutDetails-exerciseInline__wrapper--small{min-height:28px;height:28px}.workoutDetails-exerciseInline__content{height:100%;box-sizing:border-box;border-bottom:1px solid #eee;overflow:hidden;text-align:left}.workoutDetails-exerciseInline__superSet{min-height:35px;width:4px;margin-right:6px}.workoutDetails-exerciseInline__noSuperSet{width:0;margin-right:0}.workoutDetails-exerciseInline__title{height:28px}.workoutDetails-exerciseInline__title-superSetEven{color:#70d27c;padding-left:6px}.workoutDetails-exerciseInline__title-superSetOdd{color:#ffb400;padding-left:6px}.workoutDetails-exerciseInline__superSetEven{background-color:#70d27c}.workoutDetails-exerciseInline__superSetOdd{background-color:#ffb400}.workoutDetails-exerciseInline__preview{width:50px;height:30px;background-size:cover;background-position:center;background-repeat:no-repeat;margin:2px 0px 2px 2px}.workoutDetails-exerciseInline__preview.videoLink:before{height:24px;width:24px;padding:5px 5px 5px 7px;background-color:rgba(255,255,255,.3);font-size:11px;border-color:rgba(255,255,255,.5);opacity:.8}.workoutDetails-exerciseInline__preview.videoLink:hover:before{opacity:1}.workoutDetails-exerciseInline__name{color:#6e6e6e;font-size:14px;line-height:32px;padding:0 8px;width:200px;height:100%;text-align:left;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.workoutDetails-exerciseInline__name--noSuperSet{width:200px}.workoutDetails-exerciseInline__rest{border-right:none}.workoutDetails-exerciseInline .workoutDetails-exerciseInline__time,.workoutDetails-exerciseInline .workoutDetails-exerciseInline__target{font-size:14px;line-height:16px;display:flex;color:#151112;font-weight:normal;height:100%;border-left:1px solid #eee}.workoutDetails-exerciseInline__target{padding:0 10px;align-items:center;flex-direction:row;width:calc(100% - 290px);justify-content:space-between}.workoutDetails-exerciseInline__targetText{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:calc(100% - 200px)}.workoutDetails-exerciseInline__time{padding:0 10px;border-bottom:1px solid #eee;border-right:1px solid #eee;min-width:80px;align-items:center}.workoutDetails-exerciseInline__inlineIconCon{margin-left:auto;margin-right:0;text-align:right;width:200px}.workoutDetails-exerciseInline__inlineIcon{height:10px;width:10px;margin-right:3px}.workoutDetails-exerciseInline__stats{margin-left:10px;padding:16px 4px 0 0px;box-sizing:border-box;width:calc(100% - 16px)}.workoutDetails-exerciseInline__stats--rounds{font-size:14px;padding-right:24px;color:#000}.workoutDetails-exerciseInline__stats--tracked{font-size:14px;color:#9b9b9b;font-weight:400}.workoutDetails-exerciseInline__supersetSeparator{box-sizing:border-box;width:100%;height:16px;border-bottom:1px solid #eee}.workoutDetails-exerciseInline__repeatCon{height:100%;box-sizing:border-box;overflow:hidden;text-align:left}.workoutDetails-exerciseInline__repeatIcon{transform:rotate(90deg)}.workoutDetails-exerciseInline__repeatText{margin-left:5px;color:#797c80;font-size:12px;line-height:14px;font-weight:normal}.workoutDetails-exerciseInline--borders{box-sizing:border-box;border-bottom:1px solid #eee}.workoutDetails-exerciseInline__cardio--rounds{color:#000;font-size:14px}.workoutDetails-exerciseInline__cardio--tile{min-width:200px;height:40px}.workoutDetails-exerciseInline__cardio--tile h1{font-size:14px;color:#4a4a4a;font-weight:400}.workoutDetails-exerciseInline__cardio--tile p{font-size:14px;font-weight:400;margin:0 !important}.workoutDetails-exerciseInline__cardio--tile p_gray100{color:#6e6e6e}.workoutDetails-exerciseInline__cardio--tile img{height:26px;width:35px;padding-right:10px}.exerciseLibrary{position:relative;overflow:hidden;min-width:520px}.exerciseLibrary *{box-sizing:border-box}.exerciseLibrary-wrap{overflow:auto}.exerciseLibrary-container{flex-wrap:wrap;display:grid;grid-template-columns:repeat(auto-fill, minmax(251px, 1fr));grid-gap:10px}.workoutBuilder .exerciseLibrary-container{grid-template-columns:repeat(auto-fill, minmax(151px, 1fr))}.exerciseLibrary-exercise{border-radius:4px;overflow:hidden;position:relative}.exerciseLibrary-exercise:hover{border:1px solid #40a9ff}.exerciseLibrary-exercise__img{background-size:cover;background-position:center;width:100%;height:92px}.exerciseLibrary-exercise__img:hover{cursor:pointer}.exerciseLibrary-exercise__imgExerciseLibrary{background-size:cover;background-position:center;width:100%;height:120px}.exerciseLibrary-exercise__loadingImg{background-image:url("../images/loading_spinner.gif");background-size:40px;background-position:center;width:100%;height:92px;background-repeat:no-repeat}.exerciseLibrary-exercise p{font-size:14px;color:#151112;padding:0 10px;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;margin:10px 0}.exerciseLibrary-exercise .ant-checkbox-wrapper{position:absolute;top:8px;left:8px}#exerciseLibrary-container{min-width:100%}.exerciseLibrary-youtube__chevron{top:10px !important;right:30px !important}.exerciseLibrary-youtube{position:absolute;bottom:0}.exerciseLibrary-youtube__clickableArea{position:absolute;top:0;left:0;height:100%;width:100%;opacity:0;cursor:pointer}.exerciseLibrary-youtube__redBar{width:100%;height:5px;margin-top:-1px;background-color:red;border-top:1px solid #ebebeb}.exerciseLibrary-youtube__container{width:100%;background-color:#fff}.exerciseLibrary-youtube__chevron{position:absolute;top:6px;right:8px;cursor:pointer}.exerciseLibrary-youtube__suggestions{height:100%;width:100%;overflow-y:hidden;overflow-x:scroll;margin-top:32px;margin-bottom:16px}.exerciseLibrary-youtube__suggestions .exerciseLibrary-exercise{margin:0 10px}.exerciseLibrary-youtube__title{padding-left:20px;padding-right:12px}#exerciseLibrary-container .exerciseLibrary-youtubeExercise:hover{cursor:pointer}.exerciseLibrary-youtubeExercise{width:170px;height:140px;margin:0 8px 12px;border-radius:4px;background-color:#fff}.exerciseLibrary-youtubeExercise:first-of-type{margin-left:0}.exerciseLibrary-youtubeExercise::last-of-type{margin-right:0}.exerciseLibrary-youtubeExercise:hover{cursor:move;border:1px solid #40a9ff}.exerciseLibrary-youtubeExercise__img{background-size:cover;background-position:center;width:100%;height:inherit;max-height:92px}.exerciseLibrary-youtubeExercise__loadingImg{background-image:url("../images/loading_spinner.gif");background-size:40px;background-position:center;width:100%;height:92px;background-repeat:no-repeat}.exerciseLibrary-youtubeExercise p{font-size:14px;color:#4c4c4c;font-weight:400;padding:6px;margin:0;text-align:left;width:100%;display:block;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;line-height:18px;flex:1}.exerciseLibrary-youtubeExercise p:hover{cursor:pointer;color:#40a9ff}.exerciseLibrary-filterDrawer .ant-tag{cursor:default}.exerciseLibrary-filterDrawer .ant-tree-checkbox-disabled{display:none}.exerciseLibrary-filterDrawer .ant-drawer-body{height:100%;padding:0;display:flex;flex-direction:column;overflow:hidden}.exerciseLibrary-filterDrawer .ant-drawer-wrapper-body{background-color:#fcfcfc}.exerciseLibrary-filterDrawer .ant-tree .ant-tree-switcher{margin-left:8px;flex-shrink:0}.exerciseLibrary-filterDrawer .ant-tree li{width:100%}.exerciseLibrary-filterDrawer .ant-tree li .ant-tree-node-content-wrapper{color:#151112 !important;height:20px;line-height:18px !important;padding:0 16px}.exerciseLibrary-filterDrawer .ant-tree li:last-child{padding-bottom:4px}.exerciseLibrary-filterDrawer .ant-tree-node-content-wrapper.ant-tree-node-selected{background-color:inherit !important}.exerciseLibrary-filterDrawer .ant-tree-node-content-wrapper:hover{background-color:inherit !important}.exerciseLibrary-filterDrawer .ant-tree-treenode-switcher-close{border-bottom:1px solid #eee}.exerciseLibrary-filterDrawer .ant-tree-child-tree{padding:10px 0 10px 10px;background-color:#eff3f6}.exerciseLibrary-filterDrawer .ant-tree-child-tree .ant-tree-treenode-switcher-close{border-bottom:none;display:flex}.exerciseLibrary-filterDrawer .ant-tree-child-tree .ant-tree-title{white-space:normal}.exerciseLibrary-filterDrawer .ant-tree-child-tree .ant-tree-node-content-wrapper{height:auto !important}.exerciseLibrary-filterDrawer__tree{flex:1;min-height:0;overflow:auto}.exerciseLibrary-filterDrawer__tree>.ant-tree-treenode-switcher-close>.ant-tree-node-content-wrapper,.exerciseLibrary-filterDrawer__tree>.ant-tree-treenode-switcher-open>.ant-tree-node-content-wrapper{margin:9.5px 0 !important;padding:0 16px !important}.exerciseLibrary-filterDrawer__applyBtn{width:200px;margin:12px auto}.exerciseLibrary-filterDrawer__tree{flex:1;min-height:0;overflow:auto}.exerciseLibrary-filterDrawer__applyBtn{width:200px;margin:12px auto}.exerciseLibrary-search__toolTip{word-break:normal;padding-top:0;width:100%;max-width:300px}.exerciseLibrary-search__toolTip .ant-tooltip-arrow{display:none}.exerciseLibrary-search__toolTip .ant-tooltip-inner{border:1px solid #ccc;background-color:#fff;color:#606366}.exerciseLibrary-search__toolTip h2{padding-top:8px;padding-left:12px;font-size:14px;font-weight:normal;color:#f5a623}.exerciseLibrary-search__toolTip p{padding-left:12px;padding-right:9px;color:#797c80;font-size:12px}.exerciseLibrary-search__toolTip ul{padding-left:12px;margin:0;padding-bottom:16px;columns:2;-webkit-columns:2;-moz-columns:2}.exerciseLibrary-search__toolTip li{list-style:none;color:#797c80;font-size:10px}.exerciseLibrary-controls{padding:12px 0px}.exerciseLibrary-badge .ant-badge-count{background-color:#06a9f6;border-color:#fff;color:#fff;transform:scale(0.9);transition:none}.component__searchInput input{height:28px;border-radius:40px;font-size:13px}.component__searchInput input.placeholder{font-size:13px;color:#dae0e6}.component__searchInput input:-moz-placeholder{font-size:13px;color:#dae0e6}.component__searchInput input::-moz-placeholder{font-size:13px;color:#dae0e6}.component__searchInput input:-ms-input-placeholder{font-size:13px;color:#dae0e6}.component__searchInput input::-webkit-input-placeholder{font-size:13px;color:#dae0e6}.exerciseLibrary-standAlone .ant-tag{cursor:default}.exerciseLibrary-standAlone .exerciseLibrary-search{width:400px;margin-left:auto}.exerciseLibrary-standAlone .exerciseLibrary-controls{background-color:#eff3f6;padding:12px;margin-top:8px}.exerciseLibrary-selectedBar{background-color:#06a9f6;width:100%;padding:0 8px;overflow:hidden;color:#fff;font-size:13px;font-weight:400}.exerciseLibrary-selectedBar.open{height:22px}.exerciseLibrary-selectedBar.closed{height:0px}.exerciseDescriptions{box-sizing:border-box}.exerciseDescriptions h4{font-size:18px;color:#606366;font-weight:normal;margin:4px 0 0 0;padding:0}.exerciseDescriptions p{font-size:13px;font-weight:300;margin:8px 0 8px 0;padding:0;color:#666;white-space:pre-line}.exerciseDescriptions-exercise{border-bottom:1px solid #eee}.exerciseDescriptions-exercise .videoLink:before{opacity:.8;background-color:rgba(255,255,255,.4)}.exerciseDescriptions-exercise .videoLink:hover:before{opacity:1}.exerciseDescriptions-exercise__btnGraph{position:absolute;right:5px;top:3px;opacity:.5}.exerciseDescriptions-exercise__btnGraph:hover{opacity:1}.exerciseDescriptions-description{position:relative;width:100%}.exerciseDescriptions-image{width:164px;height:122px;background-size:cover;background-position:center;background-repeat:no-repeat}.exerciseDialog{height:100%;width:100%;outline:none}.exerciseDialog .ant-upload-list{position:absolute;top:174px;left:50%;transform:translateX(-50%)}.exerciseVideo{position:relative}.exerciseVideo .ant-upload{height:100%;width:100%}.exerciseVideo .ant-upload-disabled{cursor:default}.exerciseVideo-dropReplace{position:absolute;top:50px;left:50%;transform:translateX(-50%);pointer-events:none;z-index:1}.exerciseVideo-dropReplace h4,.exerciseVideo-dropReplace img{color:#fff;text-shadow:2px 2px 2px rgba(0,0,0,.5)}.exerciseVideo-systemImage{background-size:cover}.exerciseDialog-details{height:475px;padding-left:16px;padding-right:16px;box-sizing:border-box}.exerciseDialog-details *{box-sizing:border-box}.exerciseDialog-details__editBtn{position:absolute;right:40px}.exerciseDialog-details__recordType{color:#303133;text-transform:capitalize}.exerciseDialog-details__name TextArea{width:100%;height:50px;resize:none;padding:3px 8px 6px 8px;font-size:14px;box-sizing:border-box}.exerciseDialog-details__tags .ant-tag{display:flex;justify-content:flex-start;align-items:center}.exerciseDialog-details__instructions{overflow:auto;white-space:pre-line}.exerciseDialog-details .ant-select-selection-selected-value{padding-right:0 !important;width:100%}.exerciseDialog-tagModal .ant-modal-content{padding:32px}.exerciseDialog-tagModal .ant-modal-footer{text-align:right}.exerciseDialog-tagModal__category{flex:1;min-width:175px}.exerciseDialog-tagModal__category__Equipment{flex:1 0 auto}.exerciseDialog-tagModal__category__Mechanics{position:relative;left:0px;flex:none;width:0px}.exerciseDialog-tagModal__category__Mechanics .ant-checkbox-group{width:160px}.exerciseDialog-tagModal .ant-checkbox-group-item{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.trainerProfile-dialog{height:100%;width:100%;display:flex;flex-direction:column}.trainerProfile-dialog *{box-sizing:border-box}.trainerProfile-dialog hr{border-top:none;border-left:none;border-right:none;border-bottom:1px solid #eee;width:100%}.trainerProfile-dialog h1{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:20px;color:#606366;font-weight:400;padding:0;max-width:560px}.trainerProfile-dialog h2{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:16px;color:#606366;font-weight:400;padding:0}.trainerProfile-dialog p{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:14px;color:#606366;font-weight:100;margin:0;padding:0}.trainerProfile-dialog__header{background:#242526;height:45px;width:100%;padding:0 8px}.trainerProfile-dialog__header--tabs{padding-left:16px;margin-top:auto}.trainerProfile-dialog__header .position-right{position:absolute;top:11px;right:46px}.trainerProfile-dialog__header .position-right .headerButton{font-size:10px;line-height:12px;height:22px;color:#4c4c4c}.trainerProfile-dialog__header .position-right .messageButton{width:90px}.trainerProfile-dialog__header .position-right .messageButton .icon{position:absolute;top:4px;left:10px;width:14px;height:14px}.trainerProfile-dialog__header .position-right .messageButton .buttonText{position:absolute;right:11px;top:4px}.trainerProfile-dialog__header .position-right .expandIcon{position:absolute;margin:0 !important;top:4px;width:12px;height:12px;opacity:.3}.trainerProfile-dialog__tab{height:34px;background-color:#606366;color:#d5d6d6;padding:4px 16px;align-items:center;display:flex;border-top-right-radius:7px;border-top-left-radius:7px;font-size:14px;font-weight:800;margin-right:8px;cursor:pointer}.trainerProfile-dialog__tab.active{background-color:#fff;color:#229ed4;cursor:default}.trainerProfileDialog-profile{position:relative;box-sizing:border-box;height:calc(100% - 45px)}.trainerProfileDialog-profile .role{color:#ff9801}.trainerProfileDialog-mainDetails{position:relative}.trainerProfileDialog-mainDetails .position-right{position:absolute;top:0;right:0}.sendMenuDropdown{width:240px !important}.sendMenuDropdown .mr0{margin:0 !important}.sendMenuDropdown span{display:block}.sendMenuDropdown .blueLink{white-space:normal;font-size:12px;font-weight:400;line-height:125%}.sendMenuDropdown .menuText{white-space:normal;font-size:12px;font-weight:400;color:#888;line-height:125%}.sendMenuDropdown .ant-dropdown-menu-item{text-align:left;color:#9a9a9a;text-transform:capitalize;display:flex;align-items:center;font-size:12px;font-weight:400;justify-content:flex-start;padding:6px 10px}.moreMenuDropdown{width:320px !important}.moreMenuDropdown .mr0{margin:0 !important}.moreMenuDropdown .ant-dropdown-menu-item{height:34px !important;min-height:15px;text-align:right;color:#9a9a9a;text-transform:capitalize;display:flex;align-items:center;font-size:12px;font-weight:400;justify-content:flex-start;padding:0 6px}.trainerProfileDialog-secondaryDetails__row{display:flex;flex-direction:row;align-items:center;width:100%;padding:5px 0}.trainerProfileDialog-secondaryDetails__col1{display:flex;flex:0 0 180px}.trainerProfileDialog-secondaryDetails__col2{flex:1 0 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.trainerProfileDialog-secondaryDetails__titleIcon{display:flex;align-items:center;justify-content:flex-start}p.trainerProfileDialog-secondaryDetails__col1{color:#919599}.trainerProfileDialog-locations{position:relative;min-height:0;width:100%;box-sizing:border-box;flex:1 0}.trainerProfileDialog-locations__list{height:100%;width:100%;overflow:auto}.trainerProfileDialog-locations__list p{font-size:14px;font-weight:400;color:#606366;min-width:200px}.trainerProfileDialog-locations__list .delete-location{opacity:.8}.trainerProfileDialog-locations__list .delete-location:hover{opacity:1}.trainerProfileDialog-locations__location{padding:4px 0}.trainerProfile .modalProfile__locationList{max-height:calc(100vh - 185px)}.clientForm__row{display:flex;align-items:center;width:100%;margin:0;padding-bottom:16px}.clientForm__row label{text-align:left;width:100%;display:inline-block}.clientForm__row .ant-radio-group label{color:#151112;text-align:left;width:auto;min-width:80px;display:inline-block}.clientForm__row .ant-form-item-label{width:140px;min-width:140px}.clientForm__row .ant-form-item-control-wrapper{width:100%}.clientForm__row--autoWidth .ant-form-item-control-wrapper{min-width:172px;width:auto}.clientAttachment .dropArea{position:absolute;top:0;left:0}.clientAttachment .ant-upload-list{display:none}.userTags .ant-checkbox-group-item{min-height:30px;display:flex;align-items:center;flex-shrink:0}.userTags .ant-checkbox-group-item:not(:last-child){border-bottom:1px solid #eee}.clientProfile__sales .trGrid{height:100% !important;border-top:1px solid #ebebeb}.clientProfile__sales h3.trHeading{font-size:18px;line-height:20px}.addClientDialog-dialog{height:100%;width:100%}.addClientDialog-dialog__targetTooltip .ant-tooltip-inner{color:#606366;background-color:#fff;border:1px solid #ccc}.addClientDialog-dialog__targetTooltip .ant-tooltip-arrow{border-right-color:#fff;border-right-width:6px}.addClientDialog-dialog__targetTooltip .ant-tooltip-arrow:before{position:absolute;content:" ";border:1px solid #ccc;border-width:0 0 1px 1px;width:6px;height:6px;top:-4px;left:1px;transform:rotateZ(45deg)}.addClientDialog-dialog .trainerPickerContainer{height:72px;margin:0;width:100%}.addClientDialog-dialog .nameInputContainer{width:100%;column-count:2;column-gap:9px}.addClientDialog-dialog .nameInput{height:60px}.addClientDialog-dialog .optionsContainer{width:100%}.addClientDialog-dialog .optionsContainer .optionName{width:40%;display:inline-block}.addClientDialog-dialog .optionsContainer .optionName p{color:#919599}.addClientDialog-dialog .optionsContainer .optionRadio .ant-radio-wrapper{color:rgba(0,0,0,.65)}.addClientDialog-dialog .optionsContainer .optionRadio .ant-radio-wrapper-checked{color:rgba(0,0,0,.65)}.addClientDialog-dialog .optionsContainer .optionRadio .ant-radio-inner:after{background-color:#06a9f6;border-color:#06a9f6}.addClientDialog-dialog .optionsContainer .optionRadio .ant-radio-disabled .ant-radio-inner:after{background-color:#ccc !important}.addClientDialog-dialog .optionsContainer .optionRadio .alignmentPadding{padding-right:20px}.addClientDialog-dialog .ant-radio-checked:after{animation-duration:0s !important;-webkit-transition:none !important;-moz-transition:none !important;-o-transition:none !important;transition:none !important}.addClientDialog-dialogTooltipContent{word-break:normal}.addClientDialog-dialogTooltipContent h2{padding-top:19px;padding-left:15px;font-size:14px;font-weight:400;color:#000}.addClientDialog-dialogTooltipContent p{padding-left:15px;padding-right:10px;color:#606366;font-size:13px}.ant-select-dropdown-menu{margin-block-start:0}.addTrainerDialog-dialog{height:100%;width:100%}.addTrainerDialog-dialog__targetTooltip .ant-tooltip-inner{color:#606366;background-color:#fff;border:1px solid #ccc}.addTrainerDialog-dialog__targetTooltip .ant-tooltip-arrow{border-right-color:#fff;border-right-width:6px}.addTrainerDialog-dialog__targetTooltip .ant-tooltip-arrow:before{position:absolute;content:" ";border:1px solid #ccc;border-width:0 0 1px 1px;width:6px;height:6px;top:-4px;left:1px;transform:rotateZ(45deg)}.addTrainerDialog-dialog .trainerPickerContainer{height:84px;margin:0;width:100%}.addTrainerDialog-dialog .nameInputContainer{width:100%;column-count:2;column-gap:9px}.addTrainerDialog-dialog .optionsContainer{width:100%}.addTrainerDialog-dialog .optionsContainer .optionName{width:40%;display:inline-block}.addTrainerDialog-dialog .optionsContainer .optionName p{color:#919599}.addTrainerDialog-dialog .optionsContainer .optionRadio{widows:60%}.addTrainerDialog-dialog .optionsContainer .optionRadio .alignmentPadding{padding-right:20px}.addTrainerDialog-dialog .optionsContainer .optionRadio .ant-radio-inner:after{width:10px;height:10px;left:3px;top:3px}.addTrainerDialog-dialog .ant-radio-checked:after{animation-duration:0s !important;-webkit-transition:none !important;-moz-transition:none !important;-o-transition:none !important;transition:none !important}.addTrainerDialog-dialog .ant-select-disabled .ant-select-selection{background:#fff}.addTrainerDialog-dialog .ant-select-selection--multiple{max-height:62px;overflow-y:auto}.batchResultDialog .failArrayDetailContainer{overflow-y:auto;max-height:240px;border:1px solid #ccc;margin-top:10px}.batchResultDialog .error_row{display:flex;flex-direction:row;justify-content:flex-start;padding:8px;border-bottom:1px solid #f4f4f4}.batchResultDialog .error_errorWrapper{padding-left:8px;flex-grow:1}.batchResultDialog .error_errorDetail{padding-top:4px;display:inline-block}.batchResultDialog .error_iconWrapper{position:relative;flex-shrink:0;height:50px}.batchResultDialog .error_icon{border-radius:50%;border:3px solid #ebebeb}.batchResultDialog .error_errorIcon{position:absolute;right:0;bottom:5px;width:20px;height:20px}.userSearch__container{border:1px solid}.userSearch__tagCon{display:flex;flex-direction:row;flex-wrap:wrap}.userSearch__tagConWithMargin{display:flex;flex-direction:row;flex-wrap:wrap;margin:5px;overflow:auto;max-height:110px}.userSearch__tag{margin-right:10px}.userSearch__input{border-radius:0;outline:none}.userSearch__input:focus{border-bottom:1px solid gray;border-radius:0;outline:none}.userSearch__inputNoBottomBorder{border:none;border-radius:0}.userSearch__inputNoBottomBorder:focus{border-bottom:1px solid gray;border-radius:0}.userSearch__resultCon{overflow:auto;background-color:#fff;position:relative;z-index:10;max-height:280px}.userSearch__moreTagCon{display:flex;flex-direction:row;background-color:#a9a9a9;border-radius:15px;height:30px;justify-content:center;align-items:center;padding:0 8px 0 8px;margin:0 0 3px 0}.userSearch__moreTagNameSpan{white-space:nowrap}.userSearch__moreTagNameCon{flex-direction:row}.userSearch__moreTagConParent{cursor:pointer}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.reactModelFindLibrary{height:100%;width:100%;top:initial;left:initial;transform:initial}.reactModelFindLibrary:focus{outline:none}.reactModelFindLibrary .findLibrary{position:relative;width:100%;height:100%;background:#fff;outline:none}.reactModal-overlay.overlay-hidden{background:rgba(0,0,0,0)}.findLibraryDialog{width:100%;height:100%;overflow:hidden}.findLibraryDialog-header{padding-bottom:20px;border-bottom:1px solid #f1f1f1}.findLibraryDialog-header.no-border{border:none}.findLibraryDialog-header .back-button-wrap{padding-top:28px}.findLibraryDialog-header .title{float:left;font-size:24px;line-height:29px;padding-top:28px}.findLibraryDialog-header .title span{color:#919599;line-height:29px}.findLibraryDialog-header .title span.selected{color:#4a4a4a}.findLibraryDialog-header .title span.clickable:hover{cursor:pointer;color:#229ed4}.findLibraryDialog-header .searchBar-wrap{display:inline-block;float:right;padding-left:36px;padding-top:30px;width:281px}.findLibraryDialog-content-wrap{height:calc(100% - 79px);padding-top:20px;box-sizing:border-box}.findLibraryDialog-non-scrollable-content{position:relative;width:100%;height:100%}.findLibraryDialog .flex-list-wrap{display:flex;flex-wrap:wrap}.findLibraryDialog-list .libraryItem{float:left;margin-right:1%;margin-bottom:16px}.findLibraryDialog-list .subHeader{display:flex}.findLibraryDialog-list .subHeader .statusIcon{margin-top:0}.findLibraryDialog-list .subHeader .importButtonWrap{margin-right:16px}.findLibraryDialog-list .findProgramDetails .flex{display:flex;flex-direction:row}.findLibraryDialog-list .findProgramDetails .programInfo{padding-bottom:24px;font-weight:400}.findLibraryDialog-list .findProgramDetails .programInfo .program-image-wrap{position:relative;width:262px;height:142px;flex:0;min-width:262px;background-color:#ebebeb;background-image:url("/app/react/assets/images/libraryItem/program-white.png");background-position:center center;background-repeat:no-repeat;border-radius:4px}.findLibraryDialog-list .findProgramDetails .programInfo .program-image-wrap .program-image{width:100%;height:100%;background-size:cover}.findLibraryDialog-list .findProgramDetails .programInfo .program-description-wrap{display:flex;width:calc(100% - 296px);padding-left:32px;flex-direction:column;flex:1}.findLibraryDialog-list .findProgramDetails .programInfo .program-description-wrap .titleBlock{width:calc(100% - 166px)}.findLibraryDialog-list .findProgramDetails .programInfo .program-description-wrap .title{line-height:32px;font-size:22px;color:#4c4c4c}.findLibraryDialog-list .findProgramDetails .programInfo .program-description-wrap .duration{line-height:17px;font-size:14px;color:#ffa301;margin-bottom:13px;text-transform:capitalize}.findLibraryDialog-list .findProgramDetails .programInfo .program-description-wrap .description{height:80px;font-size:14px;color:#797c80;overflow-y:auto;padding-right:32px;margin-top:10px}.findLibraryDialog-list .findProgramDetails .programInfo .importButtonWrap{margin-top:4px;margin-right:32px}.findLibraryDialog-list .findProgramDetails .programDetails{height:calc(100% - 176px)}.findLibraryDialog-list .findProgramDetails .programDetails .program-sub-menu{width:264px;flex-shrink:0}.findLibraryDialog-list .findProgramDetails .programDetails .training-plan-wrap{position:relative;border-top:1px solid #ebebeb;border-left:1px solid #ebebeb;width:calc(100% - 264px);padding:32px 32px 20px 32px;overflow-y:auto}.findLibraryDialog .scroll-view{padding-bottom:32px;box-sizing:border-box;position:relative;width:100%;height:100%;overflow-y:auto}.findLibraryDialog .exerciseDescriptions h4{font-size:18px;color:#000;font-weight:normal}.findLibraryDialog .findProgramDetails .button-menu .baseGrid__select_button_menu{right:0}.findLibraryDialog .findLibraryDialog-content-wrap .importButtonWrap .button-menu .baseGrid__select_button_menu{right:0}.findLibraryDialog .workoutDetails-exerciseList{border-right:1px solid #eee}.libraryItem{width:220px;border-radius:4px;background-color:#fff;border:solid 1px #e8e8e8;overflow:hidden}.libraryItem .line-clamp-2{display:block;position:relative;height:2.4em;line-height:1.2em;overflow:hidden;background-color:#fff}.libraryItem .line-clamp-2:after{content:"";text-align:right;position:absolute;bottom:0;right:0;width:30%;height:1.2em;background:linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%)}@supports(-webkit-line-clamp: 2){.libraryItem .line-clamp-2{display:-webkit-box;-webkit-line-clamp:2;max-height:2.4em;height:auto;-webkit-box-orient:vertical}.libraryItem .line-clamp-2:after{display:none}}.libraryItem .line-clamp-3{display:block;position:relative;height:3.6em;line-height:1.2em;overflow:hidden;background-color:#fff}.libraryItem .line-clamp-3:after{content:"";text-align:right;position:absolute;bottom:0;right:0;width:30%;height:1.2em;background:linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%)}@supports(-webkit-line-clamp: 3){.libraryItem .line-clamp-3{display:-webkit-box;-webkit-line-clamp:3;max-height:3.6em;height:auto;-webkit-box-orient:vertical}.libraryItem .line-clamp-3:after{display:none}}.libraryItem:hover{border:solid 1px #06a9f6}.libraryItem:hover .libraryItem-title{color:#2bb5f7}.libraryItem:hover .libraryItem-img:before{content:"";position:absolute;width:100%;height:100%;top:0;left:0;background:rgba(255,255,255,.15)}.libraryItem-img{position:relative;cursor:pointer;height:120px;background-color:#ebebeb;overflow:hidden;background-image:url("/app/react/assets/images/libraryItem/program-white.png");background-position:center center;background-repeat:no-repeat}.libraryItem.libraryItem_workout .libraryItem-img{background-image:url("/app/react/assets/images/libraryItem/workout-white.png")}.libraryItem.libraryItem_program .libraryItem-img{background-image:url("/app/react/assets/images/libraryItem/program-white.png")}.libraryItem-img-wrap{width:100%;height:100%;background-size:cover}.libraryItem-content{padding:12px}.libraryItem-title{cursor:pointer;height:34px;font-size:14px;color:#06a9f6;overflow:hidden;margin-bottom:8px}.libraryItem-description{height:50px;overflow:hidden;font-size:11px;color:#919599;margin-bottom:16px}.btn{box-sizing:border-box;cursor:pointer;display:flex;justify-content:center;align-items:center;height:inherit;line-height:1em;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn>span{text-transform:uppercase}.btn.btn--small{height:24px;border-radius:3px;padding:3px 6px;font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:12px;font-weight:100;line-height:16px}.btn.btn--small.icon--only{border-radius:3px;padding:3px 6px;min-width:24px}.btn.btn--small.icon--only .btn--expandIcon{margin-left:6px}.btn.btn--small .icon{height:14px;width:14px}.btn.btn--small .icon+span,.btn.btn--small .icon+p,.btn.btn--small .icon+small{padding-left:6px}.btn.btn--small .icon--secondary{margin-left:6px}.btn.btn--medium{height:30px;border-radius:4px;padding:5px 10px;font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:14px;font-weight:100;line-height:18px}.btn.btn--medium.icon--only{border-radius:4px;padding:5px 10px;min-width:30px}.btn.btn--medium.icon--only .btn--expandIcon{margin-left:10px}.btn.btn--medium .icon{height:16px;width:16px}.btn.btn--medium .icon+span,.btn.btn--medium .icon+p,.btn.btn--medium .icon+small{padding-left:5px}.btn.btn--medium .icon--secondary{margin-left:5px}.btn.btn--large{height:40px;border-radius:6px;padding:9px 18px;font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:18px;font-weight:100;line-height:20px}.btn.btn--large.icon--only{border-radius:6px;padding:9px 18px;min-width:40px}.btn.btn--large.icon--only .btn--expandIcon{margin-left:18px}.btn.btn--large .icon{height:21px;width:21px}.btn.btn--large .icon+span,.btn.btn--large .icon+p,.btn.btn--large .icon+small{padding-left:9px}.btn.btn--large .icon--secondary{margin-left:9px}.btn.btn--xLarge{height:50px;border-radius:8px;padding:12px 24px;font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:22px;font-weight:100;line-height:24px}.btn.btn--xLarge.icon--only{border-radius:8px;padding:12px 24px;min-width:50px}.btn.btn--xLarge.icon--only .btn--expandIcon{margin-left:24px}.btn.btn--xLarge .icon{height:25px;width:25px}.btn.btn--xLarge .icon+span,.btn.btn--xLarge .icon+p,.btn.btn--xLarge .icon+small{padding-left:12px}.btn.btn--xLarge .icon--secondary{margin-left:12px}.btn--group{display:flex;flex-direction:row;align-items:center}.btn--group .btn:not(:last-child).mr4,.btn--group .btn:not(:last-child).mr8,.btn--group .btn:not(:last-child).mr16{margin-right:0 !important}.btn--group .btn.btn--small,.btn--group .btn.btn--medium,.btn--group .btn.btn--large,.btn--group .btn.btn--xLarge{border-radius:0}.btn--group .btn.btn--small.icon--only .btn--expandIcon,.btn--group .btn.btn--medium.icon--only .btn--expandIcon,.btn--group .btn.btn--large.icon--only .btn--expandIcon,.btn--group .btn.btn--xLarge.icon--only .btn--expandIcon{margin-left:0}.btn--group .btn:first-child.btn--small{border-bottom-left-radius:3px;border-top-left-radius:3px}.btn--group .btn:first-child.btn--medium{border-bottom-left-radius:4px;border-top-left-radius:4px}.btn--group .btn:first-child.btn--large{border-bottom-left-radius:6px;border-top-left-radius:6px}.btn--group .btn:first-child.btn--xLarge{border-bottom-left-radius:8px;border-top-left-radius:8px}.btn--group .btn:last-child.btn--small{border-bottom-right-radius:3px;border-top-right-radius:3px}.btn--group .btn:last-child.btn--medium{border-bottom-right-radius:4px;border-top-right-radius:4px}.btn--group .btn:last-child.btn--large{border-bottom-right-radius:6px;border-top-right-radius:6px}.btn--group .btn:last-child.btn--xLarge{border-bottom-right-radius:8px;border-top-right-radius:8px}.btn--group .btn:not(:first-child),.btn--group .btn:not(:first-child):hover{margin-left:-1px}.btn--group .btn.btn--blue:not(:first-child),.btn--group .btn--primary:not(:first-child){border-left-color:#1d86b4}.btn--group .btn.btn--red:not(:first-child),.btn--group .btn--danger:not(:first-child),.btn--group .btn--cancel:not(:first-child){border-left-color:#ff2039}.btn--group .btn.btn--green:not(:first-child),.btn--group .btn--confirmation:not(:first-child){border-left-color:#4bc65a}.btn.btn--blue,.btn--primary{background:#229ed4;color:#fff;border:1px solid #229ed4}.btn.btn--blue:hover,.btn--primary:hover{background:#1d86b4;border:1px solid #1d86b4;transition:all .2s ease}.btn.btn--blue:hover .icon,.btn--primary:hover .icon{filter:brightness(115%)}.btn.btn--blue:active,.btn--primary:active{background:#1d86b4;border:1px solid #1d86b4}.btn.btn--blue:active .icon,.btn--primary:active .icon{filter:brightness(85%)}.btn.btn--blue:focus,.btn--primary:focus{border:1px solid #8dd0ed}.btn.btn--blue:disabled,.btn.btn--blue .disabled,.btn--primary:disabled,.btn--primary .disabled{opacity:.5}.btn.btn--white,.btn--secondary{background:#fff;color:#606366;border:1px solid #cfcfcf}.btn.btn--white:hover,.btn--secondary:hover{background:#f8f8f8;border:1px solid #f8f8f8;transition:all .2s ease}.btn.btn--white:hover .icon,.btn--secondary:hover .icon{filter:brightness(115%)}.btn.btn--white:active,.btn--secondary:active{background:#f7f7f7;border:1px solid #b0b0b0}.btn.btn--white:active .icon,.btn--secondary:active .icon{filter:brightness(85%)}.btn.btn--white:focus,.btn--secondary:focus{border:1px solid #7c7c7c}.btn.btn--white:disabled,.btn.btn--white .disabled,.btn--secondary:disabled,.btn--secondary .disabled{opacity:.5}.btn.btn--red,.btn--danger,.btn--cancel{background:#ff5366;color:#fff;border:1px solid #ff5366}.btn.btn--red:hover,.btn--danger:hover,.btn--cancel:hover{background:#ff2039;border:1px solid #ff2039;transition:all .2s ease}.btn.btn--red:hover .icon,.btn--danger:hover .icon,.btn--cancel:hover .icon{filter:brightness(115%)}.btn.btn--red:active,.btn--danger:active,.btn--cancel:active{background:#ff2039;border:1px solid #ff2039}.btn.btn--red:active .icon,.btn--danger:active .icon,.btn--cancel:active .icon{filter:brightness(85%)}.btn.btn--red:focus,.btn--danger:focus,.btn--cancel:focus{border:1px solid #ffa9b3}.btn.btn--red:disabled,.btn.btn--red .disabled,.btn--danger:disabled,.btn--danger .disabled,.btn--cancel:disabled,.btn--cancel .disabled{opacity:.5}.btn.btn--green,.btn--confirmation{background:#70d27c;color:#fff;border:1px solid #70d27c}.btn.btn--green:hover,.btn--confirmation:hover{background:#4bc65a;border:1px solid #4bc65a;transition:all .2s ease}.btn.btn--green:hover .icon,.btn--confirmation:hover .icon{filter:brightness(115%)}.btn.btn--green:active,.btn--confirmation:active{background:#4bc65a;border:1px solid #4bc65a}.btn.btn--green:active .icon,.btn--confirmation:active .icon{filter:brightness(85%)}.btn.btn--green:focus,.btn--confirmation:focus{border:1px solid #b8e9be}.btn.btn--green:disabled,.btn.btn--green .disabled,.btn--confirmation:disabled,.btn--confirmation .disabled{opacity:.5}.btn.btn--orange{background:#ffcb10;color:#fff;border:1px solid #ffcb10}.btn.btn--orange:hover{background:#e6b400;border:1px solid #e6b400;transition:all .2s ease}.btn.btn--orange:hover .icon{filter:brightness(115%)}.btn.btn--orange:active{background:#e6b400;border:1px solid #e6b400}.btn.btn--orange:active .icon{filter:brightness(85%)}.btn.btn--orange:focus{border:1px solid #ffe588}.btn.btn--orange:disabled,.btn.btn--orange .disabled{opacity:.5}.btn.dropdown-active .icon use,div.dropdown-active .icon use{fill:#fff !important}.btn.btn--transparent{background:rgba(0,0,0,0)}.button-menu{position:relative;display:inline-block}.button-menu .baseGrid__select_button_menu{min-width:95px;width:auto}.button-menu .baseGrid__select_button_menu.hidden{display:none}.button-menu .sub-nav{min-width:95px;width:auto;border-radius:0;box-shadow:none;border:1px solid #d8d8d8}.button-menu .sub-nav .icon{width:18px;height:18px;margin-right:8px;background-size:cover;background-repeat:no-repeat}.button-menu .sub-nav .icon-shared{background-image:url("/app/images/icons/collapsableSections/cs-shared.png")}.button-menu .sub-nav .icon-mine{background-image:url("/app/images/icons/collapsableSections/cs-mine.png")}.button-menu .sub-nav li:hover .icon-shared{background-image:url("/app/images/icons/collapsableSections/cs-shared-blue.png")}.button-menu .sub-nav li:hover .icon-mine{background-image:url("/app/images/icons/collapsableSections/cs-mine-blue.png")}.uppercase{text-transform:uppercase}.react-btn.icon-white-arrow-select{position:relative;padding:4px 28px 4px 5px !important}.react-btn.icon-white-arrow-select:before{content:"";position:absolute;right:5px;top:50%;border:4px solid rgba(0,0,0,0);border-top:6px solid #fff;-webkit-transform:translate(0, 50%);transform:translate(0, -3px)}.react-btn.icon-white-arrow-select.gtDtnSmall:hover{padding:4px 28px 4px 5px !important}.react-btn.icon-white-arrow-select.gtBtnMed{line-height:16px;padding-right:32px !important}.react-btn.icon-white-arrow-select.gtBtnMed:hover{padding-right:32px !important}.react-btn.icon-white-arrow-select.gtBtnMed:before{content:"";position:absolute;right:8px;top:50%;border:4px solid rgba(0,0,0,0);border-top:6px solid #fff;-webkit-transform:translate(0, 50%);transform:translate(0, -3px)}.react-btn.gtBtnMed{line-height:16px;padding:4px 13px 3px 13px !important}.gtLoader.react-bottom-alert{left:50%;transform:translateX(-50%);position:fixed;bottom:-80px;z-index:1020;text-align:center;color:#fff;margin-bottom:20px;transition:bottom 1s ease;border-radius:2px;min-width:550px}.gtLoader.react-bottom-alert .inner{display:inline-block;*zoom:1;*display:inline;color:#fff;font-size:13px;line-height:18px;padding:8px 12px;width:auto;height:18px;white-space:nowrap}.gtLoader.react-bottom-alert .inner .text{display:inline-block;padding-right:40px}.gtLoader.react-bottom-alert .inner .hide{display:inline-block;position:absolute;top:0;right:-20px;cursor:pointer;padding:8px 12px 8px 30px;border-radius:2px}.gtLoader.show{bottom:0}.gtLoader.gtLoader-check{background-color:#97ca55 !important}.gtLoader.gtLoader-check .hide{background-color:#97ca55}.gtLoader.gtLoader-error{background-color:#ff5366 !important}.gtLoader.gtLoader-warning{background-color:#ffb400 !important}.list-sub-menu{width:100%}.list-sub-menu ul{padding:0;margin:0;list-style-type:none;width:100%;box-sizing:border-box}.list-sub-menu ul li{border-bottom:1px solid #ebebeb;text-transform:capitalize;background-color:#fff;border-left:5px solid #fff}.list-sub-menu ul li.active{color:#444;background-color:rgba(6,178,246,.15);border-left:5px solid #06b2f6}.list-sub-menu ul li:first-of-type{border-top:none}.list-sub-menu ul li>div{display:flex;height:100%;padding:13px 0 13px 8px;color:#444;width:100%;box-sizing:border-box}.list-sub-menu ul li .name{font-size:14px;font-weight:400;line-height:20px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.list-sub-menu ul li .text{font-size:12px;font-weight:400;line-height:14px;color:#919599;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.onboard-radio>div{border:1px solid #dae0e6;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;margin-bottom:10px;padding:10px 20px 10px 20px;vertical-align:top;white-space:normal}.onboard-radio>div.selected{border-color:#06a9f6}.onboard-radio.ant-radio-wrapper{position:relative;width:100%}.onboard-radio span+span{display:inline-block;vertical-align:middle;padding-left:20px}.onboard-radio.ant-radio{vertical-align:middle}.onboard-radio.title{display:block;line-height:17px;font-size:14px;color:#06b2f6;margin-bottom:4px}.onboard-radio .text{display:block;font-size:12px;line-height:14px;color:#9a9a9a;white-space:normal}.onboard-radio input[type=radio]{width:18px;height:18px;margin:0}.onboard-radio .ant-radio-inner{position:initial}.onboard-radio .ant-radio-inner:after{left:4px;top:4px}.onboard-checkbox{border:1px solid #dae0e6;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;margin-bottom:10px;padding:10px 14px}.onboard-checkbox .ant-checkbox+span{padding-left:24px;padding-right:8px;line-height:20px;max-height:40px;overflow:hidden}.onboard-checkbox.checked{border-color:#06a9f6}.onboard-checkbox .ant-checkbox-wrapper{width:100%;display:flex}.onboard-checkbox .ant-checkbox-wrapper .ant-checkbox{margin-top:3px;height:16px}.btnDropdown--active{filter:brightness(0.8);border-top-right-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:0 !important;border-bottom-right-radius:0 !important}.dsV2.btn{text-transform:lowercase}.dsV2.btn:first-letter,.dsV2.btn:first-line{text-transform:capitalize}.dsV2.btn>span:first-letter,.dsV2.btn>span:first-line{text-transform:capitalize}.dsV2.btn--small{border-radius:4px;padding:4px 8px;font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;line-height:24px}.dsV2.btn--medium{border-radius:6px;padding:6px 12px;font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;line-height:24px}.dsV2.btn--large{border-radius:6px;padding:8px 16px;font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:24px}.dsV2.btn--xLarge{border-radius:6px;padding:8px 16px;font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:24px}.dsV2.btn--orange{color:#151112}.svg{shape-rendering:geometricPrecision;transform:rotate(0.01deg)}.svg.clickable{cursor:pointer}.svg.clickable:hover{filter:invert(74%) sepia(54%) saturate(5160%) hue-rotate(165deg) brightness(88%) contrast(88%) !important}.svg.clickable:active{opacity:.75}.clickable:hover .svg.clickable{filter:invert(74%) sepia(54%) saturate(5160%) hue-rotate(165deg) brightness(88%) contrast(88%) !important}.dropdown-active .svg.clickable:hover{filter:initial !important}.ant-btn>i,.ant-btn>span{display:flex;justify-content:center;align-items:center;text-transform:capitalize}.trainingPlanTitle{line-height:20px;font-size:14px;font-weight:normal;color:#4c4c4c}.training-workoutItem{margin-top:24px}.training-workoutItem .workout-image-wrap{overflow:hidden;width:124px;height:88px;flex-shrink:0}.training-workoutItem .workout-image{position:relative;background-size:cover;background-position:center;color:#4a4a4a;font-size:12px;font-weight:400;width:100%;height:100%;cursor:pointer}.training-workoutItem .workout-image:before{position:absolute;content:"View workout";text-align:center;height:28px;width:100px;padding:5px 11px 5px 11px;top:65%;left:50%;display:block;z-index:99;box-sizing:border-box;color:#fff;background-color:rgba(0,0,0,.6);border:1px solid #fff;border-radius:25px;transform:translate(-50%, -50%)}.training-workoutItem .info-wrap{margin-top:8px;padding-left:16px;font-weight:normal;width:100%;overflow:hidden}.training-workoutItem .title{text-transform:uppercase;line-height:20px;font-size:16px;letter-spacing:.3px;color:#06b2f6;cursor:pointer}.training-workoutItem .count{color:#4c4c4c;font-size:12px;line-height:14px}.training-workoutItem .description{color:#9a9a9a;font-size:12px;line-height:14px;letter-spacing:.2px;max-height:56px;overflow:hidden}.component__clientPicker .ant-select-selection__choice__content{height:100%;width:100%}.component__clientPicker .ant-select-selection--multiple{max-height:62px;overflow-y:auto}.component__clientPicker.clientPickerError .ant-select .ant-select-selection{border-color:#ff5366}.component__clientPicker .ant-select-search__field{box-sizing:content-box}.clientPicker-item{height:100%;width:100%}.clientPicker-item__icon{border-radius:50%;border:1px solid #dbdbdb;margin-right:4px;background-color:#f7f7f7}.btn{box-sizing:border-box;cursor:pointer;display:flex;justify-content:center;align-items:center;height:inherit;line-height:1em;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn>span{text-transform:uppercase}.btn.btn--small{height:24px;border-radius:3px;padding:3px 6px;font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:12px;font-weight:100;line-height:16px}.btn.btn--small.icon--only{border-radius:3px;padding:3px 6px;min-width:24px}.btn.btn--small.icon--only .btn--expandIcon{margin-left:6px}.btn.btn--small .icon{height:14px;width:14px}.btn.btn--small .icon+span,.btn.btn--small .icon+p,.btn.btn--small .icon+small{padding-left:6px}.btn.btn--small .icon--secondary{margin-left:6px}.btn.btn--medium{height:30px;border-radius:4px;padding:5px 10px;font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:14px;font-weight:100;line-height:18px}.btn.btn--medium.icon--only{border-radius:4px;padding:5px 10px;min-width:30px}.btn.btn--medium.icon--only .btn--expandIcon{margin-left:10px}.btn.btn--medium .icon{height:16px;width:16px}.btn.btn--medium .icon+span,.btn.btn--medium .icon+p,.btn.btn--medium .icon+small{padding-left:5px}.btn.btn--medium .icon--secondary{margin-left:5px}.btn.btn--large{height:40px;border-radius:6px;padding:9px 18px;font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:18px;font-weight:100;line-height:20px}.btn.btn--large.icon--only{border-radius:6px;padding:9px 18px;min-width:40px}.btn.btn--large.icon--only .btn--expandIcon{margin-left:18px}.btn.btn--large .icon{height:21px;width:21px}.btn.btn--large .icon+span,.btn.btn--large .icon+p,.btn.btn--large .icon+small{padding-left:9px}.btn.btn--large .icon--secondary{margin-left:9px}.btn.btn--xLarge{height:50px;border-radius:8px;padding:12px 24px;font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:22px;font-weight:100;line-height:24px}.btn.btn--xLarge.icon--only{border-radius:8px;padding:12px 24px;min-width:50px}.btn.btn--xLarge.icon--only .btn--expandIcon{margin-left:24px}.btn.btn--xLarge .icon{height:25px;width:25px}.btn.btn--xLarge .icon+span,.btn.btn--xLarge .icon+p,.btn.btn--xLarge .icon+small{padding-left:12px}.btn.btn--xLarge .icon--secondary{margin-left:12px}.btn--group{display:flex;flex-direction:row;align-items:center}.btn--group .btn:not(:last-child).mr4,.btn--group .btn:not(:last-child).mr8,.btn--group .btn:not(:last-child).mr16{margin-right:0 !important}.btn--group .btn.btn--small,.btn--group .btn.btn--medium,.btn--group .btn.btn--large,.btn--group .btn.btn--xLarge{border-radius:0}.btn--group .btn.btn--small.icon--only .btn--expandIcon,.btn--group .btn.btn--medium.icon--only .btn--expandIcon,.btn--group .btn.btn--large.icon--only .btn--expandIcon,.btn--group .btn.btn--xLarge.icon--only .btn--expandIcon{margin-left:0}.btn--group .btn:first-child.btn--small{border-bottom-left-radius:3px;border-top-left-radius:3px}.btn--group .btn:first-child.btn--medium{border-bottom-left-radius:4px;border-top-left-radius:4px}.btn--group .btn:first-child.btn--large{border-bottom-left-radius:6px;border-top-left-radius:6px}.btn--group .btn:first-child.btn--xLarge{border-bottom-left-radius:8px;border-top-left-radius:8px}.btn--group .btn:last-child.btn--small{border-bottom-right-radius:3px;border-top-right-radius:3px}.btn--group .btn:last-child.btn--medium{border-bottom-right-radius:4px;border-top-right-radius:4px}.btn--group .btn:last-child.btn--large{border-bottom-right-radius:6px;border-top-right-radius:6px}.btn--group .btn:last-child.btn--xLarge{border-bottom-right-radius:8px;border-top-right-radius:8px}.btn--group .btn:not(:first-child),.btn--group .btn:not(:first-child):hover{margin-left:-1px}.btn--group .btn.btn--blue:not(:first-child),.btn--group .btn--primary:not(:first-child){border-left-color:#1d86b4}.btn--group .btn.btn--red:not(:first-child),.btn--group .btn--danger:not(:first-child),.btn--group .btn--cancel:not(:first-child){border-left-color:#ff2039}.btn--group .btn.btn--green:not(:first-child),.btn--group .btn--confirmation:not(:first-child){border-left-color:#4bc65a}.btn.btn--blue,.btn--primary{background:#229ed4;color:#fff;border:1px solid #229ed4}.btn.btn--blue:hover,.btn--primary:hover{background:#1d86b4;border:1px solid #1d86b4;transition:all .2s ease}.btn.btn--blue:hover .icon,.btn--primary:hover .icon{filter:brightness(115%)}.btn.btn--blue:active,.btn--primary:active{background:#1d86b4;border:1px solid #1d86b4}.btn.btn--blue:active .icon,.btn--primary:active .icon{filter:brightness(85%)}.btn.btn--blue:focus,.btn--primary:focus{border:1px solid #8dd0ed}.btn.btn--blue:disabled,.btn.btn--blue .disabled,.btn--primary:disabled,.btn--primary .disabled{opacity:.5}.btn.btn--white,.btn--secondary{background:#fff;color:#606366;border:1px solid #cfcfcf}.btn.btn--white:hover,.btn--secondary:hover{background:#f8f8f8;border:1px solid #f8f8f8;transition:all .2s ease}.btn.btn--white:hover .icon,.btn--secondary:hover .icon{filter:brightness(115%)}.btn.btn--white:active,.btn--secondary:active{background:#f7f7f7;border:1px solid #b0b0b0}.btn.btn--white:active .icon,.btn--secondary:active .icon{filter:brightness(85%)}.btn.btn--white:focus,.btn--secondary:focus{border:1px solid #7c7c7c}.btn.btn--white:disabled,.btn.btn--white .disabled,.btn--secondary:disabled,.btn--secondary .disabled{opacity:.5}.btn.btn--red,.btn--danger,.btn--cancel{background:#ff5366;color:#fff;border:1px solid #ff5366}.btn.btn--red:hover,.btn--danger:hover,.btn--cancel:hover{background:#ff2039;border:1px solid #ff2039;transition:all .2s ease}.btn.btn--red:hover .icon,.btn--danger:hover .icon,.btn--cancel:hover .icon{filter:brightness(115%)}.btn.btn--red:active,.btn--danger:active,.btn--cancel:active{background:#ff2039;border:1px solid #ff2039}.btn.btn--red:active .icon,.btn--danger:active .icon,.btn--cancel:active .icon{filter:brightness(85%)}.btn.btn--red:focus,.btn--danger:focus,.btn--cancel:focus{border:1px solid #ffa9b3}.btn.btn--red:disabled,.btn.btn--red .disabled,.btn--danger:disabled,.btn--danger .disabled,.btn--cancel:disabled,.btn--cancel .disabled{opacity:.5}.btn.btn--green,.btn--confirmation{background:#70d27c;color:#fff;border:1px solid #70d27c}.btn.btn--green:hover,.btn--confirmation:hover{background:#4bc65a;border:1px solid #4bc65a;transition:all .2s ease}.btn.btn--green:hover .icon,.btn--confirmation:hover .icon{filter:brightness(115%)}.btn.btn--green:active,.btn--confirmation:active{background:#4bc65a;border:1px solid #4bc65a}.btn.btn--green:active .icon,.btn--confirmation:active .icon{filter:brightness(85%)}.btn.btn--green:focus,.btn--confirmation:focus{border:1px solid #b8e9be}.btn.btn--green:disabled,.btn.btn--green .disabled,.btn--confirmation:disabled,.btn--confirmation .disabled{opacity:.5}.btn.btn--orange{background:#ffcb10;color:#fff;border:1px solid #ffcb10}.btn.btn--orange:hover{background:#e6b400;border:1px solid #e6b400;transition:all .2s ease}.btn.btn--orange:hover .icon{filter:brightness(115%)}.btn.btn--orange:active{background:#e6b400;border:1px solid #e6b400}.btn.btn--orange:active .icon{filter:brightness(85%)}.btn.btn--orange:focus{border:1px solid #ffe588}.btn.btn--orange:disabled,.btn.btn--orange .disabled{opacity:.5}.btn.dropdown-active .icon use,div.dropdown-active .icon use{fill:#fff !important}.btn.btn--transparent{background:rgba(0,0,0,0)}.button-menu{position:relative;display:inline-block}.button-menu .baseGrid__select_button_menu{min-width:95px;width:auto}.button-menu .baseGrid__select_button_menu.hidden{display:none}.button-menu .sub-nav{min-width:95px;width:auto;border-radius:0;box-shadow:none;border:1px solid #d8d8d8}.button-menu .sub-nav .icon{width:18px;height:18px;margin-right:8px;background-size:cover;background-repeat:no-repeat}.button-menu .sub-nav .icon-shared{background-image:url("/app/images/icons/collapsableSections/cs-shared.png")}.button-menu .sub-nav .icon-mine{background-image:url("/app/images/icons/collapsableSections/cs-mine.png")}.button-menu .sub-nav li:hover .icon-shared{background-image:url("/app/images/icons/collapsableSections/cs-shared-blue.png")}.button-menu .sub-nav li:hover .icon-mine{background-image:url("/app/images/icons/collapsableSections/cs-mine-blue.png")}.uppercase{text-transform:uppercase}.react-btn.icon-white-arrow-select{position:relative;padding:4px 28px 4px 5px !important}.react-btn.icon-white-arrow-select:before{content:"";position:absolute;right:5px;top:50%;border:4px solid rgba(0,0,0,0);border-top:6px solid #fff;-webkit-transform:translate(0, 50%);transform:translate(0, -3px)}.react-btn.icon-white-arrow-select.gtDtnSmall:hover{padding:4px 28px 4px 5px !important}.react-btn.icon-white-arrow-select.gtBtnMed{line-height:16px;padding-right:32px !important}.react-btn.icon-white-arrow-select.gtBtnMed:hover{padding-right:32px !important}.react-btn.icon-white-arrow-select.gtBtnMed:before{content:"";position:absolute;right:8px;top:50%;border:4px solid rgba(0,0,0,0);border-top:6px solid #fff;-webkit-transform:translate(0, 50%);transform:translate(0, -3px)}.react-btn.gtBtnMed{line-height:16px;padding:4px 13px 3px 13px !important}.gtLoader.react-bottom-alert{left:50%;transform:translateX(-50%);position:fixed;bottom:-80px;z-index:1020;text-align:center;color:#fff;margin-bottom:20px;transition:bottom 1s ease;border-radius:2px;min-width:550px}.gtLoader.react-bottom-alert .inner{display:inline-block;*zoom:1;*display:inline;color:#fff;font-size:13px;line-height:18px;padding:8px 12px;width:auto;height:18px;white-space:nowrap}.gtLoader.react-bottom-alert .inner .text{display:inline-block;padding-right:40px}.gtLoader.react-bottom-alert .inner .hide{display:inline-block;position:absolute;top:0;right:-20px;cursor:pointer;padding:8px 12px 8px 30px;border-radius:2px}.gtLoader.show{bottom:0}.gtLoader.gtLoader-check{background-color:#97ca55 !important}.gtLoader.gtLoader-check .hide{background-color:#97ca55}.gtLoader.gtLoader-error{background-color:#ff5366 !important}.gtLoader.gtLoader-warning{background-color:#ffb400 !important}.list-sub-menu{width:100%}.list-sub-menu ul{padding:0;margin:0;list-style-type:none;width:100%;box-sizing:border-box}.list-sub-menu ul li{border-bottom:1px solid #ebebeb;text-transform:capitalize;background-color:#fff;border-left:5px solid #fff}.list-sub-menu ul li.active{color:#444;background-color:rgba(6,178,246,.15);border-left:5px solid #06b2f6}.list-sub-menu ul li:first-of-type{border-top:none}.list-sub-menu ul li>div{display:flex;height:100%;padding:13px 0 13px 8px;color:#444;width:100%;box-sizing:border-box}.list-sub-menu ul li .name{font-size:14px;font-weight:400;line-height:20px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.list-sub-menu ul li .text{font-size:12px;font-weight:400;line-height:14px;color:#919599;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.onboard-radio>div{border:1px solid #dae0e6;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;margin-bottom:10px;padding:10px 20px 10px 20px;vertical-align:top;white-space:normal}.onboard-radio>div.selected{border-color:#06a9f6}.onboard-radio.ant-radio-wrapper{position:relative;width:100%}.onboard-radio span+span{display:inline-block;vertical-align:middle;padding-left:20px}.onboard-radio.ant-radio{vertical-align:middle}.onboard-radio.title{display:block;line-height:17px;font-size:14px;color:#06b2f6;margin-bottom:4px}.onboard-radio .text{display:block;font-size:12px;line-height:14px;color:#9a9a9a;white-space:normal}.onboard-radio input[type=radio]{width:18px;height:18px;margin:0}.onboard-radio .ant-radio-inner{position:initial}.onboard-radio .ant-radio-inner:after{left:4px;top:4px}.onboard-checkbox{border:1px solid #dae0e6;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;margin-bottom:10px;padding:10px 14px}.onboard-checkbox .ant-checkbox+span{padding-left:24px;padding-right:8px;line-height:20px;max-height:40px;overflow:hidden}.onboard-checkbox.checked{border-color:#06a9f6}.onboard-checkbox .ant-checkbox-wrapper{width:100%;display:flex}.onboard-checkbox .ant-checkbox-wrapper .ant-checkbox{margin-top:3px;height:16px}.btnDropdown--active{filter:brightness(0.8);border-top-right-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:0 !important;border-bottom-right-radius:0 !important}.dsV2.btn{text-transform:lowercase}.dsV2.btn:first-letter,.dsV2.btn:first-line{text-transform:capitalize}.dsV2.btn>span:first-letter,.dsV2.btn>span:first-line{text-transform:capitalize}.dsV2.btn--small{border-radius:4px;padding:4px 8px;font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;line-height:24px}.dsV2.btn--medium{border-radius:6px;padding:6px 12px;font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;line-height:24px}.dsV2.btn--large{border-radius:6px;padding:8px 16px;font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:24px}.dsV2.btn--xLarge{border-radius:6px;padding:8px 16px;font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;line-height:24px}.dsV2.btn--orange{color:#151112}.pTransactions{height:100%;width:100%;display:flex;flex-direction:column}.pTransactions__tableCon{border:1px solid #f1f5f7;padding:5px}.customFilter__badge .ant-badge-count{background-color:#229ed4;border-color:#fff;color:#fff;transform:scale(0.9);transition:none}.customFilter__filterDrawer .ant-drawer-content-wrapper{width:285px !important}.customFilter__filterDrawer .ant-tree-checkbox-disabled{display:none}.customFilter__filterDrawer .ant-drawer-body{height:100%;padding:0;display:flex;flex-direction:column;overflow:hidden}.customFilter__filterDrawer .ant-drawer-wrapper-body{background-color:#f9fafc}.customFilter__filterDrawer .ant-tree .ant-tree-switcher{margin-left:8px}.customFilter__filterDrawer .ant-tree li{width:100%}.customFilter__filterDrawer .ant-tree li:last-child{padding-bottom:4px}.customFilter__filterDrawer .ant-tree-node-content-wrapper{height:auto !important}.customFilter__filterDrawer .ant-tree-node-content-wrapper:hover{background-color:inherit !important}.customFilter__filterDrawer .ant-tree-treenode-switcher-close{border-bottom:1px solid #eeeff1}.customFilter__filterDrawer .ant-tree-child-tree{padding:10px 0 10px 10px;background-color:#eff3f6}.customFilter__filterDrawer .ant-tree-child-tree .ant-tree-treenode-switcher-close{border-bottom:none}.customFilter__filterDrawer__tree{flex:1;min-height:0;overflow:auto}.customFilter__filterDrawer__applyBtn{width:200px;margin:12px auto}.customFilter__filterDrawer__applyBtn{width:200px;margin:12px auto}.customFilter__rangePickerCon{display:flex;flex-direction:column}.customFilter__rangePicker .ant-calendar-picker-input{padding:4px 12px 4px 4px}.customFilter__rangePicker .ant-calendar-range-picker-input{width:42%;font-size:12px}.customFilter__rangePicker .ant-calendar-range-picker-separator{width:auto;margin:0 2px}.customFilter__rangePicker .ant-calendar-picker-clear,.customFilter__rangePicker .ant-calendar-picker-icon{right:8px}.customFilter__tooltipCon{display:flex;flex-direction:row;align-items:center}.customFilter__tooltipDiv{margin:0 0 0 10px;align-items:center;justify-content:center}.customFilter__tooltipPopTitle{margin:0 0 5px 0;color:#000}.customFilter__tooltipPopText{margin:0 0 15px 0;font-size:11px;color:#a3a3a3}.customFilter .ant-tooltip-inner{background-color:#fff}.customFilter__tooltipAnt{left:auto;right:270px;width:350px}.customFilter__tooltipAnt .ant-tooltip-inner{background-color:#fff}.customFilter__tooltipAnt .ant-tooltip-content{padding-right:10px}.customFilter__tooltipAnt .ant-tooltip-arrow{border-width:15px 0 15px 15px;border-left-color:#fff}.customFilter__filterDrawer .ant-tree-title{text-overflow:ellipsis;max-width:190px;overflow:hidden;white-space:nowrap;display:inline-block}.trainerNotes{height:100%;box-sizing:border-box}.trainerNotes__header{flex-shrink:0;align-items:flex-start;box-sizing:border-box;padding-bottom:16px}.trainerNotes__notes{padding:0;display:flex;flex-direction:column;overflow:auto;width:100%;height:100%;box-sizing:border-box}.trainerNotes .note{border-top:1px solid #eee}.trainerNotes .note.last{margin-bottom:0}.trainerNotes .fontSize18{font-size:18px}.note{height:auto;width:100%;flex:0 0 auto;box-sizing:border-box;padding:16px 0}.note__title{height:27px;width:100%}.note__content{width:100%;overflow:hidden}.note__text{color:#151112;white-space:pre-wrap}.note textArea,.note textArea.ant-input{height:100%}.note.fullHeight{flex:1 0 auto}.note.note--new{animation:colorchange 2s}@keyframes colorchange{0%{background:rgba(252,235,170,.3)}100%{background:#fff}}.dailyNotesComments{height:100%;display:flex;flex-direction:column}.dailyNotesComments__header{box-sizing:border-box;height:100px;padding:16px 12px 0 12px;flex:0 0 auto}.dailyNotesComments__tab{display:flex;align-items:center;height:100%;box-sizing:border-box}.dailyNotesComments__tab p{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.dailyNotesComments__tab--active{border-bottom-color:#229ed4}.dailyNotesComments__tab--active p{color:#229ed4;font-weight:400}.dailyNotesComments__container{display:flex;flex:1 0 auto;max-height:calc(100% - 100px)}.comments{flex:1}.comments__list{box-sizing:border-box;padding:0 12px;border-bottom:1px solid #eee;overflow:auto}.commentBox{padding:12px;box-sizing:border-box}.commentBox__quickLike{margin-left:8px;align-items:flex-end;display:flex;height:100%;min-width:20px}.commentBox__quickLike img:hover{cursor:pointer}.message .reactionImage{border-color:#f2f2f2;border-width:1px;border-style:solid;padding-left:5px;padding-top:2px;margin:2px;min-width:32px;height:20px;border-radius:12px;background-color:#f2f2f2;cursor:pointer;box-sizing:initial}.message .reactionImage__text{color:#6e6e6e}.message .reactionImage-condensed{border-color:#f2f2f2;border-width:1px;border-style:solid;height:20px;background-color:#f2f2f2;box-sizing:initial;padding-top:2px}.message .alreadyReacted{border-color:#a3a3a3}.message *{box-sizing:border-box}.message__text{margin-top:8px !important;overflow-wrap:anywhere}.message__textEmoji{font-size:24px !important;padding-top:4px !important;margin-bottom:6px !important}.reactions{min-height:20px;width:100%;display:flex;align-items:flex-start;justify-content:flex-end;flex-wrap:wrap;margin-bottom:8px}.reactions__container_new{border-color:#f2f2f2;border-width:1px;border-style:solid;padding:2px;height:20px;width:20px;border-radius:12px;background-color:#f2f2f2;margin-left:8px;margin-top:2px;cursor:pointer}.reactions__last{border-radius:0px 12px 12px 0px;min-width:28px}.reactions__first{border-radius:12px 0px 0px 12px}.reactions__new{margin:auto}.reactionsImages__imageWrap{cursor:pointer;box-sizing:border-box;height:100%;padding:12px 5px}.reactionsImages__imageWrap:hover{background-color:#eee}.reactionsImages__imageWrap:hover .reactionsImages__image{transform:scale(1.1) translateY(-10px);transition:transform .2s;margin-top:5px;margin-left:4px}.reactionsImages__imageWrap:first-of-type:hover{border-radius:40px 0px 0px 40px !important}.reactionsImages__imageWrap:last-of-type:hover{border-radius:0px 40px 40px 0px !important}.trainerNotesFilter{width:240px;height:auto;position:absolute;top:0;right:0;background-color:#fafbfc;border:1px solid #cfcfcf;z-index:100}.trainerNotesFilter *{box-sizing:border-box}.trainerNotesFilter__filters{background-color:#f1f5f7}.trainerNotesFilter__filters label{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.trainerNotesFilter__filters label:not(:last-child){padding-bottom:4px}.rpe__container{position:relative;margin:8px 0px}.rpe__divider{width:3px;height:100%;position:absolute;border-radius:2px;background:#ffb400}.importClientDialog-dialog{height:100%;width:100%;display:flex;flex-direction:column}.importClientDialog-dialog h1{font-size:24px;font-weight:normal}.importClientDialog-dialog .clientListHeader{align-items:baseline;padding:7px 8px;border:1px solid #e8e8e8;border-bottom:none}.importClientDialog-dialog .clientListHeader .headerTag{font-size:14px;padding-right:10px;margin:0;display:inline-block}.importClientDialog-dialog .clientListHeader .locationPickerContainer{display:inline-block;height:24px;width:240px}.importClientDialog-dialog .clientListHeader .locationPickerContainer .ant-select-selection{height:24px}.importClientDialog-dialog .clientListHeader .locationPickerContainer .ant-select-selection__rendered{line-height:24px}.importClientDialog-dialog .clientListHeader .searchBarContainer input{height:24px}.importClientDialog-dialog .clientList{height:251px;overflow-y:auto;border:1px solid #e8e8e8;display:flex}.importClientDialog-dialog .clientList .clientList_container{flex:1}.importClientDialog-dialog .clientList .clientList_containerNUllScreen{display:flex;flex:1;align-content:center;justify-content:center;align-items:center;text-align:center}.importClientDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item{background-color:#fff;height:42px}.importClientDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item .ant-list-item-content{align-items:baseline;padding-left:8px}.importClientDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item .clientProfile{color:#797c80;font-size:15px;padding-left:12px;margin:0}.importClientDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item .emailError{color:#a3a3a3;font-size:15px;padding-left:16px;margin:0;position:absolute;right:32px}.importClientDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item:hover{background-color:#f2f2f2}.importClientDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item:hover .clientProfile{color:#06a9f6}.importClientDialog-dialog .confirmButtonContainer .importButton{width:115px}.importClientDialog-dialog .confirmButtonContainer .clientSelected{color:#a3a3a3;font-size:12px;padding-left:5px;margin:0;position:absolute;right:24px;display:inline-block;line-height:32px}.importClientDialog-dialog .ant-input{height:37px}.importClientDialog-dialog .h21{height:21px}.importClientDialog-dialog .h18{height:18px}.importClientDialog-dialog .h16{height:16px;border-bottom:solid 1px #e8e8e8}.importClientDialog-dialog .h12{height:12px;width:100%}.importClientDialog-dialog .tr-dialog-close{border:none;top:20px;right:18px}.mboSyncLocationDialog-dialog{height:100%;width:100%;display:flex;flex-direction:column}.mboSyncLocationDialog-dialog .clientListHeader{align-items:baseline;padding:7px 8px;border-bottom:1px solid #e8e8e8}.mboSyncLocationDialog-dialog .clientListHeader p{display:inline-block}.mboSyncLocationDialog-dialog .clientListHeader .tzLocation{float:right;padding-right:85px}.mboSyncLocationDialog-dialog .clientList{height:251px;overflow-y:auto;border:1px solid #e8e8e8}.mboSyncLocationDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item{background-color:#fff;height:42px}.mboSyncLocationDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item .ant-list-item-content{align-items:center;padding-left:8px}.mboSyncLocationDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item .emailError{position:absolute;right:8px}.mboSyncLocationDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item .mboSyncDialog_item_menu{top:-3px;display:inline-block;right:3px;cursor:pointer;width:12px;color:#d1d1d1;margin-right:3px;margin-top:3px;content:"⠇"}.mboSyncLocationDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item .mboSyncDialog_item_menu:after{content:"⠇";font-size:25px;cursor:pointer}.mboSyncLocationDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item:hover{background-color:#f2f2f2}.mboSyncLocationDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item:hover .clientProfile{color:#06a9f6}.mboSyncLocationDialog-dialog .ant-input{height:37px}.mboSyncLocationDialog-dialog .h16{height:16px;border-bottom:solid 1px #e8e8e8}.mboConnectionDialog-dialog .connectStepImage{background:url(/app/images/UI/mboExample.png) no-repeat center;background-size:200px}.autoSyncServiceDialog-dialog{height:100%;width:100%;display:flex;flex-direction:column}.autoSyncServiceDialog-dialog .clientListHeader{align-items:baseline;padding:7px 8px;border:1px solid #e8e8e8;border-bottom:none}.autoSyncServiceDialog-dialog .clientListHeader .headerTag{font-size:14px;padding-right:10px;margin:0;display:inline-block}.autoSyncServiceDialog-dialog .clientListHeader .locationPickerContainer{display:inline-block;height:24px;width:240px}.autoSyncServiceDialog-dialog .clientListHeader .locationPickerContainer .ant-select-selection{height:24px}.autoSyncServiceDialog-dialog .clientListHeader .locationPickerContainer .ant-select-selection__rendered{line-height:24px}.autoSyncServiceDialog-dialog .apptTypeHeader{display:flex;align-items:baseline;padding:7px 8px;border:1px solid #e8e8e8;border-bottom:none}.autoSyncServiceDialog-dialog .apptTypeHeader .clientProfile{padding-left:10px}.autoSyncServiceDialog-dialog .apptTypeHeader .emailError{position:absolute;right:8px}.autoSyncServiceDialog-dialog .apptTypeHeader .isVideoCall{position:absolute;right:315px}.autoSyncServiceDialog-dialog .apptTypeHeader .apptDuration{position:absolute;right:190px}.autoSyncServiceDialog-dialog .clientList{height:251px;overflow-y:auto;border:1px solid #e8e8e8}.autoSyncServiceDialog-dialog .clientList .clientList_containerNullScreen{height:251px;display:flex;flex:1;align-content:center;justify-content:center;align-items:center;text-align:center}.autoSyncServiceDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item{background-color:#fff;height:42px}.autoSyncServiceDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item .ant-list-item-content{align-items:center;padding-left:10px}.autoSyncServiceDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item .clientProfile{position:absolute;left:20px}.autoSyncServiceDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item .emailError{position:absolute;right:8px}.autoSyncServiceDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item .isVideoCall{position:absolute;right:310px}.autoSyncServiceDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item .apptDuration{position:absolute;right:155px}.autoSyncServiceDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item .itemNameOverflowEllipsis{display:inline-block;max-width:35%;overflow:hidden;pointer-events:auto;text-overflow:ellipsis;white-space:nowrap}.autoSyncServiceDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item:hover{background-color:#f2f2f2}.autoSyncServiceDialog-dialog .clientList .ant-spin-nested-loading .ant-list-item:hover .clientProfile{color:#06a9f6}.autoSyncServiceDialog-dialog .ant-input{height:37px}.autoSyncServiceDialog-dialog .h16{height:16px;border-bottom:solid 1px #e8e8e8}.autoSyncServiceDialog-dialog .tr-dialog-close{border:none;top:20px;right:18px}.addAutomationDialog-dialog{position:relative}.addAutomationDialog-dialog__tooltip .ant-tooltip-inner{color:#606366;background-color:#fff;border:1px solid #ccc}.addAutomationDialog-dialog__tooltip .ant-tooltip-arrow{border-right-color:#fff;border-right-width:6px}.addAutomationDialog-dialog__tooltip .ant-tooltip-arrow:before{position:absolute;content:" ";border:1px solid #ccc;border-width:0 0 1px 1px;width:6px;height:6px;top:-4px;left:1px;transform:rotateZ(45deg)}.addAutomationDialog-dialog__tooltipContent{word-break:normal;padding:16px}.addAutomationDialog-dialog a{color:#229ed4;cursor:pointer}.addAutomationDialog-dialog .bottomText{display:flex;align-items:center;padding-left:140px}.addAutomationDialog-dialog .timelineText{color:#d6d8da;cursor:pointer}.addAutomationDialog-dialog .timelineTextSelected{color:#000}.addAutomationDialog-dialog .timelineText:hover{color:#229ed4}.addAutomationDialog-dialog .fullTimeline .ant-timeline .ant-timeline-item{padding:0 0 218px}.addAutomationDialog-dialog .fullTimeline .ant-timeline .ant-timeline-item-last{padding:0}.addAutomationDialog-dialog .constrainedTimeline .ant-timeline .ant-timeline-item{padding:0 0 455px}.addAutomationDialog-dialog .constrainedTimeline .ant-timeline .ant-timeline-item-last{padding:0}.addAutomationDialog-dialog .ant-select-selection--multiple{max-height:48px;overflow:auto}.addAutomationDialog-dialog .ant-select-selection--multiple .item-image{height:14px;padding-right:4px}.addAutomationDialog-dialog .tabMenu .ant-checkbox-wrapper{min-width:250px}.addAutomationDialog-dialog .tabMenu .selectRow{padding:10px 0;line-height:24px}.addAutomationDialog-dialog .arrow_box_top{position:absolute;background:#fff;border:1px solid #d6d8da;width:585px;height:455px;top:74px;left:140px;padding:30px}.addAutomationDialog-dialog .arrow_box_top:after,.addAutomationDialog-dialog .arrow_box_top:before{right:100%;top:38px;border:solid rgba(0,0,0,0);content:" ";height:0;width:0;position:absolute;pointer-events:none}.addAutomationDialog-dialog .arrow_box_top:after{border-color:rgba(255,255,255,0);border-right-color:#fff;border-width:11px;margin-top:-30px}.addAutomationDialog-dialog .arrow_box_top:before{border-color:rgba(214,216,218,0);border-right-color:#d6d8da;border-width:12px;margin-top:-31px}.addAutomationDialog-dialog .arrow_box_middle{position:absolute;background:#fff;border:1px solid #d6d8da;width:585px;height:455px;top:74px;left:140px;padding:30px}.addAutomationDialog-dialog .arrow_box_middle:after,.addAutomationDialog-dialog .arrow_box_middle:before{right:100%;top:235px;border:solid rgba(0,0,0,0);content:" ";height:0;width:0;position:absolute;pointer-events:none}.addAutomationDialog-dialog .arrow_box_middle:after{border-color:rgba(255,255,255,0);border-right-color:#fff;border-width:11px;margin-top:13px}.addAutomationDialog-dialog .arrow_box_middle:before{border-color:rgba(214,216,218,0);border-right-color:#d6d8da;border-width:12px;margin-top:12px}.addAutomationDialog-dialog .arrow_box_bot{position:absolute;background:#fff;border:1px solid #d6d8da;width:585px;height:455px;top:74px;left:140px;padding:30px}.addAutomationDialog-dialog .arrow_box_bot:after,.addAutomationDialog-dialog .arrow_box_bot:before{right:100%;top:430px;border:solid rgba(0,0,0,0);content:" ";height:0;width:0;position:absolute;pointer-events:none}.addAutomationDialog-dialog .arrow_box_bot:after{border-color:rgba(255,255,255,0);border-right-color:#fff;border-width:11px;margin-top:54px}.addAutomationDialog-dialog .arrow_box_bot:before{border-color:rgba(214,216,218,0);border-right-color:#d6d8da;border-width:12px;margin-top:53px}.addAutomationDialog-dialog .mealPlanTooltip{position:absolute;top:13px;left:165px;cursor:pointer}.addAutomationDialog-mealPlanTooltipOverlay{width:235px;font-size:12px;font-weight:400;line-height:16px;color:#6e6e6e}.item-image{height:30px;border-radius:50%;padding-right:8px;display:inline-block;vertical-align:middle}.calendarListItem__container{width:100%;height:56px;display:flex;flex-direction:row;justify-content:space-between;align-items:center;cursor:pointer}.calendarListItem__container:hover .calendarListItem__title{color:#229ed4}.calendarListItem__icon{height:24px;width:24px}.calendarListItem__photoIcon{background-color:#eee;border-radius:3px;height:26px;margin-right:2px;width:26px}.calendarListItem__statusIcon{margin-right:16px}.calendarListItem__nutritionMealPhoto{background-color:#eee;border-radius:3px;height:26px;margin-right:2px;width:26px}.calendarListItem__mealImage{border-radius:2px;height:24px;width:24px}.ant-calendar-selected-date .ant-calendar-date,.ant-calendar-selected-start-date .ant-calendar-date,.ant-calendar-selected-end-date .ant-calendar-date{background:#229ed4;color:#fff;border:1px solid rgba(0,0,0,0)}.ant-calendar-date{color:#151112}.nutritionGoalToDoItem__container{width:100%;display:flex;flex-direction:column}.nutritionGoalToDoItem__container:hover{cursor:pointer}.nutritionGoalToDoItem__container:hover .nutritionGoalToDoItem__title{color:#229ed4}.nutritionGoalToDoItem__dataCon{width:100%;flex-direction:row;display:flex;justify-content:space-between;padding-bottom:12px}.nutritionGoalToDoItem__statusIcon{margin-right:16px;display:flex;align-self:center}.nutritionGoalToDoItem__dataTextCon{display:flex;flex-direction:column;justify-content:center}.nutritionGoalToDoItem__title{font-size:16px}.nutritionGoalToDoItem__progressCon{display:flex;flex-direction:row}.nutritionGoalToDoItem__progressItem{display:flex;flex-direction:column;padding:10px}.nutritionGoalToDoItem__progressItem--first{padding-left:0}.nutritionGoalToDoItem__progressItemTitleCon{display:flex;flex-direction:row;justify-content:center;margin-bottom:10px}.nutritionGoalToDoItem__progressItemGoalHit{padding-top:0px;width:13px;height:13px;margin-right:2px}.nutritionGoalToDoItem__progressItemTitle{font-size:12px;color:#919599}.thingsToDoList__subTitleCon{display:flex;flex-direction:row;justify-content:space-between;align-items:center}.thingsToDoList__subTitle{font-size:22px;margin-top:32px;margin-bottom:16px}.thingsToDoList__goToLink{color:#229ed4;font-size:14px}.thingsToDoList__nullScreenCon{width:100%;margin-top:50px;margin-bottom:50px;color:#919599;justify-content:center;display:flex}.thingsToDoList__loadingCon{width:100%;height:331px;background-color:#fff;display:flex}.progressSection__subTitleCon{display:flex;flex-direction:row;justify-content:space-between;align-items:center}.progressSection__subTitle{font-size:22px;margin-top:32px;margin-bottom:16px}.progressSection__goToLink{color:#229ed4;font-size:14px}.progressSection__graphTileContainer{display:grid;grid-template-columns:repeat(3, minmax(180px, 1fr));grid-gap:16px;grid-template-rows:auto}.progressSection__graphTileRowCon{display:flex;flex-direction:row}.progressSection__graphTileRowCon--withMargin{margin-bottom:16px}.accomplishmentsList__subTitleCon{display:flex;flex-direction:row;justify-content:space-between;align-items:center}.accomplishmentsList__subTitle{font-size:22px;margin-top:32px;margin-bottom:16px}.accomplishmentsList__goToLink{color:#229ed4;font-size:14px}.accomplishmentsList__loader{margin-top:15px}.accomplishmentsList__eofeed{font-size:14px;width:100%;height:50px;display:flex;justify-content:center;align-items:center;color:#919599}.accomplishmentsList__loadingCon{width:550px;height:158px;display:flex}.accomplishmentsList__nullScreenCon{width:100%;margin-top:50px;margin-bottom:50px;color:#919599;justify-content:center;display:flex}.accomplishmentsList__accomplishmentCon{margin-bottom:12px;min-width:500px}.accomplishmentsList__accomplishmentDateCon{color:#919599;font-size:13px;margin-bottom:8px}.accomplishment__container{display:flex;width:100%;min-height:80px;flex-direction:row;justify-content:space-between;border:solid 1px #eaeaea;align-items:center;cursor:pointer;border-radius:10px;background-color:#fff}.accomplishment__container:hover{border:solid 1px #229ed4;background-color:#f2f2f2}.accomplishment__container:hover label{color:#229ed4}.accomplishment__nameCon{display:flex;flex-direction:row;align-items:center}.accomplishment__imageDiv{margin-left:12px;margin-right:12px;position:relative}.accomplishment__image{width:48px;height:48px}.accomplishment__image_milestone_count{font-size:16px;position:absolute;top:7px;left:4px;text-align:center;display:block;width:40px}.accomplishment__accomplishment-date{font-size:13px;margin-left:13px;margin-bottom:2px;margin-top:2px}.accomplishment__exerciseData{display:flex;flex-direction:column;margin-top:15px;margin-bottom:15px;margin-right:15px}.accomplishment__detailsData{font-weight:bold}.accomplishment__exerciseDetails{-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.graphTile__container{height:170px;border-radius:10px;border:solid 1px #ededed;background-color:#fff;box-sizing:border-box;display:flex;justify-content:space-between;flex-direction:column;position:relative;overflow:hidden}.graphTile__container:hover{cursor:pointer;border:solid 1px #229ed4;background-color:#f2f2f2}.graphTile__container:hover label{color:#229ed4}.graphTile__container--isLoading{justify-content:flex-start}.graphTile__titleCon{margin:20px 20px 0px;height:50px;display:flex;flex-direction:column}.graphTile__subTitle{color:#c2c7cc !important}.graphTile__dataCon{align-self:flex-end}.graphTile__dataNullCon{margin:0 20px 34px 20px;font-size:26px;color:#919599}.imageTile__container{height:170px;border-radius:10px;border:solid 1px #ededed;background-color:#fff;box-sizing:border-box;display:flex;justify-content:space-between;flex-direction:column;position:relative}.imageTile__container:hover{cursor:pointer;border:solid 1px #229ed4;background-color:#f2f2f2}.imageTile__container:hover label{color:#229ed4}.imageTile__container--isLoading{justify-content:flex-start}.imageTile__titleCon{margin:20px 20px 0px;height:50px;display:flex;flex-direction:column}.imageTile__subTitle{color:#c2c7cc !important}.imageTile__imageCon{width:32px;height:32px;overflow:hidden;border-radius:4px;background-color:#dae0e6}.imageTile__emptyImageCon{width:32px;height:32px;overflow:hidden;border-radius:4px;background-color:#dae0e6;cursor:default}.imageTile__imagesContainer{justify-content:space-between;display:flex;flex-direction:row;margin:0px 40px 20px 20px}.imageTile__textCon{margin-top:20px;margin-right:20px;margin-left:20px;height:50px}.imageTile__image{width:32px;height:32px;border-radius:4px;background-size:cover}.goalTile{box-sizing:border-box;border:1px solid #eee;padding-bottom:16px;margin-bottom:12px;border-radius:8px}.goalTile__title{font-size:20px !important;line-height:26px !important}.goalTile__title_wrapper{display:flex;flex-direction:column}.goalTile__goal{width:100%}.goalTile__header{width:100%}.goalTile__title{font-size:20px !important}.goalTile__icon{margin-right:12px}.goalTile__icon--achieved{position:absolute;right:4px;bottom:0;background-color:#fff}.goalTile__value_wrapper{padding:0 55px 7px 0}.goalTile__value{margin-right:12px}.goalTile__value_symbol{padding:5px 0 0 2px !important}.goalTile__item{margin:0}.goalTile__progress{width:calc(100% - 128px);align-self:center}.goalTile__wrapper{margin-top:16px}.progressBar{box-sizing:border-box;background-color:#e6ecf2;width:100%;height:10px;border-radius:5px;overflow:hidden;display:flex;align-items:flex-start}.progressBar__percent{background-color:#57d3f8;height:100%}.progressBar__percent--protein{background-color:#37a16c}.progressBar__percent--fat{background-color:#ffa450}.progressBar__percent--carbs{background-color:#64bbe1}.progressBar__percent--remaining{background-color:#e6ecf2}.progressBar__upperLabel{display:flex;align-items:flex-start;height:20px}.progressBar__upperLabel p{width:100%;height:100%;text-align:center;white-space:nowrap}.progressBar__lowerLabel{box-sizing:border-box;display:flex;align-items:flex-start;padding-top:8px;height:28px}.progressBar__lowerLabel p{width:100%;height:100%;text-align:center;white-space:nowrap}.currentGoals,.pastGoals{display:flex;flex-direction:column}.currentGoals .goals,.pastGoals .goals{padding-bottom:32px;overflow:auto}.habitStat{box-sizing:border-box;height:40px;font-size:12px}.habitStat:first-of-type{border-top:1px solid #eee}.habitStat__icon{margin-right:12px;margin-left:12px}.habit-menu{margin-left:25px}.habitStreakInfo{width:100%;justify-content:space-between;display:flex;border-top:1px solid #eaeaea}.habitStreakInfo__title{margin-top:15px;color:#797c80;font-size:14px}.habitStreakInfo__text{color:#797c80;font-size:12px;line-height:32px}.habitStreakInfo__number{color:#606366;font-size:18px;margin-right:4px}.habitStreakInfo__banner{background:#c2c7cc;color:#fff;font-size:14px;border-top-left-radius:8px;border-top-right-radius:8px;text-align:center;height:30px;position:relative}.habitStreakInfo__gold{background:#ffce00 !important}.habitStreakInfo__blue{background:#70d1fe !important}.habitStreakInfo__bannerText{margin:auto}.habitStreakInfo__bannerIcon{position:absolute;left:15px}.habitTile{box-sizing:border-box;border:1px solid #eee;margin-bottom:12px;border-radius:8px}.habit-range{color:#797c80;font-size:12px;margin-bottom:5px;margin-top:5px;line-height:16px}.delete-goal-tooltip{font-size:10px}.delete-goal-tooltip.ant-tooltip{max-width:400px}.delete-goal-tooltip.ant-tooltip .ant-tooltip-inner{padding:8px}.layout__content{padding:32px 32px 0 32px;width:100%;min-width:646px}.layout__content--sidebar{padding:32px 32px 0 264px}.layout__content--sidebarNoPadding{padding:0 0 0 232px}.layout__constrained{box-sizing:border-box;padding-right:calc(100% - 672px)}.overflow--hidden{overflow:hidden}.overflow--auto{overflow:auto}.height--inherit{height:inherit}.flex--0{flex:0}.flex--1{flex:1}.flex--noGrow{flex-grow:0}.flex--Basis-0{flex-basis:0%}.square-box{position:relative;width:50%;overflow:hidden}.square-box:before{content:"";display:block;padding-top:100%}.square-content{position:absolute;top:0;left:0;bottom:0;right:0}.appLayout{box-sizing:border-box;display:flex;flex-direction:column;padding-top:60px;height:100%;width:100%}.appLayout__header{height:60px;width:100%;box-sizing:border-box;display:flex;flex-direction:row;align-items:center;border-bottom:1px solid #eee}.appLayout__content{box-sizing:border-box;display:flex;flex-direction:column;height:100%;width:100%}@media only screen and (min-width: 1280px){.appLayout__content{padding-left:204px}}@media only screen and (max-width: 1279px){.appLayout__content{padding-left:81px}}.appLayout__leftNavMenu{top:0;padding:0;position:fixed;z-index:1000;height:100%;box-sizing:border-box;display:flex;flex-direction:column}@media only screen and (min-width: 1280px){.appLayout__leftNavMenu{width:204px}}@media only screen and (max-width: 1279px){.appLayout__leftNavMenu{width:81px}}#setup_container{left:0;top:0;position:fixed;overflow:hidden;width:100%;height:100%}.app-wrap .ant-btn-block{width:100%}.app-wrap .m32b{margin-bottom:32px}.app-wrap .ant-form-item-required{display:flex;flex-direction:row-reverse;align-items:center;float:left}.app-wrap .ant-form-item-required:before{color:rgba(0,0,0,.85);margin-left:4px;margin-right:0}.app-wrap .header{background-color:#f8f8f8;margin:0 auto;padding:20px 0;justify-content:center;display:flex}.app-wrap .header .ant-progress{max-width:406px}.app-wrap .page-with-header .content{position:absolute;width:100%;top:61px;bottom:0}.app-wrap .page-with-header .loader-overlay{position:fixed;top:61px}.app-wrap .setupPasswordHeader{align-items:center;justify-content:center;max-width:406px;margin:auto;padding:20px 0;display:flex;height:auto;width:100%}.app-wrap .content-simple{position:absolute;height:100%;width:100%}.app-wrap .page-wrap{display:flex;align-items:center;justify-content:center;height:100%;max-width:406px;margin:auto}.app-wrap .page-inner{margin:auto;width:100%}.app-wrap .page-inner .page-title,.app-wrap .page-inner .page-title-owner{line-height:26px;font-size:22px;padding:0 36px;margin-bottom:40px;text-align:center}.app-wrap .page-inner .page-title-owner{margin-bottom:20px}.app-wrap .page-inner .owner-info{font-size:14px;line-height:1.43;font-weight:normal;text-align:center;margin-bottom:30px}.app-wrap form{padding:0 36px 75px;height:auto}.app-wrap .ant-progress-outer{box-sizing:border-box}.app-wrap .ant-progress-inner{background-color:#ddd}.app-wrap .ant-progress-bg{background-color:#06a9f6;height:10px !important;font-size:15px;line-height:18px;-webkit-transition:all .8s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;transition:all .8s cubic-bezier(0.08, 0.82, 0.17, 1) 0s}.app-wrap .ant-progress-text{text-align:right;color:#303133}.app-wrap .onboard-radio-switch .ant-form-item-children{display:block}.app-wrap .onboard-radio-switch .ant-form-item-children .ant-radio-group{display:flex}.app-wrap .onboard-radio-switch .ant-radio-button-wrapper{width:50%;text-align:center;padding:0;box-sizing:border-box;position:relative}.app-wrap .agree-terms-privacy{padding-top:8px;line-height:15px;font-size:11px;color:#303133}.app-wrap .agree-terms-privacy>span{padding-right:0;padding-left:8px;display:inline-block}.app-wrap .agree-terms-privacy>span a{color:#06a9f6;cursor:pointer}.app-wrap .submit-button{margin-top:40px;position:relative}.app-wrap .submit-button .form-error-message{position:absolute;width:100%;top:46px;left:0;color:rgba(0,0,0,.45);line-height:1.524;-webkit-transition:color .3s cubic-bezier(0.215, 0.61, 0.355, 1);transition:color .3s cubic-bezier(0.215, 0.61, 0.355, 1);text-align:center}.app-wrap .submit-button .show{color:#f5222d}.app-wrap .page-wrap.scrollable .submit-button .form-error-message{padding-bottom:20px}.app-wrap .ant-form-explain{visibility:hidden;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:none}.app-wrap .ant-form-item-with-help{margin-bottom:24px}.app-wrap .avatar{position:relative;width:88px;height:88px;border-radius:50%;margin:0 auto 22px}.app-wrap .content-wrapper{padding:0 18px 30px}.app-wrap .empty-line{height:10px}.app-wrap textarea.ant-input{font-size:16px}.app-wrap .setup-profile-select-menu .ant-select-dropdown-menu{max-height:192px}.app-wrap .setup-profile-select-menu--best-desc-you .ant-select-dropdown-menu{max-height:210px}.setup-owner-account-form{padding-bottom:0px !important}.link-expired{text-align:center}.link-expired .image{width:230px;height:268px;margin:0 auto 30px;background-image:url(/app/images/setupPage/link-expired.png);background-size:contain;background-repeat:no-repeat}.link-expired .title{font-size:22px;line-height:28px;text-align:center;color:#4c4c4c;margin-bottom:17px}.link-expired .text{font-size:16px;color:#9b9b9b;text-align:center;line-height:20px}.get-app{text-align:center}.get-app .image{position:relative;width:230px;height:268px;margin:0 auto 30px;background-size:contain;background-repeat:no-repeat;background-image:url(https://file.trainerize.com/assets/app/screens/setup-page/last-step-v2.png)}.get-app .image.web{background-image:url(/app/images/setupPage/setup-success.png)}.get-app .image img{position:absolute;width:86px;height:86px;top:90px;right:54px;border-radius:12px}.get-app .title{font-size:25px;line-height:28px;text-align:center;color:#4c4c4c;margin-bottom:17px}.get-app .text{font-size:14px;color:#9b9b9b;line-height:20px}.get-app button{margin-top:16px}@media(-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi){.get-app .image{background-image:url(https://file.trainerize.com/assets/app/screens/setup-page/last-step-v2@2x.png)}.get-app .image.web{background-image:url(/app/images/setupPage/setup-success@2x.png)}.link-expired .image{background-image:url(/app/images/setupPage/link-expired@2x.png)}}.page{top:61px;bottom:0;overflow-y:auto;position:fixed;width:100%;-webkit-overflow-scrolling:touch}.page.page-enter{opacity:0;z-index:1}.page.page-enter.page-wrap.scrollable{overflow-y:hidden}.page.page-enter.page-enter-active{opacity:1}.page.page-exit{opacity:0}.page.page-exit.page-wrap.scrollable{overflow-y:hidden}.page.page-enter.page--prev.page-enter-active{transform:translate(0, 0)}.page.no-animation.page-enter.page-enter-active{transition:none}.page.no-animation.page-exit{transition:none}@media only screen and (max-width: 410px){.app-wrap .header{background-color:#f8f8f8;padding:20px 12px 20px 12px}.app-wrap form{padding:0 22px 45px;height:auto}.app-wrap .content-wrapper{padding:0 22px 20px}.app-wrap .get-app{position:relative}.app-wrap .get-app .image{width:200px;height:212px}.app-wrap .get-app .image img{width:76px;height:76px;top:78px;right:48px}.app-wrap .setup-profile-select-menu .ant-select-dropdown-menu{max-height:136px}}@media only screen and (max-width: 360px){.app-wrap form{padding:0 8px 45px;height:auto}.app-wrap .onboard-radio-switch .ant-radio-button-wrapper .icon{left:7px}}.success-message-text{display:flex;flex-direction:column;justify-content:center;text-align:center}.success-message-text div{font-size:22px;color:#4c4c4c;margin-top:27px}.white-space-normal .ant-form-item-label label{white-space:normal}.fake-input-hidden .ant-form-item-control input{display:none}#groupAndOwnerProfile{margin-top:19px}#groupAndOwnerProfile h6{font-weight:normal;text-align:center;font-size:18px;margin-bottom:30px;color:#303133}#groupAndOwnerProfile h5{font-weight:700 !important;font-size:20px;margin-bottom:40px}.modal h2{word-break:break-word}.modalTabs{height:44px;display:flex;align-items:center;padding-left:32px;background-color:#151112}.modalTabs .modalTab{height:34px;background-color:#606366;display:flex;align-items:center;border-top-right-radius:7px;border-top-left-radius:7px;margin-right:8px;margin-top:auto;padding:0 16px;cursor:pointer;transition:all .2s ease}.modalTabs .modalTab p{color:#c2c7cc}.modalTabs .modalTab:hover:not(.active){background-color:#525457}.modalTabs .modalTab.active{background-color:#fff;cursor:default}.modalTabs .modalTab.active p{color:#229ed4}.modalTabs .modalTab .ant-badge-count p{color:#fff}.modalTabs .modalMenu{margin-right:40px}.modalTabs .modalMenu__button--active{filter:brightness(0.8);border-top-right-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:0 !important;border-bottom-right-radius:0 !important}.modalProfile{height:calc(100vh - (64px + 44px));box-sizing:border-box;display:flex;flex-direction:row;align-items:flex-start;justify-content:flex-start}.modalProfile__section{padding:20px 16px;box-sizing:border-box;position:relative;height:100%;width:100%;overflow:auto}.modalProfile__section--border{border-right:1px solid #cfcfcf}.trainerProfile .modalProfile{height:auto}.trainerProfile .modalProfile__section{min-height:470px}@media(max-height: 754px){.trainerProfile .modalProfile{height:calc(100vh - (64px + 44px))}.trainerProfile .modalProfile__section{min-height:auto}}.dailyDialog .modal-body{box-sizing:border-box;height:inherit}.dailyDialog .modal-content{border-radius:4px}.dailyDialog__comments{position:absolute;top:0;right:0;background-color:#f7f7f7;max-width:232px}#dailyCardio__iconContainer{width:92px;height:92px;border-radius:50%;border:4px solid #70d27c}.dailyPhotoPreview .ant-select-selection{border:1px solid #fff;background:rgba(0,0,0,0);color:#fff}.dailyPhotoPreview .ant-select-selection-selected-value{text-transform:capitalize}.dailyPhotoPreview .ant-select-arrow{color:#fff}.dailyPhotoPreview .ant-calendar-picker-clear{display:none}.dailyPhotoPreview .ant-calendar-picker-input{background:rgba(0,0,0,0);color:#fff}.dailyPhotoPreview .ant-calendar-picker-icon{top:13px}.dailyPhotoPreview .ant-calendar-picker-icon:after{content:"";background-image:url("../../images/datePicker/calendar-regular.svg");height:20px;width:20px;background-size:20px}.photoPreviewPoseOption{text-transform:capitalize}.videoModal{max-width:1920px}.videoModal .modal-body{padding:0;box-sizing:border-box;height:inherit}.previewDialog .modal-body{position:relative;padding:0;height:100%;width:100%;box-sizing:border-box;overflow:auto;max-height:calc(100vh - 64px)}.previewDialog .modal-close{top:-16px;right:-32px}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.addonPageContainer{width:100%;min-width:646px}.addonPageContainer .section .addon .addonVideo{border:solid 1px #dae0e6;background-size:80px;height:45px;width:80px;background-position:center;background-repeat:no-repeat;cursor:pointer}.addonPageContainer .section .addon .addonVideoPlayIcon{background-image:url(/app/images/video-play-button.svg);background-repeat:no-repeat;background-position:center;background-size:20px;width:50%;height:50%;cursor:pointer}.addonPageContainer .section .addon .addonTextShorten{padding-right:80px}.addonPageContainer .section .addon .react-slide-animation-enter{opacity:0;transform:translateY(-16px)}.addonPageContainer .section .addon .react-slide-animation-enter-active{opacity:1;transform:translateX(0);transition:opacity 300ms,transform 600ms}.addonPageContainer .section .addon .react-slide-animation-exit{opacity:1;transform:translateX(0)}.addonPageContainer .section .addon .react-slide-animation-exit-active{opacity:0;transform:translateY(-16px);transition:opacity 300ms,transform 500ms}.addonPageContainer .section .addon .react-appear-animation-enter{opacity:0}.addonPageContainer .section .addon .react-appear-animation-enter-active{opacity:1;transition:opacity 300ms}.addonPageContainer .section .addon .react-appear-animation-exit{opacity:1}.addonPageContainer .section .addon .react-appear-animation-exit-active{opacity:0;transition:opacity 300ms}.settingPage{width:100%}.settingPage .businessBillingPage .ant-table-title{border-radius:0}.settingPage .businessBillingPage .ant-table-content .ant-table-footer{display:none}.settingPage .businessBillingPage .billingInfoKey{width:220px}.settingPage .businessBillingPage .saveTag{background-color:#ff9800;margin-right:15px;padding:3px;font-size:11px;color:#fff;position:relative;display:inline-block;height:14px}.settingPage .businessBillingPage .saveTag:after{display:inline-block;content:" ";width:0;height:0;border-top:10px solid rgba(0,0,0,0);border-bottom:10px solid rgba(0,0,0,0);border-left:10px solid #ff9800;position:absolute;top:0px;right:-10px}.settingPage .permissionPage .coloredTableContainer .ant-table-thead tr th{background:#fff}.settingPage .permissionPage .coloredTableContainer .ant-table-thead tr th{border-bottom:none}.settingPage .permissionPage .coloredTableContainer .ant-table-tbody tr td{border-bottom:none}.settingPage .permissionPage .coloredTableContainer .ant-table-tbody tr:hover td{background:#fff}.settingPage .permissionPage .coloredTableContainer .ant-table-tbody tr:nth-child(odd){background-color:#f7f7f7}.settingPage .permissionPage .coloredTableContainer .ant-table-tbody tr:nth-child(odd):hover td{background-color:#f7f7f7}.settingPage .permissionPage .clientTypes .ant-table-tbody tr td{border-bottom:none}.settingPage .permissionPage .clientTypes .ant-table-tbody tr:hover td{background:none !important}.settingPage .permissionPage .clientTypes .ant-table-thead tr:nth-child(1) th{font-size:12px}.settingPage .permissionPage .clientTypes .ant-table-thead tr:nth-child(2) th{font-size:12px;font-weight:700}.settingPage .permissionPage .clientTypes .ant-table-thead tr:last-child th{border-top:1px solid #fcfcfc;border-bottom:none}.settingPage .permissionPage .clientTypes .ant-table-thead tr:nth-child(2) th{font-size:12px;font-weight:700}.settingPage .permissionPage .clientTypes .ant-table-thead tr:last-child th{border-top:1px solid #fcfcfc;border-bottom:none}.settingPage .permissionPage .clientTypes .ant-table-thead tr:nth-child(odd) th{background-color:#fcfcfc}.settingPage .permissionPage .clientTypes .ant-table-thead tr:nth-child(even) th{background-color:#fff}.settingPage .permissionPage .clientTypes .ant-table-thead tr:first-child th:nth-child(2){border-right:1px solid #eee;border-left:1px solid #eee}.settingPage .permissionPage .clientTypes .tdContent{display:flex;margin-bottom:6px;justify-content:center}.settingPage .permissionPage .clientTypes .columnFeature .tdContent{justify-content:left}.settingPage .permissionPage .clientTypes .columnFeature .tdContent .tz-sp,.settingPage .permissionPage .clientTypes .columnFeature .tdContent .iCsvDialog .dropArea__fileName,.iCsvDialog .settingPage .permissionPage .clientTypes .columnFeature .tdContent .dropArea__fileName,.settingPage .permissionPage .clientTypes .columnFeature .tdContent .sidebar .sidebar-challenge__expanded a.section-link,.sidebar .sidebar-challenge__expanded .settingPage .permissionPage .clientTypes .columnFeature .tdContent a.section-link,.settingPage .permissionPage .clientTypes .columnFeature .tdContent .sidebar .sidebar-program--expanded a.section-link,.sidebar .sidebar-program--expanded .settingPage .permissionPage .clientTypes .columnFeature .tdContent a.section-link,.settingPage .permissionPage .clientTypes .columnFeature .tdContent .sidebar .sidebar-userProgram--expanded a.section-link,.sidebar .sidebar-userProgram--expanded .settingPage .permissionPage .clientTypes .columnFeature .tdContent a.section-link{color:#000;font-size:14px}.settingPage .permissionPage .clientTypes .clientTableRow:nth-child(odd){background-color:#fcfcfc}.settingPage .permissionPage .clientTypes .clientTableRow:nth-child(even){background-color:#fff}.settingPage .permissionPage .clientTypes .columnBasic{border-right:1px solid #eee;border-left:1px solid #eee}.settingPage .react-slide-animation-enter{opacity:0;transform:translateY(-16px)}.settingPage .react-slide-animation-enter-active{opacity:1;transform:translateX(0);transition:opacity 300ms,transform 600ms}.settingPage .react-slide-animation-exit{opacity:1;transform:translateX(0)}.settingPage .react-slide-animation-exit-active{opacity:0;transform:translateY(-16px);transition:opacity 300ms,transform 500ms}.settingPage .react-appear-animation-enter{opacity:0}.settingPage .react-appear-animation-enter-active{opacity:1;transition:opacity 300ms}.settingPage .react-appear-animation-exit{opacity:1}.settingPage .react-appear-animation-exit-active{opacity:0;transition:opacity 300ms}.productCancellationDialog .ant-form-item{margin-bottom:0px}.salesChannelPageContainer{width:100%;min-width:646px}.salesChannelPageContainer .addonVideo{border:solid 1px #dae0e6;background-size:80px;height:45px;width:80px;background-position:center;background-repeat:no-repeat;cursor:pointer}.salesChannelPageContainer .addonVideoPlayIcon{background-image:url(/app/images/video-play-button.svg);background-repeat:no-repeat;background-position:center;background-size:20px;width:50%;height:50%;cursor:pointer}.salesChannelPageContainer .addonTextShorten{padding-right:80px}.salesChannelPageContainer .react-slide-animation-enter{opacity:0;transform:translateY(-16px)}.salesChannelPageContainer .react-slide-animation-enter-active{opacity:1;transform:translateX(0);transition:opacity 300ms,transform 600ms}.salesChannelPageContainer .react-slide-animation-exit{opacity:1;transform:translateX(0)}.salesChannelPageContainer .react-slide-animation-exit-active{opacity:0;transform:translateY(-16px);transition:opacity 300ms,transform 500ms}.salesChannelPageContainer .react-appear-animation-enter{opacity:0}.salesChannelPageContainer .react-appear-animation-enter-active{opacity:1;transition:opacity 300ms}.salesChannelPageContainer .react-appear-animation-exit{opacity:1}.salesChannelPageContainer .react-appear-animation-exit-active{opacity:0;transition:opacity 300ms}.shareProductDialog .ant-select-selection__placeholder{position:relative;height:auto;margin-top:0}.upsellDialog-carousel{height:374px}.upsellDialog-carousel .slick-list{height:374px}.upsellDialog-slideContent{align-Items:center;display:flex !important;justify-content:space-between}.upsellDialog-slideContentText{display:flex !important;flex-direction:column;justify-content:space-between;width:300px}.upsellDialog-slideContentTextHeading{font-size:32px !important;font-weight:700 !important;margin-bottom:16px}.upsellDialog-slideContent.leftSideImage{flex-direction:row-reverse}.upsellDialog-slideContent.rightSideImage{flex-direction:row}.sliderFooter{margin-top:24px;align-items:flex-end}.sliderDots{display:flex;flex-direction:row;justify-content:center;margin-bottom:0;width:100%}.sliderDot{color:#c0c2c5;cursor:pointer;height:12px;width:12px}.sliderDot.active{color:#06a9f6}.programSidebar .head{max-height:44px}.sidebar{width:100%;height:100%;margin:0 !important;padding:0 !important;list-style:none;box-sizing:border-box}.sidebar ul{width:100%;height:100%;margin:0 !important;padding:0 !important;list-style:none;box-sizing:border-box}.sidebar>li:first-of-type{border-top:1px solid #eee}.sidebar li{height:40px;min-height:40px;width:100%;box-sizing:border-box;margin:0;padding:0;background-repeat:repeat-x;font-size:13px;font-weight:400;cursor:pointer;position:relative;border-bottom:1px solid #eee;display:flex;justify-content:flex-start;align-items:center;border-left:none}.sidebar li.selected:not(.selected-userProgram){border-left:5px solid #229ed4;background-color:#dcf7ff;padding-left:31px}.sidebar li.selected-accessLevel{background-color:#fff;padding-left:11px}.sidebar li.selected-accessLevel-subSection{padding-left:11px}.sidebar li:not(.selected):not(.sidebar-accessLevel-subSection):not(.no-select):hover{background-color:#eee;color:#229ed4}.sidebar li.section-link.expanded{border-left:5px solid #229ed4;background-color:#fff;padding-left:31px}.sidebar li.selected{border-left:none;padding-left:0}.sidebar a{height:100%;width:100%;padding-left:36px;display:flex;align-items:center;color:#151112}.sidebar a.selected:not(.selected-userProgram){border-left:5px solid #229ed4;background-color:#dcf7ff;padding-left:31px}.sidebar a.selected-accessLevel{background-color:#fff;padding-left:11px}.sidebar a.selected-accessLevel-subSection{padding-left:11px}.sidebar a:not(.selected):not(.sidebar-accessLevel-subSection):not(.no-select):hover{background-color:#eee;color:#229ed4}.sidebar a.section-link.expanded{border-left:5px solid #229ed4;background-color:#fff;padding-left:31px}.sidebar--expanded{background-color:#fcfcfc;width:100%;box-sizing:border-box;border-bottom:1px solid #eee}.sidebar--expanded.enter{flex-grow:.001}.sidebar--expanded.enter-active{flex-grow:1;transition:all 250ms ease-out}.sidebar--expanded.exit{flex-grow:1}.sidebar--expanded.exit-active{flex-grow:.001;transition:all 250ms ease-out}.sidebar--expanded li{border-bottom:none}.sidebar__foot{height:40px;min-height:40px;width:100%;box-sizing:border-box;padding:0 16px}.sidebar li.sidebar-accessLevel{height:50px;display:flex;flex-direction:row;justify-content:space-between}.sidebar .accessLevel-section-link{display:flex;flex-direction:row;justify-content:space-between;padding-right:16px}.sidebar .sidebar-accessLevel--expanded{position:relative;padding-left:0;background-color:#fcfcfc}.sidebar .sidebar-accessLevel--expanded.enter{flex-grow:.001}.sidebar .sidebar-accessLevel--expanded.enter-active{flex-grow:1;transition:all 250ms ease-out}.sidebar .sidebar-accessLevel--expanded.exit{flex-grow:1}.sidebar .sidebar-accessLevel--expanded.exit-active{flex-grow:.001;transition:all 250ms ease-out}.sidebar .sidebar-accessLevel-trainerPicker{box-sizing:border-box;width:100%;padding:16px}.sidebar li.sidebar-accessLevel-subSection{border-bottom:none;background-color:rgba(0,0,0,0)}.sidebar li.sidebar-accessLevel-subSection a{box-sizing:border-box}.sidebar li.sidebar-accessLevel-subSection .selected{background-color:rgba(0,0,0,0)}.sidebar li.sidebar-accessLevel-subSection:hover .selected{background-color:rgba(0,0,0,0)}.sidebar .sidebar-accessLevel-subSection--expanded{padding-left:0}.sidebar .sidebar-accessLevel-subSection--expanded.enter{max-height:0px}.sidebar .sidebar-accessLevel-subSection--expanded.enter-done{transition:all 250ms ease-out}.sidebar .sidebar-accessLevel-subSection--expanded.enter-active{max-height:200px;transition:all 250ms ease-out}.sidebar .sidebar-accessLevel-subSection--expanded.exit{max-height:2000px}.sidebar .sidebar-accessLevel-subSection--expanded.exit-active{max-height:0px}.sidebar li.sidebar-userProgram{height:74px;display:flex;flex-direction:row;justify-content:space-between}.sidebar li.sidebar-userProgram.no-select{cursor:default}.sidebar li.sidebar-userProgram .selected{border-left:5px solid #229ed4;background-color:#fff;padding-left:11px}.sidebar .userProgram-section-link{width:100%;display:flex;flex-direction:row;justify-content:space-between;align-items:flex-start;padding:12px 9px;box-sizing:border-box}.sidebar .sidebar-userProgram--expanded{position:relative;padding-left:0;background-color:#fcfcfc}.sidebar .sidebar-userProgram--expanded.enter{max-height:0px}.sidebar .sidebar-userProgram--expanded.enter-done{transition:all 250ms ease-out}.sidebar .sidebar-userProgram--expanded.enter-active{max-height:200px;transition:all 250ms ease-out}.sidebar .sidebar-userProgram--expanded.exit{max-height:2000px}.sidebar .sidebar-userProgram--expanded.exit-active{max-height:0px}.sidebar .sidebar-userProgram--expanded li.section-userProgramTrainingPhase{height:50px;padding-left:0;border-bottom:none;flex-shrink:0}.sidebar .sidebar-userProgram--expanded li.section-userProgramTrainingPhase a{border-bottom:none}.sidebar .sidebar-userProgram--expanded li.section-userProgramTrainingPhase.timeOff,.sidebar .sidebar-userProgram--expanded li.section-userProgramTrainingPhase.timeOff a{cursor:unset}.sidebar .sidebar-userProgram--expanded li.section-userProgramTrainingPhase.timeOff a:hover{background-color:rgba(0,0,0,0)}.sidebar .sidebar-userProgram--expanded .section-userProgramTrainingPhase-current{margin-left:auto;text-align:center;color:#fff;background-color:#70d27c;height:12px;width:50px;min-width:50px;border-radius:6px;font-size:9px;line-height:12px}.sidebar .sidebar-userProgram--expanded a.section-link{box-sizing:border-box;padding-left:28px;color:#151112}.sidebar .sidebar-userProgram--expanded a.section-link.selected{padding-left:23px}.sidebar li.sidebar-userProgram-subSection{border-bottom:none;background-color:rgba(0,0,0,0)}.sidebar li.sidebar-userProgram-subSection a{box-sizing:border-box}.sidebar li.sidebar-userProgram-subSection .selected{background-color:rgba(0,0,0,0)}.sidebar li.sidebar-userProgram-subSection:hover .selected{background-color:rgba(0,0,0,0)}.sidebar .section-userProgramTrainingPhase-list{display:flex;align-items:center;padding-left:61px;flex-shrink:0}.sidebar .section-userProgramTrainingPhase-footer{display:flex;flex-direction:row;justify-content:space-between;align-items:center;padding-left:36px;padding-right:16px;width:100%;height:40px;box-sizing:border-box;flex-shrink:0}.sidebar .section-userProgramTrainingPhase-footer .dropdown-active p{color:#fff}.sidebar li.sidebar-program{border-bottom:none;height:50px}.sidebar li.sidebar-program .selected-program{border-left:5px solid #229ed4;padding-left:33px}.sidebar li.sidebar-program .selected-program-section{background-color:#dcf7ff}.sidebar li.sidebar-program a{padding-left:38px;box-sizing:border-box}.sidebar .sidebar-program--expanded{padding-left:0;border-bottom:none;flex-shrink:0}.sidebar .sidebar-program--expanded.enter{max-height:0px}.sidebar .sidebar-program--expanded.enter-done{transition:all 250ms ease-out}.sidebar .sidebar-program--expanded.enter-active{max-height:200px;transition:all 250ms ease-out}.sidebar .sidebar-program--expanded.exit{max-height:2000px}.sidebar .sidebar-program--expanded.exit-active{max-height:0px}.sidebar .sidebar-program--expanded>li{padding-left:0;border-bottom:none;flex-shrink:0}.sidebar .sidebar-program--expanded a.section-link{box-sizing:border-box;margin-left:61px;color:#151112;border-bottom:1px solid #eee}.sidebar .sidebar-program--expanded a.section-link.selected{margin-left:0;padding-left:56px}.sidebar .sidebar-program--expanded li.section-trainingPlan{height:50px}.sidebar .sidebar-program--expanded li.section-trainingPlan a{border-bottom:none}.sidebar .section-trainingPlan-list{height:40px;display:flex;align-items:center;padding-left:61px;flex-shrink:0}.sidebar .section-trainingPlan-footer{display:flex;flex-direction:row;justify-content:space-between;align-items:center;padding-left:61px;padding-right:16px;width:100%;height:40px;box-sizing:border-box;flex-shrink:0}.sidebar .section-trainingPlan-footer .dropdown-active p{color:#fff}.sidebar li.sidebar-challenge{height:70px;border-bottom:none}.sidebar li.sidebar-challenge .selected-challenge{box-sizing:border-box;color:#229ed4;border-left:3px solid #229ed4;overflow:hidden}.sidebar li.sidebar-challenge a{max-width:230px;padding-left:0;box-sizing:border-box}.sidebar .sidebar-challenge__expanded{margin-left:57px}.sidebar .sidebar-challenge__expanded .outsideBox{width:100%;padding:10px 0 10px 0;border-bottom:1px solid #eee}.sidebar .sidebar-challenge__expanded li{height:20px;min-height:20px;border-bottom:none}.sidebar .sidebar-challenge__expanded a.section-link{padding-left:7px;color:#151112}.sidebar .sidebar-challenge__expanded a.section-link.selected{color:#229ed4;border-left:3px solid #229ed4;background-color:#fff}.inBody-locationSingle{border:1px solid #eee !important;margin-bottom:6px;padding:16px}.inBody-locationSingle>.ant-list-item-action>li{cursor:default}.inBodyTestConnectionForm .ant-form-item-label{padding:0}.tag_menu__add_button{width:20px;height:20px;margin:5px 0px 5px 0px;cursor:pointer;background:url(../../react/ui/components/tagFilter/images/addTagInactive.svg) no-repeat;background-size:contain}.tag_menu__add_button:hover{background-image:url(../../react/ui/components/tagFilter/images/addTagActive.svg)}.tag_menu__add_new_button{width:100%;height:38px;text-align:center;color:#06a9f6;font-size:12px;line-height:38px;font-weight:400;cursor:pointer;flex-shrink:0;position:relative}.tag_menu__form_container{display:flex;flex-direction:column;background:#fff;border:1px solid #eaeaea;box-sizing:border-box;width:180px;position:absolute;right:0px;top:30px;z-index:1;box-shadow:0px 4px 8px 0px rgba(0,0,0,.2)}.tag_menu__search_wrap{box-sizing:border-box;margin:8px !important}.tag_menu__search_bar{position:relative;float:right;margin-top:1px;margin-right:2px}.tag_menu__search_bar .mag_icon{background-image:url(../../react/ui/components/tagFilter/images/search.png);background-size:16px 16px;background-repeat:no-repeat;background-position:50% 50%;height:18px;width:18px;position:absolute;top:3px;left:2px}.tag_menu__search_bar .clear{background-image:url(../../react/ui/components/tagFilter/images/clear.png);background-size:10px 10px;background-repeat:no-repeat;background-position:50% 50%;height:14px;width:14px;position:absolute;top:5px;right:6px;background-color:#bbb;border-radius:8px;-webkit-border-radius:8px;-moz-border-radius:8px;cursor:pointer;opacity:.7}.tag_menu__search_bar .clear:hover{opacity:1}.tag_menu__search_bar input[type=text]{background:#fff;padding:3px 21px 3px 21px;font-size:13px;line-height:14px;height:22px;margin:1px 2px 0 0;border:1px solid #ebebeb;border-radius:14px;outline:0;box-sizing:border-box}.tag_menu__search_bar input[type=text]:focus{border:1px solid #05a9f5}.tag_menu__search_bar input[type=text]::-webkit-input-placeholder{color:#ccc;font-weight:400;font-size:12px}.tag_menu__search_bar input[type=text]::-moz-placeholder{color:#ccc;font-weight:400;font-size:12px}.tag_menu__search_bar input[type=text]:-ms-input-placeholder{color:#ccc;font-weight:400;font-size:12px}.tag_menu__search_bar input[type=text]:-moz-placeholder{color:#ccc;font-weight:400;font-size:12px}.tag_menu__search_result{border-top:1px solid #eaeaea;box-sizing:border-box;background-color:rgba(0,0,0,0);margin-top:0;list-style:none;display:block;max-height:9rem;overflow:auto;min-height:96px;padding-top:8px}.tag_menu__search_result>.empty{width:100%;height:100%;text-align:center;font-size:12px;line-height:79px;color:#a3a3a3;user-select:none}.tag_menu__loading{background-color:#fff;background-color:rgba(255,255,255,.7);z-index:100;height:100%;width:100%;position:absolute;top:0;left:0}.tag_menu__container{display:block;position:relative;color:#797c80;cursor:pointer;font-size:12px;line-height:14px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:0 8px 0 8px}.tag_menu__container:hover{background-color:#f2f2f2;color:#06a9f6}.tag_menu__container .tag{width:14px;height:14px;float:left;padding:5px 6px 5px 8px}.tag_menu__container input{position:absolute;opacity:0;cursor:pointer;height:0;width:0}.tag_menu__container span{display:inline-block;vertical-align:middle;padding:5px 0px 5px 0px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:100px}.tag_menu__checkmark{position:absolute;top:5px;left:0;height:10px;width:10px}.tag_menu__multi_select{margin:12px;max-width:100%;display:flex;flex-direction:column;position:relative}.tag_menu__chip_list{display:flex;flex-direction:row-reverse;flex-wrap:wrap}.tag_menu__chip_body{margin-right:10px;margin-top:5px;margin-bottom:5px;height:20px;border:1px solid #c2c7cc;box-sizing:border-box;border-radius:10px;min-width:55px;max-width:160px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#a3a3a3;position:relative;display:flex;align-items:center}.tag_menu__chip_body_editable:hover .tag_menu__chip_close{display:inline-block;margin-right:0px}.tag_menu__chip_body_editable:hover .tag_menu__chip_text{width:calc(100% - 50px)}.tag_menu__chip_text{padding:0px 10px 0px 0;font-size:12px;line-height:14px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;cursor:default;display:inline-block;width:calc(100% - 32px)}.tag_menu__chip_close{color:#fff;background:#c2c7cc;text-align:center;border:none;display:none;height:100%;cursor:pointer;position:absolute;right:0;top:0}.tag_menu__chip_tag{width:10px;height:10px;float:left;margin:0 5px 0 8px}.groupPicker__label_container{display:flex;align-items:center}.groupPicker__label_image_conatainer{border:1px solid #c2c7cc;border-radius:50%;width:28px;height:28px;display:flex;justify-content:center;align-items:center;margin-right:12px}.groupPicker__label_image{height:auto;width:20px}.groupPicker__label_text{font-size:12px;color:#303133}.groupPicker__search_icon{position:absolute;right:9px;top:8px}.groupPicker__picker_override_dropdown .ant-select-dropdown-menu-item:hover{color:rgba(0,0,0,.25);background-color:#fff}.groupPicker__picker_override_dropdown .ant-select-dropdown-menu-item>.groupPicker__label_container:hover .groupPicker__label_text{color:#06a9f6}.groupPicker__picker_override_input .ant-select-selection__choice{background-color:#b9efff;padding:0 20px 0 3px;border-radius:32px;border:none}.groupPicker__picker_override_input .ant-select-selection--multiple .ant-select-selection__rendered li{height:34px;line-height:34px}.groupPicker__picker_override_input .ant-select-selection__rendered{margin-right:40px}.habitProgress__statsInfo{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;width:320px}.habitProgress__statsSection{display:flex;border-top:1px solid #eaeaea;flex:0 0 750px;margin-top:30px;padding-top:15px}.habitProgress__percentageContainer{position:absolute;bottom:0;left:0}.habitProgress__percentageText{font-size:12px;color:#797c80;margin-bottom:5px}.habitProgress__percentageValue{font-size:26px;color:#303133}.habitProgress__percentageValueContainer{display:flex;margin-top:0px}.habitProgress__wrapper{display:flex;flex-wrap:wrap;width:100%}.habitProgress__text{color:#797c80;font-size:10px;margin-left:5px}.habitProgress__statsTitle{font-size:18px;color:#303133;margin-bottom:5px}.habitProgress__statsText{font-size:12px;color:#797c80}.habitProgress__statsNumber{font-size:26px;color:#303133;display:flex}.progressPhotoTileGrid .tileGrid__body-content{height:100%}.progressPhotoTileGrid .tileGrid__tile{min-height:226px;overflow:visible}.progressPhotoTile__container{height:100%;width:100%}.progressPhotoTile__imageCon{height:100%}.progressPhotoTile__description{display:flex;flex-direction:column;align-items:center}.reactSelectBoxGroup .ant-radio-group{display:block}.reactSelectBoxGroup .ant-radio-wrapper{margin:0;display:block;width:100%;font-size:0;line-height:0;white-space:normal}.reactSelectBoxGroup .ant-radio-inner{display:none}.rechargeSessionBalanceDialog .modal-body{height:100%;overflow-y:hidden;display:grid;grid-template-rows:auto auto 1fr;grid-row-gap:16px}.rechargeSessionBalanceDialog .servicesWrapper{margin-top:8px;overflow-y:auto;height:246px}.rechargeSessionBalanceDialog .servicesWrapper .ant-table-placeholder{height:calc(246px - 1px)}.rechargeSessionBalanceDialog__upgradePlan{padding:16px;display:flex;justify-content:space-between;align-items:center;border-radius:10px;border:1px solid #cfcfcf !important;background:#fcfcfc !important}.rechargeSessionBalanceDialog__upgradePlan__text{display:grid;gap:12px}.rechargeSessionBalanceDialog__upgradePlan__text__title{color:#151112 !important;font-size:16px !important;font-style:normal !important;font-weight:700 !important;line-height:18px !important}.rechargeSessionBalanceDialog__upgradePlan__text__description{color:#6e6e6e !important;font-feature-settings:"clig" off,"liga" off;font-size:12px !important;font-style:normal;font-weight:400 !important;line-height:16px !important}.rechargeSessionBalanceDialog__upgradePlan__button{padding:4px 7px !important;text-align:center;font-size:12px !important;font-style:normal !important;font-weight:400 !important;line-height:16px !important;text-transform:uppercase;min-width:86px !important}.eventServicesList{border-top:1px solid #eee}.eventServiceColumn{padding:8px 0 !important}.eventServiceColumn:first-of-type{padding-right:8px !important}.eventServiceColumn:last-of-type{padding-left:8px !important}.nullScreenWrapper{display:flex;height:100%}.nullScreenWrapper .noServicesNullScreen{margin:auto;width:60%}.serviceCheckoutDialog{text-align:center !important}.serviceCheckoutDialog .modal-body{padding-bottom:16px;display:flex;flex-direction:column;align-items:center}.serviceCheckoutDialog .modal-body .checkoutDialogTitle{color:#a3a3a3}.serviceCheckoutDialog .modal-body .serviceInformationContainer{margin:77px 0}.serviceCheckoutDialog .modal-body .serviceInformationContainer .serviceName{color:#000;font-size:26px;line-height:31px;padding-bottom:15px}.serviceCheckoutDialog .modal-body .serviceInformationContainer .serviceQuantity{color:#000;font-size:21px;line-height:24px}.serviceCheckoutDialog .modal-body .paymentInformation{color:#a3a3a3;padding-bottom:8px}.serviceCheckoutDialog .modal-body .paymentMethodSelectWrapper{display:flex;justify-content:center;padding-bottom:16px}.serviceCheckoutDialog .modal-body .priceWrapper{display:flex;align-items:center;position:relative;padding-top:24px}.serviceCheckoutDialog .modal-body .priceWrapper .snake-loader{position:absolute;left:calc(100% + 10px)}.serviceCheckoutDialog .modal-body .priceWrapper .servicePrice{font-size:21px;line-height:24px}.serviceCheckoutDialog .modal-body .nullScreen{padding-bottom:72px}.serviceCheckoutDialog .modal-body .nullScreen svg{margin-bottom:32px}.serviceCheckoutDialog .modal-footer{margin:auto !important}.serviceCheckoutDialog .modal-footer :first-child{align-items:center}.serviceCheckoutDialog .modal-footer button{width:200px;height:36px;margin:auto !important}.serviceCheckoutDialog .modal-footer p{text-align:center}.serviceCheckoutDialog.orangeError .modal-footer p{color:orange}.reactBaseGridWrap .gridToolBar .sortByLabel{white-space:nowrap;margin-right:8px}.reactBaseGridWrap .gridToolBar .baseGridSortBy .sortOrderButton{margin-right:8px;padding:0;height:24px;width:24px;border-radius:4px}.reactBaseGridWrap .gridToolBar .baseGridSortBy .sortOrderButton.descending{transform:scale(1, 1)}.reactBaseGridWrap .gridToolBar .baseGridSortBy .sortOrderButton.ascending{transform:scale(1, -1)}.reactBaseGridWrap .selectedBar{display:flex;flex-direction:row;align-items:center;max-height:25px;width:100%;box-sizing:border-box;background-color:#229ed4;padding:0 16px;color:#fff}.reactBaseGridWrap .selectedBar-enter{flex-basis:0;height:0}.reactBaseGridWrap .selectedBar-enter-active{flex-basis:25px;height:25px;transition:flex-basis 300ms ease-in-out,height 300ms ease-in-out}.reactBaseGridWrap .selectedBar-enter-done{flex-basis:25px;height:25px}.reactBaseGridWrap .selectedBar-exit{flex-basis:25px;height:25px}.reactBaseGridWrap .selectedBar-exit-active{flex-basis:0;height:0;transition:flex-basis 300ms ease-in-out,height 300ms ease-in-out}.reactBaseGridWrap .selectedBar-exit-done{flex-basis:0;height:0}.reactBaseGridWrap .baseGridFooter{display:flex;flex-direction:row;align-items:center;justify-content:space-between;box-sizing:border-box;padding:0 16px;border-bottom:1px solid #eee;height:40px;max-height:40px;width:100%}.reactBaseGridWrap .gridPageNumber{box-sizing:border-box;border:1px solid #cfcfcf;border-radius:5px;padding:8px;height:30px;width:30px}.reactBaseGridWrap .gridPageNumber:hover{border-color:#229ed4}.reactBaseGridWrap .gridPageNumber:hover label{color:#229ed4}.reactBaseGridWrap .baseGridHeader{display:flex;flex-direction:row;align-items:center;justify-content:space-between;box-sizing:border-box;padding:16px 0;width:100%}.reactBaseGridWrap .baseGridHeader__search{min-width:230px}.reactBaseGridWrap .baseGridFilterChips{display:flex;align-items:center;margin-left:auto;padding-bottom:12px}.reactBaseGridWrap .baseGridColumn{overflow:hidden}.reactBaseGridWrap .baseGridColumn div{overflow:hidden}.reactBaseGridWrap .baseGridColumn p{width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.reactBaseGridWrap .reactGridTabs .btn{min-width:90px !important;text-transform:none}.reactBaseGrid{border-bottom:1px solid #eee;box-sizing:border-box;overflow:hidden}.reactBaseGrid *{box-sizing:border-box}.reactBaseGrid__content{height:100%;width:100%;overflow:auto;display:flex;flex:1}.reactBaseGrid .columnHeader{border-bottom:1px solid #eee;display:grid;height:38px;min-height:38px;width:100%;padding:10px 20px 10px 16px;line-height:16px}.reactBaseGrid .baseGridBody{position:relative;display:flex;flex-direction:column;flex:1;width:100%}.reactBaseGrid .baseGridRow{display:grid;flex:initial;width:100%;padding:10px 20px 10px 16px;border-bottom:1px solid #eee}.reactBaseGrid .baseGridRow:hover{background-color:#f2f2f2}.reactBaseGrid .baseGridNullScreen{min-height:200px;width:100%;flex:1}.tileGrid{display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;height:100%;width:100%;box-sizing:border-box;overflow:hidden}.tileGrid .selectedBar{display:flex;flex-direction:row;align-items:center;max-height:25px;width:100%;box-sizing:border-box;background-color:#229ed4;padding:0 16px;color:#fff}.tileGrid .selectedBar-enter{flex-basis:0;height:0}.tileGrid .selectedBar-enter-active{flex-basis:25px;height:25px;transition:flex-basis 300ms ease-in-out,height 300ms ease-in-out}.tileGrid .selectedBar-enter-done{flex-basis:25px;height:25px}.tileGrid .selectedBar-exit{flex-basis:25px;height:25px}.tileGrid .selectedBar-exit-active{flex-basis:0;height:0;transition:flex-basis 300ms ease-in-out,height 300ms ease-in-out}.tileGrid .selectedBar-exit-done{flex-basis:0;height:0}.tileGrid__header{display:flex;flex-direction:row;align-items:center;justify-content:space-between;box-sizing:border-box;padding:16px 0;width:100%}.tileGrid__header__search{min-width:230px}.tileGrid__toolbar{background-color:#fcfcfc;height:50px;min-height:50px;max-height:50px;width:100%;box-sizing:border-box;display:flex;justify-content:flex-start;align-items:center;padding:0 16px 0 16px}.tileGrid__body{overflow-y:auto;position:relative;height:100%;width:100%;box-sizing:border-box;display:flex;flex-direction:column}.tileGrid__body-content{padding:16px 0}.tileGrid__body-content>div{display:grid}.tileGrid__nullContent{height:100%;width:100%;box-sizing:border-box}.tileGrid__tile{min-height:226px;border:1px solid #eee;border-radius:10px;overflow:hidden}.thingsToDo .dropdown-active{background-color:#fff !important;color:#229ed4 !important}.FormField .ant-form-item-control{line-height:1.5}.FormField .ant-form-item{margin-bottom:0;font-size:12px;min-height:45px}.FormField .ant-input{height:24px;font-weight:400;font-style:normal;font-size:12px;line-height:16px}.MediaUploader{position:relative;box-sizing:initial !important}.MediaUploader .ant-upload{height:100%;width:100%}.MediaUploader .ant-upload-list{position:absolute;top:50%;left:50%;max-width:95%;transform:translate(-50%, -50%)}.MediaUploader__dashedBorder{border:1px dashed #c2c7cc}.MediaUploader__dashedBorder:hover{border-color:#229ed4}.MediaUploader__dashedBorder--active{border-color:#229ed4}.MediaUploader__DropContainer{background:#fff;box-sizing:border-box;text-align:center}.MediaUploader__DropContainer__title{margin:2px 0}.MediaUploader .Media{background-position:center;background-repeat:no-repeat;background-size:cover}.mediaRemoveDialog .modal-body{padding-bottom:24px}.mediaRemoveDialog h2{padding:0 !important}.rc-calendar{box-sizing:border-box}.rc-calendar *{box-sizing:border-box}.rc-calendar-hidden{display:none}.rc-calendar-input-wrap{position:relative;padding:6px;border-bottom:1px solid #e9e9e9}.rc-calendar-input-wrap:after{content:"";clear:both}.rc-calendar-date-input-wrap{overflow:hidden}.rc-calendar-time-picker{position:absolute;width:100%;top:34px;background-color:white;height:217px}.rc-calendar-time-picker-panel{width:100%;position:relative}.rc-calendar-time-picker-panel .rc-time-picker-panel-input-wrap{display:none}.rc-calendar-time-picker-panel .rc-time-picker-panel-inner{border:none;box-shadow:none}.rc-calendar-time-picker-panel .rc-time-picker-panel-select{width:84px;max-height:217px}.rc-calendar-time-picker-panel .rc-time-picker-panel-select li{text-align:center;padding:0}.rc-calendar-time-picker-wrap{float:left;width:100%}.rc-calendar-time-picker-wrap .rc-time-picker{width:100%}.rc-calendar-time-picker-wrap .rc-time-picker-input{padding:0;border:1px solid transparent;outline:0;height:22px}.rc-calendar-time-picker-wrap .rc-time-picker-icon{display:none}.rc-calendar-input{border:1px solid transparent;width:100%;color:#666;cursor:text;line-height:1.5;outline:0;height:22px}.rc-calendar-input-invalid{border-color:red}.rc-calendar-clear-btn{z-index:9999;position:absolute;right:6px;cursor:pointer;overflow:hidden;width:20px;height:20px;text-align:center;line-height:20px;top:6px;margin:0}.rc-calendar-clear-btn:after{content:"x";font-size:12px;color:#aaa;display:inline-block;line-height:1;width:20px;transition:color .3s ease}.rc-calendar-clear-btn:hover:after{color:#666}.rc-calendar-picker{position:absolute;left:-9999px;top:-9999px;z-index:1000}.rc-calendar-picker-hidden{display:none}.rc-calendar-picker-slide-up-enter{animation-duration:.3s;animation-fill-mode:both;transform-origin:0 0;display:block !important;opacity:0;animation-timing-function:cubic-bezier(0.08, 0.82, 0.17, 1);animation-play-state:paused}.rc-calendar-picker-slide-up-appear{animation-duration:.3s;animation-fill-mode:both;transform-origin:0 0;display:block !important;opacity:0;animation-timing-function:cubic-bezier(0.08, 0.82, 0.17, 1);animation-play-state:paused}.rc-calendar-picker-slide-up-leave{animation-duration:.3s;animation-fill-mode:both;transform-origin:0 0;display:block !important;opacity:1;animation-timing-function:cubic-bezier(0.6, 0.04, 0.98, 0.34);animation-play-state:paused}.rc-calendar-picker-slide-up-enter.rc-calendar-picker-slide-up-enter-active.rc-calendar-picker-placement-bottomLeft,.rc-calendar-picker-slide-up-enter.rc-calendar-picker-slide-up-enter-active.rc-calendar-picker-placement-bottomRight,.rc-calendar-picker-slide-up-appear.rc-calendar-picker-slide-up-appear-active.rc-calendar-picker-placement-bottomLeft,.rc-calendar-picker-slide-up-appear.rc-calendar-picker-slide-up-appear-active.rc-calendar-picker-placement-bottomRight{animation-name:rcDropdownSlideUpIn;animation-play-state:running}.rc-calendar-picker-slide-up-enter.rc-calendar-picker-slide-up-enter-active.rc-calendar-picker-placement-topLeft,.rc-calendar-picker-slide-up-enter.rc-calendar-picker-slide-up-enter-active.rc-calendar-picker-placement-topRight,.rc-calendar-picker-slide-up-appear.rc-calendar-picker-slide-up-appear-active.rc-calendar-picker-placement-topLeft,.rc-calendar-picker-slide-up-appear.rc-calendar-picker-slide-up-appear-active.rc-calendar-picker-placement-topRight{animation-name:rcDropdownSlideDownIn;animation-play-state:running}.rc-calendar-picker-slide-up-leave.rc-calendar-picker-slide-up-leave-active.rc-calendar-picker-placement-bottomLeft,.rc-calendar-picker-slide-up-leave.rc-calendar-picker-slide-up-leave-active.rc-calendar-picker-placement-bottomRight{animation-name:rcDropdownSlideUpOut;animation-play-state:running}.rc-calendar-picker-slide-up-leave.rc-calendar-picker-slide-up-leave-active.rc-calendar-picker-placement-topLeft,.rc-calendar-picker-slide-up-leave.rc-calendar-picker-slide-up-leave-active.rc-calendar-picker-placement-topRight{animation-name:rcDropdownSlideDownOut;animation-play-state:running}@keyframes rcDropdownSlideUpIn{0%{opacity:0;transform-origin:0% 0%;transform:scaleY(0)}100%{opacity:1;transform-origin:0% 0%;transform:scaleY(1)}}@keyframes rcDropdownSlideUpOut{0%{opacity:1;transform-origin:0% 0%;transform:scaleY(1)}100%{opacity:0;transform-origin:0% 0%;transform:scaleY(0)}}@keyframes rcDropdownSlideDownIn{0%{opacity:0;transform-origin:100% 100%;transform:scaleY(0)}100%{opacity:1;transform-origin:100% 100%;transform:scaleY(1)}}@keyframes rcDropdownSlideDownOut{0%{opacity:1;transform-origin:100% 100%;transform:scaleY(1)}100%{opacity:0;transform-origin:100% 100%;transform:scaleY(0)}}.rc-calendar{position:relative;outline:none;font-family:Arial,"Hiragino Sans GB","Microsoft Yahei","Microsoft Sans Serif","WenQuanYi Micro Hei",sans-serif;width:253px;list-style:none;font-size:12px;text-align:left;background-color:#fff;border-radius:3px;box-shadow:0 1px 5px #ccc;background-clip:padding-box;border:1px solid #ccc;line-height:1.5}.rc-calendar-date-panel,.rc-calendar-panel{position:relative;outline:none}.rc-calendar-week-number{width:286px}.rc-calendar-week-number-cell{text-align:center}.rc-calendar-header{padding:0 10px;height:34px;line-height:30px;text-align:center;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none;border-bottom:1px solid #ccc}.rc-calendar-header>a{font-weight:bold;display:inline-block;padding:0px 5px;line-height:34px;text-align:center;width:30px}.rc-calendar-header>a:hover{cursor:pointer;color:#23c0fa}.rc-calendar-header .rc-calendar-prev-month-btn{position:absolute;left:25px}.rc-calendar-header .rc-calendar-prev-month-btn:after{content:"‹"}.rc-calendar-header .rc-calendar-next-month-btn{position:absolute;right:25px}.rc-calendar-header .rc-calendar-next-month-btn:after{content:"›"}.rc-calendar-year-select,.rc-calendar-month-select,.rc-calendar-day-select{display:inline-block;font-size:12px;font-weight:bold;color:#666;padding:0 8px;line-height:34px}.rc-calendar-year-select:hover,.rc-calendar-month-select:hover,.rc-calendar-day-select:hover{cursor:pointer;color:#23c0fa}.rc-calendar-year-select.rc-calendar-time-status:hover,.rc-calendar-month-select.rc-calendar-time-status:hover,.rc-calendar-day-select.rc-calendar-time-status:hover{cursor:pointer;color:#666}.rc-calendar-prev-month-btn,.rc-calendar-next-month-btn,.rc-calendar-prev-year-btn,.rc-calendar-next-year-btn{position:absolute;top:0;cursor:pointer;color:#999;font-family:Arial,"Hiragino Sans GB","Microsoft Yahei","Microsoft Sans Serif",sans-serif;padding:0 5px;font-size:16px;display:inline-block;line-height:34px}.rc-calendar-prev-month-btn:hover,.rc-calendar-next-month-btn:hover,.rc-calendar-prev-year-btn:hover,.rc-calendar-next-year-btn:hover{color:#23c0fa}.rc-calendar-next-year-btn{right:0}.rc-calendar-next-year-btn:after{content:"»"}.rc-calendar-prev-year-btn{left:0}.rc-calendar-prev-year-btn:after{content:"«"}.rc-calendar-body{padding:9px 10px 10px;height:217px}.rc-calendar table{border-collapse:collapse;max-width:100%;background-color:transparent;width:100%}.rc-calendar table,.rc-calendar td,.rc-calendar th,.rc-calendar td{border:none}.rc-calendar-table{border-spacing:0;margin-bottom:0}.rc-calendar-column-header{line-height:18px;padding:6px 0;width:33px;text-align:center}.rc-calendar-column-header .rc-calendar-column-header-inner{display:block;font-weight:normal}.rc-calendar-week-number-header .rc-calendar-column-header-inner{display:none}.rc-calendar-cell{padding:1px 0}.rc-calendar-date{display:block;margin:0 auto;color:#666;border-radius:4px 4px;width:26px;height:26px;padding:0;background:transparent;line-height:26px;text-align:center}.rc-calendar-date:hover{background:#ebfaff;cursor:pointer}.rc-calendar-selected-day .rc-calendar-date{background:#d9f4fe}.rc-calendar-selected-date .rc-calendar-date{background:#3fc7fa;color:#fff}.rc-calendar-selected-date .rc-calendar-date:hover{background:#3fc7fa}.rc-calendar-today .rc-calendar-date{border:1px solid #3fc7fa}.rc-calendar-disabled-cell .rc-calendar-date{cursor:not-allowed;color:#bcbcbc;background:#f3f3f3;border-radius:0;width:auto}.rc-calendar-disabled-cell .rc-calendar-date:hover{background:#f3f3f3}.rc-calendar-disabled-cell-first-of-row .rc-calendar-date{border-top-left-radius:4px;border-bottom-left-radius:4px}.rc-calendar-disabled-cell-last-of-row .rc-calendar-date{border-top-right-radius:4px;border-bottom-right-radius:4px}.rc-calendar-last-month-cell .rc-calendar-date,.rc-calendar-next-month-btn-day .rc-calendar-date{color:#bbb}.rc-calendar-footer{border-top:1px solid #ccc;padding:10px 0;text-align:center;position:relative}.rc-calendar-footer .rc-time-picker{width:90px}.rc-calendar-footer .rc-time-picker-input{height:24px}.rc-calendar-footer-show-ok{text-align:right}.rc-calendar-footer-show-ok .rc-calendar-footer-btn{padding-right:12px}.rc-calendar-footer-show-ok .rc-calendar-time-picker-btn{margin-left:0;padding:0 12px}.rc-calendar-footer-show-ok .rc-calendar-today-btn{float:left;padding-left:12px}.rc-calendar-footer-btn{margin-top:2px}.rc-calendar-footer-btn:after{content:"x";height:0;font-size:0;overflow:hidden;clear:both}.rc-calendar-time-picker-btn{margin-left:10px}.rc-calendar-today-btn,.rc-calendar-ok-btn,.rc-calendar-time-picker-btn{display:inline-block;text-align:center;color:#f46830}.rc-calendar-today-btn:hover,.rc-calendar-ok-btn:hover,.rc-calendar-time-picker-btn:hover{cursor:pointer;color:#23c0fa}.rc-calendar-today-btn-disabled,.rc-calendar-ok-btn-disabled,.rc-calendar-time-picker-btn-disabled{color:#bbb}.rc-calendar-today-btn-disabled:hover,.rc-calendar-ok-btn-disabled:hover,.rc-calendar-time-picker-btn-disabled:hover{color:#bbb}.rc-calendar-today-btn{padding-left:10px}.rc-calendar-time-input{height:25px;position:relative;display:inline-block;margin:0 0;padding:4px 10px;border-radius:6px 6px;border:1px solid #d9d9d9;background-color:#fff;color:#666;line-height:1.5;transform:border .3s cubic-bezier(0.35, 0, 0.25, 1),background .3s cubic-bezier(0.35, 0, 0.25, 1),box-shadow .3s cubic-bezier(0.35, 0, 0.25, 1);width:40px}.rc-calendar-time-input:hover{border-color:#23c0fa}.rc-calendar-time-input:focus{border-color:#23c0fa;box-shadow:0 0 3px #23c0fa}.rc-calendar-time-panel{left:0;top:0;bottom:0;right:0;background:#fff;z-index:10;position:absolute;outline:none}.rc-calendar-time-panel-header{padding:0 10px;height:34px;line-height:34px;position:relative;text-align:center;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none;border-bottom:1px solid #ccc}.rc-calendar-time-panel-body{padding:9px 10px 10px}.rc-calendar-time-panel-title{width:180px;font-weight:bold;display:inline-block;padding:4px 5px;text-align:center;height:30px;line-height:22px;border-radius:4px}.rc-calendar-time-panel-table{table-layout:fixed;width:100%;height:255px;border-collapse:separate}.rc-calendar-time-panel-cell{text-align:center;height:42px;vertical-align:middle}.rc-calendar-time-panel-time{line-height:26px;display:block;border-radius:4px;width:26px;margin:0 auto}.rc-calendar-time-panel-time:hover{background:#ebfaff;cursor:pointer}.rc-calendar-time-panel-selected-cell .rc-calendar-time-panel-time{background:#3fc7fa;color:#fff}.rc-calendar-time-panel-selected-cell .rc-calendar-time-panel-time:hover{background:#3fc7fa;color:#fff}.rc-calendar-month-panel{left:0;top:0;bottom:0;right:0;background:#fff;z-index:10;position:absolute;outline:none}.rc-calendar-month-panel>div{height:100%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.rc-calendar-month-panel-hidden{display:none}.rc-calendar-month-panel-header{padding:0 10px;height:34px;line-height:30px;position:relative;text-align:center;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none;border-bottom:1px solid #ccc}.rc-calendar-month-panel-header>a{font-weight:bold;display:inline-block;padding:4px 5px;text-align:center;width:30px}.rc-calendar-month-panel-header>a:hover{cursor:pointer;color:#23c0fa}.rc-calendar-month-panel-prev-year-btn,.rc-calendar-month-panel-next-year-btn{position:absolute;top:0}.rc-calendar-month-panel-next-year-btn:after{content:"»"}.rc-calendar-month-panel-prev-year-btn{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;left:0}.rc-calendar-month-panel-prev-year-btn:after{content:"«"}.rc-calendar-month-panel .rc-calendar-month-panel-year-select{width:180px}.rc-calendar-month-panel-year-select-arrow{display:none}.rc-calendar-month-panel-next-year-btn{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;right:0}.rc-calendar-month-panel-body{-ms-flex:1;flex:1;padding:9px 10px 10px}.rc-calendar-month-panel-footer{border-top:1px solid #ccc;line-height:38px}.rc-calendar-month-panel-table{table-layout:fixed;width:100%;height:100%;border-collapse:separate}.rc-calendar-month-panel-cell{text-align:center}.rc-calendar-month-panel-cell .rc-calendar-month-panel-month{display:block;width:46px;margin:0 auto;color:#666;border-radius:4px 4px;height:36px;padding:0;background:transparent;line-height:36px;text-align:center}.rc-calendar-month-panel-cell .rc-calendar-month-panel-month:hover{background:#ebfaff;cursor:pointer}.rc-calendar-month-panel-cell-disabled .rc-calendar-month-panel-month{color:#bfbfbf}.rc-calendar-month-panel-cell-disabled .rc-calendar-month-panel-month:hover{background:white;cursor:not-allowed}.rc-calendar-month-panel-selected-cell .rc-calendar-month-panel-month{background:#3fc7fa;color:#fff}.rc-calendar-month-panel-selected-cell .rc-calendar-month-panel-month:hover{background:#3fc7fa;color:#fff}.rc-calendar-month-header-wrap{position:relative;height:308px}.rc-calendar-year-panel{left:0;top:0;bottom:0;right:0;background:#fff;z-index:10;position:absolute;outline:none}.rc-calendar-year-panel>div{height:100%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.rc-calendar-year-panel-hidden{display:none}.rc-calendar-year-panel-header{padding:0 10px;height:34px;line-height:30px;position:relative;text-align:center;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none;border-bottom:1px solid #ccc}.rc-calendar-year-panel-header>a{font-weight:bold;display:inline-block;padding:4px 5px;text-align:center;width:30px}.rc-calendar-year-panel-header>a:hover{cursor:pointer;color:#23c0fa}.rc-calendar-year-panel-prev-decade-btn,.rc-calendar-year-panel-next-decade-btn{position:absolute;top:0}.rc-calendar-year-panel-next-decade-btn:after{content:"»"}.rc-calendar-year-panel-prev-decade-btn{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;left:0}.rc-calendar-year-panel-prev-decade-btn:after{content:"«"}.rc-calendar-year-panel .rc-calendar-year-panel-decade-select{width:180px}.rc-calendar-year-panel-decade-select-arrow{display:none}.rc-calendar-year-panel-next-decade-btn{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;right:0}.rc-calendar-year-panel-body{-ms-flex:1;flex:1;padding:9px 10px 10px}.rc-calendar-year-panel-footer{border-top:1px solid #ccc;line-height:38px}.rc-calendar-year-panel-table{table-layout:fixed;width:100%;height:100%;border-collapse:separate}.rc-calendar-year-panel-cell{text-align:center}.rc-calendar-year-panel-year{display:block;width:46px;margin:0 auto;color:#666;border-radius:4px 4px;height:36px;padding:0;background:transparent;line-height:36px;text-align:center}.rc-calendar-year-panel-year:hover{background:#ebfaff;cursor:pointer}.rc-calendar-year-panel-selected-cell .rc-calendar-year-panel-year{background:#3fc7fa;color:#fff}.rc-calendar-year-panel-selected-cell .rc-calendar-year-panel-year:hover{background:#3fc7fa;color:#fff}.rc-calendar-year-panel-last-decade-cell .rc-calendar-year-panel-year,.rc-calendar-year-panel-next-decade-cell .rc-calendar-year-panel-year{-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none;color:rgba(0, 0, 0, 0.25)}.rc-calendar-decade-panel{left:0;top:0;bottom:0;right:0;background:#fff;z-index:10;position:absolute;outline:none;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.rc-calendar-decade-panel-hidden{display:none}.rc-calendar-decade-panel-header{padding:0 10px;height:34px;line-height:34px;position:relative;text-align:center;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none;border-bottom:1px solid #ccc}.rc-calendar-decade-panel-header>a{font-weight:bold;display:inline-block;padding:1px 5px;text-align:center;width:30px}.rc-calendar-decade-panel-header>a:hover{cursor:pointer;color:#23c0fa}.rc-calendar-decade-panel-prev-century-btn,.rc-calendar-decade-panel-next-century-btn{position:absolute;top:0}.rc-calendar-decade-panel-next-century-btn:after{content:"»"}.rc-calendar-decade-panel-prev-century-btn{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;left:0}.rc-calendar-decade-panel-prev-century-btn:after{content:"«"}.rc-calendar-decade-panel-next-century-btn{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;right:0}.rc-calendar-decade-panel-body{-ms-flex:1;flex:1;padding:9px 10px 10px}.rc-calendar-decade-panel-footer{border-top:1px solid #ccc;line-height:38px}.rc-calendar-decade-panel-table{table-layout:fixed;width:100%;height:100%;border-collapse:separate}.rc-calendar-decade-panel-cell{text-align:center}.rc-calendar-decade-panel-decade{display:block;margin:0 auto;color:#666;border-radius:4px 4px;height:36px;padding:0;background:transparent;line-height:36px;text-align:center}.rc-calendar-decade-panel-decade:hover{background:#ebfaff;cursor:pointer}.rc-calendar-decade-panel-selected-cell .rc-calendar-decade-panel-decade{background:#3fc7fa;color:#fff}.rc-calendar-decade-panel-selected-cell .rc-calendar-decade-panel-decade:hover{background:#3fc7fa;color:#fff}.rc-calendar-decade-panel-last-century-cell .rc-calendar-decade-panel-decade,.rc-calendar-decade-panel-next-century-cell .rc-calendar-decade-panel-decade{-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none;color:rgba(0, 0, 0, 0.25)}.rc-calendar-range{width:502px;overflow:hidden}.rc-calendar-range-part{width:250px;position:relative}.rc-calendar-range-part .rc-calendar-time-picker{top:69px}.rc-calendar-range-part .rc-calendar-time-picker-panel-select{width:77px}.rc-calendar-range-left{float:left}.rc-calendar-range-left .rc-calendar-time-picker-panel-select:last-child{border-right:1px solid #e9e9e9}.rc-calendar-range-right{float:right}.rc-calendar-range-right .rc-calendar-time-picker-panel{left:21px}.rc-calendar-range-right .rc-calendar-time-picker-panel-select:first-child{border-left:1px solid #e9e9e9}.rc-calendar-range-middle{position:absolute;margin-left:-10px;text-align:center;height:35px;line-height:35px}.rc-calendar-range .rc-calendar-date-panel::after{content:".";display:block;height:0;clear:both;visibility:hidden}.rc-calendar-range .rc-calendar-input-wrap{height:35px}.rc-calendar-range .rc-calendar-input,.rc-calendar-range .rc-time-picker-input{padding:1px 7px;height:22px}.rc-calendar-range .rc-calendar-body,.rc-calendar-range .rc-calendar-decade-panel-body,.rc-calendar-range .rc-calendar-year-panel-body,.rc-calendar-range .rc-calendar-month-panel-body{border-bottom:1px solid #e9e9e9}.rc-calendar-range.rc-calendar-week-number{width:574px}.rc-calendar-range.rc-calendar-week-number .rc-calendar-range-part{width:286px}.rc-calendar-range.rc-calendar-week-number .rc-calendar-range-part .rc-calendar-time-picker{top:69px}.rc-calendar-range.rc-calendar-week-number .rc-calendar-range-part .rc-calendar-time-picker-panel-select{width:89px}.rc-calendar-range.rc-calendar-week-number .rc-calendar-range-right .rc-calendar-time-picker-panel{left:36px}.rc-calendar-range .rc-calendar-year-panel,.rc-calendar-range .rc-calendar-month-panel,.rc-calendar-range .rc-calendar-decade-panel{top:35px}.rc-calendar-range .rc-calendar-month-panel .rc-calendar-year-panel{top:0}.rc-calendar-range .rc-calendar-decade-panel-table,.rc-calendar-range .rc-calendar-year-panel-table,.rc-calendar-range .rc-calendar-month-panel-table{height:198px}.rc-calendar-range .rc-calendar-in-range-cell{background:#ebf4f8;border-radius:0}.rc-calendar-range-bottom{text-align:right}.rc-calendar-range .rc-calendar-footer{border-top:none;padding:0}.rc-calendar-range .rc-calendar-footer-btn{padding:10px 12px 10px 0}.rc-calendar-range .rc-calendar-ok-btn{position:static}.rc-calendar-range .rc-calendar-today-btn{float:left}.rc-calendar-full{width:275px}.rc-calendar-full-header{padding:5px 10px;text-align:center;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none;border-bottom:1px solid #ccc;overflow:hidden}.rc-calendar-full-header-month-select,.rc-calendar-full-header-year-select{width:70px;float:right;margin-right:5px}.rc-calendar-full-header-switcher{float:right;display:inline-block}.rc-calendar-full-header-switcher-normal:hover{border-color:#23c0fa;box-shadow:0 0 2px rgba(45, 183, 245, 0.8);cursor:pointer}.rc-calendar-full-header-switcher-focus{border-color:#3fc7fa;background-color:#3fc7fa;color:#fff}.rc-calendar-full-header-switcher>span{float:left;height:28px;line-height:24px;border:1px solid #d9d9d9;padding:0 10px;color:#666}.rc-calendar-full-header-switcher>span:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px;border-right:none}.rc-calendar-full-header-switcher>span:last-child{border-top-right-radius:4px;border-bottom-right-radius:4px;border-left:none}.rc-calendar-fullscreen{width:auto}.rc-calendar-fullscreen .rc-calendar-full-header{border-bottom:none}.rc-calendar-fullscreen .rc-calendar-column-header{text-align:right;padding-right:12px}.rc-calendar-fullscreen .rc-calendar-cell{padding:0}.rc-calendar-fullscreen .rc-calendar-cell .rc-calendar-date,.rc-calendar-fullscreen .rc-calendar-month-panel-cell .rc-calendar-month-panel-month{display:block;height:116px;width:auto;border-radius:0;margin:0 4px;border:none;border-top:2px solid #eee;text-align:right;padding-right:8px}.rc-calendar-fullscreen .rc-calendar-selected-day .rc-calendar-date,.rc-calendar-fullscreen .rc-calendar-month-panel-selected-cell .rc-calendar-month-panel-month{background-color:#ebfaff;color:#666}.rc-calendar-fullscreen .rc-calendar-today .rc-calendar-date,.rc-calendar-fullscreen .rc-calendar-month-panel-selected-cell .rc-calendar-month-panel-month{border-top-color:#3fc7fa;color:#3fc7fa}.calendar_container .rc-calendar-month-panel-selected-cell .rc-calendar-month-panel-month{background-color:#229ed4}.itemRowTooltip .ant-tooltip-inner{color:#606366;background-color:#fff;border:1px solid #ccc}.itemRowTooltip .ant-tooltip-arrow{border-bottom-color:#ccc}.itemRowTooltip .ant-tooltip-arrow:before{border:1px solid #ccc}.abcWalletContainer{width:190px;display:flex;position:relative;justify-content:center;align-items:center}.abcWalletContainer .nullText{color:#000;padding-top:8px}.abcWalletContainer .errorText{color:red;font-size:small;align-self:flex-start}.abcWalletContainer .ant-select{border-color:#eee}.abcWalletContainer .ant-select-selection{width:190px;border-color:inherit}.abcWalletContainer .ant-select-selection__rendered{margin-left:8px;display:flex;align-items:center}.abcWalletContainer .ant-select-selection .warningIcon{display:none}.abcWalletContainer .snake-loader{position:absolute;left:calc(100% + 10px)}.abcWalletOption{padding:8px}.creditCardOptionWrapper{display:flex;justify-content:space-between}.creditCardOptionWrapper .cardDetails{display:flex}.emojiPickerTextAreaWrapper{position:relative}.emojiPickerTextAreaWrapper textarea{padding-right:40px}.emojiPickerTextAreaWrapper .emojiPickerToggle{position:absolute;z-index:999;top:16px;right:16px;background-color:rgba(0,0,0,0);padding:0;border:none;cursor:pointer}.emojiPickerTextAreaWrapper .emojiPickerToggle:hover use{fill:#2bc3ff !important}.emojiPickerTextAreaWrapper .emojiPickerToggle.isOpenEmojiPicker use{fill:#2bc3ff !important}.emojiPickerTextAreaWrapper .emoji-picker-react{box-shadow:none}.mobileAppPreview_widgetText{text-align:center;width:170px;margin:16px 0 !important}.mobileAppPreview_referralWidgetWrapper{background-color:#f8f8f8;background-repeat:no-repeat;background-position:center;background-size:cover;background-size:271px 100px;border-radius:15px;padding:10px;display:flex;align-items:flex-end;justify-content:space-between;height:60px}.mobileAppPreview_referralWidgetWrapper.noImage{height:45px;align-items:center}.mobileAppPreview_button{display:flex;align-items:center;justify-content:center;text-align:center;padding:5px 15px;margin-left:10px;border-radius:50px}.mobileAppPreview_content{height:435px;overflow-y:auto;overflow-x:hidden;margin:32px 5px 0 8px;scrollbar-width:thin;scrollbar-color:#cfcfcf rgba(0,0,0,0)}.mobileAppPreview_content img{display:block;margin-bottom:8px}.mobileAppPreview_content::-webkit-scrollbar{width:6px}.mobileAppPreview_content::-webkit-scrollbar-thumb{border-radius:10px;background-color:#cfcfcf}.mobileAppPreview_mobileFrame{width:245px;height:526px;border-radius:32px;border:8px solid #dae0e6;position:relative}.mobileAppPreview_bottomTabNavigation{width:245px;position:absolute;bottom:0;left:0}.memberReferralBanner{width:45%}.memberReferralBanner .mobileAppPreview_referralWidgetWrapper{height:65px !important;background-size:cover !important}.barcodeFormatToolTipOverlay .ant-tooltip-inner{border-radius:2px;background-color:#151112;padding:4px}.barcodeFormatToolTipOverlay .ant-tooltip-inner p{color:#fff !important;font-size:10px !important;font-style:normal !important;line-height:14px !important}.barcodeFormatToolTipOverlay .ant-tooltip-content{width:132px}.barcodeFormatToolTipOverlay .ant-tooltip-arrow{border-right-color:#fff;border-right-width:6px;right:0px !important}.barcodeFormatToolTipOverlay .ant-tooltip-arrow:before{background-color:#151112}.addWalletTooltipOverlay .ant-tooltip-inner{border-radius:2px;background-color:#151112;padding:4px}.addWalletTooltipOverlay .ant-tooltip-inner p{color:#fff !important;font-size:12px !important;font-style:normal !important;line-height:16px !important}.addWalletTooltipOverlay .ant-tooltip-content{width:230px}.addWalletTooltipOverlay .ant-tooltip-arrow{border-right-color:#fff;border-right-width:6px;right:0px !important}.addWalletTooltipOverlay .ant-tooltip-arrow:before{background-color:#151112}.guidePopover{z-index:2000}.guidePopover .ant-popover-inner-content{padding:24px 24px 16px 24px;max-width:323px}.guidePopover .ant-popover-inner-content .guideText{margin-bottom:12px;line-height:20px}.guideOverlay{position:fixed;z-index:2000;left:0;right:0;top:0;bottom:0;background:rgba(48,49,51,.75)}.guideActiveGlow{box-shadow:0 0 20px #ffcb10 !important}.guideChildrenContainer{position:relative;z-index:2001}.guideChildrenContainer.ant-popover-open svg{opacity:.3}.guideChildrenContainer .guideChildrenOverlay{position:absolute;left:0;top:0;width:100%;height:100%;background-color:rgba(0,0,0,0);z-index:2002}.AudioWavePlayer{height:36px;max-width:992px !important}.AudioWavePlayer .playerWrapper{display:flex;align-items:center;min-width:80%}.AudioWavePlayer .playerWrapper__middle{width:80%;margin:0 8px}.AudioWavePlayer .playerWrapper__time{width:33px;margin-left:6px}.AudioWavePlayer .VoiceRecorder__play{width:10px;height:10px;border-radius:50%;background-color:#ff5366}.AudioWavePlayer .VoiceRecorder__play--active{animation-duration:500ms;animation-name:blink;animation-iteration-count:infinite}.AudioWavePlayer .VoiceRecorder__filler{border-top:1px dashed #cfcfcf}.AudioWavePlayer .AudioPlayer__playbackRateButton{min-width:32px !important;width:32px;height:20px;border-radius:15px;background-color:#f8f8f8;border-color:#f8f8f8;text-transform:capitalize;display:flex;align-items:center;justify-content:center}.AudioWavePlayer .roundedIcon{display:flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:50%;background-color:#f8f8f8;cursor:pointer}.AudioWavePlayerCtaTooltip{z-index:1040}.AudioWavePlayerCtaTooltip .ant-tooltip-inner{padding:3px 4px}.ctaTooltipDisabled{opacity:.5 !important;cursor:default !important}@keyframes blink{from{opacity:1}to{opacity:.6}}.FormSelect.hasError{border-color:#f5222d}.FormSelect.hasError .ant-select-selection{border-color:#f5222d}#draftTextEditor .public-DraftEditor-content{color:#6e6e6e;font-size:14px;line-height:18px;font-weight:400}#draftTextEditor .public-DraftEditor-content h1,#draftTextEditor .public-DraftEditor-content h2,#draftTextEditor .public-DraftEditor-content h3,#draftTextEditor .public-DraftEditor-content h4,#draftTextEditor .public-DraftEditor-content h5,#draftTextEditor .public-DraftEditor-content h6{color:inherit;margin-top:16px;margin-bottom:8px}#draftTextEditor .public-DraftEditor-content h1{font-size:22px;line-height:28px}#draftTextEditor .public-DraftEditor-content h2,#draftTextEditor .public-DraftEditor-content h3,#draftTextEditor .public-DraftEditor-content h4,#draftTextEditor .public-DraftEditor-content h5,#draftTextEditor .public-DraftEditor-content h6{font-size:18px;line-height:22px}#draftTextEditor .public-DraftEditor-content .public-DraftStyleDefault-block,#draftTextEditor .public-DraftEditor-content .public-DraftStyleDefault-ul,#draftTextEditor .public-DraftEditor-content .public-DraftStyleDefault-ol{margin-top:8px}#draftTextEditor .public-DraftEditor-content ul .public-DraftStyleDefault-block,#draftTextEditor .public-DraftEditor-content ol .public-DraftStyleDefault-block{margin-top:0}#draftTextEditor .public-DraftEditor-content>[data-contents=true]>*:first-child,#draftTextEditor .public-DraftEditor-content>[data-contents=true]>*:first-child>.public-DraftStyleDefault-block{margin-top:0}#draftTextEditor .public-DraftEditorPlaceholder-root{color:#6e6e6e}#draftTextEditor .public-DraftEditorPlaceholder-hasFocus{display:none}.gsDialog{width:100%;height:100%}.gsDialog .groupNotify{margin-top:16px}.gsDialog .groupNotify__item{display:block;margin-top:16px}.gsDialog .groupNotify__item--first{margin-top:0}.gsDialog__AutoPostSectionTitleCon{display:flex;align-items:center}.gsDialog .autoPost__title{display:flex;align-items:center}.gsDialog .autoPost__options{margin-top:13px}.gsDialog .autoPost__option{display:flex;margin-top:12px}.gsDialog .autoPost__option--first{margin-top:0}.gsDialog .autoPost__optionLabel{margin-left:7px}.gsDialog .autoPost__optionLabel_disabled{opacity:.5}.gsDialog .autoPost__more{margin-top:16px}.gsDialog .autoPost__moreText{white-space:pre}.gsDialog .autoPostToolTip__heading{font-size:14px;font-weight:normal;line-height:17px;color:#333}.gsDialog .autoPostToolTip__paragraph{font-size:13px;line-height:15px;margin-top:12px;color:#919599}.gsDialog .autoPostToolTip__example{margin-top:13px;display:flex;align-items:center;height:20px;border-radius:16px;background-color:#dcf7ff}.gsDialog .autoPostToolTip__exampleText{font-size:9px;line-height:10px;font-weight:normal;color:#797c80;margin-left:4px}.gsDialog .autoPostToolTip__exampleImg{height:14px;width:14px;border-radius:50%;border:1px solid #cdcdcd;margin-left:10px}.gsDialog .autoPostToolTipIcon{margin-left:5px}.gsDialog .autoPostToolTipOverlay .ant-tooltip-inner{color:#606366;background-color:#fff;border:1px solid #919599;padding:16px}.gsDialog .autoPostToolTipOverlay .ant-tooltip-content{width:339px;height:210px}.gsDialog .autoPostToolTipOverlay .ant-tooltip-arrow{border-right-color:#fff;border-right-width:6px}.gsDialog .autoPostToolTipOverlay .ant-tooltip-arrow:before{position:absolute;content:" ";border:1px solid #919599;border-width:0 0 1px 1px;width:6px;height:6px;top:-4px;left:1px;transform:rotateZ(45deg)}.gsDialog .whoCanPost__select{width:120px}.plansPage{box-sizing:border-box}.plansPage *{box-sizing:border-box}.planContainer{border-right:1px solid #eee}.planItem{border-top:1px solid #eee;border-bottom:1px solid #eee;border-left:1px solid #eee;box-sizing:border-box}.planItem__header{height:130px;width:100%;background-color:#fcfcfc}.planItem__body{height:170px;padding:16px;box-sizing:border-box}.planItem__arrow{background:#ccc;width:30px;height:30px;border-radius:4px;display:flex;justify-content:center;align-items:center}.planItem__arrow span{width:0;height:0;border-top:7px solid rgba(0,0,0,0);border-bottom:7px solid rgba(0,0,0,0)}.planItem__arrow--right span{border-left:10px solid #fff;margin-left:2px}.planItem__arrow--left span{border-right:10px solid #fff;margin-right:2px}.generalSuccess-enter{opacity:0;transform:scale(0.9)}.generalSuccess-enter-active{opacity:1;transform:translateX(0);transition:opacity 300ms,transform 300ms}.generalSuccess-exit{opacity:1}.generalSuccess-exit-active{opacity:0;transform:scale(0.9);transition:opacity 300ms,transform 300ms}.checkoutDlg--recurly.modal{width:730px !important}.checkoutDlg .modal-body{height:100%;transition:height 500ms ease-in-out}.checkoutDlg__contentWrapper{display:flex;flex-direction:column}.checkoutDlg__contentLeft{margin-bottom:32px}.checkoutDlg__checkoutList{display:flex;align-items:flex-start;flex-direction:column;width:100%;box-sizing:border-box;position:relative;min-height:80px}.checkoutDlg__checkoutList .checkoutListItem{display:flex;justify-content:space-between;align-items:flex-start;flex-direction:column;width:100%;border-bottom:1px solid #cfcfcf;padding-top:12px;padding-bottom:12px}.checkoutDlg__checkoutList .checkoutListItem__header{display:flex;justify-content:space-between;align-items:flex-start;width:100%}.checkoutDlg__checkoutList .checkoutListItem__price .discounted{text-decoration:line-through;color:#a3a3a3;padding-right:8px}.checkoutDlg__checkoutList .checkoutListItem__desc{padding-top:4px;width:100%}.checkoutDlg__coupon{padding-top:16px;width:100%;display:flex;flex-direction:row;align-items:center}.checkoutDlg__coupon input{text-transform:uppercase;width:160px}.checkoutDlg__coupon input::placeholder{text-transform:none}.checkoutDlg__checkoutMethodPreview{position:relative;width:200px;height:110px;border-radius:10px;padding:10px 16px 10px 16px;border:1px solid #cfcfcf;display:flex;flex-direction:column}.checkoutDlg__checkoutMethodForm{position:relative;width:100%;box-sizing:border-box}.checkoutDlg__checkoutMethodForm .halfWidth{width:50%}.checkoutDlg__checkoutMethodForm label{display:flex;margin-bottom:4px;color:#6e6e6e}.checkoutDlg__checkoutMethodForm .inputGroup{align-items:flex-start;display:flex;flex-direction:column;text-align:left;width:100%;padding-bottom:16px}.checkoutDlg__checkoutMethodForm .recurly-element-inline{width:100%}.checkoutDlg__checkoutMethodForm .recurly-element-inline.hasError>div{border:1px solid #ff5366}.checkoutDlg__checkoutMethodForm .recurly-element,.checkoutDlg__checkoutMethodForm input[type=tel],.checkoutDlg__checkoutMethodForm input[type=input],.checkoutDlg__checkoutMethodForm input[type=text]{height:32px;width:100%;border:1px solid #eee;border-radius:4px;outline:0;width:100%;box-sizing:border-box;color:#151112;font-weight:400;font-size:14px;padding:4px 8px}.checkoutDlg__checkoutMethodForm .recurly-element-invalid,.checkoutDlg__checkoutMethodForm .recurly-hosted-field-invalid{border:1px solid #ff5366}.checkoutDlg__error{padding:16px 0 0 0 !important}.checkoutDlg .recurly-three-d-secure-action{height:424px;width:100%}@media(min-width: 1024px){.checkoutDlg--recurly.modal{width:920px !important}.checkoutDlg__contentWrapper{flex-direction:row}.checkoutDlg__contentLeft{flex:1;margin-right:32px;margin-bottom:0}.checkoutDlg__contentRight{flex:1}.checkoutDlg__checkoutMethodPreviewWrapper{flex:1;display:flex;flex-direction:column;justify-content:space-between}}.addonUpsellDialog .modal-body{padding:0 32px}.addonUpsellDialog .modal-footer{padding:32px}.addonUpsellDialog__header{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;white-space:pre-wrap}.addonUpsellDialog__addonList{border:1px solid #eee;border-radius:10px;overflow:hidden}.addonUpsellDialog__addonList--selected{border-color:#229ed4}.addonUpsellDialog__addonList .reactToolTip{vertical-align:text-top}.addonUpsellDialog__addon{padding:16px}.addonUpsellDialog__addon .ant-checkbox-wrapper{display:flex;flex-direction:row;justify-content:flex-start;align-items:flex-start}.addonUpsellDialog__addon .ant-checkbox-wrapper>span:nth-child(2){display:flex;flex-direction:row;justify-content:space-between;width:100%}.addonUpsellDialog__addon .ant-checkbox{padding-top:2px;flex-shrink:0;width:16px}.addonUpsellDialog__price{display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;flex-shrink:0;padding-left:20px;width:120px}.addonUpsellDialog__studio{position:relative;padding:16px;border:1px solid #eee;border-radius:10px;display:flex;flex-direction:column}.addonUpsellDialog__studio--selected{border-color:#229ed4}.addonUpsellDialog__studio .studioTitle{display:flex;flex-direction:row;align-items:center}.addonUpsellDialog__studio .studioFeatureItem{display:flex;flex-direction:row;padding-bottom:12px}.addonUpsellDialog__heroImg{width:100%;height:106px;background-position:center;background-size:101% auto;background-repeat:no-repeat}.PlansGridWrapper{width:100%}@media(min-width: 992px){.PlansGridWrapper{width:858px}}.PlansGridWrapper .ClientSlider{height:70px}.PlansGridWrapper .ClientSlider__SliderWrapper{display:flex;align-items:center;justify-content:center;width:100%}@media(min-width: 992px){.PlansGridWrapper .ClientSlider__SliderWrapper{width:auto;justify-content:space-between}}.PlansGridWrapper .ClientSlider__SliderWrapper__Slider{width:80%;margin:0 20px 5px 9px}@media(min-width: 992px){.PlansGridWrapper .ClientSlider__SliderWrapper__Slider{width:482px}}.PlansGridWrapper .ClientSlider__SliderWrapper__Slider .ant-slider-step .ant-slider-dot:last-child{display:none}.PlansGridWrapper .ClientSlider .ant-slider-rail{height:10px;background-color:#f8f8f8;border-radius:5px}.PlansGridWrapper .ClientSlider .ant-slider-rail:hover{background-color:#f8f8f8}.PlansGridWrapper .ClientSlider .ant-slider-track{height:10px;background-color:#ffcb10;border-radius:5px}.PlansGridWrapper .ClientSlider .ant-slider-track:hover{background-color:#ffcb10}.PlansGridWrapper .ClientSlider .ant-slider-step{height:10px}.PlansGridWrapper .ClientSlider .ant-slider-step .ant-slider-dot{width:1px;height:10px;top:0;margin-left:0;border-radius:0;border-width:0;background-color:#cfcfcf}.PlansGridWrapper .ClientSlider .ant-slider-step .ant-slider-dot-active{border-color:#fff}.PlansGridWrapper .ClientSlider .ant-slider-handle{height:24px;width:24px;margin-top:-7px;background-color:#ffcb10;border:3px solid #fff;box-sizing:border-box}.PlansGridWrapper .ClientSlider .ant-slider:hover .ant-slider-handle:not(.ant-tooltip-open){border-color:#fff}.PlansGridWrapper .ClientSlider .ant-slider-handle:focus{box-shadow:0 0 0 5px rgba(255,255,255,0)}.PlansGridWrapper .ClientSlider .ant-slider-mark{top:21px}.PlansGridWrapper .ClientSlider .ant-slider-mark .ant-slider-mark-text{font-style:normal;font-weight:normal;font-size:10px;line-height:14px;color:#6e6e6e}.PlansGridWrapper .PlansGrid{display:flex;flex-wrap:wrap;justify-content:center}@media(min-width: 992px){.PlansGridWrapper .PlansGrid{justify-content:space-around}}.PlansGridWrapper .PlansGrid .PlansGridItem{display:flex;flex-direction:column;align-items:center;position:relative;width:calc(100% - 64px);padding:24px;background-color:#fff;border:1px solid #eee;box-sizing:border-box;border-radius:10px}@media(max-width: 992px){.PlansGridWrapper .PlansGrid .PlansGridItem{margin-top:16px}}@media(min-width: 992px){.PlansGridWrapper .PlansGrid .PlansGridItem{width:calc(50% - 8px)}}.PlansGridWrapper .PlansGrid .PlansGridItem__name{color:#ffcb10}.PlansGridWrapper .PlansGrid .PlansGridItem__description{margin-bottom:11px}.PlansGridWrapper .PlansGrid .PlansGridItem__priceWrapper{margin-bottom:11px}.PlansGridWrapper .PlansGrid .PlansGridItem__priceWrapper__price{margin:0 10px;font-style:normal;font-weight:bold;font-size:28px;line-height:34px;color:#151112}.PlansGridWrapper .PlansGrid .PlansGridItem__clientsNumber{min-height:32px;margin-bottom:16px}.PlansGridWrapper .PlansGrid .PlansGridItem .planFeatureItem{display:flex;flex-direction:row;padding-bottom:12px}.PlansGridWrapper .PlansGrid .PlansGridItem .planFeatureItem.withTooltip p:hover{color:#229ed4;cursor:pointer}.PlansGridWrapper .PlansGrid .PlansGridItem .planFeatureItem .icon{margin-top:2px;margin-right:12px}.PlansGridWrapper .PlansGrid .PlansGridItem .planFeatureItem .onPlanFeatureHover{color:#229ed4}.PlansGridWrapper .PlansGrid .PlansGridItem.disabled{opacity:1 !important}.PlansGridWrapper .PlansGrid .PlansGridItem.disabled p{color:#a3a3a3 !important}.PlansGridWrapper .PlansGrid .PlansGridItem.disabled button{background-color:#cfcfcf !important;border-color:#cfcfcf !important}.PlansGridWrapper .PlansGrid__notice{margin-top:12px;width:100%}@media(max-width: 992px){.PlansGridWrapper .PlansGrid__notice{padding:0 32px;white-space:normal}}.planFeatureItemTooltip.ant-tooltip{max-width:300px}.planFeatureItemTooltip ul{margin:12px 0 0;padding-inline-start:20px}.planFeatureItemTooltip ul li{padding-bottom:8px;font-style:normal;font-weight:400;font-size:12px;line-height:16px;color:#6e6e6e}.planFeatureItemTooltip ul li:last-child{padding-bottom:0}.planFeatureTooltip{max-width:300px}.planFeatureTooltip ul{padding-left:16px;margin-bottom:0}@media(max-width: 992px){.billingCycleToggle{justify-content:center;width:100%;margin-top:30px}}.billingCycleToggle .ant-radio-wrapper{margin-right:12px}.billingCycleToggle .ant-radio-wrapper:last-child{margin-right:4px}.billingCycleToggle .ant-radio-wrapper .ant-radio{font-size:15px}.billingCycleToggle .ant-radio-wrapper .ant-radio+*{font-size:12px;padding-left:4px;padding-right:0;text-transform:capitalize}.billingCycleToggle__tag{width:56px;height:15px;margin:0;padding:0 8px;font-style:normal;font-weight:bold;font-size:8px;line-height:14px;text-align:center;text-transform:uppercase;border-radius:8px;cursor:default}.PlansFooterWrap{display:flex;flex-direction:column;align-items:center;width:100%;padding-top:64px;padding-bottom:64px;background-color:#fcfcfc}.PlansFooter{display:flex;flex-direction:row;justify-content:space-between;width:865px;padding:0 16px}@media(max-width: 992px){.PlansFooter{width:100%;flex-direction:column;justify-content:center;align-items:flex-start}}.PlansFooter__column{max-width:230px}@media(max-width: 992px){.PlansFooter__column{max-width:100%;padding:0 8px}}@media(max-width: 992px){.PlansFooter__FooterItem{width:100%}}.PlansFooter__FooterItem__title{min-height:34px;letter-spacing:.2px}.PlansFooter__FooterItem__description{white-space:pre-wrap}.ribbonWrapper{position:absolute;top:0;right:0;width:59.5px;height:59.5px;background-color:rgba(0,0,0,0);display:flex;align-items:center;justify-content:center;overflow:hidden}.ribbonWrapper__ribbon{position:absolute;top:10px;width:90px;padding:2px 0 2px 15px;background-color:#229ed4;color:#fff;text-align:center;text-transform:uppercase;font-style:normal;font-weight:bold;font-size:8px;line-height:9px;transform:rotate(40deg)}.addonUpsellTooltip{width:500px}.addonUpsellTooltip.ant-tooltip{max-width:500px}.addonUpsellTooltip .ant-tooltip-arrow:before{border-color:rgba(194,199,204,.3137254902)}.addonUpsellTooltip .ant-tooltip-inner{padding:0;margin:0;border:1px solid rgba(194,199,204,.3137254902);overflow:hidden;border-radius:8px}.addonUpsellTooltip__img{height:280px;background-position:center;background-size:280px auto;background-repeat:no-repeat}.addonUpsellTooltip ul{margin:0;padding-left:16px;padding-top:8px}.addonUpsellTooltip ul li .label{display:inline-block;margin:8px 0 0 -16px;padding:2px 4px;border:1px solid #6e6e6e;color:#6e6e6e;text-transform:uppercase;border-radius:10px}.addonUpsellTooltip ul li:not(:last-child){padding-bottom:4px}.reactToolTip--overlay.agreeTermsAndConditions__tooltip .ant-tooltip-inner{padding:8px}.agreeTermsAndConditions__termsCheckbox .ant-checkbox-disabled .ant-checkbox-input,.agreeTermsAndConditions__termsCheckbox .ant-checkbox-wrapper.ant-checkbox-wrapper-disabled,.agreeTermsAndConditions__termsCheckbox .ant-checkbox-disabled+span{cursor:default}.cbfaAppType{border-top:1px solid #eee;border-left:1px solid #eee;border-bottom:1px solid #eee}.cbfaAppType *{box-sizing:border-box}.cbfaAppType:last-child{border-right:1px solid #eee}.cbfaCell:not(:last-child){border-right:1px solid #eee}.cbfaCell svg+p{margin-left:5px}.cbfaRow:not(:last-child){border-bottom:1px solid #eee}.cfbaTooltip--overlay .ant-tooltip-content{width:374px}.abcDeactivateMemberLabel__Tooltip{position:relative;top:3px}.edu-partners .resource-tile{margin-right:10px;margin-bottom:10px}.edu-partners .resource-tile:nth-child(2n){margin-right:0}.edu-partners .resource-tile__playBtn:hover{cursor:pointer}.edu-partners .gtBtn:hover{line-height:18px}#hireAnExpert .ant-select-selection__rendered{display:flex;align-items:center}#hireAnExpert .ant-select-selection-selected-value>*{font-size:14px !important;color:#151112 !important}#hireAnExpert .expertCard__social svg:hover{cursor:pointer;fill:#229ed4 !important}#hireAnExpert .expertCard__social svg:hover use{fill:#229ed4 !important}.hire-expert__dropdown .ant-select-dropdown-menu-item{white-space:normal}.experts-dialog textarea.experts-textarea-error::placeholder,.experts-dialog textarea.experts-textarea-error::-webkit-input-placeholder{color:#ff5366}.experts-dialog textarea.experts-textarea-error::-moz-placeholder{color:#ff5366}.experts-dialog textarea.experts-textarea-error:-ms-input-placeholder{color:#ff5366}.stepsSideBar__stepCon:hover{background-color:#eee}.stepsSideBar__stepCon:hover p{color:#229ed4}.stepsSideBar__stepCon--selected{background-color:#dcf7ff}.stepsSideBar__stepCon--selected:hover{background-color:#eee}.stepsSideBar__stepCon--selected:hover p{color:#000}.cbaSteps .ant-steps-label-vertical .ant-steps-item-content{height:40px;display:flex;justify-content:center;flex-direction:column}.abc-automation-cell{min-width:200px;min-height:16px;padding-left:20px}.abc-automation-cell .toggle-hide{display:none}.abc-automation-cell .toggle-hide--inverted{display:block}.abc-automation-cell:hover .toggle-hide{display:block}.abc-automation-cell:hover .toggle-hide--inverted{display:none}.sync-grid-automation-cell .toggle-hide{display:none}.sync-grid-automation-cell .toggle-hide--inverted{display:block}.sync-grid-automation-cell:hover .toggle-hide{display:block}.sync-grid-automation-cell:hover .toggle-hide--inverted{display:none}.gridWrapper .ant-table-content{height:310px;display:grid;grid-template-rows:auto 1fr}.titleBar{display:flex;align-items:center;border-bottom:1px solid #ebebeb;padding-bottom:4px}#abcAddonContainer{display:grid;row-gap:32px}#abcAddonContainer .membershipGridContainer,#abcAddonContainer .apptTypeGridContainer,#abcAddonContainer .recurringServiceGridContainer{height:350px;border-top:1px solid #ebebeb;margin:10px 0}#abcAddonContainer .disconnectButton{border:none;background-color:rgba(0,0,0,0);cursor:pointer;color:#229ed4;padding-left:0}#abcAddonContainer .addonPageHeading p{margin-top:16px}#abcAddonContainer .locationsDescription{border:1px solid #ffcb10;border-radius:100px;display:flex;align-items:center;padding:5px 10px;gap:5px}#abcAddonContainer .selectContainer{display:flex;align-items:center;margin-top:16px}#abcAddonContainer .selectContainer p{margin:0}#abcAddonContainer .selectContainer .ant-select{width:370px;margin-left:6px}#abcAddonContainer #settings-section{width:100%;position:relative;border-collapse:collapse;border:1px solid #eee}#abcAddonContainer #settings-section .table-center{display:flex;justify-content:center}#abcAddonContainer #settings-section .settings-name{width:35%;border-right:1px solid #eee}#abcAddonContainer #settings-section td,#abcAddonContainer #settings-section th{padding:19px 16px}#abcAddonContainer #settings-section tr:nth-child(even){background-color:#fcfcfc}#abcAddonContainer #settings-section input[type=checkbox]{text-align:center}.gridToolbar{background-color:#eff3f6;height:50px;min-height:50px;max-height:50px;width:100%;box-sizing:border-box}.gridWrapper{height:350px;overflow-y:auto;border:1px solid #eee}.gridWrapper .ant-table-content{height:350px;display:grid;grid-template-rows:auto 1fr}#mboAddonContainer{position:relative;display:grid;row-gap:32px}#mboAddonContainer .mboHeadingContainer{display:grid;row-gap:32px}#mboAddonContainer .mboGridContainer{display:grid;row-gap:16px}#mboAddonContainer .mboGridContainer .tz-p,#mboAddonContainer .mboGridContainer .customForm__wrap .ant-radio-wrapper span:not(.ant-radio):not(.ant-radio-inner):not(.ant-checkbox):not(.ant-checkbox-inner),.customForm__wrap .ant-radio-wrapper #mboAddonContainer .mboGridContainer span:not(.ant-radio):not(.ant-radio-inner):not(.ant-checkbox):not(.ant-checkbox-inner),#mboAddonContainer .mboGridContainer .customForm__wrap .ant-checkbox-wrapper span:not(.ant-radio):not(.ant-radio-inner):not(.ant-checkbox):not(.ant-checkbox-inner),.customForm__wrap .ant-checkbox-wrapper #mboAddonContainer .mboGridContainer span:not(.ant-radio):not(.ant-radio-inner):not(.ant-checkbox):not(.ant-checkbox-inner),#mboAddonContainer .mboGridContainer .customForm__wrap .ant-form-item-label,.customForm__wrap #mboAddonContainer .mboGridContainer .ant-form-item-label,#mboAddonContainer .mboGridContainer .iCsvDialog .textGuide__text,.iCsvDialog #mboAddonContainer .mboGridContainer .textGuide__text,#mboAddonContainer .mboGridContainer .clientForm__row label,.clientForm__row #mboAddonContainer .mboGridContainer label{margin-top:-8px}#mboAddonContainer .membershipControlsContainer{display:grid;row-gap:16px}#mboAddonContainer .mboBtn{border:none;background-color:rgba(0,0,0,0)}#mboAddonContainer #mboVideo{width:300px;margin-right:48px}#mboAddonContainer #mboLocationPicker,#mboAddonContainer #mboApptLocationPicker{width:200px;display:inline-block;height:24px;margin:0 0 0 5px}#mboAddonContainer .setupButtonContainer{display:grid;row-gap:16px}#mboAddonContainer .setupButtonContainer p{margin:0}#mboAddonContainer .setupButtonContainer button{justify-self:start}#mboAddonContainer .contractTypeGridContainer,#mboAddonContainer .apptTypeGridContainer,#mboAddonContainer .membershipGridContainer{height:310px;border-top:1px solid #ebebeb;margin:10px 0}.tzAddon{display:flex;flex-direction:row;justify-content:space-between;align-items:flex-start;border:1px solid #cfcfcf;padding:16px 8px 24px 16px}.tzAddon__text{padding-right:32px}.tzAddon .ant-row{width:100%;padding:8px 0}.tzAddon .ant-row:not(:last-child){border-bottom:1px solid #eee}.tzAddon .videoBox{display:flex;justify-content:center;align-items:center;margin-bottom:8px;width:100%;height:83px;border:1px solid #cfcfcf;cursor:pointer;background-position:center;background-size:contain;background-repeat:no-repeat}.tzAddon:not(:last-child){margin-bottom:16px}.addonPageContainer{max-width:868px}.addonPageContainer .btn>span{text-transform:none}.addon .dividerContainer{margin-left:28px}.addon .headerBodyContainer{flex-grow:1}.addon .betaTagContainer{background-color:#ffcb10;border-radius:10px;color:#fff;display:"flex";font-size:10px;justify-content:"center";line-height:17px;margin-left:16px;width:36px}.addon .logoContainer .status{width:16px;height:16px}.addon .logoContainer .clickable{cursor:"pointer"}.addon .logoContainer .logo{width:40px;height:40px;border-radius:4px;margin-left:16px;margin-right:16px}.addon .videoContainer{width:80px;margin-left:16px}.addon .statusContainer{width:80px}.addon .connectionIcon{width:26px;height:26px}.addon .priceText{padding:2px 8px 2px 8px;color:#fff;border-radius:2px}.addon .freeText{background-color:#a3a3a3}.addon .studioText{background-color:#ffcb10}.addon .enterpriseText{background-color:#ffcb10}.addon .pricingContainer{width:55px;text-align:"right"}.addon .crossOutText{text-decoration:"line-through"}.addon .addonItem .drill{background-image:url(/app/images/addons/addOnsExpanded.png);background-size:100%;background-repeat:no-repeat;width:20px;height:20px;flex-shrink:0;margin-top:13px;margin-left:-20px}.addon .drill.addonItemExpand{background-image:url(/app/images/addons/addOnsCollapsed.png)}.addon #build-and-automate{margin-left:auto;margin-right:auto;width:100%;text-align:center}.addon #build-and-automate h1{font-size:30px;color:#444;font-weight:normal;margin:0;padding:0}.addon #build-and-automate .lead{color:#878787;margin:0;font-size:17px;margin-top:4px;line-height:19px;width:100%;text-align:center}.addon #video-splash{width:274px;height:138px;margin-top:24px;background-image:url(/app/images/zapier/videoBanner.jpg);background-size:cover;float:left;cursor:pointer}.addon .zapier_image-splash{width:274px;height:138px;background-image:url(https://file.trainerize.com/assets/app/addons/zapier-app/zapBanner.jpeg);background-size:cover;float:left}.addon .zapier_image-splash img{cursor:pointer}.addon .zapier_features{overflow:auto;margin-bottom:32px}.addon #video-splash img{width:50px;margin-top:44px;opacity:.8}.addon #video-splash img:hover{opacity:1}.addon #video-splash:hover img{opacity:1}.addon #build-and-automate p{color:#878787;font-size:14px;float:left;width:70%;text-align:center;line-height:16px;font-weight:300}.addon .zapierHeaderArea .description{width:100%}.addon .zapierHeaderArea .description p{max-width:100%}.addon .addonItemExpand .zap-power-bar svg{fill:#ff4a01}.addon .google-forms-instructions{margin-top:5px;margin-bottom:32px}.addon .google-forms-instructions .google-forms-video-icon{margin-left:32px;align-self:center;opacity:.8}.addon .google-forms-instructions .google-forms-video-icon:hover{opacity:1}.addon .addonItem .expContent .google-forms-steps p{margin:5px 0;width:100%;color:#999;font-weight:400}.addon .google-forms-steps img{vertical-align:bottom;margin-right:10px}.addon .google-forms-steps-space{margin-bottom:10px}.addon #help-dialog{width:95%;max-width:640px;border:1px solid #fafafa;background-color:#fafafa;padding:15px;height:67px;margin:0 auto 0 0}.addon #help-dialog img{float:left;height:67px;border-radius:50%}.addon #help-dialog .lead{font-size:17px;line-height:19px;color:#444;float:left;text-align:left;width:60%;margin:0;margin-left:15px;font-weight:normal}.addon #help-dialog p{color:#878787;margin:0;margin-left:15px;margin-top:3px;font-size:13px;float:left;width:52%;text-align:left;line-height:16px;font-weight:400}.addon #help-dialog button{float:right}.addon #zap-quote{height:29px;font-family:Helvetica;font-size:24px;text-align:left;color:#797c80;font-weight:400}.addon #zap-quote img{margin-left:5px}.addon #grab-zap{text-align:center;color:#878787;margin:0;margin-top:10px;font-size:16px;width:100%;font-weight:400;margin-bottom:40px;line-height:155%}.addon #sign-up-auto{font-size:18px;color:#444;font-weight:normal;margin:30px 0px 5px 5px;padding:0;text-align:left}.addon #zap-placeholder{width:100%;height:400px;border:1px solid #dcdcdc;background-color:#fafafa}.addon #beta-tag-zapier{height:14px;position:absolute;left:198px;top:3px}.addon .saveTag{background-color:#ff9800;margin-right:15px;padding:3px;font-size:11px;color:#fff;position:relative;display:inline-block;height:14px}.addon span.saveTag:after{display:inline-block;content:" ";width:0;height:0;border-top:10px solid rgba(0,0,0,0);border-bottom:10px solid rgba(0,0,0,0);border-left:10px solid #ff9800;position:absolute;top:0px;right:-10px}.zapSection-enter{max-height:0;overflow:hidden}.zapSection-enter-active{max-height:1000px;transition:all 500ms ease-in}.zapSection-exit{max-height:1000px}.zapSection-exit-active{max-height:0;transition:all 250ms ease-out;overflow:hidden}.addonItem h1{font-size:20px;color:#444;font-weight:normal;margin:0;padding:0}.addonItem p{font-size:14px;color:#999;font-weight:normal;margin:2px 0 0 0;padding:0}.trHeading h2{color:#333;font-size:22px;font-weight:normal}.gloFoxMembershipSyncSuccess_Dialog .modal-body>div>h2{font-size:23px}.gloFoxMembershipSyncSuccess_Dialog .modal-body>div>img{width:43px !important;height:43px !important}.gloFoxMembershipSyncSuccess_Dialog .modal-body>div>p{margin:0 5rem}.workoutBuilder{position:relative;width:100%;height:100%;background:#fff;outline:none}.workoutBuilder *{box-sizing:border-box}.workoutBuilder h1{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:20px;color:#797c80;font-weight:normal}.workoutBuilder h3{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:14px;color:#606366;font-weight:400;margin-bottom:0}.workoutBuilder h4{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:12px;color:#c2c7cc;font-weight:400;white-space:nowrap;margin-bottom:0}.workoutBuilder__content{height:calc(100% - 42px)}.workoutBuilder__container{width:700px}.workoutBuilder__description{padding:12px;border-right:1px solid #ebebeb;height:124px}.workoutBuilder__description TextArea{border:1px solid #fff}.workoutBuilder__description TextArea :focus{border-color:#40a9ff}.workoutBuilder__instructions.placeholder{font-size:13px;color:#d5d6d6}.workoutBuilder__instructions:-moz-placeholder{font-size:13px;color:#d5d6d6}.workoutBuilder__instructions::-moz-placeholder{font-size:13px;color:#d5d6d6}.workoutBuilder__instructions:-ms-input-placeholder{font-size:13px;color:#d5d6d6}.workoutBuilder__instructions::-webkit-input-placeholder{font-size:13px;color:#d5d6d6}.workoutBuilder__modal h4{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:12px;color:#c2c7cc;font-weight:400;white-space:nowrap;margin-bottom:0}.workoutBuilder__modal .ant-modal-footer{display:flex;justify-content:flex-start;flex-direction:row;align-items:center}.workoutBuilder .dupErrorP{width:590px;font-size:11px;padding-left:12px}.workoutBuilder .workoutHeader__name{margin-right:10px}.workoutBuilder .workoutHeader__saveGroup{margin:0 12px;display:flex !important}.workoutBuilder button.workoutHeader__save,.workoutBuilder button.workoutHeader__saveMore{border:1px solid #0285ca !important;background-color:#06a9f6}.workoutBuilder button.workoutHeader__save:hover,.workoutBuilder button.workoutHeader__saveMore:hover{background-color:#0285ca}.workoutBuilder button.workoutHeader__saveMore{border-left-color:#0285ca !important}.workoutBuilder .workoutHeader__close{margin-right:12px}.workoutBuilder .ant-input-number{font-size:13px;max-width:90px;width:100%}.workoutBuilder .ant-input,.workoutBuilder .ant-select-selection{font-size:13px}.workoutBuilder__tabs{position:absolute;z-index:1;left:700px;top:12px}.workoutBuilder__tabs .woTab{height:30px;padding:0 12px;background-color:#fff;width:115px;display:flex;align-items:center;justify-content:center;border-top-left-radius:10px;border-top-right-radius:10px;cursor:pointer}.workoutBuilder__tabs .woTab:hover:not(.woTab--active){filter:brightness(1.2)}.exerciseList{overflow-x:hidden;overflow-y:auto;border:1px solid #fff;padding-left:12px;padding-right:12px;padding-bottom:70px;min-height:0}.exerciseList-title{padding:12px;background-color:#fcfcfc}.exerciseList-toolbar{padding:12px}.exerciseList-toolbar .addRestClickableText{float:right}.exerciseList-header{padding:6px 0 6px 35px;border-top:1px solid #ebebeb;border-bottom:1px solid #ebebeb;color:#c2c7cc}.exerciseList-header__container{width:100%;padding:0 10px}.exerciseList-header__image{flex-shrink:0;width:70px}.exerciseList-header__name{width:183px;min-width:121px}.exerciseList-header__multiplier{width:25px}.exerciseList-header__sets{width:48px}.exerciseList-header__time{width:85px}.exerciseList-header__target{width:260px;padding-right:10px}.exerciseList-header__side{width:68px}.exerciseList-header__rest{width:85px;padding-left:5px}.exerciseList-header__target,.exerciseList-header__rest{display:flex;align-items:center}.exerciseList-header__target .icon,.exerciseList-header__rest .icon{margin-left:4px}.exerciseList-header__circuit{width:100%;height:40px;flex-shrink:0;border-bottom:1px solid #eee;padding:0 35px}.exerciseList-exercise__name{width:121px;min-width:121px;padding:0 8px;font-size:13px;color:#606366}.exerciseList-exercise__name--rest-max{width:121px;max-width:121px}.exerciseList-exercise__target{width:140px;padding-right:10px}.exerciseList-exercise__sets{width:48px}.exerciseList-exercise__side{width:68px;text-transform:capitalize;padding-left:4px !important}.exerciseList-anker{width:33px;flex-shrink:0}.exerciseList-restWidthSpacer__interval{width:250px}.exerciseList-restWidthSpacer__regular{width:325px}.exerciseList-targetTypeSelect .ant-select-selection__rendered{display:flex;flex-direction:row;align-items:center}.exerciseList-dragPreview{width:100%;height:100%;min-height:70px;background-color:#fff;border-radius:4px;border:1px dashed #229ed4}.exerciseList-dragPreview__img{background-image:url(/app/images/dropZone/dragOverIconOnly.png);background-position:center;background-repeat:no-repeat;background-size:cover;width:30px;height:30px}.exerciseList-dragPreview__text{margin-top:6px;text-align:center;color:#229ed4}.workoutExercise .vjs-loading-spinner{width:20px;height:20px;top:85%;left:75%}.workoutExercise{height:61px;background-color:#fff;border-bottom:1px solid #dfdfdf}.workoutExercise__checkbox{margin-right:8px}.workoutExercise__img{width:63px;height:36px;background-size:cover;background-position:center;position:relative;overflow:hidden}.workoutExercise__input{text-align:center;color:#a3a3a3}.workoutExercise__input-sets{width:60px}.workoutExercise__directions{width:100%;padding:0 10px;margin-left:1px}.workoutExercise__multiplierSymbol{color:#a3a3a3;font-size:13px;padding:0 12px}.workoutExercise__superset{padding-top:12px;border-bottom:1px solid #dfdfdf}.workoutExercise-hovered{border:1px solid orange}.workoutExercise .ant-select-selection-selected-value{text-overflow:unset}.workoutExercise ::-webkit-input-placeholder{font-size:13px;font-weight:200;color:#ccc}.vertical-center-modal{text-align:center;white-space:nowrap}.vertical-center-modal:before{content:"";display:inline-block;height:100%;vertical-align:middle;width:0}.vertical-center-modal .ant-modal{display:inline-block;vertical-align:middle;top:0;text-align:left}.workoutTagMenu .ant-tooltip-inner{padding:8px 8px 0 8px}.trainingPhaseContent .dropdown-active p.hoverClickable{color:#fff}label.quickWorkoutScheduler{padding:2px 8px 0 8px}label.quickWorkoutScheduler.active{background-color:#06a9f6 !important;color:#fff !important;border-top-right-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:0 !important;border-bottom-right-radius:0 !important}.calendarScheduler__day{display:flex;justify-content:center;align-items:center;height:35px;width:35px;cursor:pointer;transition:all 200ms ease-in-out}.calendarScheduler__day.scheduled{border-radius:50%;color:#fff;background-color:#229ed4}.calendarScheduler__day.scheduled:hover{filter:brightness(0.9)}.calendarScheduler__day:hover:not(.scheduled):not(.disabled){border-radius:50% !important;background-color:#eff3f6}.calendarScheduler__day.disabled{cursor:not-allowed !important;pointer-events:all}.dualCalendarScheduler .programWorkoutCalendar{width:auto}.dualCalendarScheduler .programWorkoutCalendar__day,.dualCalendarScheduler .programWorkoutCalendar__label{width:30px;height:30px}.dualCalendarScheduler .ant-fullcalendar td{padding:0}.weightNumberInput .ant-input-number-handler-wrap{display:none}.workoutDetail-container{box-sizing:border-box;height:100%}.workoutPageContent{padding:20px 20px 60px 20px;box-sizing:border-box;height:calc(100vh - 60px)}.workoutPageContent .reactBaseGrid{max-height:none !important}.workoutPageContent .reactBaseGridWrap{height:100%}.workoutPageContent .traineraizeLibrary-container{display:flex;cursor:pointer}.workoutPageContent .traineraizeLibrary-container .templatesWhite{width:28px;height:30px;object-fit:contain}.workoutPageContent .traineraizeLibrary-container .title{font-size:14px;color:#1eb6f8}.workoutPageContent .traineraizeLibrary-container .text{font-size:10px;color:#9a9a9a}.workoutPageContent .tagColumn-container{display:flex;align-items:flex-end}.workoutPageContent .template-nullscreen{display:flex;justify-content:center;align-items:center;height:100%}.workoutPageContent .workoutGrid_nullContainer .workoutGrid_null_img{position:relative;background-image:url(/app/images/nullScreens/NullScreenWorkout.png);background-size:cover;width:635px;height:285px;margin:0 auto;margin-bottom:30px}.workoutPageContent .workoutGrid_nullContainer .workoutGrid_null_img img{cursor:pointer;position:absolute}.workoutPageContent .workoutGrid_nullContainer .workoutGrid_null_img .play-buttonVideo{width:200px;height:460px;position:absolute}.workoutPageContent .workoutGrid_nullContainer .workoutGrid_null_img .watch-the-video{width:82px;height:45px;text-shadow:0 2px 4px rgba(188,188,188,.18);font-family:Helvetica;font-size:18px;font-weight:normal;font-style:normal;font-stretch:normal;line-height:1;letter-spacing:normal;text-align:center;color:#06a9f6;top:33px;right:20px;position:absolute}.workoutPageContent .workoutGrid_nullContainer .workoutGrid_btnGroup .workoutGrid_btnGroup_btnText{text-transform:capitalize}.workoutPageContent .workoutGrid_nullContainer .dropdown-active{background-color:#fff !important;color:#06a9f6 !important}.workoutPageContent .workoutDetail-container{padding:0 !important}.workoutPageContent .ai-builder-button{background-color:#ffcb10;border-color:#ffcb10;color:#151112}.workoutPageContent .ai-builder-button:hover{background-color:#ffcb10;border-color:#ffcb10}.tagColumn-popoverRow{padding:2px 0;width:150px}.tagColumn-popoverRow .tagColumn-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.tagActionDropdown{width:250px}.tagActionDropdown .component__searchInput{padding:5px 8px}.tagActionDropdown .tagListContainer{height:200px;overflow-y:auto}.tagActionDropdown .tagListContainer .checkboxContainer{border:none !important;padding:0 15px;margin-bottom:0}.tagActionDropdown .tagListContainer .checkboxContainer:hover{background-color:#f2f2f2}.tagActionDropdown .tagActionButton{display:flex;justify-content:center;align-items:center;padding:10px;cursor:pointer}.workoutPageSidebar{display:flex;align-items:center;justify-content:center;height:100%;flex-direction:column;padding-left:5px;padding-right:5px}.workoutPageSidebar .nullText{color:#a3a3a3;font-size:14px;font-weight:400;margin-bottom:20px;text-align:center}.workoutPageSidebar__trainerPicker{flex-direction:row;margin:10px}.workoutTagMenu .customTagItem{overflow:unset !important}.iCsvDialog{width:100%;height:100%}.iCsvDialog .ant-select-selection-selected-value{overflow:visible}.iCsvDialog .textGuide{height:68px}.iCsvDialog .dropArea{margin-top:15px}.iCsvDialog .dropArea__con{margin-top:4px;width:411px;height:170px;border:1px dashed #c2c7cc;display:flex;flex-direction:column;align-items:center;cursor:pointer}.iCsvDialog .dropArea__con--hover{border:1px dashed #229ed4}.iCsvDialog .dropArea__headerCon{display:flex;align-items:center}.iCsvDialog .dropArea__icon{margin-top:27px}.iCsvDialog .dropArea__title{margin-top:6px;color:#c2c7cc}.iCsvDialog .dropArea__title--hover{color:#229ed4}.iCsvDialog .dropArea__subtitle{margin-top:2.58px;color:#a3a3a3}.iCsvDialog .dropArea__linkCon{display:flex;white-space:break-spaces}.iCsvDialog .dropArea__subtitleLink{margin-top:2.58px;color:#229ed4;cursor:pointer}.iCsvDialog .dropArea__fileCon{display:flex;align-items:center;margin-top:4px}.iCsvDialog .dropArea__fileName{margin-left:8px}.iCsvDialog .dropArea__fileName--error{color:#ff5366}.iCsvDialog .dropArea__fileImage{height:18px;width:18px}.iCsvDialog .dropArea__targetTooltip .ant-tooltip-inner{color:#606366;background-color:#fff;border:1px solid #919599;padding:16px}.iCsvDialog .dropArea__targetTooltip .ant-tooltip-content{width:339px;height:210px}.iCsvDialog .dropArea__targetTooltip .ant-tooltip-arrow{border-right-color:#fff;border-right-width:6px}.iCsvDialog .dropArea__targetTooltip .ant-tooltip-arrow:before{position:absolute;content:" ";border:1px solid #919599;border-width:0 0 1px 1px;width:6px;height:6px;top:-4px;left:1px;transform:rotateZ(45deg)}.iCsvDialog .dropArea__tooltip{margin-left:5px}.iCsvDialog .dropArea__reqHeader{font-weight:bold}.iCsvDialog .dropArea__reqText{margin-top:5px}.iCsvDialog .mappingSection{margin-top:16px}.iCsvDialog .mappingSection .ant-checkbox{top:-2px}.iCsvDialog .mappingSection__headerCheckCon{display:flex;align-items:center}.iCsvDialog .mappingSection__table{margin-top:12px;border:1px solid #dbdbdb}.iCsvDialog .mappingSection__header{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;height:40px;padding-left:10px;padding-top:11px;padding-bottom:15px;border-bottom:1px solid #dbdbdb}.iCsvDialog .mappingSection__column1{color:#c2c7cc}.iCsvDialog .mappingSection__column2{margin-left:48px;color:#c2c7cc}.iCsvDialog .mappingSection__column3{margin-left:85px;color:#c2c7cc}.iCsvDialog .mappingSection__body{max-height:286px;overflow-y:auto}.iCsvDialog .mappingSection__row{display:flex;flex-direction:row;justify-content:flex-end;align-items:center;padding-left:10px;padding-right:10px;height:40px;border-bottom:1px solid #dbdbdb}.iCsvDialog .mappingSection__headerData{width:70px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#6e6e6e}.iCsvDialog .mappingSection__headerData--noData{color:#c2c7cc}.iCsvDialog .mappingSection__rowData{width:72px;margin-left:16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#6e6e6e}.iCsvDialog .mappingSection__icon{margin-left:16px}.iCsvDialog .mappingSection__select{width:181px;margin-left:16px}.iCsvDialog .mappingSection__targetTooltip .ant-tooltip-inner{color:#606366;background-color:#fff;border:1px solid #919599;padding:16px}.iCsvDialog .mappingSection__targetTooltip .ant-tooltip-content{width:339px;height:210px}.iCsvDialog .mappingSection__targetTooltip .ant-tooltip-arrow{border-right-color:#fff;border-right-width:6px}.iCsvDialog .mappingSection__targetTooltip .ant-tooltip-arrow:before{position:absolute;content:" ";border:1px solid #919599;border-width:0 0 1px 1px;width:6px;height:6px;top:-4px;left:1px;transform:rotateZ(45deg)}.iCsvDialog .mappingSection__tooltip{box-sizing:border-box}.iCsvDialog .mappingSection__reqHeader{font-weight:bold}.iCsvDialog .mappingSection__reqText{margin-top:5px}.businessBillingPage hr.divider{box-sizing:border-box}.businessBillingPage .ant-table-title{border-radius:0}.businessBillingPage .ant-table-content .ant-table-footer{display:none}.businessBillingPage .billingInfoKey{width:220px}.businessBillingPage .saveTag{background-color:#ff9800;margin-right:15px;padding:3px;font-size:11px;color:#fff;position:relative;display:inline-block;height:14px}.businessBillingPage .saveTag:after{display:inline-block;content:" ";width:0;height:0;border-top:10px solid rgba(0,0,0,0);border-bottom:10px solid rgba(0,0,0,0);border-left:10px solid #ff9800;position:absolute;top:0;right:-10px}.billingAddon{display:flex;flex-direction:column;width:100%;padding:16px 0 16px 16px;box-sizing:border-box}.billingAddon .billingAddon__title{display:flex;flex-direction:row;justify-content:space-between;align-items:flex-end}.billingAddon .billingAddon__price{display:flex;flex-direction:row;align-items:flex-end}.billingAddon .billingRenewal{border-bottom:none;padding:16px 0}.billingAddon:not(:last-child){padding:16px 0 32px 16px}.billingRenewal{display:flex;flex-direction:row;justify-content:space-between;padding:16px;box-sizing:border-box;width:100%;border-bottom:1px solid #eee}.videoCoachingDetails{box-sizing:border-box;position:relative;display:flex;flex-direction:column;padding:24px;width:100%}.videoCoachingDetails .ant-row{height:36px;border-bottom:1px solid #eee;display:flex;align-items:center}.AddCreditDialog .modal-body{padding-bottom:16px}.PlanNameTooltipOverlay{max-width:400px}.PlanNameTooltipOverlay__title{font-weight:400;font-size:18px;line-height:22px;color:#151112}.PlanNameTooltip{width:14px;height:14px}.removeBusinessDialog .ant-form .ant-form-inline .ant-form-item-with-help{margin-bottom:0}.removeBusinessDialog .ant-input-affix-wrapper .ant-input-prefix{left:8px}#appointmentTypeDialog .ant-form-item-control{line-height:inherit}.vertical-divider{border-style:solid;border-left:1px;border-color:#eee;margin:0 30px;align-self:stretch}.thumbnailUploader{width:60%;align-self:stretch}.addAvailability_button{height:40px;max-height:40px;width:100%;padding:0 !important;display:flex;justify-content:center;align-items:center;color:#229ed4 !important;background-color:rgba(0,0,0,0) !important}.addAvailability_button:hover{background-color:rgba(0,0,0,0) !important}.selfBookingDialog .timeContainer{width:420px;max-height:140px;flex-wrap:wrap;overflow:auto;padding:8px;align-content:flex-start}.selfBookingDialog .timeContainerNullScreen{width:420px;height:140px}.selfBookingDialog .timeContainerNullScreen .nullscreenText{max-width:260px;text-align:center}.selfBookingDialog .timeslot{border:1px solid #eee;padding:8px;width:74px;border-radius:18px}.selfBookingDialog .selected{background-color:#229ed4;color:#fff}#appointmentTypeList .columnHeader{height:48px}#appointmentTypeList .columnHeader>div{justify-content:center}#appointmentTypeList .columnHeader>div p.tz-sp,#appointmentTypeList .columnHeader>div .iCsvDialog p.dropArea__fileName,.iCsvDialog #appointmentTypeList .columnHeader>div p.dropArea__fileName{text-align:center}#appointmentTypeList .columnHeader>div:first-of-type{justify-content:left}#appointmentTypeList .columnHeader>div.checkBoxEmptyPadding+div{justify-content:left}#appointmentTypeList .reactBaseGrid{max-height:450px !important}#appointmentTypeList .reactBaseGridWrap .baseGridColumn .duration__wrapper p{overflow:initial}.eventTimeConflictDialog .iconBackground{width:18px;height:18px;border-radius:50%;background-color:#ffcb10;display:flex;justify-content:center;align-items:center}.eventTimeConflictDialog .listWrapper{max-height:370px;overflow:auto;border:1px solid #dbdbdb;margin:8px 0 8px 0}.eventTimeConflictDialog .listWrapper .itemWrapper{border-bottom:1px solid #f8f8f8}.eventTimeConflictDialog .listWrapper .itemWrapper:last-child{border:none}.eventTimeConflictDialog .listWrapper .itemWrapper .imageWrapper{position:relative;height:40px;width:40px}.eventTimeConflictDialog .listWrapper .itemWrapper .imageWrapper .profileImage{border-radius:50%;border:2px solid #dbdbdb;height:40px;width:40px}.eventTimeConflictDialog .listWrapper .itemWrapper .imageWrapper .imageIcon{position:absolute;right:-10px;bottom:-5px;width:20px;height:20px;border:1px solid #fff}.classCarouselWrapper{position:relative}.classCarouselWrapper .classCarousel{display:-webkit-box;overflow:scroll;padding:5px 0;scrollbar-width:none;-ms-overflow-style:none}.classCarouselWrapper .classCarousel::-webkit-scrollbar{display:none}.classCarouselWrapper .classCarousel__tile{position:relative;user-select:none;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none}.classCarouselWrapper .classCarousel__tile:not(:last-child){margin-right:16px}.classCarouselWrapper .arrowWrapper{display:none;position:absolute;top:5px;bottom:5px;width:24px;background-color:#a3a3a3;opacity:.8;z-index:100;cursor:pointer}.classCarouselWrapper .arrowWrapper .arrow{margin:auto}.classCarouselWrapper .show{display:flex}.classCarouselWrapper #arrowLeft{left:0}.classCarouselWrapper #arrowRight{right:0}.appointmentCarouselContainer{margin:20px 0;position:relative}.appointmentCarouselContainer .appointmentTilesContainer{display:flex;gap:16px;overflow-x:scroll;scrollbar-width:none;-ms-overflow-style:none}.appointmentCarouselContainer .appointmentTilesContainer::-webkit-scrollbar{display:none}.appointmentCarouselContainer .appointmentTilesContainer .arrowWrapper{z-index:999;cursor:pointer;opacity:.95;width:24px;height:170px;background-color:#eee;position:absolute}.appointmentCarouselContainer .appointmentTilesContainer .arrowWrapper:nth-of-type(1){left:0}.appointmentCarouselContainer .appointmentTilesContainer .arrowWrapper:nth-of-type(2){right:0}.appointmentCarouselContainer .appointmentTilesContainer .arrowWrapper svg{margin:auto}.appointmentCarouselContainer .appointmentTilesContainer .arrowWrapper.hidden{display:none}.appointmentCarouselContainer .appointmentTilesContainer .arrowWrapper.visible{display:flex}.appointmentCarouselContainer .appointmentTilesContainer .appointmentTile{min-width:156px;height:170px;box-sizing:border-box;background-color:#f8f8f8;border-radius:12px;padding:16px;display:grid;grid-template-rows:auto 1fr auto;text-align:center;gap:10px}.appointmentCarouselContainer .appointmentTilesContainer .appointmentTile .appointmentName{font-weight:700;line-height:16px;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;height:32px}.appointmentCarouselContainer .appointmentTilesContainer .appointmentTile .appointmentDetails{display:flex;flex-direction:column;gap:4px;align-items:center}.appointmentCarouselContainer .appointmentTilesContainer .appointmentTile .appointmentDetails p{font-size:12px;line-height:14px}.appointmentCarouselContainer .appointmentTilesContainer .appointmentTile a{margin:auto}.appointmentCarouselContainer .appointmentTilesContainer .appointmentTile p{color:#151112}.appointmentCarouselContainer .appointmentTilesContainer .appointmentTile p.sessionCount{color:#a3a3a3}.appointmentCarouselContainer .appointmentTilesContainer .appointmentImageTile{min-width:260px;height:170px;padding:16px;box-sizing:border-box;border-radius:12px;display:grid;grid-template-rows:1fr auto;background-position:center;background-size:cover;background-repeat:no-repeat;mix-blend-mode:multiply}.appointmentCarouselContainer .appointmentTilesContainer .appointmentImageTile p{color:#fff}.appointmentCarouselContainer .appointmentTilesContainer .appointmentImageTile .tileHeader{display:flex;flex-direction:column;gap:4px}.appointmentCarouselContainer .appointmentTilesContainer .appointmentImageTile .tileHeader .appointmentLevelName{font-size:12px;line-height:14px;font-weight:700;color:#4db4ea}.appointmentCarouselContainer .appointmentTilesContainer .appointmentImageTile .tileHeader .appointmentName{max-width:143px;font-size:17px;line-height:22px;font-weight:700;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;max-height:44px}.appointmentCarouselContainer .appointmentTilesContainer .appointmentImageTile .appointmentDetails{display:flex;justify-content:space-between;align-items:center}.appointmentCarouselContainer .appointmentTilesContainer .appointmentImageTile .appointmentDetails .detailsColumn{display:flex;flex-direction:column;gap:4px}.appointmentCarouselContainer .appointmentTilesContainer .appointmentImageTile .appointmentDetails .detailsColumn .iconRow{display:flex;align-items:center;gap:4px}.appointmentCarouselContainer .appointmentTilesContainer .appointmentImageTile .appointmentDetails .detailsColumn .iconRow p{font-size:12px;line-height:14px}.appointmentCarouselContainer .appointmentTilesContainer .appointmentImageTile .appointmentDetails button{font-weight:420;line-height:14px}.appointmentDialog .startTimeSelect .availableTime{color:#229ed4 !important}.appointmentDialog .startTimeSelect .ant-select-dropdown-menu-item-active:not(.availableTime){color:#606366 !important}.tz-available-date-picker .ant-calendar-today.ant-calendar-selected-day .ant-calendar-date{background:#03a9f5 !important}.video-call{height:100vh;width:100vw;min-width:250px;background-color:#252627;overflow:hidden;display:flex;justify-content:center;align-items:center}.video-call .lobby-container{min-height:350px;width:600px;background-color:#4d4f54;padding:64px;box-sizing:border-box;color:#fff;position:relative;overflow:hidden}.video-call .room-container{position:relative;height:100%;width:100%}.video-call .remote-participant-mute-icon-container{position:absolute;top:32px;left:32px;z-index:5}.video-call .remote-participant-mute-icon-container .remote-participant-mute-icon{background-color:#fff;height:25px;width:25px;margin-right:12px;border-radius:50px}.video-call .remote-participant-mute-icon-container .remote-participant-name{color:#fff}.video-call .countdown-timer-container{position:relative;min-width:134px}.video-call .countdown-timer-container .countdown-timer{position:absolute;height:35px;min-width:110px}.video-call .camera-container{position:relative}.video-call .camera-container--video-hidden{height:100vh;width:100vw}.video-call .video-hidden{visibility:hidden}.video-call .local-participant-container{position:absolute;bottom:96px;right:32px;width:235px;z-index:2}.video-call .local-participant-container .camera-container--video-hidden{height:100%;width:100%}.video-call .local-participant-container .landscape-video{width:100%;max-height:100%}.video-call .local-participant-container .portrait-video{max-width:100%;height:100%}.video-call .local-participant-container video,.video-call .local-participant-container .camera-off-overlay{border-radius:6px}.video-call .local-participant-container .camera-off-overlay{background-color:#4d4f54;z-index:3}.video-call .remote-participant-container{display:flex;flex-wrap:nowrap;justify-content:space-between;height:100%;width:100%}.video-call .participant{background:#151112;position:relative;height:100%;width:100%}.video-call .camera-off-overlay{position:absolute;height:100%;width:100%;background:#33353a;z-index:1}.video-call .camera-off-overlay .profileImage__image--null{background-size:cover}.video-call .camera-off-overlay .profileImage .loader-overlay{border-radius:50%}.video-call .buttons-container,.video-call .settings-button-container{position:absolute;bottom:16px;z-index:5}.video-call .buttons-container .video-call-button,.video-call .settings-button-container .video-call-button{height:48px;width:48px;background-color:rgba(119,125,141,.8);margin:16px;border-radius:24px;cursor:pointer}.video-call .buttons-container .video-call-button:hover,.video-call .settings-button-container .video-call-button:hover{background-color:rgba(196,202,218,.8);transition:background-color .5s}.video-call .buttons-container .video-call-button--off,.video-call .settings-button-container .video-call-button--off{background-color:#fff}.video-call .buttons-container .video-call-button--red,.video-call .settings-button-container .video-call-button--red{background-color:#ff5366}.video-call .buttons-container .video-call-button--red:hover,.video-call .settings-button-container .video-call-button--red:hover{background-color:#ffa0b3}.video-call .buttons-container{left:96px;right:96px;min-width:240px}.video-call .settings-button-container{left:16px}.video-call .mic-status-container{position:absolute;height:100%;width:100%;top:0;z-index:6;pointer-events:none}.video-call .mic-status-container .mic-status{height:100px;width:100px;background-color:#229ed4;border:5px solid #2bb5f7;border-radius:22px;visibility:hidden;opacity:0;transition:all .3s ease-in-out}.video-call .mic-status-container .mic-status--visible{visibility:visible;opacity:1}.video-call .feedback-text-area{width:500px;background:#686b72;color:#fff;border:none;border-radius:0;box-shadow:none}.video-call .rejoin-button{background:none;border:1px solid #fff;color:#fff}.video-call .rejoin-button:hover,.video-call .rejoin-button:active{border:1px solid #fff;background:#686b72}.video-call .rejoin-button:after{content:none}.video-call .camera-preview{position:relative;width:640px;z-index:2}.video-call .camera-preview .camera-container--video-hidden{height:100%;width:100%}.video-call .camera-preview .landscape-video{width:100%;max-height:100%}.video-call .camera-preview .portrait-video{max-width:100%;height:100%}.video-call .camera-preview .camera-off-overlay{background-color:#4d4f54;z-index:3}.media-device-dialog .media-device-select{width:100%;max-width:425px}.videoCall{margin:0;display:flex;align-items:center;justify-content:center;height:100vh;overflow:hidden;position:absolute}.videoCall__button{height:48px;width:48px;background-color:rgba(119,125,141,.8);border-radius:24px;cursor:pointer;display:flex;justify-content:center;align-items:center}.videoCall__button:hover{background-color:rgba(196,202,218,.8);transition:background-color 300ms}.videoCall__button--off{background-color:#fff}.videoCall__button--red{background-color:#ff5366}.videoCall__button--red:hover{background-color:#ffa0b3}.videoCall .localVideoPreview video{height:100%;width:100%}.videoCall .mainParticipant{height:100vh;width:100vw}.videoCall .mainParticipant .landscape-video{width:100vw;max-height:100vh}.videoCall .mainParticipant .portrait-video{max-width:100vw;height:100vh}.videoCall .mainParticipant video{object-fit:contain}.videoCall .participantList{position:absolute;right:0;bottom:96px;width:96px;z-index:10;transition:bottom 300ms ease-in-out}.videoCall .participantList .participant{width:100%;min-height:115px;background:#151112;z-index:1;border-radius:0;overflow:hidden}.videoCall .participantList .participant .landscape-video{width:100%;max-height:100%}.videoCall .participantList .participant .portrait-video{max-width:100%;height:100%}.videoCall .participantList .participant--small{height:54px;min-height:54px}.videoCall .participantList .participant video.portrait-video{height:initial}.videoCall .localParticipant{position:absolute;left:32px;bottom:96px;width:235px;z-index:10;transition:bottom 300ms ease-in-out}.videoCall .localParticipant .participant{width:100%;min-height:115px;background:#151112;z-index:1;border-radius:0;background-color:#181819}.videoCall .localParticipant .participant .landscape-video{width:100%;max-height:100%}.videoCall .localParticipant .participant .portrait-video{max-width:100%;height:100%}.videoCall .participantGrid{margin:0;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;height:100%;width:100%}.videoCall .participantGrid .participant{position:relative}.videoCall .participantGrid .participant .landscape-video{width:100%;max-height:100%;border-radius:8px}.videoCall .participantGrid .participant .portrait-video{max-width:100%;height:100%}.videoCall .buttonContainer{justify-content:space-between}.videoCall .buttonContainer .videoCall__button:not(:last-child){margin-right:32px}.videoCall .buttonContainer--placeholder{width:48px}.videoCall .audioIndicator__container{position:absolute;top:32px;left:32px;z-index:5;padding:8px 16px;background:#151112;border-radius:4px}.videoCall .audioIndicator__container-small{top:8px;left:8px;padding:6px;overflow:hidden;box-sizing:border-box;max-width:calc(100% - (8px + 6px*2))}.videoCall .reconnectingContainer{position:absolute;z-index:3;background:rgba(0,0,0,.8);height:100%;width:100%;display:flex;flex-direction:column;justify-content:center;align-items:center}.videoCall .lobby-appear{opacity:0}.videoCall .lobby-appear-active{opacity:1;transition:opacity 500ms ease-in}.videoCall .lobby-exit{opacity:1}.videoCall .lobby-exit-active{opacity:0;transition:opacity 500ms ease-in}.videoCall .lobbyButton-appear{transform:translateY(140px);opacity:0}.videoCall .lobbyButton-appear-active{transform:translateY(0);opacity:1;transition:all 750ms ease-in-out}.videoCall .maxParticipantButton{align-items:flex-end}.videoCall .maxParticipantButton__group{box-sizing:border-box;width:48px;border-radius:26px;border:1px solid #777d8d;position:relative;padding-top:24px;background:#777d8d;display:flex;flex-direction:column;justify-content:center;align-items:center}.videoCall .maxParticipantButton__textLink{text-align:center;padding:5px 0px;font-weight:bold;font-size:16px;color:#fff;width:100%}.videoCall .maxParticipantButton__textLink:hover{background:#151112}.videoCall footer{position:absolute;bottom:0;width:100%;width:100vw;z-index:10;transition:bottom 300ms ease-in-out;background-color:rgba(48,49,51,.8)}.videoCall .v-notification{position:absolute;border-radius:6px;left:50%;transform:translateX(-50%);padding:8px 12px;color:#fff;background:#6e6e6e;line-height:1;z-index:100;white-space:nowrap;animation-name:enter;animation-duration:250ms;animation-timing-function:ease-in-out;animation-fill-mode:forwards;top:0}.videoCall .v-notification-wrapper{display:flex;position:relative}.videoCall .v-notification.arrow::before{content:" ";left:50%;border:solid rgba(0,0,0,0);height:0;width:0;position:absolute;border-width:8px;margin-left:-8px;top:100%;border-top-color:#6e6e6e}@keyframes enter{0%{opacity:0;top:-30px}100%{opacity:1;top:-60px}}.display-none{display:none !important}.space-zero{margin:0 !important;padding:0 !important}.timeline .ant-calendar-input-wrap{display:none}.timeline .ant-calendar-picker-container{z-index:2000}.timeline .ant-calendar-picker{display:none}.timeline .profileImage__image--null{background-size:cover}.timeline .thumbsUpAnimated1{display:block;animation-name:moveThumbsUp1;animation-iteration-count:1;animation-timing-function:linear;animation-duration:1s;animation-delay:150ms}.timeline .thumbsUpAnimated2{display:block;animation-name:moveThumbsUp2;animation-iteration-count:1;animation-timing-function:linear;animation-duration:1s;animation-delay:250ms}.timeline .thumbsUpAnimated3{display:block;animation-name:moveThumbsUp3;animation-iteration-count:1;animation-timing-function:linear;animation-duration:1s;animation-delay:350ms}@keyframes moveThumbsUp1{0%{transform:translate(0, 0)}50%{transform:translate(-20px, -40px) scale(0.6);opacity:.5}100%{transform:translate(-15px, -80px) scale(0.3);opacity:0}}@keyframes moveThumbsUp2{0%{transform:translate(0, 0)}50%{transform:translate(10px, -30px) scale(0.6);opacity:.5}100%{transform:translate(5px, -60px) scale(0.3);opacity:0}}@keyframes moveThumbsUp3{0%{transform:translate(0, 0)}50%{transform:translate(-15px, -30px) scale(0.6);opacity:.5}100%{transform:translate(-15px, -60px) scale(0.3);opacity:0}}.timelineHideCalendarInput{visibility:hidden !important}.MessengerDialog{max-height:calc(100vh - 60px);display:flex;flex-direction:column;box-sizing:border-box}.MessengerDialog .MessengerRecipientList .ant-select-selection__choice{border-radius:15px;padding:2px 20px 2px 1px;height:28px;background:#f4f6f9;border-color:#f4f6f9;display:flex;align-items:center}.MessengerDialog .MessengerRecipientList .clientPicker-item span{font-style:normal;font-weight:400;font-size:12px;line-height:16px;color:#303133}.MessengerDialog .messageComposer__wrapper{padding-right:190px}.MessengerDialog__messageList{position:relative;display:flex;flex-direction:column;justify-content:space-between;width:100%;height:500px;overflow:hidden;margin-top:16px;border:1px solid #eee}@media(max-height: 700px){.MessengerDialog{min-height:calc(100vh - 60px)}}.MessengerPage .MessengerSidebar{background-color:#fff;border-top:1px solid #eee;border-bottom:1px solid #eee;overflow:hidden;height:100%;width:100%;display:flex;flex-direction:column;box-sizing:border-box}.MessengerPage .MessengerSidebar__section{padding:8px 16px;border-bottom:1px solid #eee}.MessengerPage .MessengerSidebar__section--blueGray{background-color:#eff3f6}.MessengerPage .MessengerSidebar .ThreadsViewSelect{max-width:168px;opacity:1;-webkit-transition:.6s;-moz-transition:.6s;-ms-transition:.6s;-o-transition:.6s;transition:.6s}.MessengerPage .MessengerSidebar .ThreadsViewSelect.selectHidden{opacity:0}.MessengerPage .MessengerSidebar .ThreadsViewSelect .ThreadsViewSelect__select .ant-select-selection,.MessengerPage .MessengerSidebar .ThreadsViewSelect .ThreadsViewSelect__select .ant-select-selection--single{height:24px;border:1px solid #ccc}.MessengerPage .MessengerSidebar .ThreadsViewSelect .ThreadsViewSelect__select .ant-select-selection .ant-select-selection__rendered,.MessengerPage .MessengerSidebar .ThreadsViewSelect .ThreadsViewSelect__select .ant-select-selection--single .ant-select-selection__rendered{height:100%}.MessengerPage .MessengerSidebar .ThreadsViewSelect .ThreadsViewSelect__select .ant-select-selection .ant-select-selection__rendered .ant-select-selection-selected-value,.MessengerPage .MessengerSidebar .ThreadsViewSelect .ThreadsViewSelect__select .ant-select-selection--single .ant-select-selection__rendered .ant-select-selection-selected-value{height:100%;line-height:24px;color:#151112}.MessengerPage .MessengerSidebar .ThreadsViewSelect .ThreadsViewSelect__select .ant-select-arrow{margin-top:-4px;color:#a3a3a3}.MessengerPage .MessengerSidebar .ThreadsSearch{position:absolute;top:6px;right:16px}.MessengerPage .MessengerSidebar .ThreadsSearch__search{-webkit-transition:width .2s;-moz-transition:width .2s;-ms-transition:width .2s;-o-transition:width .2s;transition:width .2s}.MessengerPage .MessengerSidebar .ThreadsSearch__search .ant-input-prefix svg{filter:invert(85%) sepia(8%) saturate(172%) hue-rotate(173deg) brightness(82%) contrast(87%)}.MessengerPage .MessengerSidebar .ThreadsSearch__search.searchHidden{width:30px !important;cursor:pointer}.MessengerPage .MessengerSidebar .ThreadsSearch__search.searchHidden .ant-input{padding:0;background-color:rgba(0,0,0,0);box-shadow:none !important;border-color:rgba(0,0,0,0) !important}.MessengerPage .MessengerSidebar .ThreadsSearch__search.searchHidden .ant-input.ant-input-disabled{cursor:pointer}.MessengerPage .MessengerSidebar .ThreadsSearch__search .ant-input-suffix{display:none}.MessengerPage .MessengerSidebar .ThreadsSearch__close{position:absolute;right:4px;top:6px;cursor:pointer;opacity:1;-webkit-transition:.6s;-moz-transition:.6s;-ms-transition:.6s;-o-transition:.6s;transition:.6s}.MessengerPage .MessengerSidebar .ThreadsSearch__close.closeHidden{opacity:0}.MessengerPage .MessengerSidebar .ThreadsSearch__tip{position:absolute;top:35px;z-index:20;width:176px;background-color:#fff;border:2px solid #ebebeb;border-radius:10px;padding:8px 6px 6px 14px}.MessengerPage .MessengerSidebar .ThreadsSearch__tip h4{font-size:14px;font-weight:400;color:#ffcb10;line-height:18px;margin-bottom:10px}.MessengerPage .MessengerSidebar .ThreadsSearch__tip p{font-size:13px;font-weight:300;color:#606366;opacity:.6}.MessengerPage .MessengerSidebar .ThreadsList{overflow:auto}.MessengerPage .MessengerSidebar .ThreadsList .ThreadsListItem--selected{border-left:5px solid #229ed4;background-color:#dcf7ff;padding:8px 16px 8px 11px}.MessengerPage .MessengerSidebar .ThreadsList .ThreadsListItem:hover{background-color:#fcfcfc}.MessengerPage .MessengerSidebar .ThreadsList .ThreadsListItem__profileImage{width:34px;height:34px}.MessengerPage .MessengerSidebar .ThreadsList .ThreadsListItem__profileImage img{border-radius:50%;border:2px solid #c2c7cc;position:relative;overflow:hidden;font-size:1px}.MessengerPage .MessengerSidebar .ThreadsList .ThreadsListItem__profileImage--single img{width:34px;height:34px}.MessengerPage .MessengerSidebar .ThreadsList .ThreadsListItem__profileImage--multiple img{width:25px;height:25px;position:absolute}.MessengerPage .MessengerSidebar .ThreadsList .ThreadsListItem__profileImage--multiple img:first-child{top:0;left:0}.MessengerPage .MessengerSidebar .ThreadsList .ThreadsListItem__profileImage--multiple img:last-child{top:10px;left:7px}.MessengerPage .MessengerSidebar .ThreadsList .ThreadsListItem__content{width:136px}.MessengerPage .MessengerSidebar .ThreadsList .ThreadsListItem__content .excerpt{width:110px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.MessengerPage .MessengerSidebar .ThreadsList .ThreadsListItem__unreadMessages{position:absolute;top:50%;right:16px;transform:translate(0, -50%) scale(0.85)}.MessengerPage .MessengerWrap{display:flex;flex-direction:row;height:100%;width:100%}.MessengerPage .MessengerContent{position:relative;display:flex;flex-direction:column;height:100%;width:100%;min-width:0}.MessengerPage .MessengerContent .MessengerHeader{display:flex;flex-direction:row;flex-shrink:0;flex-basis:60px;height:60px;background:#eff3f6;border-bottom:1px solid #dbdbdb;border-left:none}.MessengerPage .MessengerContent .MessengerHeader__clientInfo{min-width:150px}.MessengerPage .MessengerContent .MessengerHeader__threadName{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;cursor:pointer}.MessengerPage .MessengerContent .MessageList{display:flex;flex-direction:column;justify-content:space-between;height:calc(100% - 61px)}.draggingWrapper{display:flex;flex-direction:column;justify-content:center;align-items:center;position:absolute;width:calc(100% - 2px);height:calc(100% - 63px);border:1px solid #229ed4;background:rgba(255,255,255,.7)}.draggingWrapper_withHeader{display:flex;flex-direction:column;justify-content:center;align-items:center;position:absolute;width:calc(100% - 2px);height:calc(100% - 66px);border:1px solid #229ed4;background:rgba(255,255,255,.7);z-index:2}.zoom-in-out-box{animation:zoom-in-zoom-out 1.5s ease infinite;display:flex;flex-direction:column;justify-content:center;align-items:center}@keyframes zoom-in-zoom-out{0%{transform:scale(1, 1)}50%{transform:scale(1.1, 1.1)}100%{transform:scale(1, 1)}}.messageLinkInfo{background:#f5f6f8;padding:10px;border-radius:5px;max-width:400px;position:relative;margin-top:8px;margin-bottom:10px;min-height:100px;display:flex;align-items:flex-start;justify-content:center;flex-direction:column}.messengerWOD--clickable{cursor:pointer}.messengerWOD--clickable:hover{border-color:#229ed4}.messageContainer{display:flex;flex-direction:row;padding-top:5px;position:relative}.messageContainer:hover{background-color:#f7f7f7}.messageContainer_content{display:flex;flex-direction:column;flex:5;margin-left:12px;margin-right:10px}.messageContainer_bottomRow{display:flex;flex-direction:row;flex:1;padding-bottom:2px}.messageContainer .AudioWavePlayer{width:96%}.message_profile{display:flex;flex-direction:row;justify-content:end;flex:0;min-width:54px;margin-top:5px}.message_profile_activity{position:absolute;left:0;top:0}.message_senderRow{display:flex;flex-direction:row;flex:1;margin-bottom:5px}.dropdownMenu{position:absolute;right:0;top:0}.message_reaction{display:flex;flex-direction:row;flex:1;position:relative;justify-content:flex-end}.message_reaction .reactBody{display:flex;flex-direction:row;align-items:center}.message_reaction .reactionButton{width:33px;height:20px;border-radius:15px;background-color:#f3f3f3;display:flex;flex-direction:row;justify-content:center;align-items:center;margin-right:8px;border:1px solid rgba(0,0,0,0);cursor:pointer}.message_reaction .reactionButton_count{cursor:pointer}.message_reaction .reactionButton:hover{border:1px solid #a3a3a3;box-sizing:content-box}.message_reaction .reactionPressed{border:1px solid #a3a3a3;box-sizing:content-box}.message_reaction .emojiPickerToggle{width:20px;height:20px;background-color:#f3f3f3;border-radius:15px;border:1px solid rgba(0,0,0,0);display:flex;align-items:center;justify-content:center;cursor:pointer}.message_reaction .emojiPickerToggle:hover{border:1px solid #a3a3a3}.message_reaction .emojiPickerToggle:hover use{fill:#2bc3ff !important}.message_reaction .emojiPickerToggle.isOpenEmojiPicker use{fill:#2bc3ff !important}.message_reaction .emoji-picker-react{box-shadow:none}.message_reaction .reaction-wrap{height:100%;padding:12px 5px;box-sizing:border-box;cursor:pointer}.message_reaction .reaction-wrap-left:hover{border-radius:40px 0 0 40px !important}.message_reaction .reaction-wrap-right:hover{border-radius:0px 40px 40px 0 !important}.message_reaction .image-cont{cursor:pointer;display:inline-grid}.messageComment{display:flex;flex-direction:row;flex:1}.messageFileAttachment{display:flex;flex-direction:row;flex:1;border:1px solid #d5d6d6;padding:10px;min-height:50px;border-radius:5px;position:relative;cursor:pointer}.messageFileAttachment_Icon{display:flex;flex-direction:row;flex:0;justify-content:center;align-items:center}.messageFileAttachment_NameWrapper{margin-left:5px;display:flex;flex-direction:column;flex:1;justify-content:center;cursor:pointer}.messageFileAttachment_FileName{display:inline-block;width:290px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;cursor:pointer}.messageFileAttachment_FileInfo{cursor:pointer}.messageAttachmentIcon{display:flex;flex-direction:row;flex:0;justify-content:center;align-items:center}.messageBody{display:flex;flex-direction:row;width:100%;margin-top:2px;margin-bottom:2px;word-break:break-word}.messageBody_edit{display:flex;flex-direction:column;width:100%;margin-top:2px;margin-bottom:2px}.messageBody_editModeEditor{color:#151112;width:100%;padding:10px 0 10px 9px;word-break:break-word;box-sizing:border-box;border:1px solid #cfcfcf;max-height:200px;overflow:auto;font-size:14px}.messageBody_buttonWrap{display:flex;flex-direction:row;justify-content:flex-end;margin-top:8px;margin-bottom:8px}.messageBody_autoPostInfoWrap{margin-top:20px}.messageBody_autoPostInfo{background-color:rgba(6,169,246,.1607843137);padding:5px 16px;border-radius:25px;max-width:410px}.imageError{border:1px solid rgba(255,0,0,.3);background-color:rgba(255,0,0,.05);display:flex;justify-content:center;align-items:center;color:#aaa;font-weight:400;text-align:center}.messageComposer{width:100%;box-sizing:border-box;border-top:1px solid #eee;position:relative;background-color:#fff;bottom:0;border-radius:24px 24px 0 0}.messageComposer__wrapper{color:#151112;width:100%;padding:16px;word-break:break-word;box-sizing:border-box;max-height:200px;overflow:auto}.messageComposer__wrapper.voiceMessageActive{padding-top:7px;padding-bottom:7px}.messageComposer__wrapper.voiceMessageActive .editorWrapper{display:none}.messageComposer__wrapper .DraftEditor-root{cursor:text;position:relative;margin-right:20px;font-size:14px}.messageComposer__wrapper .DraftEditor-editorContainer{z-index:1;background-color:rgba(0,0,0,0);position:relative}.messageComposer__wrapper .public-DraftEditorPlaceholder-root{color:#c2c7cc;position:absolute;width:100%;z-index:0}.messageComposer__wrapper .public-DraftEditorPlaceholder-inner{font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap !important;width:100%}.messageComposer__wrapper .m6zwb4v{color:#151112;background:none;font-weight:bold}.messageComposer__popover{max-height:200px;overflow:scroll;position:absolute;bottom:100%;left:0;width:100%;border:1px solid #cfcfcf;background-color:#fff}.messageComposer__popover__scroll{max-height:inherit}.messageComposer__popover>div:first-child>div .name::before{content:"@"}.messageComposer__popover .item{display:flex;align-items:center}.messageComposer__popover .item:hover{background-color:#eee}.messageComposer__popover .item:hover .name,.messageComposer__popover .item:hover .description{color:#229ed4}.messageComposer__popover .right{display:flex;flex-direction:column}.messageComposer__popover .name{font-size:12px;color:#6e6e6e}.messageComposer__popover .description{font-size:10px;color:#a3a3a3}.messageComposer__inputButtons{display:flex;align-items:center;position:absolute;right:16px;top:50%;transform:translateY(-50%)}.messageComposer__inputButtons.withVoiceMessage{right:47px}.messageComposer__inputButtons span{cursor:pointer}.messageComposer__inputButtons span+span{margin-left:8px}.messageComposer__inputButtons svg{cursor:pointer}.messageComposer__inputButtons svg+svg{margin-left:8px}.messageComposer__inputButtons .roundedTooltipIcon{display:flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:50%;background-color:#f8f8f8}.messageComposer__inputButtons .reactToolTip.dropdown-active{background-color:rgba(0,0,0,0) !important}.messageComposer__tooltip{z-index:1040}.messageComposer__tooltip.hidden{display:none !important}.messageComposer__tooltip .ant-tooltip-inner{padding:3px 4px}.messageComposer__emojiPicker{position:absolute;bottom:100%;right:0;z-index:2}.messageComposer .AudioWavePlayerMessage--inactive{position:absolute;right:17px;top:50%;transform:translateY(-50%);height:22px}.messageComposer .AudioWavePlayerMessage .VoiceRecorder__stopButton{position:absolute;top:9px;right:9px}.messageComposer .AudioWavePlayerMessage .AudioPlayer__sendButton{position:absolute;top:14px;right:17px}.imagePreviewContainer{align-items:center;background-color:#eee;padding:16px 20px;border-radius:4px}.imagePreviewContainer .filePreview{width:80px;height:80px;object-fit:contain}.imagePreviewContainer .fileInfo{width:calc(100% - 84px);display:flex;flex-direction:column;align-items:flex-start}.imagePreviewContainer .fileInfo .fileName{text-overflow:ellipsis;width:100%;overflow:hidden}.imagePreviewContainer .fileInfo .fileExtension{margin-top:2px;color:#c2c7cc}.messageNullScreen{width:100%;height:100%;display:flex;align-items:center;justify-content:center;flex-direction:column}.messageNullScreen .singleIconNullScreen{display:flex;flex-direction:column;align-items:center}.messageNullScreen .singleIconNullScreen__text{margin-top:16px;color:#151112;font-size:22px}.messageNullScreen .nullScreenWithPlayButton{display:flex;flex-direction:column;align-items:center}.messageNullScreen .nullScreenWithPlayButton__watchVideo{display:flex;flex-direction:column;align-items:center}.messageNullScreen .nullScreenWithPlayButton__watchVideo .watchVideoText{color:#229ed4;font-size:18px;text-align:center;transform:translate(30px, 40px);white-space:pre-wrap}.messageNullScreen .nullScreenWithPlayButton__watchVideo .watchVideoArrow{width:40px;transform:translate(-30px, 20px);z-index:1}.messageNullScreen .nullScreenWithPlayButton__playArea{position:relative;width:200px}.messageNullScreen .nullScreenWithPlayButton__playArea .background{width:100%}.messageNullScreen .nullScreenWithPlayButton__playArea .playButton{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);cursor:pointer}.messageNullScreen .nullScreenWithPlayButton__text{text-align:center}.messageNullScreen .nullScreenWithPlayButton__text .title{color:#151112;margin:24px 0 12px 0}.messageNullScreen .nullScreenWithPlayButton__text .description{color:#6e6e6e;font-size:14px;display:inline-block;white-space:pre-wrap}.dateSeparator{padding:8px 0}.dateSeparator hr{border-color:#eee}.dateSeparator__text{padding:5px 33px !important;border-radius:14px;background-color:#fcfcfc}.dateSeparator hr{border-color:#eee}.dateSeparator__text{padding:5px 33px !important;border-radius:14px;background-color:#fcfcfc}.messageListWrapper{width:100%;height:100%;overflow:auto;position:relative}.messageListWrapper__content{height:100%;position:relative;display:flex;flex-direction:column;overflow-x:hidden}.messageListWrapper .MessengerList{position:relative;flex:1;display:flex;overflow:auto;flex-direction:column-reverse;justify-content:flex-start;align-items:center;min-height:0;width:100%}.messageListWrapper .MessengerList__content{flex:1;display:flex;flex-direction:column;justify-content:flex-start;align-items:center;width:100%}.animated-loader-enter{height:0}.animated-loader-enter-done:not(.animated-loader-exit-done){height:48px}.animated-loader-enter-active{height:48px;transition:all 250ms ease-in-out}.animated-loader-exit{height:20px}.animated-loader-exit-done:not(.animated-loader-enter-done){height:20px}.animated-loader-exit-active{height:0;transition:all 250ms ease-in-out}.NewMessageBubble{position:sticky;background:#229ed4;box-shadow:0 2px 10px rgba(0,0,0,.1);border-radius:15px;height:22px;width:106px;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:100}.NewMessageBubble p:first-letter{text-transform:capitalize}.NewMessageBubble--above{top:16px}.NewMessageBubble--below{bottom:16px}.MessengerTypingStatus{padding:2px 4px;margin-top:4px;width:100%;height:20px;background-color:#eee}.buttonDropdown__dropdown .reportMenuItem:hover{color:#ff5366}.buttonDropdown__dropdown .reportMenuItem:hover p{color:#ff5366}.buttonDropdown__dropdown .reportMenuItem p:hover{color:#ff5366}.EmojiPickerReact{--epr-preview-height: 40px;--epr-emoji-size: 21px}.EmojiPickerReact button.epr-emoji.epr-emoji-has-variations:after{display:none}.epr-emoji-native{font-size:21px !important}.messageUploadProgress{height:20px;width:100%;box-sizing:content-box;position:relative;margin-top:auto;background-color:#eee;display:flex;flex-shrink:0}.messageUploadProgress>p{z-index:1;position:absolute;display:flex;justify-content:center;align-items:center;width:100%}.messageUploadProgress>span{display:block;height:100%;background-color:#229ed4;box-shadow:inset 0 2px 9px rgba(255,255,255,.3),inset 0 -2px 6px rgba(0,0,0,.4);position:relative;overflow:hidden}.messageUploadProgress>span:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, transparent 75%, transparent);z-index:1;background-size:50px 50px;animation:loadingBars 2s linear infinite;overflow:hidden}.messageUploadProgress .animate>span:after{display:none}@keyframes loadingBars{0%{background-position:0 0}100%{background-position:50px 50px}}.videoAttachment{width:120px;height:120px;position:relative;background-color:#000;border:1px solid rgba(0,0,0,0);cursor:pointer;border-radius:5px}.playButton{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);cursor:pointer}.ImagePreviewDialog{max-height:calc(100vh - 64px);overflow:auto}.ImagePreviewDialog .modal-content{max-height:inherit}.ImagePreviewDialog .modal-body{max-height:inherit;background-color:#000;display:flex;flex-direction:column}.ImagePreviewDialog .modal-body h2{padding-bottom:0}.ImagePreviewDialog .modal-body img{max-height:calc(100vh - 64px - 64px - 34px)}.ImagePreviewDialog__header{height:34px;display:flex;align-items:center}#leftNavMenu{top:0;padding:0;position:fixed;z-index:1000;height:100%;box-sizing:border-box;display:flex;flex-direction:column}.leftNavItems{padding:0 14px;box-sizing:border-box;overflow-y:auto;scrollbar-width:none}.leftNavItems::-webkit-scrollbar{display:none}.leftNavMenu{padding:0;margin:0;box-sizing:border-box;position:relative;display:flex;flex-direction:column;flex-grow:1;align-items:flex-start;height:100%;width:100%}.leftNavMenu .clientSearch{height:58px;width:100%;padding:12px 16px 0 16px;box-sizing:border-box;display:flex;justify-content:center;cursor:pointer}.leftNavMenu .clientSearch--light .clientSearch-border{background-color:#eee;border-color:#eee !important}.leftNavMenu .clientSearch--light .clientSearch-searchBox:hover p,.leftNavMenu .clientSearch--light .clientSearch-searchBox:hover svg{filter:brightness(0.5)}.leftNavMenu .clientSearch--dark .clientSearch-border{background-color:#000;border-color:#000 !important}.leftNavMenu .clientSearch--dark .clientSearch-searchBox:hover p,.leftNavMenu .clientSearch--dark .clientSearch-searchBox:hover svg{color:#fff;filter:brightness(2)}.leftNavMenu .clientSearch-border{position:absolute;border-radius:8px;height:34px;width:100%;border-width:1px;border-style:solid;box-sizing:border-box}.leftNavMenu .clientSearch-searchBox{position:absolute;top:4px}.leftNavMenu .clientSearch__initialSearchBar{transition:opacity 300ms,transform 300ms}.leftNavMenu .clientSearch__initialSearchBar-enter{opacity:1;transform:scale(1)}.leftNavMenu .clientSearch__initialSearchBar-enter-active{opacity:0;transform:scale(1.1);transition:opacity 300ms,transform 300ms}.leftNavMenu .clientSearch__initialSearchBar-enter-done{opacity:0;transform:scale(1.1);transition:opacity 300ms,transform 300ms}.leftNavMenu .clientSearch__initialSearchBar-exit{opacity:0}.leftNavMenu .clientSearch__initialSearchBar-exit-active,.leftNavMenu .clientSearch__initialSearchBar-exit-done{opacity:1;transform:scale(1);transition:opacity 300ms,transform 300ms}.leftNavMenu .clientSearch__clientList{position:absolute;top:0;height:100%;width:315px;background-color:#fff;z-index:-1;cursor:default}.leftNavMenu .clientSearch__clientList-enter{transform:translateX(-50px)}.leftNavMenu .clientSearch__clientList-enter-active,.leftNavMenu .clientSearch__clientList-enter-done{transform:translateX(250px);transition:transform 300ms}.leftNavMenu .clientSearch__clientList-exit{transform:translateX(250px)}.leftNavMenu .clientSearch__clientList-exit-active{transform:translateX(-50px);transition:transform 300ms}.leftNavMenu .clientSearch__overlay{background-color:rgba(0,0,0,.5);height:200vh;width:200vw;position:fixed;z-index:-2}.leftNavMenu .clientSearch__overlay-enter{opacity:0}.leftNavMenu .clientSearch__overlay-enter-active{opacity:1;transition:opacity 300ms}.leftNavMenu .clientSearch__overlay-exit{opacity:1}.leftNavMenu .clientSearch__overlay-exit-active{opacity:0;transition:opacity 300ms}.leftNavMenu .clientMenu__return{border:1px solid #a3a3a3;border-radius:13px;box-sizing:border-box;height:26px;text-align:center;cursor:pointer;margin-bottom:16px;padding:12px;display:flex;justify-content:center;align-items:center}.leftNavMenu .clientMenu__return p{font-size:12px;font-weight:400}.leftNavMenu .clientMenu__return:hover{border-color:#229ed4}.leftNavMenu .clientMenu__return:hover p{color:#229ed4}.leftNavMenu--light .leftNavItem__divider span{color:#241f20}.leftNavMenu--dark .leftNavItem__divider span{color:#a3a3a3}.navGroupLogo{position:relative;height:48px;width:100%}.navGroupLogo-image{height:inherit;width:100%;background-size:100%;background-repeat:no-repeat;background-position:center;position:absolute}.navGroupLogo-text{height:inherit;width:100%;display:flex;align-items:center;justify-content:center}.navGroupLogo-text span{font-size:18px;font-weight:800;color:#fff}.navGroupLogo-text--small{display:none;text-transform:capitalize}.navGroupLogo-text--regular{display:block}.navGroupLogo-text h5{font-weight:800}.leftNavItem{position:relative;cursor:pointer;display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;height:38px;min-height:38px;width:100%;padding:0 8px;margin:6px 0;border-radius:8px}.leftNavItem.active{background-color:#ffcb10;color:#000}.leftNavItem .expandIcon{margin-left:auto}.leftNavItem--light.active p:not(.current){color:#000}.leftNavItem--light.active svg{filter:brightness(0)}.leftNavItem--light:hover:not(.active){background-color:#eee}.leftNavItem--light:hover:not(.active) p:not(.current),.leftNavItem--light:hover:not(.active) svg{filter:brightness(0.7)}.leftNavItem--dark.active>p{color:#000}.leftNavItem--dark.active>svg{filter:brightness(0)}.leftNavItem--dark:hover:not(.active){background-color:#000}.leftNavItem--dark:hover:not(.active)>p,.leftNavItem--dark:hover:not(.active)>svg{filter:brightness(2);color:#dbdbdb}.leftNavItem--dark.leftNavItemExpandable:hover:not(.active){color:#dbdbdb;background-color:#000}.leftNavItem--dark.leftNavItemExpandable:hover:not(.active)>p,.leftNavItem--dark.leftNavItemExpandable:hover:not(.active)>svg{filter:brightness(2);color:#dbdbdb}.leftNavItem .ant-badge{margin-left:auto}.leftNavItem__subMenuWrapper{position:absolute;padding:32px 32px 32px 0;background-color:rgba(0,0,0,0);z-index:999999}.leftNavItem__subMenuWrapper .subMenu{padding:18px 14px 18px 14px;width:220px;border-radius:0 8px 8px 0}.leftNavItem__subMenuWrapper .subMenu--dark{background-color:#000}.leftNavItem__subMenuWrapper .subMenu--dark .leftNavItem:hover:not(.active){background-color:#151112}.leftNavItem__subMenuWrapper .subMenu--light{background-color:#fff;border:1px solid #eee}.leftNavItem__subMenuWrapper .subMenu .leftNavItem{padding:0 8px 0 16px}.leftNavItem__subMenuWrapper .subMenu .leftNavItem:first-child{border-radius:0 0 5px 0}.leftNavItem__divider{font-size:12px;padding:16px 0 8px 8px;text-transform:uppercase;color:#a3a3a3;font-weight:700}.leftNavItem__overlay{background-color:rgba(0,0,0,.1);height:100%;height:100vh;width:100%;width:100vw;position:fixed;z-index:-2;top:0}.leftNavItem__overlay-enter{opacity:0}.leftNavItem__overlay-enter-active{opacity:1;transition:opacity 300ms}.leftNavItem__overlay-exit{opacity:1}.leftNavItem__overlay-exit-active{opacity:0;transition:opacity 300ms}.clientMenuProfile{min-height:200px;width:100%}.clientMenuProfile__link{display:flex;align-items:center;justify-content:center;cursor:pointer;opacity:.7;transition:opacity 300ms}.clientMenuProfile__link:hover{opacity:1}.clientMenuProfile__link label{cursor:pointer;padding-left:8px}.clientMenuProfile__fullName{width:100%;padding:16px 8px 0 8px !important;text-align:center;box-sizing:border-box}@media only screen and (max-width: 1279px){#leftNavMenu{width:67px}.lr_pad{padding-left:67px !important}.navGroupLogo-text{max-width:80%}.navGroupLogo-text--small{display:block}.navGroupLogo-text--regular{display:none}.navGroupLogo-image{display:none}.leftNavMenu .clientSearch-iconOnly{height:38px;min-height:38px;border-radius:8px}.leftNavMenu .clientSearch-iconOnly>svg{pointer-events:none}.leftNavMenu .clientSearch--light .clientSearch-iconOnly{background:#eee}.leftNavMenu .clientSearch--light .clientSearch-iconOnly:hover>svg{filter:brightness(0.5)}.leftNavMenu .clientSearch--dark .clientSearch-iconOnly{background:#000}.leftNavMenu .clientSearch--dark .clientSearch-iconOnly:hover>svg{filter:brightness(2)}.leftNavMenu .clientSearch-fullBar{display:none}.leftNavMenu .clientSearch__clientList-enter{transform:translateX(-150px)}.leftNavMenu .clientSearch__clientList-enter-active,.leftNavMenu .clientSearch__clientList-enter-done{transform:translateX(190px);transition:transform 300ms}.leftNavMenu .clientSearch__clientList-exit{transform:translateX(190px)}.leftNavMenu .clientSearch__clientList-exit-active{transform:translateX(-150px);transition:transform 300ms}.leftNavMenu .clientMenuProfile__fullName{display:none}.leftNavMenu .clientMenuProfile__link label{display:none}.leftNavMenu .clientMenu__return{width:38px}.leftNavMenu .clientMenu__return p{display:none}.leftNavItem{padding:0;justify-content:center}.leftNavItem.active{padding-left:0}.leftNavItem.leftNavItemExpandable.active{padding-left:12px}.leftNavItem>p{display:none}.leftNavItem.subRoute{justify-content:flex-start;padding:0 12px 0 16px}.leftNavItem.subRoute>p{display:block}.leftNavItem .expandIcon{margin-left:5px}.leftNavItem .ant-badge{margin-left:45px;top:24px;position:absolute}.leftNavItem.leftNavItemExpandable:not(.active){padding-left:17px}.leftNavItem__extendedbg{position:absolute;width:calc(100% + 14px);height:100%;left:0;top:0}.leftNavItem__divider .full-name{display:none}.leftNavItem__divider .collapsed-name{display:block}:not(.subRoute)>.isBeta{position:absolute;bottom:0}}@media only screen and (min-width: 1280px){#leftNavMenu{width:204px}.leftNavMenu .clientSearch-iconOnly{display:none}.leftNavMenu .clientMenuProfile__initials{display:none}.leftNavMenu .clientMenu__return svg{display:none}.leftNavMenu .navGroupLogo-image+.navGroupLogo-text{display:none}.leftNavItem__extendedbg{position:absolute;width:calc(100% + 14px);height:100%;left:0;top:0}.leftNavItem__divider .full-name{display:block}.leftNavItem__divider .collapsed-name{display:none}}.habitDialog{margin:0px;padding:0px;overflow:auto;width:100%;box-sizing:border-box}.habitDialog .habitPreview{height:100%;width:100%;background-color:#fcfcfc;border:1px solid #dbdbdb;border-radius:4px;box-sizing:border-box;overflow-y:auto}.editorStyle{word-break:break-word}.habitTreeSelect .ant-select-tree-node-content-wrapper-close,.habitTreeSelect .ant-select-tree-node-content-wrapper-open{pointer-events:none}.habitTreeSelect .ant-select-tree li{position:relative}.habitTreeSelect .ant-select-tree li span.ant-select-tree-switcher:not(.ant-select-tree-switcher-noop){position:absolute;text-align:left;width:100%;display:flex;align-items:center}.habitTreeSelect .ant-select-tree li span.ant-select-tree-switcher:not(.ant-select-tree-switcher-noop):after{margin-left:5px}.habitTreeSelect .ant-select-tree li .ant-select-tree-node-content-wrapper:not(.ant-select-tree-node-content-wrapper-normal){padding-left:29px;width:calc(100% - 50px)}.habitRowDescription .public-DraftStyleDefault-ul{margin-block:0}.dailyMealDialog .dailyMeal__leftPanel,.dailyMealDialog .dailyMeal__rightPanel{width:calc(50% - 1px)}.dailyMealDialog .dailyMeal__divider{width:1px;height:calc(100% + 32px);background-color:#ebebeb}.dailyMealDialog .dailyMeal__leftPanel{padding-right:30px}.dailyMealDialog .dailyMeal__leftPanelContent{height:350px}.dailyMealDialog .dailyMeal__rightPanelScroll{padding-right:14px}.dailyMealDialog .dailyMeal__rightPanel{padding-left:32px}.dailyMealDialog .dailyMeal__rightPanel__circleText{margin-bottom:8px}.dailyMealDialog .dailyMeal__rightPanel__nutGoals{padding:20px 0}.dailyMealDialog .dailyMeal__rightPanel__scrollWrap{margin-right:0}.dailyMealDialog .dailyMeal__sourceWrapper{position:absolute;bottom:16px;left:16px}.dailyMealDialog .dailyNutritionDialogHeadingTxt{margin-top:32px}.dailyMealDialog .nutritionGoalThresholdText{margin-top:12px}.dailyMealDialog .nutritionTable{table-layout:fixed;border-collapse:collapse;border:1px solid #e8e8e8}.dailyMealDialog .nutritionTable tr th:first-child{width:145px}.dailyMealDialog .nutritionTable tr th:nth-child(2){width:85px}.dailyMealDialog .nutritionTable tr th,.dailyMealDialog .nutritionTable tr td{overflow:hidden;text-overflow:ellipsis}.dailyMealDialog .nutritionTable td,.dailyMealDialog .nutritionTable th{padding-left:12px;padding-top:16px;border-right:1px solid #e8e8e8}.dailyMealDialog .nutritionTable tr:last-child td{padding-bottom:16px}@media screen and (max-width: 1200px){.dailyMealDialog .nutritionTable{table-layout:auto}.dailyMealDialog .nutritionTable tr th:nth-child(2){width:auto}}.dailyMealDialog .mealDetailsItem{margin-top:14px}.dailyMealDialog .mealDetailsItem--withImg{height:60px}.dailyMealDialog .mealDetailsItem__mealPhoto{width:60px;height:60px;margin-right:10px}.dailyMealDialog .mealDetailsItem__photoPrev{width:280px;height:280px;object-fit:cover;border-radius:5px}.dailyMealDialog .mealDetailsItem__desc{margin-top:12px}.dailyMealDialog .mealDetailsItem__desc>p{white-space:pre-line}.dailyMealDialog .mealDetailsItem__foodListItem{height:55px;flex-direction:row;display:flex;align-items:center;border-bottom:1px solid #cfcfcf}.dailyMealDialog .mealDetailsItem__foodListItem:last-child{border-bottom:none}.dailyMealDialog .mealDetailsItem__foodListItem .foodListItemName{white-space:nowrap;max-width:350px;overflow:hidden;text-overflow:ellipsis;color:#151112}.dailyMealDialog .mealDetailsItem--partnersAppTracking{margin-top:0}.dailyMealDialog .mealDetailsItem--partnersAppTracking:first-child{margin-top:14px}.dailyMealDialog .mealDetailsItem--partnersAppTracking .mealDetailsItem__foodListItem{border-bottom:1px solid #cfcfcf}.dailyMealDialog .mealDetailsItem--partnersAppTracking:last-child .mealDetailsItem__foodListItem:last-child{border-bottom:none !important}.dailyMealDialog .mealDetailsItem__macros{padding:12px 0}.dailyMealDialog .mealDetailsItem__macros .macrosBar{width:100%;height:10px;background:#cfcfcf;border-radius:5px}.dailyMealDialog .mealDetailsItem__macros .macrosBar__item:first-child{border-radius:5px 0 0 5px}.dailyMealDialog .mealDetailsItem__macros .macrosBar__item:last-child{border-radius:0 5px 5px 0}.dailyMealDialog .mealDetailsItem__macros .macroBarCalculation__dot{width:6px;height:6px;border-radius:50%;margin-right:4px}.dailyMealDialog .pieChartWrapper__legend{margin-bottom:10px}.dailyMealDialog .pieChartWrapper__legendWrapper{width:200px}.dailyMealDialog .pieChartWrapper__legendColorItem{border-radius:50%;width:6px;height:6px;margin-top:5px;margin-right:6px}.dailyMealDialog .nutritionGoalProgress .ant-progress-inner{background:#dae0e6}.dailyMealDialog .nutritionGoalProgress__over .ant-progress-inner{background:#ffa9b2}.dailyMealDialog__DialogHeader .mfpIconWrapper{width:17px;height:17px;border-radius:4px;padding:2px;margin-right:5px}.ComplianceTracking__radioGroup{display:flex !important;flex-direction:column;margin-top:7px;margin-right:15px}.ComplianceTracking__radioGroup label.ant-radio-wrapper{margin-right:0}.ComplianceTracking__radioGroup label.ant-radio-wrapper:first-child{margin-bottom:9px}.ComplianceTracking__select{width:144px;margin-bottom:-5px}.DialogUserDetails{width:397px;margin-left:32px;padding-left:32px;box-sizing:border-box;border-left:1px solid #dbdbdb}.DialogUserDetails .profileImage{margin-right:12px}.DialogUserDetails__item{margin-top:12px}.DialogUserDetails__item.dark p:not(.tz-textButton,.tz-textButton--medium,.tz-textButton--small){color:#151112}.DialogUserDetails__item.border-top{border-top:1px solid #dbdbdb}.DialogUserDetails__item.big{padding:20px 0}.DialogUserDetails__item .ant-input{height:24px}.DialogUserDetails__item .ant-select,.DialogUserDetails__item .ant-select-selection--single{height:24px;width:150px;font-size:12px;font-weight:400}.DialogUserDetails__item .ant-select-selection__rendered{height:24px;line-height:24px}.NutritionGoalRegenerateMealPLanDialog .modal-body{padding-bottom:16px}.nutritionDialog-form-popover.ant-tooltip{max-width:400px}.nutritionDialog-form-popover h5{font-size:18px;font-style:normal;font-weight:400;line-height:22px;letter-spacing:0;text-align:left;color:#151112}.nutritionDialog-form-popover ul{margin:12px 0 0;padding:0 0 0 18px}.MfpInviteClientsDialog-form-popover.ant-tooltip{max-width:235px}.MfpInviteClientsDialog-form-popover h5{font-size:18px;font-style:normal;font-weight:400;line-height:22px;letter-spacing:0;text-align:left;color:#151112}.MfpInviteClientsDialog-form-popover ul{margin:12px 0 0;padding:0 0 0 18px}.programSelect .ant-select-selection--single{height:100%}.programSelect.ant-select-open .ant-select-selection{border-color:#eee}.programSelect span.tr-icon{margin-left:0 !important}.programSelect-dropdown ul{margin-top:0}.programSelect-dropdown .ant-select-dropdown-menu-item:hover{background-color:#f7f7f7}.programSelect-dropdown .ant-select-dropdown-menu-item-active{background-color:#fff}.programSelect-option{height:80px}.programsContent{position:relative;height:100%;width:100%;display:flex;flex-direction:column;padding:32px;box-sizing:border-box}.programsContent .ai-builder-button{background-color:#ffcb10;border-color:#ffcb10;color:#151112}.programsContent .ai-builder-button:hover{background-color:#ffcb10;border-color:#ffcb10}.programWorkoutCalendar{display:grid;grid-template-columns:repeat(8, 1fr);grid-template-rows:repeat(5, 1fr);gap:8px 0px;grid-template-areas:". m t w r f s u" ". . . . . . . ." ". . . . . . . ." ". . . . . . . ." ". . . . . . . .";width:300px;border-top:1px solid #cfcfcf;padding:8px;box-sizing:border-box}.programWorkoutCalendar div{display:flex;justify-content:center;align-items:center;height:30px;width:30px}.programWorkoutCalendar__header{font-size:14px;font-weight:400;color:#6e6e6e}.programWorkoutCalendar__label{font-size:14px;font-weight:400;color:#a3a3a3}.programWorkoutCalendar__day{font-size:14px;cursor:pointer;transition:all 200ms ease-in-out;color:#151112}.programWorkoutCalendar__day.scheduled{border-radius:5%;color:#fff;background-color:#229ed4}.programWorkoutCalendar__day.scheduled:hover{filter:brightness(0.9)}.programWorkoutCalendar__day:hover:not(.scheduled):not(.disabled){border-radius:50% !important;background-color:#eff3f6}.programWorkoutCalendar__day.inBetween:hover{filter:brightness(0.9)}.programWorkoutCalendar__day.disabled{cursor:not-allowed !important;pointer-events:all}.programCalendarDay .dropdown-active{background-color:#fff !important;color:#229ed4 !important}.programCalendarHeader:hover use{fill:#229ed4 !important}.programCalendarHeader use{fill:#151112 !important}.programCalendarHeader:hover .headerText{color:#229ed4 !important}.programCalendarHeader .headerText{color:#151112}.programCalendarHeader .dropdown-active .headerText{pointer-events:none;color:#fff !important}.programCalendarHeader .dropdown-active .headerText{pointer-events:none;color:#fff !important}.programCalDayCell .itemTitle{cursor:grab;text-overflow:ellipsis;overflow:hidden;margin-left:4px;margin-right:4px;white-space:nowrap;font-size:12px}@media(max-height: 756px){.programCalDayCell .itemTitle{font-size:10px;line-height:11px}}.programCalDayCell .iconStyle{min-width:16px;min-height:16px;border-radius:20px;background-color:#fff}@media(max-height: 756px){.programCalDayCell .iconStyle{min-width:10px;min-height:10px}}.programNameText{min-height:34px}.programWorkoutCalendarGridNoHeader{grid-template-rows:repeat(4, 1fr) !important;grid-template-areas:". . . . . . . ." ". . . . . . . ." ". . . . . . . ." ". . . . . . . ." !important}.readOnlyDescription::-webkit-scrollbar{-webkit-appearance:none;width:6px}.readOnlyDescription::-webkit-scrollbar-thumb{border-radius:8px;background-color:rgba(0,0,0,.5)}.abcDialog .modal-content,.abcDialog .modal-body{overflow:hidden}.paymentDash__cardRow{display:grid;justify-content:center;align-items:center;grid-template-columns:auto 1fr auto;border-bottom:1px solid #eee;height:72px}.paymentDash__cardInfo{display:flex;align-items:center;width:180px}.paymentDash__cardInfo a{margin-left:6px}.paymentDash__cardWarning{margin-left:32px;display:flex;align-items:center}.paymentDash__cardWarning p{margin-left:16px;font-weight:700}.paymentDash__nullScreen{height:80% !important}.paymentDash__paymentSlotLabels{display:flex;gap:16px}.paymentDash__paymentSlotLabels p{display:inline-block;padding:0 10px !important;border-radius:26px;border:1px solid #6e6e6e;color:#6e6e6e;line-height:18px !important}.paymentMethodSetupDialog{width:379px !important}.paymentMethodSetupDialog .loaderWrapper{position:absolute;width:100%;height:100%;top:0;left:0;background-color:#fff;opacity:80%;z-index:1000}.cardSetupContainer{width:311px;height:205px;margin-top:24px;padding:20px;border-radius:16px;border:1px solid #eee;box-sizing:border-box}.cardSetupContainer .buttonDropdown{cursor:pointer;border:1px solid #cfcfcf;border-radius:4px;padding:9px;width:30px !important;height:30px !important}.cardSetupContainer .paymentMethodNumber{margin-top:23px}.cardSetupContainer .cardSeparator{margin-top:13px;margin-bottom:14px;border:.5px solid #f8f8f8}.paymentSlotSetupContainer{margin-top:32px}.paymentSlotSetupContainer hr{border:.5px solid #eee;margin:4px 0 20px 0}.paymentSlotSetupContainer .paymentSlotOption{display:flex;align-items:start}.paymentSlotSetupContainer .membershipOption{margin-left:0;margin-top:24px}.paymentHistory{padding-bottom:70px}.paymentHistory h1{margin-bottom:32px}.paymentHistory__container{border:1px solid #eee}.paymentHistory__tableHeader{height:50px;background-color:#fcfcfc;padding:0 13px}.paymentHistory__tableHeader .ant-select{width:auto}.paymentHistory__nullScreen{margin:120px auto}.paymentHistory__dropdownMenu{min-height:355px}.paymentHistory__dropdownMenu ul{min-height:inherit;max-height:none}.paymentHistory__table{table-layout:fixed;border-collapse:collapse}.paymentHistory__table td,.paymentHistory__table th{width:33.3333%}.paymentHistory__table td:first-child,.paymentHistory__table th:first-child{padding-left:25px}.paymentHistory__table th{height:32px}.paymentHistory__table td{height:48px}.paymentHistory__table th,.paymentHistory__table tr:not(:last-child){border-bottom:1px solid #eee}.paymentHistoryPrintDialog{height:600px}.paymentHistoryPrintDialog .modal-body{padding:0}.paymentHistoryPrintDialog .modal-content{overflow:hidden}.paymentHistoryPrintDialog__paddingSpace{padding:0 40px}.paymentHistoryPrintDialog__scroller{overflow:auto;height:500px}.paymentHistoryPrintDialog__heading{background-color:#fcfcfc;padding:0 16px;height:50px}.paymentHistoryPrintDialog__paid{background-color:#70d27c;height:48px}.paymentHistoryPrintDialog__paidTitle{color:#fff !important;text-transform:uppercase}.paymentHistoryPrintDialog__logoWrapper--dark{background-color:#606366}.paymentHistoryPrintDialog__logoWrapper--light{background-color:#fff}.paymentHistoryPrintDialog__groupTitle--light{color:#fff !important}.paymentHistoryPrintDialog__logo{max-width:180px;height:58px}.paymentHistoryPrintDialog__logo>img{width:100%;height:100%;object-fit:contain}.paymentHistoryPrintDialog__listItem{padding:12px}.paymentHistoryPrintDialog__listItem:not(:last-child){border-bottom:1px solid #cfcfcf}.paymentSetupDialog .ant-input-affix-wrapper .ant-input:not(:first-child){padding-left:40px}.useThisCardForDialog__checkboxRow{border:1px solid #cfcfcf;padding:8px 16px;cursor:pointer}.useThisCardForDialog__checkboxRow:not(:last-child){margin-bottom:16px}.useThisCardForDialog__checkboxRow:last-child{margin-bottom:32px}.useThisCardForDialog__checkboxRow--checked,.useThisCardForDialog__checkboxRow:hover{border:1px solid #229ed4}@media print{.paymentHistoryPrintDialog{height:auto}.paymentHistoryPrintDialog__scroller{height:auto}.paymentHistoryPrintDialog__heading{display:none}}.UserGroupsPage .revLeft{background-color:#fcfcfc}.UserGroupsPage .UserGroupsSidebar{overflow:hidden;height:100%;width:100%;display:flex;flex-direction:column;box-sizing:border-box}.UserGroupsPage .UserGroupsSidebar .UserGroupsControls{border-bottom:1px solid #eee}.UserGroupsPage .UserGroupsSidebar .UserGroupsControls__viewSelect .ant-select,.UserGroupsPage .UserGroupsSidebar .UserGroupsControls__viewSelect .ant-select-selection--single{width:114px;height:24px}.UserGroupsPage .UserGroupsSidebar .UserGroupsControls__viewSelect .ant-select-selection__rendered{height:24px;line-height:24px}.UserGroupsPage .UserGroupsSidebar .UserGroupsControls__viewSelect .ant-select-selection-selected-value{height:22px;line-height:22px}.UserGroupsPage .UserGroupsSidebar .UserGroupsList{overflow:auto}.UserGroupsPage .UserGroupsSidebar .UserGroupsList .UserGroupsListItem{background-color:#fff;border-bottom:1px solid #eee;border-left:5px solid #fff;cursor:pointer}.UserGroupsPage .UserGroupsSidebar .UserGroupsList .UserGroupsListItem.active{background-color:#d0f0ff;border-left:5px solid #229ed4}.UserGroupsPage .UserGroupsSidebar .UserGroupsList .UserGroupsListItem__icon{width:34px;height:34px;background-color:#fff;border:2px solid #dbdbdb;border-radius:50%}.UserGroupsPage .UserGroupsSidebar .UserGroupsList .UserGroupsListItem__icon img{width:22px;height:22px}.UserGroupsPage .UserGroupsSidebar .UserGroupsList .UserGroupsListItem .UserGroupsListItemContent{width:101px}.UserGroupsPage .UserGroupsSidebar .UserGroupsList .UserGroupsListItem .UserGroupsListItemContent__groupName{width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.UserGroupsPage .UserGroupsSidebar .UserGroupsList .UserGroupsListItem .UserGroupsListItemContent__masterProgramName{width:87px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.UserGroupsPage .UserGroupsSidebar .UserGroupsList .UserGroupsListItem .UserGroupsListItemCta__badge{font-style:normal;font-weight:400;font-size:10px;line-height:14px}.UserGroupsPage .UserGroupsSidebar .UserGroupsList .UserGroupsListItem .UserGroupsListItemCta__more{padding:0;min-width:1px;border:none !important;background-color:rgba(0,0,0,0)}.UserGroupsPage .UserGroupsSidebar .UserGroupsList .UserGroupsListItem .UserGroupsListItemCta__join{min-width:40px !important}.UserGroupsPage .UserGroupsSidebar .UserGroupsList .UserGroupsListItem.groupDisabled{cursor:default}.UserGroupsPage .UserGroupsSidebar .UserGroupsList .UserGroupsListItem.groupDisabled .UserGroupsListItem__icon{opacity:.5}.UserGroupsPage .UserGroupsSidebar .UserGroupsList .UserGroupsListItem.groupDisabled .UserGroupsListItemContent__groupName,.UserGroupsPage .UserGroupsSidebar .UserGroupsList .UserGroupsListItem.groupDisabled .UserGroupsListItemContent__masterProgramName{opacity:.5}.UserGroupsPage .UserGroupsWrap{display:flex;flex-direction:row;height:100%;width:100%}.UserGroupsPage .UserGroupsWrap .UserGroupsContent{position:relative;display:flex;flex-direction:column;height:calc(100% - 2px);width:100%}.UserGroupsPage .UserGroupsWrap_draggingWrapper{display:flex;flex-direction:column;justify-content:center;align-items:center;position:absolute;width:calc(100% - 2px);height:100%;border:1px solid #229ed4;background:rgba(255,255,255,.7);z-index:2}.userGroupPanel{height:inherit;min-width:345px;max-width:345px;width:345px;border-left:1px solid #eaeaea}.userGroupPanel__container{height:inherit}.userGroupPanel__content{height:calc(100% - 45px);overflow-y:auto}.userGroupPanel .userGroupList{padding:0 16px}.userGroupPanel .userGroupList ul{list-style:none;padding:0;margin:0}.userGroupPanel .userGroupListItem{display:flex;align-items:center;border-bottom:1px solid #eee;padding:8px 0}.userGroupPanel .userGroupListItem__info{margin-left:20px;width:100%}.userGroupPanel .userGroupListItem__info--spacing{justify-content:space-between}.userGroupPanel .userGroupList .text--spacing{margin-right:12px}.userGroupPanel .userGroupWorkouts{height:inherit;display:flex;flex-direction:column;padding-top:16px}.userGroupPanel .userGroupWorkouts__text-wrapper{width:240px;text-align:center}.userGroupPanel .userGroupWorkouts__title{padding:0 16px;border-bottom:1px solid #eee}.userGroupPanel .userGroupAttachProgram{margin-bottom:30px}.userGroupPanel .userGroupAttachProgram .header{padding:0 16px;display:flex;justify-content:space-between;border-bottom:1px solid #eee}.userGroupPanel .userGroupAttachProgram .bodyContent{padding:17px 30px 17px 40px}.userGroupPanel .userGroupAttachProgram .info{width:100%}.userGroupPanel .userGroupAttachProgram .text--spacing{margin-right:12px}.userGroupPanel .userGroupUsers{height:inherit}.userGroupPanel .userGroupUsers__list{padding:16px;overflow:scroll;height:calc(100% - 45px)}.userGroupPanel .userGroupUsers .toolbar{padding:10px 16px 10px 16px;margin-bottom:10px;display:flex;align-items:center;border-bottom:1px solid #eee}.userGroupPanel .userGroupUsers .toolbar--spacing{margin-right:5px}.userGroupPanel .userGroupUsers .toolbar__search{margin-left:auto}.userGroupPanel .userGroupUsers .selectedBar{display:flex;flex-direction:row;align-items:center;max-height:25px;background-color:#229ed4;padding:0 16px;margin-bottom:16px}.userGroupIconSelect .ant-select-selection{border-top-right-radius:0;border-bottom-right-radius:0}.userGroupIconSelect .ant-select-selection-selected-value{display:flex !important;align-items:center;justify-content:center;height:38px}.userGroupIconSelect .ant-select-selection-selected-value .userGroupIconOption>span{height:35px !important}.userGroupIconSelectDropdown ul{display:flex;flex-wrap:wrap}.userGroupNameInput{height:40px;border-top-left-radius:0;border-bottom-left-radius:0}.voicePermissionSwitch{display:flex;align-items:center;margin-top:18px}.voicePermissionSwitch__label{margin-left:7px}.productTypeSelect-dropdown .ant-select-dropdown-menu{max-height:300px}.stripe-title-icon{width:25px;height:100%;border-radius:5px;margin-right:5px}.stripe-section-container{width:100%}.stripe-section-container .stripe-section{width:100%;margin-top:20px;min-height:60px}.stripe-section-container .stripe-section .stripe-section-small{width:50px}.stripe-section-container .stripe-section .stripe-section-small .flag-icon{width:25px;height:17px}.stripe-section-container .stripe-section .stripe-section-medium{flex:2}.stripe-section-container .stripe-section .stripe-section-medium>span{margin-bottom:10px}#dialog-payments-invoice .invoice-iframe-container{height:571px;width:496px;position:relative}#dialog-payments-invoice #invoice-details{width:100%}#dialog-payments-invoice #invoice-details .invoice-list{width:100%;height:571px;overflow:auto;position:relative}#dialog-payments-invoice #invoice-details .invoice-list .invoice-details-container .invoice-detail{margin-bottom:14px}#dialog-payments-invoice #invoice-details .invoice-list .invoice-detail{border:solid #ebebeb 1px;padding:7px 7px 0 7px}#dialog-payments-invoice #invoice-details .invoice-list .invoice-detail .order-heading{min-width:120px}#dialog-payments-invoice #invoice-details .invoice-list .transaction_null_container{border:solid #ebebeb 1px;height:120px;text-align:center;padding:0 20px;margin-bottom:14px}.refund-radio{width:100%}.refund-radio .ant-radio-wrapper{display:flex;border:1px solid #ebebeb;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;margin-bottom:10px;padding:10px 20px 10px 20px}.refund-radio .ant-radio-wrapper-checked{border-color:#06a9f6}.refund-radio .ant-radio-wrapper .ant-radio-checked:after{top:-2px;left:-2px;width:20px;height:20px}.refund-radio .ant-radio-wrapper .partial-refund-container{padding-top:10px;margin-top:10px;border-top:1px solid #ebebeb}.payment-page-container .reactBaseGrid{min-height:540px}#clientProfile__sales .baseGridHeader,#clientProfile__invoices .baseGridHeader{padding:0}#div_payments_productsContainer .reactBaseGrid,#div_payments_salesContainer .reactBaseGrid{min-height:570px}#purchaseDetailDialog .payments_invoicesContainer .reactBaseGrid{min-height:230px}.payments_invoicesContainer{height:100%;width:100%}.payments_invoicesContainer .reactBaseGrid .invoice-status{text-transform:capitalize}.payments_invoicesContainer .component__searchInput input{width:260px}#div_payments_discountCodesContainer .component__searchInput input{width:290px}#div_payments_discountCodesContainer .baseGridSortBy .ant-select{max-width:200px}#div_payments_disputesContainer .reactBaseGridWrap .baseGridHeader{padding:0}#div_payments_disputesContainer .baseGridColumn p{width:auto}.disputeDialogWrapper .disputeDialog__label{width:140px}.disputeDialogWrapper .disputeDialog__details{width:180px}#container_payments_productGrid .baseGridRow .img_plan_border,#clientProfile__sales .baseGridRow .img_plan_border{width:32px;height:32px;margin-right:10px;position:relative}#container_payments_productGrid .baseGridRow .grid-image,#clientProfile__sales .baseGridRow .grid-image{background-color:#ebebeb;border:solid 1px #ebebeb;flex-shrink:0}#container_payments_productGrid .baseGridRow .img-plan,#clientProfile__sales .baseGridRow .img-plan{width:30px;height:30px}#container_payments_productGrid .baseGridRow .productBadge,#clientProfile__sales .baseGridRow .productBadge{width:10px;height:10px;position:absolute;left:20px;top:20px}#container_payments_productGrid .baseGridRow .free-product,#clientProfile__sales .baseGridRow .free-product{width:50%;text-align:center}#container_payments_productGrid .baseGridRow .productGrid-btn-automation,#clientProfile__sales .baseGridRow .productGrid-btn-automation{opacity:0;display:none}#container_payments_productGrid .baseGridRow .productGrid-automation-checkmark,#clientProfile__sales .baseGridRow .productGrid-automation-checkmark{opacity:1;display:block}#container_payments_productGrid .baseGridRow .sellProductButton,#clientProfile__sales .baseGridRow .sellProductButton{min-width:55px !important}#container_payments_productGrid .baseGridRow .copyLinkButton,#clientProfile__sales .baseGridRow .copyLinkButton{min-width:40px !important}#container_payments_productGrid .baseGridRow:hover .productGrid-btn-automation,#clientProfile__sales .baseGridRow:hover .productGrid-btn-automation{opacity:1;display:block}#container_payments_productGrid .baseGridRow:hover .productGrid-automation-checkmark,#clientProfile__sales .baseGridRow:hover .productGrid-automation-checkmark{opacity:0;display:none}.productGrid-popover .ant-popover-arrow{display:none}.productGrid-popover .ant-popover-inner-content{padding:8px;width:150px}.productGrid-popover a:link,.productGrid-popover a:visited,.productGrid-popover a:hover,.productGrid-popover a:active{color:#6e6e6e}.customMealsDialog{box-sizing:border-box}.customMealsDialog *{box-sizing:border-box}.customMealsDialog__warning{color:#ff5366 !important}.customMealsDialog__warningSummary{color:#ff5366 !important;line-height:16px !important}.customMealsDialog__body{margin:0px -32px;width:calc(100% + 64px);height:calc(100% - 15px);border-top:1px solid #eee;background-color:#fff}.customMealsDialog__sidebar{width:206px;height:100%;background-color:#fcfcfc;border-right:1px solid #ebebeb}.customMealsDialog__sidebar .alert{margin-left:2px;color:#ff5366}.customMealsDialog__contentWrapper{width:calc(100% - 206px);overflow:auto}.customMealsDialog__content .contentMiddle{width:57%;min-width:576px;border-bottom:none;border-right:1px solid #ebebeb}.customMealsDialog__content .contentRight{width:43%;min-width:434px}.customMealsDialog__content .formLabel{display:inline-block;margin-bottom:2px;color:#6e6e6e}.customMealsDialog__content .formLabel span{margin-left:2px;color:#ff5366}.customMealsDialog .has-error.ant-input,.customMealsDialog .has-error .ant-input{border-color:#ff5366}.customMealsDialog .has-error.ant-input:hover,.customMealsDialog .has-error .ant-input:hover{border-color:#ff5366}.customMealsDialog .has-error .ant-form-explain,.customMealsDialog .has-error .ant-form-split{color:#ff5366;font-size:10px;padding-top:3px}.customMealsDialog .show-help-leave,.customMealsDialog .show-help-leave-active{padding-top:3px;font-size:10px}.customMealsDialog .recipeServing{height:35px;align-items:flex-start}.customMealsDialog .recipeServing .ant-form-item-control{line-height:1.5}.customMealsDialog .recipeServing .recipeServingAmountInput{width:140px;height:24px}.customMealsDialog .MealDetails{height:auto;min-height:100%}.customMealsDialog .MealDetails .MealDetailsForm .ant-form-item-control{line-height:1.5}.customMealsDialog .MealDetails .MealDetailsForm .ant-input{height:24px}.customMealsDialog .MealDetails .MealDetailsForm .ant-select,.customMealsDialog .MealDetails .MealDetailsForm .ant-select-selection--single{height:24px}.customMealsDialog .MealDetails .MealDetailsForm .ant-select-selection__rendered{height:24px;line-height:24px}.customMealsDialog .MealDetails .MealDetailsForm .ant-select-selection-selected-value{height:22px;line-height:22px}.customMealsDialog .MealDetails .MealDetailsForm .CheckboxGroup-wrapper .ant-checkbox-group{display:flex;flex-wrap:wrap;align-items:center}.customMealsDialog .MealDetails .MealDetailsForm .CheckboxGroup-wrapper label{font-size:14px;line-height:18px;font-weight:400;color:#151112;width:25%;margin:0 0 19px 0}.customMealsDialog .MealDetails .MealDetailsForm .CheckboxGroup-wrapper .ant-checkbox{top:-2px}.customMealsDialog .MealDetails .MealDetailsForm .CheckboxGroup-wrapper .ant-checkbox-wrapper+span,.customMealsDialog .MealDetails .MealDetailsForm .CheckboxGroup-wrapper .ant-checkbox+span{padding-left:7px;padding-right:0}.customMealsDialog .MealDetails .MealDetailsForm .Checkbox-wrapper{color:#151112}.customMealsDialog .MealDetails .MealDetailsForm .Checkbox-wrapper .ant-checkbox{top:-2px}.customMealsDialog .MealDetails .MealDetailsForm .Checkbox-wrapper .ant-checkbox-wrapper+span,.customMealsDialog .MealDetails .MealDetailsForm .Checkbox-wrapper .ant-checkbox+span{padding-left:7px;padding-right:0}.customMealsDialog .Recipe .FoodSearchWrapper{height:113px}.customMealsDialog .Recipe .FoodSearch{position:relative;z-index:1}.customMealsDialog .Recipe .FoodSearch .FoodSearchResults{position:absolute;left:0;top:28px;width:100%;max-height:406px;background-color:#fff;border-radius:4px;overflow-y:auto;filter:drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.15))}.customMealsDialog .Recipe .FoodSearch .FoodSearchResults__loader{position:sticky;bottom:0;left:0;height:50px;background-color:#fff}.customMealsDialog .Recipe .FoodSearch .FoodSearchResults .FoodSearchResultsItem{padding:12px 16px;border-bottom:1px solid #eee}.customMealsDialog .Recipe .FoodSearch .FoodSearchResults .FoodSearchResultsItem:hover{cursor:pointer;background-color:#f2f2f2}.customMealsDialog .Recipe .FoodSearch .FoodSearchResults .FoodSearchResultsItem:hover .tz-lp{color:#229ed4}.customMealsDialog .Recipe .FoodSearch .FoodSearchResults .FoodSearchResultsItem__name{white-space:nowrap;max-width:405px;overflow:hidden;text-overflow:ellipsis}.customMealsDialog .Recipe .IngredientsSummaryWrapper{height:calc(100% - 113px)}.customMealsDialog .Recipe .Ingredients{position:relative;height:calc(100% - 100px);overflow-y:auto}.customMealsDialog .Recipe .Ingredients .Ingredient{padding:12px 0}.customMealsDialog .Recipe .Ingredients .Ingredient:first-child{border-top:none !important}.customMealsDialog .Recipe .Ingredients .Ingredient__name{white-space:nowrap;max-width:430px;overflow:hidden;text-overflow:ellipsis;color:#151112}.customMealsDialog .Recipe .Ingredients .Ingredient .FoodServingSelect .FoodServingSelectField{color:#151112}.customMealsDialog .Recipe .Ingredients .Ingredient .FoodServingSelect .FoodServingSelectAmount{width:140px;margin-right:12px}.customMealsDialog .Recipe .Ingredients .Ingredient .FoodServingSelect .FoodServingSelectAmount__fraction{width:36px;padding-left:8px;padding-right:8px}.customMealsDialog .Recipe .Ingredients .Ingredient .FoodServingSelect .FoodServingSelectAmount__fractionSelect{width:59px !important}.customMealsDialog .Recipe .Ingredients .Ingredient .FoodServingSelect .FoodServingSelectUnit{min-width:200px}.customMealsDialog .Recipe .Ingredients .Ingredient__btn{width:24px}.customMealsDialog .Recipe .RecipeSummary{width:100%;height:100px;background-color:#fcfcfc}.customMealsDialog .Recipe .Instructions{width:100%;margin-bottom:12px;min-width:388px;max-height:calc(100% - 65px);overflow-y:auto}.customMealsDialog .Recipe .Instructions .InstructionDraggable{width:100%;min-height:40px;opacity:1;background-color:#fff;display:flex;align-items:center;position:relative;padding-top:6px;padding-bottom:6px}.customMealsDialog .Recipe .Instructions .InstructionDraggable__count{width:24px;height:24px;background-color:#f8f8f8}.customMealsDialog .Recipe .Instructions .InstructionDraggable__field{width:calc(100% - 88px);height:24px;padding:3px 7px;background-color:rgba(0,0,0,0);font-size:12px;font-weight:400;line-height:16px}.customMealsDialog .Recipe .Instructions .InstructionDraggable__iconWrapper{width:20px;height:14px}.customMealsDialog .Recipe .Instructions .InstructionDraggable__icon{cursor:move}.customMealsDialog .Recipe .Instructions .InstructionDraggable__delete{width:24px;margin-right:10px}.customMealsDialog .Recipe .Instructions .dropPreviewContainer{position:absolute;top:0;left:0;right:0;bottom:0}.customMealsDialog .Recipe .Nutrients{margin-top:24px}.customMealsDialog .Recipe .Nutrients .NutrientsForm{margin-top:24px}.customMealsDialog .Recipe .Nutrients .NutrientsForm .formLabel{margin-bottom:8px}.customMealsDialog .Recipe .textBoxCounter{position:absolute;bottom:8px;right:20px}.customMealsDialog .Recipe .oneRecipeServing .ant-row{margin:0 !important}.customMealsDialog .Recipe .oneRecipeServing__amount{height:24px;width:132px}.customMealsDialog .Recipe .oneRecipeServing__name{height:24px;width:229px}.customMealsDialog .Recipe .oneRecipeServing__checkbox .ant-checkbox{top:-2px}.customMealsDialog .Recipe .oneRecipeServing__checkbox .ant-checkbox+span{display:inline-block;padding-left:7px;padding-right:0}.customMealsDialogTooltip.ant-tooltip{max-width:440px}.customMealsDialogTooltip h5{font-size:18px;font-style:normal;font-weight:400;line-height:22px;letter-spacing:0;text-align:left;color:#151112}.customMealsDialogTooltip ul{margin:12px 0 0;padding:0 0 0 18px}.customMealsDialogTooltip--oneRecipeServing{max-width:235px !important}.previewMealDialog--print{width:500px}.previewMealDialog .MealMedia{height:335px}.previewMealDialog .MealMedia.mealMediaVideo.mealMediaPreviewDialog .vjs-poster{background-size:cover;background-position:center}.previewMealDialog .MealMedia.mealMediaVideo.mealMediaPreviewDialog .video-js:not(.vjs-fullscreen) video{position:absolute;object-fit:cover;width:100%;height:100%;top:50%;left:50%;transform:translate(-50%, -50%)}.previewMealDialog__toolbar{display:flex;align-items:flex-start;position:absolute;top:16px;right:16px}.previewMealDialog__toolbar button:not(:last-child){margin-right:8px}.previewMealDialog .section-title{margin-bottom:12px}.previewMealDialog__mealName{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;margin-top:20px;padding-bottom:2px}@supports(-webkit-box-orient: vertical){.previewMealDialog__mealName{position:relative;height:2.4em;line-height:1.2em;overflow:hidden;background-color:rgba(0,0,0,0);word-break:break-word;white-space:normal;text-overflow:unset;min-height:40px}.previewMealDialog__mealName:after{content:"";text-align:right;position:absolute;bottom:0;right:0;width:30%;height:1.2em;background:linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%)}@supports(-webkit-line-clamp: 2){.previewMealDialog__mealName{display:-webkit-box;-webkit-line-clamp:2;max-height:2.4em;height:auto;-webkit-box-orient:vertical}.previewMealDialog__mealName:after{display:none}}}.previewMealDialog__mealContains{align-self:stretch;background-color:#fcfcfc;border-radius:14px;border:1px solid #eee;display:flex;margin:20px 0;padding:6px 16px}.previewMealDialog__mealMacros{background-color:#fcfcfc;margin-top:20px;padding:20px 20px 0 20px}.previewMealDialog__mealServings{background-color:#fcfcfc;padding:16px 20px}.previewMealDialog__mealServings .ant-select,.previewMealDialog__mealServings .ant-select-selection--single{height:24px}.previewMealDialog__mealServings .ant-select-selection__rendered{height:24px;line-height:24px}.previewMealDialog__mealServings .ant-select-selection-selected-value{height:22px;line-height:22px}.previewMealDialog__mealIngredients{padding-top:20px}.previewMealDialog__mealIngredients.editable{background-color:#fcfcfc;padding:0 20px 20px 20px}.previewMealDialog__mealIngredients .autoCalculatedIngredients__ingredient{margin-bottom:4px !important}.previewMealDialog__mealIngredients .autoCalculatedIngredients__ingredient:last-child{margin-bottom:0 !important}.previewMealDialog__mealIngredients .manualIngredients{white-space:pre-line}.previewMealDialog__mealInstructions .instructionNumber{height:24px;width:24px;background-color:#f8f8f8}.previewMealDialog__mealTag{align-items:center;border-radius:14px;border:1px solid #c2c7cc;display:flex;margin-right:8px;margin-bottom:4px}.previewMealDialog__mealTag:last-child{margin-right:0}.previewMealDialog__mealTag .ant-tag{background:none;border:none;height:auto;line-height:unset}.MealsPage{display:flex;height:calc(100vh - 60px)}.MealsPage .tileGrid{padding:32px 16px 0 32px}.MealsPage .MealsAdoptionPanelWrapper{padding:32px 32px 32px 0}@media only screen and (max-width: 746px){.MealsPage{flex-direction:column;height:auto}.MealsPage .tileGrid{order:2;padding:16px 32px 0 32px}.MealsPage .MealsAdoptionPanelWrapper{order:1;width:auto;padding:32px 32px 0 32px}}.MealsAdoptionPanelWrapper .MealsAdoptionPanel{width:192px;height:100%;background-color:#f8f8f8;border-radius:10px;transition:all .2s}.MealsAdoptionPanelWrapper .MealsAdoptionPanel .loader-overlay{background-color:#f8f8f8;border-radius:10px}.MealsAdoptionPanelWrapper .MealsAdoptionPanel .MealsAdoptionPanelHiddenContent{position:absolute;left:0;top:0;width:0;height:100%;background-color:#f8f8f8;opacity:0;transition:opacity .1s .2s,width .1s .2s;z-index:1;border-radius:10px}.MealsAdoptionPanelWrapper .MealsAdoptionPanel .MealsAdoptionPanelHiddenContent__message{display:none}.MealsAdoptionPanelWrapper .MealsAdoptionPanel .MealsPanelToggle{position:absolute;top:-1px;right:-1px;width:70px;height:28px;border-radius:0 10px 0 10px;background-color:#fcfcfc;z-index:1}.MealsAdoptionPanelWrapper .MealsAdoptionPanel .MealsPanelToggle__text{display:inline-block}.MealsAdoptionPanelWrapper .MealsAdoptionPanel .MealsPanelToggle__icon{transform:rotate(180deg)}.MealsAdoptionPanelWrapper .MealsAdoptionPanel__banner{width:100%;height:108px;background-image:url("https://file.trainerize.com/assets/app/meals/meals_panel.jpg");background-repeat:no-repeat;background-size:100%;border-radius:10px 10px 0 0}.MealsAdoptionPanelWrapper .MealsAdoptionPanel__desciption{padding:16px 12px 12px;overflow-y:auto;height:calc(100% - 136px)}.MealsAdoptionPanelWrapper .MealsAdoptionPanel__desciption .divider{width:auto !important}.MealsAdoptionPanelWrapper .MealsAdoptionPanel__desciption .newBadge{width:44px;height:17px;border-radius:9px;background-color:#ffcb10;box-sizing:border-box;padding-top:1px}@media only screen and (max-width: 746px){.MealsAdoptionPanelWrapper .MealsAdoptionPanel{display:flex;flex-direction:row-reverse;width:100%;height:auto;min-height:36px;max-height:882px}.MealsAdoptionPanelWrapper .MealsAdoptionPanel .MealsPanelToggle__icon{transform:rotate(90deg)}.MealsAdoptionPanelWrapper .MealsAdoptionPanel__banner{width:159px;height:auto;background-size:cover;background-position:center right;border-radius:0 10px 10px 0}.MealsAdoptionPanelWrapper .MealsAdoptionPanel__desciption{width:calc(100% - 159px);height:auto;overflow:auto}}.MealsAdoptionPanelWrapper--panelHidden .MealsAdoptionPanel{width:36px;height:100%;background-color:#f8f8f8;cursor:pointer}.MealsAdoptionPanelWrapper--panelHidden .MealsAdoptionPanel .MealsAdoptionPanelHiddenContent{opacity:1;width:100%}.MealsAdoptionPanelWrapper--panelHidden .MealsAdoptionPanel .MealsAdoptionPanelHiddenContent__message{display:block;transform:rotate(270deg);width:200px;left:-82px;position:absolute;bottom:104px}.MealsAdoptionPanelWrapper--panelHidden .MealsAdoptionPanel .MealsPanelToggle{width:100%;height:12px;top:12px;right:50%;transform:translateX(50%);border-radius:0;background-color:rgba(0,0,0,0)}.MealsAdoptionPanelWrapper--panelHidden .MealsAdoptionPanel .MealsPanelToggle__text{display:none}.MealsAdoptionPanelWrapper--panelHidden .MealsAdoptionPanel .MealsPanelToggle__icon{transform:rotate(0deg)}.MealsAdoptionPanelWrapper--panelHidden .MealsAdoptionPanel__banner,.MealsAdoptionPanelWrapper--panelHidden .MealsAdoptionPanel__desciption{display:none}@media only screen and (max-width: 746px){.MealsAdoptionPanelWrapper--panelHidden .MealsAdoptionPanel{width:100%;height:36px;max-height:36px}.MealsAdoptionPanelWrapper--panelHidden .MealsAdoptionPanel .MealsAdoptionPanelHiddenContent__message{width:auto;position:absolute;left:12px;bottom:50%;transform:translateY(50%) rotate(0deg)}.MealsAdoptionPanelWrapper--panelHidden .MealsAdoptionPanel .MealsPanelToggle{width:12px;top:50%;right:16px;transform:translateY(-50%)}.MealsAdoptionPanelWrapper--panelHidden .MealsAdoptionPanel .MealsPanelToggle__icon{transform:rotate(270deg)}}.mealsAdoptionPanel-carousel{padding-top:55px}.mealsAdoptionPanel-carousel .upsellDialog-slideContentText,.mealsAdoptionPanel-carousel .upsellDialog-imageWrapper{width:346px}.hqIcon{width:20px;height:12px;background-color:#000;color:#fff;font-style:normal;font-weight:bold;font-size:9px;line-height:12px;text-align:center;text-transform:uppercase;border-radius:1.6px}.hqIcon--big{width:48px;height:30px;border-radius:4px;font-size:22px;line-height:29px}.MealMedia{display:flex;justify-content:center;align-items:center;height:100%;width:100%;background-size:cover;background-position:center;flex-shrink:0;position:relative}.MealMedia.mealMediaVideo{background-color:#000}.MealMedia.mealMediaVideo.mealMediaHovering button.vjs-big-play-button{display:none}.MealMedia.mealMediaVideo .video-js{padding-top:66.67% !important;height:100% !important}.MealMedia.mealMediaVideo .video-js button.vjs-big-play-button{width:32px;height:32px}.MealMedia.mealMediaVideo .video-js button.vjs-big-play-button .vjs-icon-placeholder:before{font-size:32px}.mealTile{position:relative;height:100%;width:100%;cursor:pointer}.mealTile.draft{background-color:#fcfcfc}.mealTile__checkbox{position:absolute;top:4px;left:4px;z-index:1}.mealTile__checkbox .ant-checkbox{padding:4px}.mealTile .MealMediaWrapper{width:100%;height:106px;background-color:#fcfcfc;overflow:hidden}.mealTile__content{height:calc(100% - 106px);box-sizing:border-box;padding:12px;text-transform:capitalize}.mealTile__mealName{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}@supports(-webkit-box-orient: vertical){.mealTile__mealName{position:relative;height:2.4em;line-height:1.2em;overflow:hidden;background-color:rgba(0,0,0,0);word-break:break-word;white-space:normal;text-overflow:unset;min-height:40px}.mealTile__mealName:after{content:"";text-align:right;position:absolute;bottom:0;right:0;width:30%;height:1.2em;background:linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%)}@supports(-webkit-line-clamp: 2){.mealTile__mealName{display:-webkit-box;-webkit-line-clamp:2;max-height:2.4em;height:auto;-webkit-box-orient:vertical}.mealTile__mealName:after{display:none}}}.mealTile .hqIcon{position:absolute;top:12px;left:12.5px}.tileGrid__tile{min-height:auto}.customMealDeleteDialog .modal-body{padding-bottom:24px}.activityAddDialog .datePicker{position:relative;width:auto}.activityAddDialog .datePicker__backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh}.activityAddDialog .datePicker .additionalDateText{position:absolute;top:0;left:50%;width:100%;line-height:32px;font-size:14px;color:#a3a3a3}.activityAddDialog .datePicker .activityAddCalendar{position:absolute;top:100%;left:0;background-color:#fff;box-shadow:rgba(0,0,0,.15) 0px 2px 8px;z-index:5}.activityAddDialog .datePicker .activityAddCalendar .calendarHeader{height:30px;padding:0 16px;display:flex;justify-content:space-between;align-items:center}.activityAddDialog .datePicker .activityAddCalendar .ant-fullcalendar-header{display:none}.activityAddDialog .datePicker .activityAddCalendar .ant-fullcalendar td{padding:0}.activityAddDialog .datePicker .ant-calendar-picker-clear{display:none}.addWorkoutBody{width:100%}.addWorkoutBody__radio{display:flex}.addWorkoutBody__radio+.addWorkoutBody__radio{margin-top:12px}.addWorkoutBody__content{padding:8px 0px 16px 24px}.addWorkoutBody .addWorkoutSelect{margin-bottom:14px}.addWorkoutBody .addWorkoutSelect .ant-select-selection-selected-value span{width:100%;overflow:hidden;text-overflow:ellipsis}.addWorkoutOption li:hover p{color:#229ed4}.addWorkoutOption ul li span{width:100%;overflow:hidden;text-overflow:ellipsis}.addWorkoutSelect .ant-select-selection-selected-value{display:flex !important;align-items:center}.workoutSelect.ant-select-dropdown--multiple .ant-select-dropdown-menu{max-height:400px}.workoutFetchMoreButtonWrapper{display:flex !important;justify-content:center;align-items:center}.workoutFetchMoreButtonWrapper i{display:none}.workoutFetchMoreButton{margin:5px 0;border:none !important;background:none !important;box-shadow:none !important}#div_location_NoLocation{padding:100px 16px 16px 16px}#div_location_NoLocation p{margin:10px auto 32px auto;text-align:center;max-width:500px}#div_locations_wrap{margin-top:21px;overflow:auto}#locations_loader.profile-loader{height:100%;width:100%;position:absolute;z-index:50}.center-link{margin:20px auto;display:table}#div_locations #b_location_AddNew{position:absolute;top:-50px;right:0}#div_location .nullDash img{width:initial}#div_locationView{overflow:auto;float:left;width:100%;margin-bottom:32px;position:relative;border:solid 1px #f0f0f0;box-sizing:border-box;display:flex;min-height:442px;min-width:800px}#div_locationView h3{line-height:120%;display:inline-block;font-weight:normal}#div_locationView .tr-icon{vertical-align:top;margin:0 8px;flex-shrink:0}#div_locationView .tr-icon-small{vertical-align:top;margin:0 8px;flex-shrink:0}#div_locationView .ctrls a.text{text-decoration:none;font-weight:400;padding:4px 4px;margin-right:30px;margin-top:4px}#div_locationView .location-text{color:#000;font-weight:400;font-size:14px;line-height:18px}#div_locationView select{border:1px solid #f0f0f0;width:inherit;height:inherit;display:inline-block;padding:0;font-size:12px;background-color:#fff;font-weight:400;color:#888}#div_locationView .gtTextField{border:1px solid #f0f0f0;box-sizing:border-box;display:block;height:30px;padding:0 10px;font-size:14px;font-weight:400;border-radius:3px}#div_locationView .tr-icon-trainer{margin-top:1px}#div_locationView .openEdit{color:#1eb6f8;text-transform:uppercase;padding:0 8px;font-weight:400;cursor:pointer;font-size:14px}#div_locationView .gtBtn-delete{cursor:pointer;transition:all .5s}#div_locationView .gtBtn-delete:hover{background-image:url("../../../../../images/tr-icons-999999.png") !important}.addLocationBtn{position:absolute;top:-68px;right:0}.viewLocation_MapCanvas{height:440px;width:400px;min-width:400px;position:relative}.viewLocation-icons{width:28px;height:28px;margin:0 13px 0 8px;vertical-align:middle}.viewLocation-heading{padding:0 50px 10px 8px}.viewLocation-heading p{margin-top:0;margin-bottom:4px;font-size:18px;line-height:20px;font-weight:700}.viewLocation-heading .location-type{font-size:12px;line-height:16px;font-weight:400;color:#6e6e6e}.viewLocation-address-location{padding:10px 0;display:flex;justify-content:flex-start;align-items:center}.viewLocation-type{padding:4px 0 0 8px}.viewLocation-address{flex-grow:1;text-align:left}.viewLocation-address span{display:inline-block;vertical-align:top}.viewLocation-address .dow{min-width:95px;font-weight:400;font-size:14px;color:#6e6e6e}.viewLocation-address .text-hours{color:#000;font-weight:400;font-size:14px;line-height:16px}#viewLocation_MapDetails{text-align:left}.viewLocation_phone{position:relative;padding:10px 0}.viewLocation_phone a{vertical-align:middle}.viewLocation_phone span{font-size:15px;line-height:20px}#viewLocation_edit_wrap{position:absolute;display:flex;align-items:center;right:16px;top:16px;vertical-align:middle}#viewLocation_edit_wrap svg{cursor:pointer;margin-left:9px}#viewLocation_edit_wrap .dropDownWarper{position:absolute;top:1px;right:-1px;width:25px;height:16px}#viewLocation_edit_wrap .dropDown{z-index:1000}.viewLocation_toolbar{position:absolute;right:2px;top:26px}.viewLocation_toolbar .gtMenu{width:80px;text-align:right}#viewLocation_edit{position:absolute;top:6px;right:22px}#div_locationView_disabled{position:absolute;background-color:#fff;width:100%;height:100%;opacity:.8;z-index:999}.viewLocation-hours-wrap{position:relative;padding:10px 0}.viewLocation-hours-wrap img{vertical-align:top}.viewLocation-hours-wrap .ui-icon-clock{position:absolute;top:0;left:0}.viewLocation-hours{padding-left:0;margin-top:0;margin-bottom:0;display:inline-block}.viewLocation-hours li{display:grid;grid-template-columns:1fr 1fr;list-style:none;padding:4px 0}.viewLocation-hours li:first-child{padding-top:1px}.viewLocation_trainers{padding:10px 0}.viewLocation_trainers a{margin-top:4px;display:inline-block;vertical-align:middle;font-weight:400;font-size:14px;line-height:18px;color:#229ed4}#viewLocation_displayView{width:100%;box-sizing:border-box;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;height:100%;font-weight:400}#viewLocation_displayView .app-listed{display:flex;margin-left:auto;margin-top:auto;font-size:14px;text-align:center;align-items:center;color:#ced3d9}#viewLocation_displayView .app-listed p{margin:0}#viewLocation_displayView .app-listed svg{margin-left:13px}#viewLocation_editView{padding-left:20px !important;width:100%;box-sizing:border-box;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;height:100%;font-weight:400}#viewLocation_editView input::-webkit-input-placeholder{color:#888;font-weight:400}#viewLocation_editView input::-moz-placeholder{color:#888;font-weight:400}#viewLocation_editView input:-ms-input-placeholder{color:#888;font-weight:400}#viewLocation_editView input:-moz-placeholder{color:#888;font-weight:400}#viewLocation_editView label{font-size:12px;font-weight:400;text-align:left;color:#05a9f5}#viewLocation_editView .change-address-section{display:flex;width:100%;position:relative;justify-content:space-between;align-items:center;padding-top:16px}#viewLocation_editView .change-address-section div{display:flex;align-items:center}#viewLocation_editView .change-address-section div p{padding-left:8px;max-width:45ch;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#viewLocation_editView input[type=tel]{width:100%;padding-left:44px;color:#888;font-weight:400}#viewLocation_editView input[type=checkbox]{margin-right:8px}#viewLocation_editView .edit-view-checkbox{display:flex;align-items:end;font-size:14px;font-weight:400;color:#151112}#viewLocation_editView .open-hours-select{width:105px}#viewLocation_editView .gtBtn{min-width:100px}#addLocation_Name{width:100%;padding-left:24px;color:#888;font-weight:400}.addLocation_phone{position:relative;width:100%;margin-top:6px}.addLocation-info-section{padding:15px 0 0 0;width:100%}.addLocation-info-section .ant-form-item{width:100%;margin-bottom:0}.addLocation-info-section .ant-form-item-children{display:flex;width:100%;margin-bottom:0}.addLocation-info-section label{padding-right:5px}.addLocation-hours{margin:0}.addLocation-hours li{list-style:none;margin:6px 0}.addLocation-hours li:last-child{margin-bottom:0}.addLocation-hours .dow{min-width:100px;font-size:14px;font-weight:400;text-align:left;color:#4c4c4c}.addLocation-hours .until{min-width:50px;text-align:center;font-size:12px;font-weight:400;color:#a3a3a3}.addLocation-hours .hour-end-group{display:inline-block}.addLocation-hours .clear{background-image:url(../../../../../images/searchBar/clear.png);background-size:10px 10px;background-repeat:no-repeat;background-position:50% 50%;height:14px;width:14px;position:absolute;top:8px;right:6px;background-color:#bbb;border-radius:8px;-webkit-border-radius:8px;-moz-border-radius:8px;cursor:pointer;opacity:.7}.addLocation-hours .clear:hover{opacity:1}.changeAddress_toolTip{background:#a1a1a1;width:16px;height:16px;text-align:center;border-radius:50%;color:#fff;font-weight:400;font-size:13px;line-height:18px}.changeAddress_edit_padding{padding-left:0}#viewLocation_type{font-size:14px;font-weight:400;text-align:left;color:#ffb400;padding-left:8px}#viewLocation_name{font-size:17px;font-weight:400;text-align:left;color:#4c4c4c;padding-left:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:500px}@media only screen and (max-width: 1300px){#viewLocation_name{max-width:280px}}select{margin:0;padding:0}#dlg_addLocation{position:relative}#dlg_addLocation .section-heading{text-align:left;margin-top:0}#dlg_addLocation #step-location-type{text-align:center}#dlg_addLocation #step-location-type input{visibility:hidden;position:absolute}#dlg_addLocation #step-location-type label{box-sizing:border-box;width:100%;height:95px;padding:15px 95px 15px 75px;border-radius:3px;background-color:#f9f9f9;margin-top:10px;font-size:12px;color:#4c4c4c;cursor:pointer;background-repeat:no-repeat;background-position:20px center;background-size:35px;position:relative;border:1px solid #ebebeb;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;-moz-user-select:none;-webkit-user-select:none;user-select:none}#dlg_addLocation #step-location-type label div{font-size:10px;color:#aeaeae;margin-top:5px;text-align:left}#dlg_addLocation #step-location-type label.selected{color:#18b0f5;border:1px solid #02acf9;background-color:#fdfdfd}#dlg_addLocation #step-location-type label.selected div{color:#aeaeae}#dlg_addLocation #step-location-type label.selected:after{background-image:url(../../images/newWorkoutDialog/Checkmark.png);background-size:cover;content:"";position:absolute;right:12px;top:42px;height:11px;width:15px}#dlg_addLocation #step-location-type #addLocation_next_btn{margin-left:auto;display:block}.pac-container{z-index:1200 !important}.addLocation_MapCanvas{height:155px;width:218px}.pull-left{float:left}.disable-details{opacity:.5;pointer-events:none}.gtTextField{border:1px solid #f0f0f0;box-sizing:border-box;display:block;height:30px;padding:0 10px;font-size:14px;font-weight:400;border-radius:3px}.addLocation-search-group{text-align:center;width:100%}.addLocation_searchBox{position:relative;display:inline-block;vertical-align:bottom;width:100%;float:left}.addLocation_searchBox .searchBox{text-indent:25px;width:100%;float:left;outline-offset:0;padding-right:35px}.addLocation_searchBox input.gtTextField{border:1px solid #9a9a9a;height:37px;border-radius:8px}.addLocation_searchBox input.gtTextField:focus{outline-offset:0;outline:none}.addLocation_searchBox input.gtTextField:active{outline-offset:0;outline:none}.addLocation_searchBox svg[name="outline/search"]{position:absolute;left:10px;top:10px}.addLocation_searchBox svg[name="filled/close"]{position:absolute;right:10px;top:10px;cursor:pointer}.addLocation-details-group{overflow:auto;background-color:#fff;max-width:435px;margin:30px auto 0;border:1px solid #f1f1f1;height:155px}.addLocation-details-group input.gtTextField:focus{outline-offset:0;outline:none}.addLocation-details-group input.gtTextField:active{outline-offset:0;outline:none}.addLocation_searchBox_wrap{overflow:auto;max-width:435px;margin:10px auto 0}.addLocation_searchBox_wrap .gtBtnLarge{height:30px;padding-top:4px !important;margin-left:5px}.addLocation-address-location{padding-bottom:15px;box-sizing:border-box;max-width:216px;display:flex}.addLocation-address-location a{display:table;font-size:12px;padding-bottom:2px}.addLocation-address-location input.gtTextField{display:inline-block;margin-right:5px;margin-bottom:2px;min-width:55px;max-width:60px}.addLocation-address-location h4{display:inline;font-size:13px !important;font-weight:400}.addLocation-address{padding-left:16px;padding-top:10px;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start}.addLocation-address span{display:inline-block}#addLocation_Add{min-width:80px;float:right}#viewLocation_delete_menu{color:#1eb6f8;right:3px;cursor:pointer}#viewLocation_dropdown{position:absolute;background:#fff;z-index:100}#viewLocation_dropdown .sub-nav{list-style:none;box-shadow:2px 2px 10px 0 rgba(0,0,0,.2);z-index:1001;background-color:#fff;color:#1eb6f8;border-radius:3px;font-weight:normal;padding:0;margin:0}#viewLocation_dropdown .sub-nav li{height:34px !important;min-height:15px;text-align:right;color:#9a9a9a;text-transform:capitalize;border-bottom:1px solid #f8f8f8;display:flex;align-items:center;font-size:12px;font-weight:400;justify-content:flex-start;padding:0 10px}#viewLocation_dropdown .sub-nav li:hover{cursor:pointer !important;background-color:#f2f2f2;color:#06a9f6}#addLocation_NothingSelected,#addLocation_MapDetails{max-width:216px;box-sizing:border-box}#addLocation_NothingSelected p,#addLocation_MapDetails p{font-size:16px;padding:0 20px;line-height:20px;color:#878787;margin:37px auto;font-weight:400}.MealPlanDialog .formLabel{display:inline-block;margin-bottom:2px;color:#6e6e6e}.MealPlanDialog .formLabel span{margin-left:2px;color:#ff5366}.MealPlanDialog .has-error.ant-input,.MealPlanDialog .has-error .ant-input{border-color:#ff5366}.MealPlanDialog .has-error.ant-input:hover,.MealPlanDialog .has-error .ant-input:hover{border-color:#ff5366}.MealPlanDialog .has-error .ant-form-explain,.MealPlanDialog .has-error .ant-form-split{color:#ff5366}.MealPlanDialog .has-error .ant-select-selection{border-color:#ff5366}.MealPlanDialog .ant-select{color:#151112}.MealPlanDialog .MealPlanForm{width:500px}.MealPlanDialog .MealPlanForm .SubmitWrapper{margin:32px 32px 0 0}.MealPlanDialog .MealPlanForm .ant-input{height:32px}.MealPlanDialog .MealPlanForm .ant-select,.MealPlanDialog .MealPlanForm .ant-select-selection--single{height:32px}.MealPlanDialog .MealPlanForm .ant-select-selection__rendered{height:32px;line-height:32px}.MealPlanDialog .MealPlanForm .CheckboxGroup-wrapper{margin:12px 0 0 12px}.MealPlanDialog .MealPlanForm .CheckboxGroup-wrapper .ant-checkbox-group{display:flex;flex-wrap:wrap;align-items:center}.MealPlanDialog .MealPlanForm .CheckboxGroup-wrapper label{font-size:14px;line-height:18px;font-weight:400;color:#151112;width:25%;margin:0 0 12px 0}.MealPlanDialog .MealPlanForm .CheckboxGroup-wrapper .ant-checkbox{top:-2px}.MealPlanDialog .MealPlanForm .CheckboxGroup-wrapper .ant-checkbox-wrapper+span,.MealPlanDialog .MealPlanForm .CheckboxGroup-wrapper .ant-checkbox+span{padding-left:7px;padding-right:0}.MealPlanDialog .MealPlanForm .info-icon{width:12px;height:12px;margin:0 0 3px 4px;cursor:pointer}.MealPlanDialog .SliceCustomMacroSplitInputs .SliceCustomMacroSplit{display:flex;align-items:center}.MealPlanDialog .SliceCustomMacroSplitInputs .SliceCustomMacroSplit:not(:last-child){margin-bottom:4px}.MealPlanDialog .SliceCustomMacroSplitInputs .SliceCustomMacroSplit__legend{width:16px;height:16px;border-radius:4px;margin-right:8px}.MealPlanDialog .SliceCustomMacroSplitInputs .SliceCustomMacroSplit__label{min-width:120px;margin-right:30px}.MealPlanDialog .SliceCustomMacroSplitInputs .SliceCustomMacroSplit__field{width:60px;height:24px}.swapMealDialog{position:relative;overflow:hidden}.swapMealDialog__tabs div{width:50%}.swapMealDialog__tabs div:nth-child(1) .tabBtn{border-radius:4px 0 0 4px}.swapMealDialog__tabs div:nth-child(2) .tabBtn{border-radius:0 4px 4px 0}.swapMealDialog__tabs .tabBtn{height:24px;background-color:#fff;color:#151112;border:1px solid #eee}.swapMealDialog__tabs .tabBtn span{text-transform:none !important}.swapMealDialog__tabs .tabBtn.active{background-color:#229ed4;color:#fff;border-color:#229ed4}.swapMealDialog__warning{background-color:#fff;border:1px solid #ffcb10;border-radius:12px}.swapMealDialog__mealResultsWrap{display:flex;align-items:flex-start;flex-direction:column;position:relative;height:500px}.swapMealDialog__mealResult{position:relative;display:flex;flex-direction:column;flex-shrink:0;justify-content:center;width:100%;height:97px;box-sizing:border-box;padding:0 32px}.swapMealDialog__mealResult .swapMealResultContent{padding:12px 0}.swapMealDialog__mealResult .swapMealResultContent .MealMediaWrapper{margin-right:12px}.swapMealDialog__mealResult .swapMealResultContent .MealMediaWrapper .MealMedia.mealMediaVideo.mealMediaSwapDialog .video-js{padding-top:0;height:auto}.swapMealDialog__mealResult .swapMealResultContent__mealName{width:255px;height:auto;background-color:#fff;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}@supports(-webkit-box-orient: vertical){.swapMealDialog__mealResult .swapMealResultContent__mealName{position:relative;height:2.4em;line-height:1.2em;overflow:hidden;background-color:rgba(0,0,0,0);word-break:break-word;white-space:normal;text-overflow:unset;min-height:40px}.swapMealDialog__mealResult .swapMealResultContent__mealName:after{content:"";text-align:right;position:absolute;bottom:0;right:0;width:30%;height:1.2em;background:linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%)}@supports(-webkit-line-clamp: 2){.swapMealDialog__mealResult .swapMealResultContent__mealName{display:-webkit-box;-webkit-line-clamp:2;max-height:2.4em;height:auto;-webkit-box-orient:vertical}.swapMealDialog__mealResult .swapMealResultContent__mealName:after{display:none}}}.swapMealDialog__mealResult .swapMealResultContent__mealSummary{width:255px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.swapMealDialog__mealResult .swapMealResultContent__swapButton{position:absolute;right:32px}.swapMealDialog__scrollWrap{overflow-y:auto;overflow-x:hidden;width:100%}.swapMealDialog .MealsSwitcher{padding:9.5px 16px}.swapMealDialogTooltip.ant-tooltip{max-width:235px}.swapMealDialogTooltip h5{font-size:18px;font-style:normal;font-weight:400;line-height:22px;letter-spacing:0;text-align:left;color:#151112}.mealPlanDisclaimer h2,.mealPlanDisclaimer p.tz-lp{text-align:center;padding-bottom:32px}.mealPlanDisclaimer__img{flex:1;display:flex;align-items:center;justify-content:center;width:100%}.mealPlanDisclaimer__footer{display:flex;flex-direction:column;align-items:center}.mealPlanDisclaimer__transition{position:relative;display:flex;align-items:flex-start;height:100%;width:100%;overflow:hidden}.mealPlanDisclaimer__transition .slider{position:absolute;flex-shrink:0;height:100%;width:100%}.mealPlanDisclaimer__transition .slider-enter{transform:translate3d(100%, 0, 0)}.mealPlanDisclaimer__transition .slider-enter-active{transform:translate3d(0, 0, 0);transition:all 800ms ease-in-out}.mealPlanDisclaimer__transition .slider-exit{opacity:1;transform:translate3d(0, 0, 0)}.mealPlanDisclaimer__transition .slider-exit-active{opacity:0;transform:translate3d(-100%, 0, 0);transition:all 800ms ease-in-out}.MealPlanPdfWrapper{padding:32px 32px 0 32px;background-color:#f8f8f8;box-sizing:border-box}.MealPlanToolbar.border-bottom{border-bottom:1px solid #eee}.MealTiles .title__day{font-weight:700;margin-right:12px}.MealTiles__container{display:grid;grid-gap:16px;margin-bottom:32px}.MealTiles__container__largeTiles{grid-template-columns:repeat(auto-fill, minmax(245px, 1fr))}.MealTiles__container__smallTiles{grid-template-columns:repeat(auto-fill, minmax(158px, 1fr))}.MealTiles__container__smallTiles .MealMedia.mealMediaVideo.mealMediaTile video{object-fit:cover}.MealPlanSwitcher{padding:8px 12px 8px 19px;border:1px solid #eee;box-sizing:border-box;border-radius:10px}.MealPlanSwitcher__icon{margin-right:11px}.MealPlanNullScreen__options{width:490px;margin-bottom:24px}.MealPlanNullScreen .ant-upload-list,.MealPlanNullScreen .ant-upload-list-text{display:none}.filterDrawer .ant-drawer-body{width:100%}.MealPlanInfoBar{min-height:22px;background-color:#fcfcfc}.MealPlanReplaceGoalDialog .modal-body{padding-bottom:16px}.GroceryListDialog .modal-close{top:12px !important;right:12px !important}.GroceryListDialog__inner{height:calc(100% - 64px)}.GroceryListDialog__content{width:346px;margin-left:116px}.GroceryListDialog__content .dialog-title{font-size:32px;line-height:34px}.onboarding-bookmark-dlg-input.ant-input,.onboarding-bookmark-dlg-input.ant-input:hover,.onboarding-bookmark-dlg-input.ant-input:focus{border-color:#ffcb10;box-shadow:0px 0px 20px -4px rgba(255,203,16,.45)}.onboardingPopover .closeButton{position:relative;right:-12px;width:12px;height:12px}.onboardingPopover .closeButton:before,.onboardingPopover .closeButton:hover,.onboardingPopover .closeButton:hover:before{width:12px;height:12px}.onboardingPopover .ant-popover-title{padding:12px 24px;border-bottom:none}.onboardingPopover .ant-popover-inner-content{padding:0 24px 24px 24px}*[data-onboardingStep=highlightText]{text-shadow:0px 0px 10px #ffcb10 !important}*[data-onboardingStep=highlightElement]{box-shadow:0px 0px 20px #ffcb10 !important}.onboardingTransparentOverlay{opacity:1;pointer-events:none}.CustomFoodDialog{padding:0 !important}.CustomFoodDialog__header{border:1px solid #eee}.CustomFoodDialog .FoodServingSelect .FoodCustomFieldWrapper{margin-right:16px}.CustomFoodDialog .FoodServingSelect .FoodServingSelectAmount{margin-right:16px}.CustomFoodDialog .FoodServingSelect .FoodServingSelectAmount__fraction{margin-right:16px}.CustomFoodDialog .CustomFoodDialogSelect{height:24px;font-size:12px}.CustomFoodDialog .CustomFoodDialogSelect .ant-select-selection,.CustomFoodDialog .CustomFoodDialogSelect .ant-select-selection--single,.CustomFoodDialog .CustomFoodDialogSelect .ant-select-selection__rendered{height:24px;line-height:24px}.CustomFoodDialog .reactToolTip{display:inline-block}.PreviewFoodDialog .PreviewFoodDialogHeader{padding:20px 0;border-bottom:1px solid #eee}.PreviewFoodDialog .PreviewFoodDialogHeader h3{font-weight:700;width:355px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}@supports(-webkit-box-orient: vertical){.PreviewFoodDialog .PreviewFoodDialogHeader h3{position:relative;height:56px;line-height:28px;overflow:hidden;background-color:rgba(0,0,0,0);word-break:break-word;white-space:normal;text-overflow:unset;min-height:auto}.PreviewFoodDialog .PreviewFoodDialogHeader h3:after{content:"";text-align:right;position:absolute;bottom:0;right:0;width:30%;height:28px;background:linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%)}@supports(-webkit-line-clamp: 2){.PreviewFoodDialog .PreviewFoodDialogHeader h3{display:-webkit-box;-webkit-line-clamp:2;max-height:56px;height:auto;-webkit-box-orient:vertical}.PreviewFoodDialog .PreviewFoodDialogHeader h3:after{display:none}}}.PreviewFoodDialog .PreviewFoodDialogDetails{padding:20px 0;border-bottom:1px solid #eee}.PreviewFoodDialog .PreviewFoodDialogDetails__caloriesWrapper{max-width:202px}.PreviewFoodDialog .PreviewFoodDialogDetails__iconWrapper{width:14px;height:16px;margin-right:9px}.PreviewFoodDialog .PreviewFoodDialogDetails__caloriesString{width:260px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}@supports(-webkit-box-orient: vertical){.PreviewFoodDialog .PreviewFoodDialogDetails__caloriesString{position:relative;height:16px;line-height:16px;overflow:hidden;background-color:rgba(0,0,0,0);word-break:break-word;white-space:normal;text-overflow:unset;min-height:auto}.PreviewFoodDialog .PreviewFoodDialogDetails__caloriesString:after{content:"";text-align:right;position:absolute;bottom:0;right:0;width:30%;height:16px;background:linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%)}@supports(-webkit-line-clamp: 1){.PreviewFoodDialog .PreviewFoodDialogDetails__caloriesString{display:-webkit-box;-webkit-line-clamp:1;max-height:16px;height:auto;-webkit-box-orient:vertical}.PreviewFoodDialog .PreviewFoodDialogDetails__caloriesString:after{display:none}}}.PreviewFoodDialog .PreviewFoodDialogNutrients{padding:20px 0}.PreviewFoodDialog .PreviewFoodDialogNutrients__item{padding:12px 0;border-bottom:1px solid #eee}.CustomFoodWarningDialog__checkbox{display:flex !important;align-items:center}.foodGrid .baseGridRow{height:80px}.foodGrid .baseGridRow .baseGridColumn:nth-child(2) p{white-space:initial}.foodGrid .baseGridRow .foodName{max-width:272px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}@supports(-webkit-box-orient: vertical){.foodGrid .baseGridRow .foodName{position:relative;height:36px;line-height:18px;overflow:hidden;background-color:rgba(0,0,0,0);word-break:break-word;white-space:normal;text-overflow:unset;min-height:auto}.foodGrid .baseGridRow .foodName:after{content:"";text-align:right;position:absolute;bottom:0;right:0;width:30%;height:18px;background:linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%)}@supports(-webkit-line-clamp: 2){.foodGrid .baseGridRow .foodName{display:-webkit-box;-webkit-line-clamp:2;max-height:36px;height:auto;-webkit-box-orient:vertical}.foodGrid .baseGridRow .foodName:after{display:none}}}.FoodServingSelect .FoodServingSelectField{height:24px;font-size:12px;font-style:normal;font-weight:400;line-height:16px;letter-spacing:0}.FoodServingSelect .FoodServingSelectAmount{width:100%}.FoodServing p{width:auto !important}.FoodServing .FoodServingFraction{position:relative;display:inline-block;width:16px;height:18px;margin:0 0 0 1px;font-size:10px;line-height:1.5;color:#151112;font-weight:400;overflow:hidden}.FoodServing .FoodServingFraction:after{content:" ";position:absolute;top:-1px;right:7px;height:75%;width:75%;transform:rotate(25deg);border-right:1px solid #151112}.FoodServing .FoodServingFraction__numerator{position:absolute;top:0;left:0}.FoodServing .FoodServingFraction__denominator{position:absolute;right:0;bottom:0}.FoodServing .FoodServingFraction--caption{width:13px;height:12px;font-size:8px;color:#6e6e6e}.FoodServing .FoodServingFraction--caption:after{top:1px;right:6px;border-color:#6e6e6e}.FoodServing .FoodServingFraction--caption .FoodServingFraction__numerator{top:1px}.FoodServing .FoodServingFraction--caption .FoodServingFraction__denominator{bottom:-4px}.FoodServing .FoodServingFraction--small{width:15px;height:16px;font-size:9px}.FoodServing .FoodServingFraction--small:after{right:7px}.FoodServing .FoodServingFraction--small .FoodServingFraction__denominator{bottom:-1px}.FoodServing .FoodServingFraction--medium{width:16px;height:18px;font-size:10px}.FoodServing .FoodServingFraction--medium:after{right:7px}.FoodServing .FoodServingFraction--large{width:17px;height:20px;font-size:11px}.FoodServing .FoodServingFraction--large:after{right:8px}.customFoodDeleteDialog .modal-body{padding-bottom:24px}.customFoodDeleteDialog h2{padding:0 !important}.customFoodDialogTooltip.ant-tooltip{max-width:400px}.customFoodDialogTooltip h5{font-size:18px;font-style:normal;font-weight:400;line-height:22px;letter-spacing:0;text-align:left;color:#151112}.customFoodDialogTooltip ul{margin:0;padding:0 0 0 18px}.customFoodDialogTooltip ul li{font-size:12px;color:#6e6e6e;font-weight:400;line-height:16px}.customFoodDialogTooltip--category{width:235px}.FoodNameTooltip.ant-tooltip{max-width:280px}.clientCalendar .ant-checkbox-checked .ant-checkbox-inner{background-color:var(--background-color);border-color:var(--border-color)}.clientCalDayCell .itemTitle{cursor:grab;text-overflow:ellipsis;overflow:hidden;margin-left:4px;margin-right:4px;white-space:nowrap;font-size:12px}@media(max-height: 756px){.clientCalDayCell .itemTitle{font-size:10px;line-height:11px}}.clientCalDayCell .iconStyle{min-width:16px;min-height:16px;border-radius:20px;background-color:#fff}@media(max-height: 756px){.clientCalDayCell .iconStyle{min-width:10px;min-height:10px}}.clientCalDayCell span{font-size:12px;line-height:18px}@media(max-height: 756px){.clientCalDayCell span{font-size:10px;line-height:11px}}.buttonDropdown__dropdown .moreItem{cursor:grab;text-overflow:ellipsis;overflow:hidden;margin-left:4px;margin-right:4px;white-space:nowrap;font-size:12px}.buttonDropdown__dropdown .iconStyle{min-width:16px;min-height:16px;border-radius:20px;background-color:#fff}.clientCalendarHeader:hover use{fill:#229ed4 !important}.clientCalendarHeader use{fill:#151112 !important}.clientCalendarHeader:hover .headerText{color:#229ed4 !important}.clientCalendarHeader .headerText{color:#151112}.ant-select-dropdown-menu-item-group-title{font-size:15px}.AutoTags .m24t{margin-top:24px !important}.AutoTags__section{margin-top:24px;border:1px solid #eee;border-radius:4px}.AutoTags__section--workout{margin-top:48px}.AutoTags__section .compliance-percentage{font-family:"Akrobat",Helvetica,Arial,sans-serif;font-style:normal;font-weight:700;font-size:32px;line-height:40px;color:#151112}.AutoTags__section .compliance-percentage span{font-size:18px;line-height:34px}.AutoTags__section .compliance-label{padding:6px;background:#fcfcfc;border-radius:4px}.AutoTags__section .ComplianceSlider .ant-slider-rail{height:10px;background-color:#ff9801;border-radius:5px}.AutoTags__section .ComplianceSlider .ant-slider-rail:hover{background-color:#f8f8f8}.AutoTags__section .ComplianceSlider--lowColorPercent-1 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 1%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-2 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 2%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-3 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 3%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-4 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 4%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-5 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 5%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-6 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 6%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-7 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 7%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-8 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 8%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-9 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 9%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-10 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 10%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-11 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 11%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-12 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 12%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-13 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 13%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-14 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 14%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-15 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 15%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-16 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 16%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-17 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 17%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-18 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 18%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-19 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 19%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-20 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 20%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-21 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 21%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-22 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 22%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-23 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 23%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-24 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 24%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-25 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 25%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-26 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 26%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-27 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 27%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-28 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 28%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-29 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 29%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-30 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 30%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-31 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 31%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-32 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 32%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-33 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 33%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-34 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 34%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-35 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 35%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-36 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 36%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-37 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 37%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-38 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 38%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-39 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 39%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-40 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 40%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-41 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 41%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-42 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 42%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-43 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 43%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-44 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 44%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-45 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 45%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-46 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 46%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-47 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 47%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-48 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 48%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-49 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 49%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-50 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 50%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-51 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 51%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-52 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 52%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-53 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 53%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-54 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 54%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-55 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 55%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-56 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 56%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-57 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 57%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-58 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 58%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-59 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 59%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-60 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 60%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-61 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 61%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-62 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 62%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-63 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 63%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-64 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 64%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-65 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 65%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-66 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 66%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-67 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 67%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-68 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 68%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-69 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 69%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-70 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 70%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-71 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 71%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-72 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 72%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-73 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 73%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-74 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 74%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-75 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 75%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-76 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 76%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-77 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 77%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-78 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 78%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-79 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 79%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-80 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 80%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-81 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 81%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-82 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 82%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-83 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 83%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-84 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 84%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-85 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 85%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-86 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 86%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-87 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 87%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-88 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 88%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-89 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 89%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-90 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 90%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-91 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 91%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-92 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 92%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-93 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 93%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-94 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 94%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-95 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 95%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-96 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 96%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-97 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 97%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-98 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 98%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-99 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 99%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider--lowColorPercent-100 .ant-slider-rail{background:linear-gradient(90deg, #FF9801 100%, #FFCE00 0%) #ff9801}.AutoTags__section .ComplianceSlider .ant-slider-track{height:10px;background-color:#f8f8f8;border-radius:5px}.AutoTags__section .ComplianceSlider .ant-slider-track:hover{background-color:#f8f8f8}.AutoTags__section .ComplianceSlider .ant-slider-step{height:12px}.AutoTags__section .ComplianceSlider .ant-slider-step .ant-slider-dot{width:1px;height:10px;top:0;margin-left:0;border-radius:0;border-width:0;background-color:rgba(0,0,0,0)}.AutoTags__section .ComplianceSlider .ant-slider-step .ant-slider-dot-active{border-color:rgba(0,0,0,0)}.AutoTags__section .ComplianceSlider .ant-slider-handle{height:12px;width:12px;margin-top:-1px;background-color:#fff;border:1px solid #ff9801;box-sizing:border-box}.AutoTags__section .ComplianceSlider .ant-slider:hover .ant-slider-handle:not(.ant-tooltip-open){border-color:#fff}.AutoTags__section .ComplianceSlider .ant-slider-handle:focus{box-shadow:0 0 0 5px rgba(255,255,255,0)}.AutoTags__section .ComplianceSlider .ant-slider-mark{top:21px}.AutoTags__section .ComplianceSlider .ant-slider-mark .ant-slider-mark-text{font-style:normal;font-weight:normal;font-size:10px;line-height:14px;color:#6e6e6e}.AutoTags__section .SelectSection__icon{width:40px;height:40px;background-color:#fcfcfc;border-radius:4px}.AutoTags__section .SelectSection__content p:first-child{margin-bottom:6px}.AutoTags__section .SelectSection__selection{width:72px}.AutoTags__section .SelectSection__selection .ant-select,.AutoTags__section .SelectSection__selection .ant-select-selection--single{height:24px}.AutoTags__section .SelectSection__selection .ant-select-selection__rendered{height:24px;line-height:24px}.leftSideTracking{border-right:1px solid #eee;height:493px;padding:32px;width:260px}.leftSideTracking .invisible{display:none}.leftSideTracking__fieldWrapper{align-items:center;height:24px}.leftSideTracking__fieldWrapper input{height:24px;margin-left:24px;width:70px}.leftSideTracking__fieldWrapper input:focus{box-shadow:none !important}.leftSideTracking__fieldWrapper label{width:80px}.leftSideTracking__fieldWrapper input.required{border:1px solid #ff5366}.leftSideTracking__fieldWrapper_formItem{margin-bottom:0px}.leftSideTracking__field__large{margin:0px;width:100px}.leftSideTracking__field__small{margin-bottom:0px}.rightSideTracking{height:558px;position:relative;width:576px}.humanBody{align-items:flex-start;display:flex;flex-direction:row;height:494px;padding:32px;width:512px}.leftColumnFields{display:flex;flex-direction:column;height:494px;justify-content:space-between}.leftColumnFields.viewMode{width:76px;margin-right:10px}.leftColumnFields.editMode{width:125px}.leftColumnFields.editMode .inputHolder:not(:last-child){margin-bottom:16px}.bodyImage{height:440px;margin-top:35px;width:256px}.rightColumnFields{display:flex;flex-direction:column;height:494px;justify-content:space-between}.rightColumnFields.viewMode{width:85px;margin-left:10px}.rightColumnFields.editMode{width:125px}.rightColumnFields.editMode .inputHolder:not(:last-child){margin-bottom:16px}.humanField{width:75px}.inputHolder{display:flex;flex-direction:column}.inputHolder__input-center{display:flex;align-items:center}.inputHolder__input-left{display:flex;align-items:flex-start}.inputHolder input{width:75px}.thumbnail-wrapper{position:relative;width:100%;aspect-ratio:13/8;margin-bottom:32px}.thumbnail-image{position:relative;border-radius:12px;width:100%;height:100%}.thumbnail-image-overlay{position:absolute;border-radius:12px;background:linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(12, 12, 13, 0.4) 100%);width:100%;height:100%;bottom:0}.thumbnail-details{position:absolute;bottom:12px;left:12px;right:12px}.thumbnail-details p{text-shadow:0px 1px 2px rgba(0,0,0,.25)}.thumbnail-details-title{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;inline-size:135px}@supports(-webkit-box-orient: vertical){.thumbnail-details-title{position:relative;height:40px;line-height:20px;overflow:hidden;background-color:rgba(0,0,0,0);word-break:break-word;white-space:normal;text-overflow:unset;min-height:auto}.thumbnail-details-title:after{content:"";text-align:right;position:absolute;bottom:0;right:0;width:30%;height:20px;background:linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%)}@supports(-webkit-line-clamp: 2){.thumbnail-details-title{display:-webkit-box;-webkit-line-clamp:2;max-height:40px;height:auto;-webkit-box-orient:vertical}.thumbnail-details-title:after{display:none}}}.unsplash-gallery{width:100%;margin-bottom:32px}.unsplash-gallery .flex-gap{gap:10px}.unsplash-gallery .flex-gap .default-image{border-radius:6px;width:100%;cursor:pointer;object-fit:cover}.image-details-wrapper{width:100%;padding:8px;background-color:#fcfcfc;border:1px solid #eee;border-radius:4px}.unsplash-search-image{width:100%;height:100%;object-fit:cover}:hover>.unsplash-search-image{filter:brightness(0.5)}.unsplash-search-image-text{display:none;visibility:hidden;position:absolute;bottom:0px;color:#fff !important;width:100%;text-decoration:underline !important;padding:4px 0px 4px 8px}:hover>.unsplash-search-image-text{display:block;visibility:visible;background-color:#000;opacity:.7}.unsplash-search-image-text:hover{background-color:rgba(0,0,0,.8);opacity:1}.w100{width:100%}.clientFilter__divider{margin:0;margin-bottom:11px;margin-left:auto;width:calc(100% - 16px)}.clientFilter__buttonWrapper{margin-left:16px}.filterHeader__descriptionWrapper{padding:16px}.filterHeader__descriptionWrapper .description{margin-bottom:0px}.filterHeader__titleWrapper{display:flex;align-items:center;justify-content:space-between;padding-left:16px;padding-bottom:8px;padding-right:8px}.filterHeader__titleLeft{display:flex;align-items:center}.filterHeader__titleLeft .title{margin-right:5px}.filterHeader__titleLeft .tooltip{word-break:normal}.filterHeader__titleRight .clearAllFilter{color:#229ed4;font-size:12px}.tooltip__overlay .ant-tooltip-arrow::before,.tooltip__overlay .ant-tooltip-inner{border-color:#fff !important}.selectionItem__root{background:rgba(0,0,0,0)}.selectionItem__subMenu{height:unset !important;margin-bottom:8px !important}.selectionItem__subMenu .ant-menu-submenu-title{height:unset !important;width:100%}.selectionItem__subMenu .ant-menu-submenu-arrow{display:none}.selectionItem__subMenu img{border-radius:50%;width:20px}.selectionItem__subMenuTitle__root{width:90%}.selectionItem__subMenuTitle__root .arrowIconVisible{display:inline-flex;position:absolute;top:50%;transform:translateY(-50%);right:5px}.selectionItem__subMenuTitle__detailWrapper{background:#fff;border-radius:26px;padding:6px 8px;width:fit-content;width:-moz-fit-content;max-width:90%}.selectionItem__subMenuTitle__iconWrapper{height:16px;width:16px;display:flex}.selectionItem__subMenuTitle__clearButton{cursor:pointer;border:none;background:none;padding:0}.selectionItem__subMenuTitle__tagsDetailWrapper{border:0px;margin-bottom:4px}.selectionItem__subMenuTitle__label{overflow-x:hidden;text-overflow:ellipsis;margin:0 8px !important;width:calc(100% - 16px)}.selectionItem__subMenuTitle__tagsLabel{width:100%;margin-left:0 !important}.selectionItem__subMenuTitle__title{margin-bottom:4px !important}.selectionItem__subMenuTitle__arrow{display:none}.selectionItem__itemGroup{overflow:auto}.selectionItem__itemGroup .ant-menu-item-group-title{padding:0}.newFilter__buttonWrapper{margin-left:16px;height:24px;display:flex;align-items:center;justify-content:center}.newFilter__text{margin-right:8px;font-size:12px;line-height:16px}.newFilter__menu{width:calc(232px - 16px)}.newFilter__subMenu{overflow:auto}.newFilter__subMenu:hover{background-color:#f7f7f7}.newFilter__subMenu .ant-dropdown-menu-item-group-title{padding:0px}.newFilter__subMenu__item{display:flex;align-items:center}.singleSelectMenu__searchWrapper{background-color:#fcfcfc;height:40px}.singleSelectMenu__searchWrapper .ant-menu-item-group-title{height:100%}.singleSelectMenu__searchWrapper .ant-dropdown-menu-item-group-list .ant-dropdown-menu-item-divider{margin:0}.singleSelectMenu__searchInput{padding:8px}.singleSelectMenu__searchInput input{border-radius:21px;padding-top:4px;height:24px}.singleSelectMenu__listWrapper{overflow:auto;max-height:calc(90vh - 40px)}.singleSelectMenu__listWrapper .ant-menu-item-group-title,.singleSelectMenu__listWrapper .ant-dropdown-menu-item-group-title{padding:0}.singleSelectMenu__listWrapper .ant-dropdown-menu-item-group-list{margin-right:0;margin-left:0}.singleSelectMenu__itemWrapper{padding:4px 8px !important;margin:0 !important;display:flex;align-items:center;justify-content:space-between;height:32px !important;line-height:32px !important}.singleSelectMenu__itemWrapper:hover{background-color:#f7f7f7}.singleSelectMenu__itemWrapper img{border-radius:50%}.singleSelectMenu__itemWrapper .itemDetail{width:calc(100% - 12px)}.singleSelectMenu__itemWrapperChallenge{padding:8px !important;margin:0px !important;display:flex;align-items:center;justify-content:space-between;height:46px !important;line-height:32px !important}.singleSelectMenu__itemWrapperChallenge:hover{background-color:#f7f7f7}.singleSelectMenu__itemWrapperChallenge img{border-radius:50%}.singleSelectMenu__itemWrapperChallenge .itemDetail{width:calc(100% - 12px)}.singleSelectMenu__itemWrapperChallenge .challengeFilterItem .thumbnail,.singleSelectMenu__itemWrapperChallenge .challengeFilterItem .imgWrapper{width:100%;max-width:40px;border-radius:10%;height:30px;margin-right:5px}.singleSelectMenu__itemWrapperChallenge .challengeFilterItem .imgWrapper{background-color:#fcfcfc}.singleSelectMenu__headTitle{padding:8px}.ant-dropdown-menu-item-group-title:empty{display:none}.multiSelectMenu__root{overflow:auto;max-width:280px !important;max-height:90vh}.multiSelectMenu__headWrapper{display:flex;align-items:center;justify-content:space-between;padding:8px;background:#fcfcfc}.multiSelectMenu__menuItem{display:flex;align-items:center;height:32px !important;line-height:32px !important;padding:8px !important;margin:0px !important}.multiSelectMenu__menuItem:hover{background-color:#f7f7f7}.multiSelectMenu__menuItem:hover .detail{display:block}.multiSelectMenu__menuItem label{margin-right:8px}.multiSelectMenu__menuItem .itemDetail{width:calc(100% - 16px)}.multiSelectMenu__systemTagDetails{display:inline-flex;flex-direction:column;align-items:flex-start;justify-content:center}.multiSelectMenu__systemTagDetails .title{line-height:16px}.multiSelectMenu__systemTagDetails .detail{line-height:16px;font-size:12px;color:#a3a3a3;display:none}.singleSelectMenu__root,.multiSelectMenu__root{background:#fff;min-width:220px;max-width:240px}.singleSelectMenu__root .ant-dropdown-menu-item-group-title,.multiSelectMenu__root .ant-dropdown-menu-item-group-title{padding:0}.singleSelectMenu__emptyItem,.multiSelectMenu__emptyItem{color:#c2c7cc}.singleSelectMenu__subMenuEmpty,.multiSelectMenu__subMenuEmpty{background-color:#fff;color:#a3a3a3}.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected{background-color:#f7f7f7}.ant-dropdown-menu-submenu-popup{box-shadow:0 2px 8px rgba(0,0,0,.15)}.ant-dropdown-menu-submenu-popup .ant-dropdown-menu{padding:0}.announcementsContainer{height:calc(100vh - 60px);padding:32px;box-sizing:border-box}.announcementsContainer .baseGridHeader{padding-top:0}.announcementsContainer .announcementsGridHeader{font-size:18px;color:#000}.announcementsContainer .reactBaseGrid{max-height:none !important}.announcementsContainer .reactBaseGrid .columnText{display:block;overflow-x:hidden;text-overflow:ellipsis;padding-right:20px}.announcementsContainer .gridToolBar button i{margin-right:10px}.statusTag{font-size:14px;font-weight:700}.statusTag.sentStatus{color:#70d27c}.statusTag.sendingStatus{color:#ffcb10}.statusTag.scheduledStatus{color:#6e6e6e}.newAnnouncementDialog h2{margin-bottom:14px}.newAnnouncementDialog .inputContainer{display:grid;grid-row-gap:24px}.newAnnouncementDialog .inputContainer .inputWrapper{margin-bottom:0 !important}.newAnnouncementDialog .inputContainer .inputWrapper label{display:block;margin-bottom:2px;color:#6e6e6e}.newAnnouncementDialog .inputContainer .inputWrapper p{position:absolute;right:0}.newAnnouncementDialog .inputContainer .inputWrapper textarea{margin-top:3px;margin-bottom:4px}.newAnnouncementDialog .inputContainer .inputWrapper svg{align-self:start;margin-left:4px}.newAnnouncementDialog .inputContainer .dateAndTimeContainer{display:flex;justify-content:space-between}.newAnnouncementDialog .inputContainer .flexContainer{width:auto;display:flex}.newAnnouncementDialog .inputContainer .hyperlinkContainer{display:flex;justify-content:space-between;align-items:center}.newAnnouncementDialog .inputContainer .hyperlinkContainer input{width:400px}.newAnnouncementDialog .inputContainer .hyperlinkContainer .ant-select{width:180px}.newAnnouncementDialog .inputContainer .ant-form-explain{position:absolute}.newAnnouncementDialog .inputContainer .locationTreeSelect .ant-select-selection__choice__content{max-width:15ch;text-overflow:ellipsis;overflow-x:hidden}.announcementViewDialog .dialogHeader{display:flex;justify-content:space-between}.announcementViewDialog .dialogHeader .headerButtons{display:flex}.announcementViewDialog .dialogHeader .headerButtons button i{margin-right:10px}.announcementViewDialog .dialogHeader .headerButtons button:last-of-type{margin-left:14px}.announcementViewDialog .infoSection{margin-top:20px}.announcementViewDialog .infoSection .sectionHeader{color:#000;font-size:12px;font-weight:700;border-bottom:1px solid #eaeaea;padding-bottom:4px;margin-bottom:8px}.announcementViewDialog .infoSection .detailsGrid{display:grid;grid-template-columns:auto 1fr;column-gap:40px;row-gap:12px;align-items:start}.announcementViewDialog .infoSection .detailsGrid .scheduledWrapper{display:flex}.announcementViewDialog .infoSection .detailsGrid .scheduledWrapper svg{align-self:start;margin-left:4px}.announcementViewDialog .infoSection .detailsGrid .locationsWrapper{max-height:100px;overflow-y:scroll}.checkInHistoryPage{max-height:100%;position:relative;display:grid;grid-template-rows:auto 1fr;row-gap:16px}.checkInHistoryPage .checkInHistoryTableContainer{position:relative;border:1px solid #eee}.checkInHistoryPage .checkInHistoryTableContainer .tableControls{display:flex;width:100%;position:sticky;top:0;justify-content:space-between;align-items:center;padding:0 12px;background-color:#fcfcfc;z-index:99;box-sizing:border-box;height:50px}.checkInHistoryPage .checkInHistoryTableContainer .checkInHistoryTable{width:100%;position:relative;border-collapse:collapse}.checkInHistoryPage .checkInHistoryTableContainer .checkInHistoryTable .tableHeader{position:sticky;top:50px;background-color:#fff}.checkInHistoryPage .checkInHistoryTableContainer .checkInHistoryTable .row.headerRow{height:32px}.checkInHistoryPage .checkInHistoryTableContainer .checkInHistoryTable .row.headerRow p{color:#a3a3a3}.checkInHistoryPage .checkInHistoryTableContainer .checkInHistoryTable .row.headerRow th{width:33.3%}.checkInHistoryPage .checkInHistoryTableContainer .checkInHistoryTable .row.dataRow{height:40px}.checkInHistoryPage .checkInHistoryTableContainer .checkInHistoryTable .row.dataRow:not(:last-child){border-bottom:1px solid #f8f8f8}.checkInHistoryPage .checkInHistoryTableContainer .checkInHistoryTable .row.dataRow p{color:#6e6e6e}.checkInHistoryPage .checkInHistoryTableContainer .checkInHistoryTable th:first-child,.checkInHistoryPage .checkInHistoryTableContainer .checkInHistoryTable td:first-child{padding-left:12px}.notification{max-width:600px;padding-bottom:30px}.notification__browser{margin-top:20px}.notification__browser--header{display:flex;justify-content:space-between;align-items:center}.notification__email{margin-top:40px}.notification__email--section{margin:10px 0 25px 0}.notification__email--section--header{margin:10px 0}.configSection{margin-top:40px;max-width:600px}.configSection_optionsList{margin-top:10px}.trainingGroup{margin-top:40px;max-width:600px}.clientAgreeTosDlg .description{padding-bottom:23px}.clientAgreeTosDlg .agreeAutoRenewalLabel{display:inline-block;vertical-align:top}.clientAgreeTosDlg .agreeAutoRenewalLabel .caption{margin-top:-10px}.customTagsList{width:400px}.customTagsList .tagListHeader{display:flex;justify-content:space-between;border-bottom:1px solid #eee;margin-bottom:6px}.customTagsList .tagList{display:grid;grid-row-gap:6px}.customTagsList .tagList .snake-loader{margin:auto}.customTag{display:flex;height:30px;justify-content:space-between;overflow:hidden;background-color:#fcfcfc;border-radius:4px;position:relative}.customTag .tagContent{display:flex;margin-left:8px;align-items:center;overflow:hidden}.customTag .tagContent p{max-width:80%;margin-left:8px;overflow-x:hidden;text-overflow:ellipsis;white-space:nowrap}.customTag .deleteButton{display:flex;position:absolute;right:0;cursor:pointer;width:0;padding:0;border:none;transition:width 150ms;height:30px;background-color:#ff5366}.customTag .deleteButton svg{margin:auto}.customTag:hover .deleteButton{width:30px}.addCustomTag{margin-bottom:0}.addCustomTag .ant-form-explain{font-size:12px}.addCustomTag .ant-form-item-control{line-height:unset}.addCustomTag .ant-input,.addCustomTag button{height:30px;font-size:12px}.addCustomTag .ant-input-prefix{left:8px}.tzReferrals__container{max-width:450px}.tzReferrals__container .referralsTitle__container{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #eee;padding-bottom:5px;margin-bottom:10px}.tzReferrals__container .textAreaCount{margin-top:5px;text-align:end}.changeWebAddressDialog__mainBodyRoot .divider{margin:0}.changeWebAddressDialog__mainBodyRoot .inputRoot{width:359px}.changeWebAddressDialog__mainBodyRoot .inputRoot input{padding-left:45px !important;padding-right:85px !important}.branding__actionContainer{width:50%;max-width:297px}.branding__actionContainer .radioStyle{display:block;height:30px;line-height:30px}.branding__actionContainer .imageUploaderContainer{width:100%}.branding__previewContainer{width:50%;align-items:stretch;position:relative}.branding__previewContainer .previewLogoInvoice{position:absolute;width:100px;height:26px;left:40px;top:27px}.branding__previewContainer .previewLogoInvoice__img{background-position:center;background-size:cover}.branding__previewContainer .previewLogoInvoice__span{font-weight:bold;color:#a3a3a3;font-size:10px;line-height:26px;text-overflow:ellipsis;overflow:hidden}.branding__previewContainer .previewLogo{position:absolute;left:220px;top:133px;width:70px;height:18px}.branding__previewContainer .previewLogo__img{background-position:center;background-size:cover}.branding__previewContainer .previewLogo__span{font-weight:bold;color:#a3a3a3;font-size:8px;line-height:18px;text-overflow:ellipsis;overflow:hidden}.aboutBusinessHeader{width:100%}.aboutBusinessHeader .divider{margin:0px}.aboutBusinessHeader .webAddress__detail .logo{width:40px;height:40px;object-fit:cover;margin-right:16px}.aboutBusinessHeader .socialMedia__item .iconWrapper{width:40px;height:40px;background-color:#f8f8f8;margin-right:16px;border-radius:6px}.aboutBusinessHeader .socialMedia__item .detailsWrapper{width:381px}.aboutBusinessHeader .socialMedia__item .detailsWrapper .ant-input-group{border:1px solid #eee}.aboutBusinessHeader .socialMedia__item .detailsWrapper .ant-input-group .ant-input-group-addon{border:none;background-color:#fff;color:#eee}.aboutBusinessHeader .socialMedia__item .detailsWrapper .ant-input-group .ant-input{border:none}.trainerGridSideMenu{overflow:hidden;background-color:#fcfcfc}.trainerGridSideMenu-title{width:100%;height:40px;display:flex;flex-direction:row;align-items:center;box-sizing:border-box;padding-left:16px !important}.trainerGridSideMenu-divider{margin:1px 0px}.trainerGridSideMenu-content{padding:10px 10px 22px 10px}.trainerGridSideMenu-filter{width:90%;padding:0px 10px}.trainerGridSideMenu-heading{margin-bottom:9px}.trainerGridSideMenu-locationPicker{margin-top:9px;width:100%}.trainerGridSideMenu-footer{margin:0px -6px;margin-bottom:20px}.trainerGridSideMenu-footer img{padding-right:4px}.trainerGridSideMenu-footer p{font-size:13px;margin:0;padding:0 4px;color:#a3a3a3}.trainerGridSideMenu-link{font-size:13px}.trainerGrid .clickable{font-size:12px;color:#229ed4}.trainerGrid .trainerName{font-size:13px}.trainerGridClients .hideable{opacity:1}.trainerGridClients:hover>.hideable{display:none;opacity:0}.trainerGridClients:hover>.trainerGridClients--addClient{opacity:1;display:block}.trainerGridClients--addClient{opacity:0;display:none}.changeRoleDropDownContainer{width:240px}.ant-dropdown-menu-item:has(.sendBtnDropDown){width:240px;display:block;height:unset;white-space:initial}@media print{.PrintPageButton{display:none !important}}.autoMessagesOption{display:flex;align-items:center;height:50px;border-bottom:1px solid #cfcfcf;gap:20px}.autoMessagesOption-divider{height:50px;border-bottom:1px solid #cfcfcf}.autoMessagesOption-icons{display:flex;align-items:center;justify-content:space-between;width:40px}.autoMessagesOption-actions{display:flex;align-items:center;width:120px;gap:10px}.makeAPaymentDialog{width:392px !important}.makeAPaymentDialog .modal-body{padding-bottom:0 !important}.makeAPaymentDialog .dialogHeader{text-align:center;margin-top:36px;margin-bottom:75px}.makeAPaymentDialog .dialogHeader .title{color:#000;font-size:26px;line-height:31px;padding-bottom:15px}.makeAPaymentDialog .dialogHeader .caption{color:#000;font-size:21px;line-height:24px}.makeAPaymentDialog .paymentAmountWrapper{display:flex}.makeAPaymentDialog .paymentAmountWrapper .ant-form-item-control-wrapper{width:100%}.makeAPaymentDialog .paymentAmountWrapper .ant-form-item-children{display:flex;flex-direction:column}.makeAPaymentDialog .paymentAmountWrapper label{display:block;margin-bottom:2px;color:#6e6e6e}.makeAPaymentDialog .walletSelectLabel{display:block;padding-bottom:2px;margin-top:32px;color:#6e6e6e}.makeAPaymentDialog .abcWalletContainer{width:100% !important;margin-bottom:16px}.makeAPaymentDialog .abcWalletContainer .ant-select,.makeAPaymentDialog .abcWalletContainer .ant-select-selection{width:100% !important}.makeAPaymentDialog .infoLabel{margin:60px auto 10px auto;text-align:center;width:270px}.makeAPaymentDialog .modal-footer button{width:200px;height:36px;margin:auto !important}.makeAPaymentDialog .modal-footer p{padding-top:20px !important;text-align:center}.selfCancelDialog .loadingIndicatorWrap{height:319px;display:flex;justify-content:center;align-items:center}.selfCancelDialog .cancelDuesContainer{margin-top:16px}.selfCancelDialog .cancelDuesContainer .breakdownHeader{margin-top:8px;padding-bottom:10px;border-bottom:1px solid #eee}.selfCancelDialog .cancelDuesContainer .feeBreakdown{margin-left:32px}.selfCancelDialog .cancelDuesContainer .feeBreakdown section{display:flex;justify-content:space-between;border-bottom:1px solid #eee;padding-top:12px;padding-bottom:8px}.selfCancelDialog .cancelDuesContainer .feeBreakdown section p{color:#000 !important}.selfCancelDialog .cancelReason{margin-top:18px}.selfCancelDialog .cancelReason .ant-form-item{margin-bottom:7px}.selfCancelDialog .cancelReason .ant-select{width:302px}.selfCancelDialog .paymentMethodSelect .ant-form-item{margin-bottom:7px;margin-top:2px}.selfCancelDialog .paymentMethodSelect .abcWalletContainer{width:302px !important}.selfCancelDialog .paymentMethodSelect .abcWalletContainer .ant-select,.selfCancelDialog .paymentMethodSelect .abcWalletContainer .ant-select-selection{width:302px !important}.selfCancelDialog .tosContainer{margin-top:16px}.selfCancelDialog .tosContainer p{color:#000 !important;display:inline}.selfCancelDialog .tosContainer p,.selfCancelDialog .tosContainer a{font-size:14px}.manageMembership__heading{margin-top:24px}.manageMembership__downloadButton{margin-right:6px;padding:3px 5px !important}.manageMembership__nullScreen{height:80% !important}.manageMembership__body{margin-top:16px}.manageMembership__divider{margin-top:3px !important;margin-bottom:32px !important}.appointmentCalendarHeader:hover use{fill:#229ed4 !important}.appointmentCalendarHeader use{fill:#151112 !important}.appointmentCalendarHeader:hover .headerText{color:#229ed4 !important}.appointmentCalendarHeader .headerText{color:#151112}.appointmentCalendarHeader .btn--group .btn{font-weight:400 !important}.appointmentCalendarHeader .btn--group .btn--white{color:#151112 !important}:root{--fc-border-color: #EEEEEE !important;--fc-today-bg-color: transparent !important;--fc-now-indicator-color: #FFCB10 !important;--fc-neutral-bg-color: transparent !important}.appointmentCalendarSidebar .trainerList .ant-checkbox-checked .ant-checkbox-inner{background-color:var(--background-color);border-color:var(--border-color)}.appointmentCalendarSidebar .trainerList .ant-checkbox+span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.appointmentCalendar .event--color-CAEDFF{background-color:#caedff}.appointmentCalendar .event--color-CAEDFF:hover{background-color:#caedff}.appointmentCalendar .event--color-E1FAD9{background-color:#e1fad9}.appointmentCalendar .event--color-E1FAD9:hover{background-color:#e1fad9}.appointmentCalendar .event--color-FFE3F3{background-color:#ffe3f3}.appointmentCalendar .event--color-FFE3F3:hover{background-color:#ffe3f3}.appointmentCalendar .event--color-FBFAA8{background-color:#fbfaa8}.appointmentCalendar .event--color-FBFAA8:hover{background-color:#fbfaa8}.appointmentCalendar .event--color-ECDAFF{background-color:#ecdaff}.appointmentCalendar .event--color-ECDAFF:hover{background-color:#ecdaff}.appointmentCalendar .event--color-D2FBFF{background-color:#d2fbff}.appointmentCalendar .event--color-D2FBFF:hover{background-color:#d2fbff}.appointmentCalendar .event--color-D7E2FF{background-color:#d7e2ff}.appointmentCalendar .event--color-D7E2FF:hover{background-color:#d7e2ff}.appointmentCalendar .event--color-CBE5C2{background-color:#cbe5c2}.appointmentCalendar .event--color-CBE5C2:hover{background-color:#cbe5c2}.appointmentCalendar .event--color-FFDADA{background-color:#ffdada}.appointmentCalendar .event--color-FFDADA:hover{background-color:#ffdada}.appointmentCalendar .event--color-FEDDB7{background-color:#feddb7}.appointmentCalendar .event--color-FEDDB7:hover{background-color:#feddb7}.appointmentCalendar .event--borderColor-gray60{border:1px solid #cfcfcf !important}.appointmentCalendar .event--personal{padding:1px 0;margin:0 2px;background-color:#fff}.appointmentCalendar .event--personal:hover{background-color:#fff}.appointmentCalendar .fc{width:100%}.appointmentCalendar .fc .fc-popover.fc-more-popover{z-index:2;width:220px}.appointmentCalendar .fc .fc-popover.fc-more-popover .fc-popover-header{padding-top:4px}.appointmentCalendar .fc .fc-popover.fc-more-popover .fc-popover-header .fc-popover-title{font-size:14px}.appointmentCalendar .fc .fc-popover.fc-more-popover .fc-popover-header .fc-icon-x::before{color:#151112}.appointmentCalendar .fc .fc-popover.fc-more-popover .fc-popover-header .fc-icon-x::after{content:none}.appointmentCalendar .fc .fc-popover.fc-more-popover .fc-popover-body{padding:4px}.appointmentCalendar .fc-event{border-radius:4px !important}.appointmentCalendar .fc-event-main{position:unset !important;overflow:hidden}.appointmentCalendar .fc-dayGridMonth-view th{border-right-style:none !important;border-left-style:none !important}.appointmentCalendar .fc-timeGridDay-view th{border-right-style:none !important;border-left-style:none !important}.appointmentCalendar .fc th{background-color:rgba(0,0,0,0);color:#6e6e6e}.appointmentCalendar .fc-col-header-cell a:hover{color:#6e6e6e !important}.appointmentCalendar .fc-timegrid-now-indicator-arrow{display:none}.appointmentCalendar .fc-daygrid-day-frame{height:90px}.appointmentCalendar .fc-daygrid-day-number{color:#151112}.appointmentCalendar .fc-daygrid-day-number:hover{color:#151112}.appointmentCalendar .fc-daygrid-day-bottom{display:flex;justify-content:center}.appointmentCalendar .fc-daygrid-day-bottom .fc-daygrid-more-link{color:#6e6e6e}.appointmentCalendar .fc-dayGridMonth-view .fc-col-header-cell .fc-scrollgrid-sync-inner{height:34px}.appointmentCalendar .fc-dayGridMonth-view .fc-col-header-cell .fc-scrollgrid-sync-inner:before{content:"";display:inline-block;vertical-align:middle;height:100%}.appointmentCalendar .fc .fc-timegrid-slot{height:40px}.appointmentCalendar .fc .fc-timegrid-axis-frame{font-size:14px;color:#6e6e6e}.appointmentCalendar .fc .fc-timegrid-slot-label-frame{text-align:center}.appointmentCalendar .fc-timegrid-event-harness-inset .fc-timegrid-event{box-shadow:none}.appointmentCalendar .fc .fc-timegrid-slot-minor{border-top-style:none}.appointmentCalendar .fc-timegrid-slot-label{font-size:14px;color:#6e6e6e}.appointmentCalendar .fc-timeGridWeek-view thead .fc-scroller{overflow-y:hidden !important}.appointmentCalendar .fc-timeGridWeek-view .fc-col-header-cell-cushion{display:block;height:100%}.appointmentCalendar .fc-timeGridWeek-view .fc-col-header-cell .fc-scrollgrid-sync-inner{height:50px}.appointmentCalendar .fc-timeGridDay-view .fc-col-header-cell .fc-scrollgrid-sync-inner{height:34px}.appointmentCalendar .fc-timeGridDay-view .fc-col-header-cell .fc-scrollgrid-sync-inner:before{content:"";display:inline-block;vertical-align:middle;height:100%}.appointmentCalendar .fc-timeGridDay-view #apptCalendarWeeklyHeader{display:none !important}.appointmentCalendar .ant-calendar-picker{visibility:hidden;width:0px;top:30px;right:20px}.ant-calendar-week-number .ant-calendar-body tr.ant-calendar-active-week{background:#70d1fe !important}#eventToolTip{position:absolute;left:0px;top:0px;display:inline-block;z-index:9999;min-height:100px;max-width:300px;padding:16px;border-radius:4px;background-color:#151112;color:#fff;line-height:1.5;text-align:left;text-align:start;white-space:normal;word-break:break-word;word-spacing:normal;word-wrap:normal;font-size:14px;text-decoration:none}#eventToolTip.grayBG{background-color:#eee;color:#151112;border:.7px solid #dbdbdb;max-width:250px}#eventToolTip.eventToolTip--on{visibility:visible;opacity:1;transition:visibility 0s linear 0s,opacity 100ms}#eventToolTip.eventToolTip--off{visibility:hidden;opacity:0;transition:visibility 0s linear 100ms,opacity 100ms}#eventToolTip.eventToolTip--top{margin-top:-8px}#eventToolTip.eventToolTip--bottom{margin-top:8px}#eventToolTip.eventToolTip--left{margin-left:-8px}#eventToolTip.eventToolTip--right{margin-left:8px}#eventToolTip .tooltip-arrow{position:absolute;top:50%;left:0;width:0;height:0;margin-top:-8px;border-width:8px 8px 8px 0;border-color:rgba(0,0,0,0);border-right-color:rgba(0,0,0,0);border-style:solid}#eventToolTip .tooltip-arrow .tooltip-innerArrow{border-width:8px 8px 8px 0;border-color:rgba(0,0,0,0);border-right-color:rgba(0,0,0,0);border-style:solid}#eventToolTip.eventToolTip--top .tooltip-arrow{top:auto;bottom:-8px;margin-left:-5px;border-width:8.7px 8.7px 0;border-top-color:#151112}#eventToolTip.eventToolTip--top .tooltip-arrow__grayArrow{bottom:-8.7px;border-top-color:#dbdbdb}#eventToolTip.eventToolTip--top .tooltip-arrow .tooltip-innerArrow{margin-top:-8px;margin-left:-8px;border-width:8px 8px 0;border-top-color:#151112}#eventToolTip.eventToolTip--top .tooltip-arrow .tooltip-innerArrow__grayArrow{margin-top:-8.7px;border-top-color:#eee}#eventToolTip.eventToolTip--bottom .tooltip-arrow{top:0;margin-left:-5px;border-width:0 8.7px 8.7px;border-bottom-color:#151112}#eventToolTip.eventToolTip--bottom .tooltip-arrow__grayArrow{top:-0.7px;border-bottom-color:#dbdbdb}#eventToolTip.eventToolTip--bottom .tooltip-arrow .tooltip-innerArrow{margin-top:0px;margin-left:-8px;border-width:0 8px 8px;border-bottom-color:#151112}#eventToolTip.eventToolTip--bottom .tooltip-arrow .tooltip-innerArrow__grayArrow{margin-top:.7px;border-bottom-color:#eee}#eventToolTip.eventToolTip--left .tooltip-arrow{top:50%;left:100%;border-width:8.7px 0 8.7px 8.7px;border-left-color:#151112}#eventToolTip.eventToolTip--left .tooltip-arrow__grayArrow{border-left-color:#dbdbdb}#eventToolTip.eventToolTip--left .tooltip-arrow .tooltip-innerArrow{margin-top:-8px;margin-left:-8px;border-width:8px 0 8px 8px;border-left-color:#151112}#eventToolTip.eventToolTip--left .tooltip-arrow .tooltip-innerArrow__grayArrow{margin-left:-8.7px;border-left-color:#eee}#eventToolTip.eventToolTip--right .tooltip-arrow{left:-17px;border-width:8.7px 8.7px 8.7px;border-right-color:#151112}#eventToolTip.eventToolTip--right .tooltip-arrow__grayArrow{border-right-color:#dbdbdb}#eventToolTip.eventToolTip--right .tooltip-arrow .tooltip-innerArrow{margin-top:-8px;margin-left:-8px;border-width:8px 8px 8px;border-right-color:#151112}#eventToolTip.eventToolTip--right .tooltip-arrow .tooltip-innerArrow__grayArrow{margin-left:-7px;border-right-color:#eee}.clientProgress_workoutsGrid .gridRoot{height:calc(100% - (80px))}.clientProgress_workoutsGrid .gridToolBar{background-color:#fcfcfc !important}.clientProgress_workoutsGrid .columnHeader{background-color:#eff3f6 !important}.clientProgress_workoutsGrid .trainerNote{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block}.clientProgress_workoutDetailTable{overflow:hidden}.clientProgress_workoutDetailTable .titleWrapper{position:relative;padding-top:33px;padding-bottom:33px}.clientProgress_workoutDetailTable .titleWrapper .backButton{position:absolute;left:16px}.clientProgress_workoutDetailTable .gridToolBar{background-color:#fcfcfc;height:50px;width:100%;box-sizing:border-box}.clientProgress_workoutDetailTable .tableBodyWrapper-root{overflow:auto}.clientProgress_workoutDetailTable .tableBodyWrapper-container{width:min-content}.clientProgress_workoutDetailTable .bgGray10{background-color:#f8f8f8}.clientProgress_workoutDetailTable .colorPrimaryBlue{color:#229ed4}.clientProgress_workoutDetailTable th.commentsHeader{color:#229ed4}.clientProgress_workoutDetailTable_nullScreen{height:calc(100% - (83px))}.LeaderBoard{background-color:#f3fbff}.LeaderBoardLevels{position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:896px;height:730px;z-index:9}.LeaderBoardLevels__bgImage{position:absolute;bottom:0;left:0;width:100%}.LeaderBoardLevels .LeaderBoardLevel{position:absolute;width:283px}.LeaderBoardLevels .LeaderBoardLevel--level3{top:153px;left:1px}.LeaderBoardLevels .LeaderBoardLevel--level2{top:76px;left:285px}.LeaderBoardLevels .LeaderBoardLevel--level1{top:0;right:44px}.LeaderBoardLevels .LeaderBoardLevel__userNameWrapper{display:flex;justify-content:center;height:25px}.LeaderBoardLevels .LeaderBoardLevel__userNameWrapper h4{font-weight:400;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}@supports(-webkit-box-orient: vertical){.LeaderBoardLevels .LeaderBoardLevel__userNameWrapper h4{position:relative;height:25px;line-height:25px;overflow:hidden;background-color:rgba(0,0,0,0);word-break:break-word;white-space:normal;text-overflow:unset;min-height:auto}.LeaderBoardLevels .LeaderBoardLevel__userNameWrapper h4:after{content:"";text-align:right;position:absolute;bottom:0;right:0;width:30%;height:25px;background:linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%)}@supports(-webkit-line-clamp: 1){.LeaderBoardLevels .LeaderBoardLevel__userNameWrapper h4{display:-webkit-box;-webkit-line-clamp:1;max-height:25px;height:auto;-webkit-box-orient:vertical}.LeaderBoardLevels .LeaderBoardLevel__userNameWrapper h4:after{display:none}}}.LeaderBoardLevels .LeaderBoardLevel__imageWrapper{width:108px;height:78px;left:50%;transform:translateX(-50%);margin-top:20px}.LeaderBoardLevels .LeaderBoardLevel__imageWrapper .LeaderBoardLevelImage{position:absolute;width:70px;height:70px;top:1px;left:1px;border-radius:50%;border:3px solid #f8f8f8;overflow:hidden;font-size:1px}.LeaderBoardLevels .LeaderBoardLevel__imageWrapper .LeaderBoardLevelImage:nth-child(2){left:32px;z-index:1}.LeaderBoardLevels .LeaderBoardLevel__imageWrapper .LeaderBoardLevelImage--single{left:50%;transform:translateX(-40%)}.LeaderBoardLevels .LeaderBoardLevel__imageWrapper .countLayer{position:absolute;width:68px;height:68px;right:4px;top:5px;background-color:rgba(0,0,0,.2);z-index:2;border-radius:50%;display:flex;align-items:center;justify-content:center}.LeaderBoardLevels .LeaderBoardLevel__number{font-weight:800;font-size:70px;line-height:87px;margin-top:109px}.LeaderBoardLevels .LeaderBoardLevel__points{font-weight:400;margin-top:20px}@media only screen and (max-width: 1440px){.LeaderBoardLevels{width:600px;height:540px}.LeaderBoardLevels .LeaderBoardLevel{width:189px}.LeaderBoardLevels .LeaderBoardLevel--level3{top:102px}.LeaderBoardLevels .LeaderBoardLevel--level2{top:51px;left:191px}.LeaderBoardLevels .LeaderBoardLevel--level1{right:30px}.LeaderBoardLevels .LeaderBoardLevel__number{margin-top:94px}}@media only screen and (min-width: 1441px)and (max-width: 1600px){.LeaderBoardLevels{width:757px;height:641px}.LeaderBoardLevels .LeaderBoardLevel{width:239px}.LeaderBoardLevels .LeaderBoardLevel--level3{top:128px}.LeaderBoardLevels .LeaderBoardLevel--level2{top:64px;left:241px}.LeaderBoardLevels .LeaderBoardLevel--level1{right:38px}.LeaderBoardLevels .LeaderBoardLevel__number{margin-top:102px}}.Threshold .ThresholdLevelWrapper{position:relative !important;width:410px;height:500px;z-index:1}.Threshold .ThresholdLevel{position:absolute;width:108px;height:44px;background-color:rgba(48,49,51,.85);border-radius:25px;border:3px solid rgba(0,0,0,0)}.Threshold .ThresholdLevel:hover{background-color:#303133;box-shadow:1px 1px 3px 1px rgba(48,49,51,.85)}.Threshold .ThresholdLevel--highlighted{border-color:#229ed4}.Threshold .ThresholdLevel--level0{bottom:42px;right:23px}.Threshold .ThresholdLevel--level0:hover{bottom:45px}.Threshold .ThresholdLevel--level1{bottom:42px;left:133px}.Threshold .ThresholdLevel--level1:hover{bottom:45px}.Threshold .ThresholdLevel--level2{bottom:169px;left:80px}.Threshold .ThresholdLevel--level2:hover{bottom:172px}.Threshold .ThresholdLevel--level3{top:146px;left:131px}.Threshold .ThresholdLevel--level3:hover{top:143px}.Threshold .ThresholdLevel--level4{top:28px;right:78px}.Threshold .ThresholdLevel--level4:hover{top:25px}.Threshold .ThresholdLevel__imageWrapper img{position:absolute;width:40px;height:40px;top:1px;left:1px;border-radius:50%;border:1px solid #cfcfcf;overflow:hidden;font-size:1px}.Threshold .ThresholdLevel__imageWrapper img:nth-child(2){left:14px}.ChallengeCompletedBanner{position:absolute;top:10px;left:50%;transform:translateX(-50%);width:90%;padding:7px 12px;background-color:#70d27c;border-radius:6px;z-index:10}.ChallengeCompletedBanner__icon{width:28px;height:28px;margin-right:7px}.ChallengeCompletedBanner__icon--second{margin-right:0;margin-left:7px;transform:scaleX(-1)}.sideBarTitle .ant-select-selection__placeholder{color:#000}.sideBarTitle .ant-select-arrow{right:5px !important}.sideBarTitle .ant-select-selection-selected-value{padding-right:0}.createChallengeDialog{box-sizing:border-box}.createChallengeDialog *{box-sizing:border-box}.createChallengeDialog__body{margin:0px -32px -32px;height:556px;border-top:1px solid #eee}.createChallengeDialog__sidebar{width:206px;height:100%;background-color:#fcfcfc;border-right:1px solid #ebebeb}.createChallengeDialog__sidebar .sidebar{width:206px}.createChallengeDialog__content .contentMiddle{width:474px;padding:32px}.createChallengeDialog__content .contentRight{width:340px;padding-top:32px}.createChallengeDialog__content .unsplashContent{border-left:1px solid #ebebeb}.timeInputContainer{margin-bottom:14px}.timeInput{height:60px}.challengeTimePicker{width:116px}.challengeDetailsFormContainer .ant-form-item{margin-bottom:14px}.earnPointsContainer .ant-checkbox-group{width:100%}.earnPointsContainer .ant-form-item{margin-bottom:0}.earnPointsContainer .ant-row{display:inline-block !important}.earnPointsContainer .ant-checkbox{color:#151112}.earnPointsContainer .ant-checkbox-wrapper{color:#151112}.earnPointRow{height:32px !important}.challengeDuration{width:112px;height:60px}.challengeTime{width:116px;height:60px}.challengeStarts{width:164px;height:60px;margin-bottom:0 !important}.challengeRadioButton{position:absolute;top:6px;left:6px}.challengeRules_body{overflow:scroll}.thresholdTheme{height:78px;width:130px;border-radius:3px}.thresholdLimit{margin-top:-8px;margin-bottom:0 !important;display:inline-block !important}.thresholdLimit .ant-form-item-control-wrapper{display:inline-block !important}.thresholdLimit .ant-form-item-control{display:inline-block !important;height:24px}.ant-row .thresholdLimit{display:inline-block !important}.m24b{margin-bottom:24px}.grayscaleBlackText{color:#151112 !important}.challengeListComponent{width:230px;height:52px}.challengeListComponent__imgWrapper{width:70px;height:50px;background-color:#fcfcfc}.challengeListComponent__thumbnail{width:100%;height:100%;object-fit:cover}.challengeDisabled{cursor:default;opacity:.5}.challengeListComponentImage{width:81px;height:51px}.align-self-centered{align-self:center}.challengeSidebarFooter{position:absolute;bottom:0;width:100%;background-color:#fff}.challengeSidebarFooter a{padding-left:0 !important;color:#229ed4;width:auto}.challengeSidebarFooter p{color:#151112}.challengeSidebarInfo{display:flex;flex-direction:column;justify-content:space-around;width:120px;padding-left:6px}.challengeSidebarInfo .selectedChallengeTitle{color:#229ed4 !important}.challengeSidebarInfo__title{color:#151112 !important;text-overflow:ellipsis;overflow:hidden;display:-webkit-box !important;-webkit-line-clamp:2;-webkit-box-orient:vertical;white-space:normal;word-break:break-word}.ParticipantList{min-width:263px;border-left:solid 1px #eee}.ParticipantList__toolbar{width:100%;min-height:40px;display:flex;justify-content:flex-start;align-items:center;box-sizing:border-box;padding:0 15px 0 5px}.ParticipantList__toolbar .dropdownButton{height:24px}.rulesAndSettings .reactBaseGridWrap{min-height:400px}.participantBase{min-height:43px;width:100%;display:flex;background-color:#f8f8f8;align-items:center;margin-bottom:4px}.addToChallengeDialog__dropdownSelect{width:100%;color:#6e6e6e}.addToChallengeDialog__dropdownSelect .ant-select,.addToChallengeDialog__dropdownSelect .ant-select-selection__rendered{display:flex;align-items:center}.addToChallengeResponseDialog__messageWrapper .titleWrapper{flex:1}.addToChallengeResponseDialog__messageWrapper:not(:last-child){margin-bottom:16px}.addChallengeParticipantsByTagDialog .headerDescription{margin-top:-12px;margin-bottom:14px}.classFiltersSearch{width:224px;margin-top:10px;margin-left:-8px}.classFiltersSearch input{height:22px;border-radius:50px}.classFiltersChips{display:flex;width:100%;flex-flow:row-reverse;align-items:center;margin-top:10px;gap:8px}.classFiltersChips .ant-tag{margin:0;max-width:6rem;overflow-x:hidden;text-overflow:ellipsis;position:relative}.classFiltersChips .ant-tag .anticon{position:absolute;right:4px;top:5px}.classFiltersChipCloseIcon{padding-right:20px}.classFiltersDateRangePicker{display:flex;justify-content:space-between;gap:10px;margin:7px 0 7px -10px}.classFilterDrawerTitle{display:flex;justify-content:space-between}.classTile__body{border-radius:12px;justify-content:center;padding:16px !important}.classTile__title__withoutImage{width:124px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;max-height:32px;min-height:32px;-webkit-line-clamp:2;-webkit-box-orient:vertical;font-weight:700 !important;font-size:14px !important;line-height:16px !important}.classTile__title__withImage{width:143px;font-style:normal;font-weight:700 !important;font-size:17px !important;line-height:22px !important;align-items:center;color:#fff !important;text-shadow:0px 1px 2px rgba(0,0,0,.25);overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.classTile__level__withoutImage{line-height:14px !important}.classTile__level__withImage{color:#4db4ea !important;line-height:14px !important;font-weight:700 !important;font-size:12px !important;text-transform:uppercase}.classTile__time__withImage{text-shadow:0px 1px 2px rgba(0,0,0,.25);line-height:17px !important;font-weight:400 !important;font-size:12px !important}.classTile__instructor__withImage{color:#fff !important;line-height:14px !important;font-weight:400 !important;font-size:12px !important;text-shadow:0px 1px 2px rgba(0,0,0,.25)}.classTile__bottomSection__withImage{display:flex;margin-top:auto}.classTile__carouselWrapper{position:relative}.classTile__carousel{padding:0 !important;display:flex !important;gap:16px;overflow-x:scroll !important;overflow:scroll;scrollbar-width:none;-ms-overflow-style:none}.classTile__carousel::-webkit-scrollbar{display:none}.classTile__carousel .arrowWrapper{z-index:999;cursor:pointer;opacity:.95;width:24px;height:170px;background-color:#eee;position:absolute}.classTile__carousel .arrowWrapper:nth-of-type(1){left:0}.classTile__carousel .arrowWrapper:nth-of-type(2){right:0}.classTile__carousel .arrowWrapper svg{margin:auto}.classTile__carousel .arrowWrapper.hidden{display:none}.classTile__carousel .arrowWrapper.visible{display:flex}.classTile__middleSection__withoutImage{display:grid;gap:4px}.classDialog__flex{display:flex;align-items:center;margin-bottom:12px}.classDialog__section{display:flex;align-items:center;justify-content:space-between;margin-top:32px;border-bottom:1px solid #eee}.classDialog__messageArea{margin:32px 0 -25px 0}.classDialog__iconSize{height:24px;width:24px}.classDialog__restrictMessage{margin:32px 0 -15px 0;display:flex;flex-direction:row}.classDialog__label{font-style:normal !important;font-weight:400 !important;font-size:14px !important;line-height:18px !important}.classDialog__description{font-style:normal !important;font-weight:700 !important;line-height:18px !important;text-transform:uppercase !important}.classDialog__instructor{font-style:normal !important;font-weight:400 !important;font-size:14px !important;line-height:18px !important;text-align:right !important;color:#a3a3a3 !important}.classDialog__button{margin-bottom:8px !important;padding:6px 7.273px 6px 7.274px !important;min-width:auto !important}.classTocDialog__content{overflow-wrap:break-word}.membershipManagementPlan__title{font-style:normal !important;font-weight:400 !important}.membershipManagementPlan__planCardGroup{margin-top:24px;display:grid;grid-template-columns:repeat(3, 1fr);column-gap:16px;row-gap:24px}.membershipManagementPlan__planCard{padding:24px;border-width:1px;border-style:solid;border-radius:10px}.membershipManagementPlan__planCard__top{text-align:center;display:grid;gap:16px}.membershipManagementPlan__planCard__planName{text-transform:uppercase;font-weight:700 !important;line-height:20px !important}.membershipManagementPlan__planCard__money{display:flex;margin-left:auto;margin-right:auto}.membershipManagementPlan__planCard__moneyAmount{font-style:normal !important;font-weight:700 !important;font-size:28px !important;line-height:34px !important}.membershipManagementPlan__planCard__moneyPerPeriod{margin-left:4px !important;padding-bottom:6px !important;align-self:end;font-style:normal;text-transform:lowercase}.membershipManagementPlan__planCard__button{margin-top:16px;padding:6px 9px !important;width:225px;opacity:1 !important;height:30px !important;border-radius:4px !important;font-style:normal !important;font-weight:400 !important;font-size:14px !important;line-height:18px !important;text-transform:uppercase !important}.membershipManagementPlan__planCard__middle{margin-top:16px;display:grid;gap:12px;height:auto}.membershipManagementPlan__planCard__field{padding-left:8px;display:flex}.membershipManagementPlan__planCard__field__icon{min-width:10px !important;max-width:10px !important;height:8.08px !important;position:relative;top:3px}.membershipManagementPlan__planCard__field__text{margin-left:12px !important;max-width:195px;overflow-wrap:break-word;font-style:normal !important;font-weight:400 !important;font-size:12px !important;line-height:16px !important;color:#151112 !important}.membershipManagementPlan__planCard__field__text img{width:100% !important;height:auto !important}.membershipManagementPlan__planCard__show_more{margin-top:15px}.membershipPlan__promoCode__searchBox{border:0 !important;border-radius:3px}.membershipPlan__promoCode__searchBox input.ant-input{border:1px solid #229ed4}.membershipPlan__promoCode__searchBox button.ant-input-search-button{min-width:100px}.membershipPlan__promoCode .ant-input-group-addon{padding:0 !important}.membershipPlan__promoCode__button{height:32px !important;min-width:110px !important}.membershipPlan__promoCode__tagItem{height:25px;display:flex;align-items:center;color:#229ed4;border-color:#229ed4;background:#fff;border-radius:20px}.membershipPlan__promoCode__tagItem i.anticon-close,.membershipPlan__promoCode__tagItem i.anticon-close:hover{color:#fff;background:#229ed4;padding:3px;border-radius:50%}.checkoutPlan{max-width:436px;height:inherit;overflow-y:auto}.checkoutPlan .modal-body{padding:32px 25.96px 30px 24.06px;display:grid;gap:21px;font-style:normal !important}.checkoutPlan__title{font-weight:400 !important}.checkoutPlan__top{margin:auto -0.96px auto .96px;padding:16px;display:grid;gap:8px;text-align:left;border:1px solid #229ed4;border-radius:12px}.checkoutPlan__top__planName{font-weight:700 !important;font-size:20px !important;line-height:23px !important;text-transform:uppercase}.checkoutPlan__top__money{display:flex;gap:4px}.checkoutPlan__top__moneyAmount{font-weight:700 !important;font-size:35px !important;line-height:40px !important;text-transform:uppercase}.checkoutPlan__top__moneyPerPeriod{padding-bottom:6px !important;align-self:end;text-transform:lowercase;color:#a3a3a3 !important}.checkoutPlan__middle{display:grid;gap:40px}.checkoutPlan__middle__today__title{padding-bottom:8px !important;border-bottom:1px solid #eee}.checkoutPlan__middle__today__total{border-bottom:1px solid #eee;display:grid;gap:8px}.checkoutPlan__middle__today__totalTop{margin-top:12px;display:flex;justify-content:space-between}.checkoutPlan__middle__today__totalTop__dueValue{text-transform:lowercase}.checkoutPlan__middle__today__totalBottom{margin-bottom:12px;display:flex;justify-content:space-between}.checkoutPlan__middle__today__totalBreakdown{margin:auto 0 8px auto}.checkoutPlan__middle__today__breakdown__row{padding-top:12px;padding-bottom:8px;margin-left:32px;border-bottom:1px solid #eee;display:flex;justify-content:space-between}.checkoutPlan__middle__today__paymentMethod__label{display:flex;justify-content:space-between}.checkoutPlan__middle__today__paymentMethod__label__add{font-weight:400 !important;line-height:14px !important}.checkoutPlan__middle__today__paymentMethod__paymentWrapper .abcWalletContainer{display:inherit !important}.checkoutPlan__middle__today__paymentMethod__paymentWrapper .abcWalletContainer .ant-select-selection{width:386px}.checkoutPlan__middle__checkbox{display:flex;align-items:center}.checkoutPlan__middle .ant-checkbox-inner{width:12px;height:12px}.checkoutPlan__middle .ant-checkbox-inner:after{width:5px;height:8px;left:1.8px;top:4px}.checkoutPlan__payButton{margin-top:3px;margin-right:.99px;height:30px !important;border-radius:4px !important;font-style:normal !important;font-weight:400 !important;font-size:14px !important;line-height:18px !important;text-transform:uppercase !important;background:#229ed4 !important;color:#fff !important;border:1px solid #229ed4 !important}.changePlan{max-width:400px !important}.changePlan .modal-body{display:grid;gap:24px;font-style:normal !important}.changePlan__title{display:grid;gap:12px}.changePlan__title__text{font-weight:400 !important}.changePlan__buttonGroup{display:flex;gap:8px}.changePlan__buttonGroup__confirmButton{height:30px !important;border-radius:4px !important;font-style:normal !important;font-weight:400 !important;font-size:14px !important;line-height:18px !important;text-transform:uppercase !important;background:#229ed4 !important;color:#fff !important;border:1px solid #229ed4 !important;width:82px}.changePlan__buttonGroup__cancelButton{height:30px !important;border-radius:4px !important;font-style:normal !important;font-weight:400 !important;font-size:14px !important;line-height:18px !important;text-transform:uppercase !important;color:#6e6e6e !important;width:75px}.div_workoutplan_edit{min-width:400px}.div_workoutplan_edit #t_workoutplan_name{width:100%;margin-bottom:10px}.div_workoutplan_edit .gtOptionsBox{width:100%;padding:12px;box-sizing:border-box}.div_workoutplan_edit .gtFieldWeeks{width:55px;border:1px solid #ebebeb;-moz-appearance:textfield}.div_workoutplan_edit #div_workoutplan_timeframe{width:500px}.div_workoutplan_edit .timeframeField{margin:0 5px}.div_workoutplan_edit #t_workoutplan_duration{background-color:#fff;border:inherit}.div_workoutplan_edit .datePicker{width:150px}.div_workoutplan_edit #trainingPlan_endDate_text{font-size:14px}.div_workoutplan_edit .phaseDateRadio{width:fit-content;margin-right:10px}.div_workoutplan_edit .errorBorder.datePickerWrapper{border-radius:4px}.multipleActivitiesDialog .modal-content{overflow-x:hidden}.multipleActivitiesDialog .modal-body{height:100%;display:flex;flex-direction:column}.multipleActivitiesDialog__date-container{margin:10px 25px}.multipleActivitiesDialog__date-container .date-select{margin-right:20px}.multipleActivitiesDialog__date-picker-container{position:relative;display:flex;align-items:center;margin-top:3px}.multipleActivitiesDialog__date-picker-container .datePicker__field .additionalDateText{position:absolute;top:0;left:90px;width:100%;line-height:32px;font-size:14px;color:#a3a3a3}.multipleActivitiesDialog__date-picker-container .datePicker{margin-right:20px}.multipleActivitiesDialog__date-picker-container .datePicker__calendar{z-index:101}.multipleActivitiesDialog__date-picker-container .datePicker__backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:100}.multipleActivitiesDialog__date-picker-container .activityAddCalendar{position:absolute;top:100%;left:0;background-color:#fff;box-shadow:rgba(0,0,0,.15) 0px 2px 8px;z-index:5}.multipleActivitiesDialog__date-picker-container .activityAddCalendar .calendarHeader{height:30px;padding:0 16px;display:flex;justify-content:space-between;align-items:center}.multipleActivitiesDialog__date-picker-container .activityAddCalendar .ant-fullcalendar-header{display:none}.multipleActivitiesDialog__date-picker-container .activityAddCalendar .ant-fullcalendar td{padding:0}.multipleActivitiesDialog__date-picker-container .ant-calendar-picker-clear{display:none}.multipleActivitiesDialog .activities-container{flex:1}.multipleActivitiesDialog .activities-container .ant-tabs-tab-active{background-color:#d0f0ff}.multipleActivitiesDialog .activities-container .ant-tabs-tab{width:200px;padding:12px 24px !important;margin:0 !important;border-bottom:1px solid #eaeaea}.multipleActivitiesDialog .activities-container .sidebar-checkbox-container{display:flex}.multipleActivitiesDialog .activities-container .sidebar-checkbox-container .sidebar-checkbox-content{display:flex;align-items:center}.multipleActivitiesDialog .activities-container .sidebar-checkbox-container .sidebar-checkbox-content svg{margin:0px 8px}.multipleActivitiesDialog .activities-container .activity-tab-content-container{margin:20px 20px 20px 0}.multipleActivitiesDialog_workoutFlow_wod{display:flex;flex-direction:row;justify-content:space-between;margin-left:10px;margin-top:10px}.multipleActivitiesDialog_workoutFlow_program{width:100%;display:flex;flex-direction:row;justify-content:space-between;margin-top:10px;align-items:center}.multipleActivitiesDialog .dropdown-active{background-color:#fff !important;color:#06a9f6 !important}.activity-photos,.activity-body-stats,.activity-fms,.activity-automessage{margin:40px 0}.activity-photos-image-container,.activity-body-stats-image-container,.activity-fms-image-container,.activity-automessage-image-container{margin-bottom:30px}.activity-photos-image-container .activity-image,.activity-body-stats-image-container .activity-image,.activity-fms-image-container .activity-image,.activity-automessage-image-container .activity-image{width:300px}.activity-sleep .time-picker-container{margin-bottom:10px}.activity-sleep .time-picker-container .time-picker{margin:0 10px}.activity-sleep .duration-select{width:65px;margin-left:10px;margin-right:2px}.topMenu{background-color:#fff;height:60px;box-sizing:border-box;position:fixed;top:0px;left:0;width:100%;z-index:900;padding-left:203px}.topMenu-item{padding:0 20px;font-size:13px;height:52px}.topMenu-addNewBtn{color:#ff9801}.topMenu-dropdownMenu-item{min-height:44px}.topMenu-dropdownMenu-item-icon{margin-right:6px;width:20px;height:20px;background-image:url("https://file.trainerize.com/assets/topMenu/icons/menus/icons.svg");background-size:40px;background-repeat:no-repeat}.topMenu-dropdownMenu-item .clientIcon{background-position:0px -138px}.topMenu-dropdownMenu-item .trainerIcon{background-position:0px -119px}.topMenu-dropdownMenu-item .messageIcon{background-position:0px -158px}.topMenu-dropdownMenu-item .eventIcon{background-position:0px -177px}.topMenu-dropdownMenu-item .saleIcon{background-position:0px -280px}.topMenu-dropdownMenu-item .iosIcon{background-position:0px -216px}.topMenu-dropdownMenu-item .androidIcon{background-position:0px -196px}.topMenu-dropdownMenu-item .signOutIcon{background-position:0px -235px}.topMenu-dropdownMenu-item:hover .clientIcon{background-position:-20px -138px}.topMenu-dropdownMenu-item:hover .trainerIcon{background-position:-20px -119px}.topMenu-dropdownMenu-item:hover .messageIcon{background-position:-20px -158px}.topMenu-dropdownMenu-item:hover .eventIcon{background-position:-20px -177px}.topMenu-dropdownMenu-item:hover .saleIcon{background-position:-20px -280px}.topMenu-dropdownMenu-item:hover .iosIcon{background-position:-20px -216px}.topMenu-dropdownMenu-item:hover .androidIcon{background-position:-20px -196px}.topMenu-dropdownMenu-item:hover .signOutIcon{background-position:-20px -235px}.topMenu-dropdownMenu-item:hover .classIcon{background-image:url("https://file.trainerize.com/assets/topMenu/icons/menus/icon-class-hover.png") !important}.topMenu-dropdownMenu-subMenu{height:44px}.topMenu-dropdownMenu-subMenu .appointmentIcon{background-image:url("https://file.trainerize.com/assets/topMenu/icons/menus/icon-appointment.png") !important;background-size:20px !important}.topMenu-dropdownMenu-subMenu .classIcon{background-image:url("https://file.trainerize.com/assets/topMenu/icons/menus/icon-class.png") !important;background-size:20px !important}.topMenu-dropdownMenu-subMenu:hover{background-color:#f8f8f8 !important}.topMenu-dropdownMenu-subMenu:hover .appointmentIcon{background-image:url("https://file.trainerize.com/assets/topMenu/icons/menus/icon-appointment-hover.png") !important}.topMenu-dropdownMenu-subMenu:hover .classIcon{background-image:url("https://file.trainerize.com/assets/topMenu/icons/menus/icon-class-hover.png") !important}.topMenu-dropdownMenu-subMenu:hover div p{color:#229ed4 !important}.topMenu-dropdownMenu-subMenu:hover{color:#229ed4 !important}.topMenu-profile{min-width:212px}.topMenu-profile .userName{max-width:138px}.topMenu-profile-dropdownMenuContainer{width:100%;border:1px solid #e6e6e6;padding:6px 12px;border-radius:6px}.topMenu-profile-profileImage{margin-right:12px}.topMenu-profile-profileIcon{margin-right:6px;border:1px solid #a3a3a3 !important}.topMenu-notificationCenter{color:#000;margin-left:0;cursor:pointer}.topMenu-notificationCenter-item{width:300px;min-height:300px;height:auto !important;overflow:auto}.topMenu-notificationCenter-viewControlButton{padding:0;font-size:14px;color:#229ed4 !important;text-transform:none;cursor:pointer !important}.topMenu-notificationCenter-viewControlButton:hover{padding:0;font-size:14px;color:#229ed4 !important;background-color:#eee !important;text-transform:none;cursor:pointer !important}.topMenu-notificationCenter-list-scrollContainer{overflow-x:hidden !important;max-height:600px}.topMenu-notificationCenter-list-item{cursor:pointer;padding:10px 4px 10px 0}.topMenu-notificationCenter-list-item:hover{background-color:#f3f3f3;width:100%}.topMenu-notificationCenter-list-item-header,.topMenu-notificationCenter-list-item-message,.topMenu-notificationCenter-list-item-timestamp{display:inline-block;white-space:normal;vertical-align:sub;font-size:12px;margin-left:10px;max-width:250px;line-height:normal;word-wrap:break-word}.topMenu-notificationCenter-list-item-header{font-weight:bold}.topMenu-notificationCenter-list-item-timestamp{color:#a3a3a3;font-size:11px}.topMenu-helpCenter{cursor:pointer}.topMenu-nullScreen{pointer-events:none !important}.topMenu-CTABanners{margin-right:auto}.topMenu-CTABanners .cbaBannerButton{background-color:#ebebeb}.menuItemContainer{height:100%;width:100%}.noHover,.noHover:hover{background-color:unset !important;color:unset !important;cursor:default !important}@media only screen and (max-width: 1279px){.topMenu{padding-left:80px}}.text-center{text-align:center}.loginForm .ant-form-item-control{line-height:inherit}.splashBox{display:flex;align-items:center;flex-direction:column;width:300px;padding:0 24px;border-radius:10px;transition:all 200ms ease-in-out 0s;position:relative;overflow:hidden;box-shadow:rgba(255,255,255,.1254901961) -1px -1px 1px;border:1px solid rgba(255,255,255,.1254901961)}.splashBox__background{position:absolute;height:100%;width:100%;box-shadow:rgba(0,0,0,.7) 0px 0px 6px;z-index:0;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);filter:brightness(0.6) saturate(0.5);background-color:rgba(21,17,18,.7019607843)}.splashBox__inner{display:flex;flex-direction:column;align-items:center;z-index:2;width:100%;padding-top:24px}.forgotPasswordForm{width:100vw;height:100vh}.forgotPasswordForm .wrapper{width:324px;display:flex;align-items:center;flex-direction:column;padding:0 24px;border-radius:10px;transition:all 200ms ease-in-out 0s;position:relative;overflow:hidden;box-shadow:rgba(255,255,255,.1254901961) -1px -1px 1px;border:1px solid rgba(255,255,255,.1254901961)}.forgotPasswordForm .wrapper__background{position:absolute;height:100%;width:100%;box-shadow:rgba(0,0,0,.7) 0px 0px 6px;z-index:0;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);filter:brightness(0.6) saturate(0.5);background-color:rgba(21,17,18,.7019607843)}.forgotPasswordForm .wrapper__inner{display:flex;flex-direction:column;align-items:center;z-index:2;width:100%;padding-top:24px}.tosDialog__header{font-size:19px !important;line-height:120%;text-align:center}.tosDialog .modal-content{padding:16px}.notFoundPage{margin-top:140px}.notFoundPage .wrapper{border:1px solid #666;width:300px;border-radius:6px;background-color:#eee;color:#888}.notFoundPage .text{text-align:center;margin:0}.sessionEndPage{width:340px;display:flex;flex-direction:column;align-items:center;justify-content:center}.progressionBuilderDialog{height:100%;background-color:#151112}.progressionBuilderDialog .modal-header{padding:12px 32px}.progressionBuilderDialog h2{color:#fff}.progressionBuilderDialog .footer{background-color:#151112;color:#fff}.progressionBuilderDialog input.ant-input{padding:0 !important;height:100%}.convertMemberScroll{overflow-y:auto;height:calc(100vh - 60px)}.convertMemberScrollExpired{height:calc(100vh - 64px) !important}.zeroRecurringPayment .convertMember__checkout_payment__item{padding-left:8px !important}.convertMember .membershipManagementPlan__promoCode .membershipPlan__promoCode__searchBox{max-width:33.33%}.convertMember .membershipManagementPlan__planCardGroup{display:flex !important;flex-direction:column}.convertMember .membershipManagementPlan_selectedPlan_popup .membershipManagementPlan__planCard__content{scroll-behavior:smooth;height:300px;overflow:auto;scrollbar-width:thin}.convertMember .membershipManagementPlan_selectedPlan_popup .membershipManagementPlan__planCard__field{width:auto}.convertMember .membershipManagementPlan_selectedPlan_popup .membershipManagementPlan__planCard__planName{text-overflow:inherit;-webkit-line-clamp:inherit}.convertMember .membershipManagementPlan__planCard{padding:0px !important;border:none !important;border-radius:0px;padding:15px}.convertMember .membershipManagementPlan__planCard__column{padding:15px !important;height:calc(100% - 30px);border:1px solid #dbdbdb !important;border-radius:10px}.convertMember .membershipManagementPlan__planCard__column.current_plan{width:33.33%;height:auto;background-color:#f8f8f8;border:1px solid #229ed4 !important}.convertMember .membershipManagementPlan__planCard__top{text-align:left}.convertMember .membershipManagementPlan__planCard__planName{font-size:21px !important;line-height:33px !important;font-weight:normal !important;text-transform:none !important;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;display:-webkit-box;-webkit-box-orient:vertical;white-space:normal}.convertMember .membershipManagementPlan__planCard__money{display:flex;margin-left:inherit;margin-right:inherit}.convertMember .membershipManagementPlan__planCard__moneyAmount{font-size:31px !important;line-height:39px !important}.convertMember .membershipManagementPlan__planCard__moneyPerPeriod{color:#a3a3a3;font-size:13px !important}.convertMember .membershipManagementPlan__planCard__button{width:100%;height:40px !important;border-radius:20px !important}.convertMember .membershipManagementPlan__planCard__field{width:100%}.convertMember .membershipManagementPlan__planCard__field__text{max-width:100%;color:#6e6e6e !important}.convertMember__memberInformation .selected .membershipManagementPlan__planCard,.convertMember__checkout_payment .selected .membershipManagementPlan__planCard{border:1px solid #229ed4 !important;border-color:#229ed4 !important;padding:15px !important;border-radius:10px !important}.convertMember__memberInformation .membershipManagementPlan__planCard__button,.convertMember__checkout_payment .membershipManagementPlan__planCard__button{display:none !important}.convertMember__memberInformation__form__title,.convertMember__checkout_payment__form__title{font-weight:700 !important;margin-bottom:10px}.convertMember__memberInformation__form__nextButton,.convertMember__checkout_payment__form__nextButton{border-radius:20px !important;padding-left:2rem !important;padding-right:2rem !important}.convertMember__paymentConfirmation{text-align:center;margin:0 auto;width:85%}.convertMember__paymentConfirmation_success__icon{margin-bottom:2rem !important}.convertMember__paymentConfirmation__title{margin-bottom:2rem !important;color:#151112 !important;font-size:22px !important;font-weight:600 !important}.convertMember__paymentConfirmation__description{margin-bottom:2rem !important;font-size:17px !important}.convertMember__paymentConfirmation__button{padding-left:6rem !important;padding-right:6rem !important;border-radius:20px !important}.convertMember__checkout_payment__payButton>button{border-radius:20px !important}.convertMember__checkout_payment__termCheck>.ant-checkbox-checked::after{border:none !important}.convertMember .ant-form-item-label{line-height:normal !important}.prospectDaysLeftWidgetWrapper{display:flex;align-items:center;background-color:#fcfcfc;padding:16px;border-radius:12px;justify-content:space-between;margin-bottom:3rem;border:1px solid #229ed4}.prospectDaysLeftWidgetWrapper__text{font-size:24px !important;line-height:33px !important;font-weight:600 !important;color:#000 !important}.prospectDaysLeftWidgetWrapper__text span{color:#000;font-size:18px;line-height:25px}.prospectDaysLeftWidgetWrapper__button{border-radius:20px !important;width:350px;height:35px}.prospect__paid__booking__error{margin:32px 0 -15px 0;border:1px solid #ff5366;border-radius:12px;background-color:#fcfcfc}.prospect__paid__booking__error .caption__inner .caption{color:#151112;font-size:18px;line-height:25px}.prospect__paid__booking__error .description{color:#606366;font-size:13px;margin:20px 0}.prospect__paid__error__button{border-radius:20px !important}.referralConfigurationDialog_setup__inner{padding-top:35px}.referralsLandingPageDialog_setup__title{border-bottom:.5px solid #eaeaea;margin-top:10px}.referralsLandingPageDialog_setup__title span{font-size:16px;font-weight:400;line-height:20px}.referralsLandingPageDialog_setup__caption{padding-top:10px !important;font-size:12px !important;font-weight:400 !important;line-height:14px !important;padding-bottom:29px !important;color:#151112 !important}.referralsLandingPageDialog_setup__selectbox{background-color:#f8f8f8;height:53px;padding:10px;margin-top:10px;cursor:pointer}.referralsLandingPageDialog_setup .referralsLandingPageDialog_setup__selectbox.selected{border:1px solid #06a9f6}.referralsLandingPageDialog_setup .referralsLandingPageDialog_setup__selectbox.selected .title{color:#06a9f6}.referralsLandingPageDialog_setup .title{color:#303133;font-size:12px;gap:4px}.referralsLandingPageDialog_setup .tickmark{width:auto;height:12px;float:left;padding-top:9px;padding-left:5%;position:absolute;right:55px;font-size:x-large}.referralsLandingPage{width:100vw;height:100vh;position:relative;margin:0;padding:0;box-sizing:border-box;display:flex;flex-direction:column}.referralsLandingPage__content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:80%;height:50%;border-radius:20px;box-shadow:0 4px 14px 0 rgba(0,0,0,.1);background:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:20px}.referralsLandingPage__content p,.referralsLandingPage__content h1{width:50%;text-align:center}.referralsLandingPage__content h1{font-weight:800}.referralsLandingPage__content--profileImage{height:100px;width:100px;border-radius:100%;border:10px solid #dbdbdb}.referralsLandingPage__content--btn{min-width:300px !important;border-radius:50px !important}.referralsLandingPage__content--gridForm{display:grid;grid-column-gap:20px;grid-row-gap:20px;grid-template-columns:350px 350px;margin-block:30px}.referralsLandingPage__content--gridForm input{user-select:none;border:none;border-bottom:1px solid #eee;border-radius:0}.referralsLandingPage__content--gridForm input:focus,.referralsLandingPage__content--gridForm input:active,.referralsLandingPage__content--gridForm input:hover{box-shadow:none}.referralsLandingPage__content--bigIcon{height:100px !important;width:100px !important;border-radius:100%;border:20px solid #dcf7ff}.referralsLandingPage .top{flex:1;display:flex;justify-content:center}.referralsLandingPage .top .navGroupLogo-text--regular,.referralsLandingPage .top .navGroupLogo-image{scale:2;position:unset;background-size:contain;margin-top:50px;display:block}.referralsLandingPage .bottom{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:flex-end;gap:20px}.referralsLandingPage .bottom .section{display:flex;align-items:center;gap:20px;padding-bottom:50px}.referralsLandingPage .bottom .section__item{display:flex;align-items:center}.referralsLandingPage .bottom .section__item:last-of-type{gap:20px}.referralsLandingPage .bottom .section button{border:none;border-radius:100px;background-color:#f8f8f8;display:flex;align-items:center;justify-content:center;padding:0}@media screen and (max-width: 500px){.referralsLandingPage .top{height:200px;flex:unset}.referralsLandingPage .bottom{background-color:#f8f8f8;flex:1;align-items:flex-start;padding-left:10%}.referralsLandingPage .bottom .section{flex-direction:column;padding-bottom:20px;align-items:flex-start}.referralsLandingPage .bottom .section__item:last-of-type{width:100%;justify-content:center}.referralsLandingPage__content{top:18%;transform:translateX(-50%);height:fit-content;width:90%;box-shadow:none}.referralsLandingPage__content p,.referralsLandingPage__content h1{width:90%;text-align:center}.referralsLandingPage__content--profileImage{height:80px;width:80px;border-radius:100%;border:10px solid #dbdbdb;margin-top:50px}.referralsLandingPage__content--btn{min-width:90% !important;border-radius:50px !important;margin-bottom:50px}.referralsLandingPage__content--gridForm{grid-template-columns:100%}.referralsLandingPage__content--bigIcon{height:80px !important;width:80px !important;margin-top:50px}}.referralConfigurationDialog{padding:32px 0 !important;height:573px !important}.referralConfigurationDialog h2{padding-bottom:0 !important}.referralConfigurationDialog_setup{display:flex;justify-content:space-between;padding:57px 105px}.referralConfigurationDialog_setup__inner{display:flex;flex-direction:column;gap:20px}.referralConfigurationDialog_title{display:flex;align-items:center;justify-content:space-between;gap:20px;border-bottom:1px solid #eee;padding:0 32px 16px 32px}.referralConfigurationDialog_title--inner{display:flex;align-items:center;justify-content:space-between;gap:20px}.tabContent{display:flex;height:556px}.tabContent_sidebar{width:206px;background-color:#fcfcfc}.tabContent_sidebar__tab{padding:20px;border-bottom:1px solid #eee;border-left:5px solid rgba(0,0,0,0);background-color:#fff;cursor:pointer;transition:all .25s ease-in-out}.tabContent_sidebar__tab--active{background-color:#d0f0ff;border-left:5px solid #229ed4}.tabContent_middle{display:flex;flex-direction:column;justify-content:space-between;flex:1;border-left:1px solid #eee;border-right:1px solid #eee}.tabContent_middle__content{height:456px;padding:25px;overflow-y:auto}.tabContent_middle__content .input-validation{text-align:end;margin-top:4px}.tabContent_middle__content--title{font-size:16px !important;padding-bottom:4px !important;margin-bottom:12px !important;border-bottom:1px solid #eee}.tabContent_middle__content--caption{margin-bottom:12px !important}.tabContent_middle__content_subject_div{margin-bottom:12px}.tabContent_middle__content_subject{color:#797c80;line-height:16px;font-size:12px}.tabContent_middle__content__tooltip>.ant-tooltip-content>.ant-tooltip-arrow::before{background-color:#151112}.tabContent_middle__content__tooltip .ant-tooltip-inner{background-color:#151112}.tabContent_middle__content__tooltip .ant-tooltip-inner>.tooltip>p{color:#fff}.tabContent_middle__content__tooltip.collect_member__tooltip>.ant-tooltip-content{width:400px}.tabContent_middle__navigation{padding:25px;display:flex;align-items:center}.tabContent_middle__navigation__next_button{margin-left:10px}.tabContent_right{width:438px;display:flex;justify-content:center;padding-top:40px;overflow:hidden}.tabContent_right .mobileFrame{width:245px;height:526px;border-radius:32px;border:8px solid #dae0e6}.tabContent_right .mobileFrame .fakeFormImage{width:100%}.tabContent_right .mobileFrame_topbar{padding:15px 0 75px 0;border-top-left-radius:23px;border-top-right-radius:23px}.tabContent_right .mobileFrame_socialMedia{display:flex;align-items:center;justify-content:center;gap:20px}.tabContent_right .mobileFrame_card{display:flex;flex-direction:column;align-items:center;padding:25px;margin:-50px 15px 15px 15px;background:#fff;border-radius:15px;gap:30px}.tabContent_right .mobileFrame_card p{text-align:center}.tabContent_right .mobileFrame_card--button{border-radius:50px;width:100%}.tabContent_signupContent_menu_text_caption{white-space:initial}.shopConfigurationDialog{padding:32px 0 !important;height:573px !important}.shopConfigurationDialog h2{padding-bottom:0 !important}.shopConfigurationDialog_setup{padding-left:7rem;padding-right:7rem;padding-top:2rem}.shopConfigurationDialog_setup img{margin-left:5rem;margin-top:10px;height:400px}.shopConfigurationDialog_setup__inner{padding-top:1rem;gap:20px}.tabContent{display:flex;height:556px}.tabContent_sidebar{width:206px;background-color:#fcfcfc}.tabContent_sidebar__tab{padding:20px;border-bottom:1px solid #eee;border-left:5px solid rgba(0,0,0,0);background-color:#fff;cursor:pointer;transition:all .25s ease-in-out}.tabContent_sidebar__tab--active{background-color:#d0f0ff;border-left:5px solid #229ed4}.tabContent_middle{display:flex;flex-direction:column;justify-content:space-between;flex:1;border-left:1px solid #eee;border-right:1px solid #eee}.tabContent_middle__content{height:456px;padding:25px;overflow-y:auto}.tabContent_middle__content .input-validation{text-align:end;margin-top:4px}.tabContent_middle__content--title{font-size:16px !important;padding-bottom:4px !important;margin-bottom:12px !important;border-bottom:1px solid #eee}.tabContent_middle__content--caption{margin-bottom:12px !important}.tabContent_middle__content_subject_div{margin-bottom:12px}.tabContent_middle__content_subject{color:#797c80;line-height:16px;font-size:12px}.tabContent_middle__content__tooltip>.ant-tooltip-content>.ant-tooltip-arrow::before{background-color:#151112}.tabContent_middle__content__tooltip .ant-tooltip-inner{background-color:#151112}.tabContent_middle__content__tooltip .ant-tooltip-inner>.tooltip>p{color:#fff}.tabContent_middle__content__tooltip.collect_member__tooltip>.ant-tooltip-content{width:400px}.tabContent_middle__navigation{padding:25px;display:flex;align-items:center}.tabContent_middle__navigation__next_button{margin-left:10px}.tabContent_right{width:438px;display:flex;justify-content:center;padding-top:40px;overflow:hidden}.tabContent_right .mobileFrame{width:245px;height:526px;border-radius:32px;border:8px solid #dae0e6}.tabContent_right .mobileFrame .fakeFormImage{width:100%}.tabContent_right .mobileFrame_topbar{padding:15px 0 75px 0;border-top-left-radius:23px;border-top-right-radius:23px}.tabContent_right .mobileFrame_socialMedia{display:flex;align-items:center;justify-content:center;gap:20px}.tabContent_right .mobileFrame_card{display:flex;flex-direction:column;align-items:center;padding:25px;margin:-50px 15px 15px 15px;background:#fff;border-radius:15px;gap:30px}.tabContent_right .mobileFrame_card p{text-align:center}.tabContent_right .mobileFrame_card--button{border-radius:50px;width:100%}.customForm{width:100%;max-width:436px;margin:0 auto;height:auto}.customForm__dialog{max-height:100%;overflow-y:auto}.customForm__wrap{padding-bottom:16px}.customForm__wrap .ant-form-item-label{padding-bottom:16px}.customForm__wrap .ant-form-item-label::first-letter,.customForm__wrap .ant-form-item-label label::first-letter{text-transform:uppercase}.customForm__wrap .ant-radio-wrapper,.customForm__wrap .ant-checkbox-wrapper{padding:16px;border:1px solid #eee;border-radius:2px;margin-bottom:8px}.customForm__wrap .ant-radio-wrapper span:not(.ant-radio):not(.ant-radio-inner):not(.ant-checkbox):not(.ant-checkbox-inner),.customForm__wrap .ant-checkbox-wrapper span:not(.ant-radio):not(.ant-radio-inner):not(.ant-checkbox):not(.ant-checkbox-inner){color:#000;text-transform:capitalize;padding-right:8px;padding-left:8px}.customForm__wrap .ant-checkbox-wrapper+.ant-checkbox-wrapper{margin-left:0}.customForm__wrap .ant-checkbox-wrapper span+span{width:100%}.formResponse__answer{padding:8px 0;height:34px}.formResponse__question{width:300px;max-width:300px;overflow:hidden;padding-right:16px;box-sizing:border-box}.formResponse__rate{display:flex;flex-direction:row}.formResponse__rate .rate-circle{background-color:#229ed4;color:#fff}.rc-rate{margin:0;padding:0;list-style:none;font-size:18px;display:inline-block;vertical-align:middle;font-weight:normal;font-style:normal;outline:none}.rc-rate-rtl{direction:rtl}.rc-rate-disabled .rc-rate-star{cursor:default}.rc-rate-disabled .rc-rate-star:before,.rc-rate-disabled .rc-rate-star-content:before{cursor:default}.rc-rate-disabled .rc-rate-star:hover{transform:scale(1)}.rc-rate-star{margin:0;padding:0;display:inline-block;margin-right:8px;position:relative;transition:all .3s;color:#fff;cursor:pointer;line-height:1.5}.rc-rate-rtl .rc-rate-star{margin-right:0;margin-left:8px;float:right}.rc-rate-star-first,.rc-rate-star-second{transition:all .3s}.rc-rate-star-focused,.rc-rate-star:hover{transform:scale(1.1)}.rc-rate-star-first{position:absolute;left:0;top:0;width:50%;height:100%;overflow:hidden;opacity:0}.rc-rate-rtl .rc-rate-star-first{right:0;left:auto}.rc-rate-star-half .rc-rate-star-first,.rc-rate-star-half .rc-rate-star-second{opacity:1}.rc-rate-star-half .rc-rate-star-first,.rc-rate-star-full .rc-rate-star-second{color:#fff}.rc-rate-star-half .rc-rate-star-first .rate-circle,.rc-rate-star-full .rc-rate-star-second .rate-circle{background-color:#229ed4}.rc-rate-star-half:hover .rc-rate-star-first,.rc-rate-star-full:hover .rc-rate-star-second{color:tint(#f5a623, 30%)}.rate-circle{background:#cfcfcf;height:34px;width:34px;border-radius:50%;display:flex;align-items:center;justify-content:center}.rate-grid{display:flex;align-items:center;justify-content:space-evenly}.rate-grid.form-canvas__rate{justify-content:flex-start}@media(max-width: 767px){.customForm{max-width:100%}.rate-grid{display:grid;grid-template-columns:repeat(5, 1fr);grid-gap:8px;margin-top:8px}}.customForms_header{width:100%;display:flex;justify-content:space-between;align-items:center}.customForms_header_title_wrap{flex:1;margin-right:20px}.customForms_header_title_input{padding:20px 10px}.customForms_header_buttons_wrap{display:flex;justify-content:space-between;align-items:center}.customForms_header_preview_btn,.customForms_header_cancel_btn{margin-right:10px}.customForms .formBuilderSpace{display:flex}.customForms .formBuilderSpace .builderCanvas{flex:1;margin-right:20px;min-height:300px;background:#fff;gap:10px;display:flex;flex-direction:column}.customForms .formBuilderSpace .builderCanvas .dropContainer{display:flex;flex-direction:column;border:2px dashed #c2c7cc;color:#a3a3a3;padding:20px 10px;align-items:center;justify-content:center;margin-right:32px}.customForms .formBuilderSpace .builderCanvas .dropContainer__text{font-size:18px;color:#a3a3a3;margin-top:10px}.customForms .formBuilderSpace .builderCanvas .questionCard{background:#fff;position:relative;display:flex;justify-content:center;align-items:center;gap:10px}.customForms .formBuilderSpace .builderCanvas .questionCard.activeCard::before{content:"";position:absolute;left:0;top:0px;bottom:0px;width:6px;background-color:#229ed4;border-radius:6px 0px 0px 6px}.customForms .formBuilderSpace .builderCanvas .questionCard__content{border:1px solid #eee;border-radius:6px;padding:16px;display:flex;flex-direction:column;gap:12px;flex:1}.customForms .formBuilderSpace .builderCanvas .questionCard__footer{display:flex;justify-content:space-between;align-items:center;margin-top:12px}.customForms .formBuilderSpace .builderCanvas .questionCard__footer .buttonWrapper{display:flex;gap:8px;align-items:center}.customForms .formBuilderSpace .builderCanvas .questionCard__collapsed{display:flex;justify-content:space-between;align-items:center}.customForms .formBuilderSpace .builderCanvas .questionCard__collapsed__title{flex:1;word-break:break-word;overflow-wrap:break-word}.customForms .formBuilderSpace .builderCanvas .questionCard .questionCardItem{display:flex;flex-direction:column;gap:12px}.customForms .formBuilderSpace .builderCanvas .questionCard .questionCardItem__title{font-size:16px;font-weight:500;border:1px solid #eee;border-radius:4px;background-color:#fff}.customForms .formBuilderSpace .builderCanvas .questionCard .questionCardItem__textQuestion__textArea{resize:none;height:100px;padding:10px 12px;font-size:14px;border:1px solid #eee;border-radius:4px;background-color:#f8f8f8}.customForms .formBuilderSpace .questionTypePanel{width:200px;border:1px solid #eee;border-radius:5px;padding:10px;display:flex;flex-direction:column;row-gap:25px;height:fit-content}.customForms .formBuilderSpace .questionTypePanel__item{display:flex;align-items:center;cursor:pointer;padding:5px;border-radius:5px}.customForms .formBuilderSpace .questionTypePanel__item__icon{margin-right:5px}.customForms .formBuilderSpace .questionTypePanel__item__title{font-size:16px;color:#151112}.customForms .formBuilderPreview{border:1px solid #dbdbdb;padding:10px 20px;background-color:#fff}.customForms .formBuilderPreview .ant-collapse-item{padding:10px 0}.customForms .formBuilderPreview .ant-collapse-item:last-child{border-bottom:none}.customForms .formBuilderPreview__panelHeader{display:flex;justify-content:space-between;align-items:center}.customForms .formBuilderPreview__panelHeaderText{word-break:break-word;flex-basis:70%}.customForms .formBuilderPreview__panelHeaderIcon{display:flex;align-items:center;padding-right:30px;width:fit-content;gap:8px}.customForms .formBuilderPreview__panelHeaderIconText{margin-left:5px}.customForms .questionCardItem__selectiveQuestionBody{display:flex;flex-direction:column;gap:8px}.customForms .questionCardItem__selectiveQuestion{display:flex;align-items:center;gap:8px}.customForms .questionCardItem__selectiveQuestion .ant-radio-wrapper{margin-right:0}.customForms .formNullScreen{height:500px}.workoutBuilder{position:relative;width:100%;height:100%;background:#fff;outline:none}.workoutBuilder *{box-sizing:border-box}.workoutBuilder h1{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:20px;color:#797c80;font-weight:normal}.workoutBuilder h3{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:14px;color:#606366;font-weight:400;margin-bottom:0}.workoutBuilder h4{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:12px;color:#c2c7cc;font-weight:400;white-space:nowrap;margin-bottom:0}.workoutBuilder__content{height:calc(100% - 42px)}.workoutBuilder__container{width:700px}.workoutBuilder__description{padding:12px;border-right:1px solid #ebebeb;height:124px}.workoutBuilder__description TextArea{border:1px solid #fff}.workoutBuilder__description TextArea :focus{border-color:#40a9ff}.workoutBuilder__instructions.placeholder{font-size:13px;color:#d5d6d6}.workoutBuilder__instructions:-moz-placeholder{font-size:13px;color:#d5d6d6}.workoutBuilder__instructions::-moz-placeholder{font-size:13px;color:#d5d6d6}.workoutBuilder__instructions:-ms-input-placeholder{font-size:13px;color:#d5d6d6}.workoutBuilder__instructions::-webkit-input-placeholder{font-size:13px;color:#d5d6d6}.workoutBuilder__modal h4{font-family:"Mulish",Helvetica,Arial,sans-serif;font-size:12px;color:#c2c7cc;font-weight:400;white-space:nowrap;margin-bottom:0}.workoutBuilder__modal .ant-modal-footer{display:flex;justify-content:flex-start;flex-direction:row;align-items:center}.workoutBuilder .dupErrorP{width:590px;font-size:11px;padding-left:12px}.workoutBuilder .workoutHeader__name{margin-right:10px}.workoutBuilder .workoutHeader__saveGroup{margin:0 12px;display:flex !important}.workoutBuilder button.workoutHeader__save,.workoutBuilder button.workoutHeader__saveMore{border:1px solid #0285ca !important;background-color:#06a9f6}.workoutBuilder button.workoutHeader__save:hover,.workoutBuilder button.workoutHeader__saveMore:hover{background-color:#0285ca}.workoutBuilder button.workoutHeader__saveMore{border-left-color:#0285ca !important}.workoutBuilder .workoutHeader__close{margin-right:12px}.workoutBuilder .ant-input-number{font-size:13px;max-width:90px;width:100%}.workoutBuilder .ant-input,.workoutBuilder .ant-select-selection{font-size:13px}.workoutBuilder__tabs{position:absolute;z-index:1;left:700px;top:12px}.workoutBuilder__tabs .woTab{height:30px;padding:0 12px;background-color:#fff;width:115px;display:flex;align-items:center;justify-content:center;border-top-left-radius:10px;border-top-right-radius:10px;cursor:pointer}.workoutBuilder__tabs .woTab:hover:not(.woTab--active){filter:brightness(1.2)}.exerciseList{overflow-x:hidden;overflow-y:auto;border:1px solid #fff;padding-left:12px;padding-right:12px;padding-bottom:70px;min-height:0}.exerciseList-title{padding:12px;background-color:#fcfcfc}.exerciseList-toolbar{padding:12px}.exerciseList-toolbar .addRestClickableText{float:right}.exerciseList-header{padding:6px 0 6px 35px;border-top:1px solid #ebebeb;border-bottom:1px solid #ebebeb;color:#c2c7cc}.exerciseList-header__container{width:100%;padding:0 10px}.exerciseList-header__image{flex-shrink:0;width:70px}.exerciseList-header__name{width:183px;min-width:121px}.exerciseList-header__multiplier{width:25px}.exerciseList-header__sets{width:48px}.exerciseList-header__time{width:85px}.exerciseList-header__target{width:260px;padding-right:10px}.exerciseList-header__side{width:68px}.exerciseList-header__rest{width:85px;padding-left:5px}.exerciseList-header__target,.exerciseList-header__rest{display:flex;align-items:center}.exerciseList-header__target .icon,.exerciseList-header__rest .icon{margin-left:4px}.exerciseList-header__circuit{width:100%;height:40px;flex-shrink:0;border-bottom:1px solid #eee;padding:0 35px}.exerciseList-exercise__name{width:121px;min-width:121px;padding:0 8px;font-size:13px;color:#606366}.exerciseList-exercise__name--rest-max{width:121px;max-width:121px}.exerciseList-exercise__target{width:140px;padding-right:10px}.exerciseList-exercise__sets{width:48px}.exerciseList-exercise__side{width:68px;text-transform:capitalize;padding-left:4px !important}.exerciseList-anker{width:33px;flex-shrink:0}.exerciseList-restWidthSpacer__interval{width:250px}.exerciseList-restWidthSpacer__regular{width:325px}.exerciseList-targetTypeSelect .ant-select-selection__rendered{display:flex;flex-direction:row;align-items:center}.exerciseList-dragPreview{width:100%;height:100%;min-height:70px;background-color:#fff;border-radius:4px;border:1px dashed #229ed4}.exerciseList-dragPreview__img{background-image:url(/app/images/dropZone/dragOverIconOnly.png);background-position:center;background-repeat:no-repeat;background-size:cover;width:30px;height:30px}.exerciseList-dragPreview__text{margin-top:6px;text-align:center;color:#229ed4}.workoutExercise .vjs-loading-spinner{width:20px;height:20px;top:85%;left:75%}.workoutExercise{height:61px;background-color:#fff;border-bottom:1px solid #dfdfdf}.workoutExercise__checkbox{margin-right:8px}.workoutExercise__img{width:63px;height:36px;background-size:cover;background-position:center;position:relative;overflow:hidden}.workoutExercise__input{text-align:center;color:#a3a3a3}.workoutExercise__input-sets{width:60px}.workoutExercise__directions{width:100%;padding:0 10px;margin-left:1px}.workoutExercise__multiplierSymbol{color:#a3a3a3;font-size:13px;padding:0 12px}.workoutExercise__superset{padding-top:12px;border-bottom:1px solid #dfdfdf}.workoutExercise-hovered{border:1px solid orange}.workoutExercise .ant-select-selection-selected-value{text-overflow:unset}.workoutExercise ::-webkit-input-placeholder{font-size:13px;font-weight:200;color:#ccc}.vertical-center-modal{text-align:center;white-space:nowrap}.vertical-center-modal:before{content:"";display:inline-block;height:100%;vertical-align:middle;width:0}.vertical-center-modal .ant-modal{display:inline-block;vertical-align:middle;top:0;text-align:left}.purchaseServices{overflow-y:auto;height:calc(100vh - 60px)}.purchaseCard{height:calc(100% - 32px)}.purchaseCard__discount{color:#229ed4;border-color:#229ed4;background:#fff}.purchaseCard__buyButton{align-self:flex-start;margin-top:auto}.NutritionCenter{width:845px;max-width:100%;margin:auto}.NutritionCenter.MfpPage h1,.NutritionCenter.MfpPage h2,.NutritionCenter.MfpPage h3,.NutritionCenter.MfpPage h4,.NutritionCenter.MfpPage h5,.NutritionCenter.MfpPage h6,.NutritionCenter.MfpPage p,.NutritionCenter.MfpPage a{font-family:"Inter",sans-serif !important;font-weight:400 !important}.NutritionCenter.MfpPage .BoxTitle{font-size:20px !important;text-transform:capitalize !important}.NutritionCenter.MfpPage .TrackingBanner__title{font-size:17px !important;margin-bottom:4px}.NutritionCenter .TrackingBanner{margin-bottom:24px;padding:16px 20px;border-radius:12px;box-shadow:0 4px 12px 0 rgba(0,0,0,.08)}.NutritionCenter .TrackingBanner .TrackingBannerIconWrapper{display:flex;align-items:center;justify-content:center;width:44px;height:44px;margin-right:16px;border-radius:8px}.NutritionCenter .TrackingBanner .TrackingBannerIconWrapper--trackWithTZ{background-color:#ffcb10}.NutritionCenter .TrackingBanner .TrackingBannerIconWrapper--trackWithMFP{background-color:#06e}.NutritionCenter .TrackingBanner .TrackingBannerIconWrapper--trackWithFitbit{background-color:#00b0b9}.NutritionCenter .TrackingBanner__title{font-weight:800}.NutritionCenter .NutritionCenterRow{width:100%;box-sizing:border-box}@media(min-width: 1280px){.NutritionCenter .NutritionCenterRow{margin-bottom:16px}}.NutritionCenter .NutritionCenterRow__box{margin-bottom:20px;padding:16px 20px;border:1px solid #eee;border-radius:12px;box-sizing:border-box}@media(min-width: 1280px){.NutritionCenter .NutritionCenterRow__box{max-width:50%;width:414.5px;margin-bottom:0}.NutritionCenter .NutritionCenterRow__box:nth-child(1){margin-right:16px}}.NutritionCenter .NutritionCenterRow__box .BoxTitle{text-transform:uppercase;font-weight:700}.NutritionCenter .NutritionCenterRow__box.bigBox{width:100% !important;max-width:100% !important;margin-right:0 !important}.NutritionCenter .NutritionCenterRow__box.NutritionCenterTableBox .BoxTitle{padding:16px}.NutritionCenter .NutritionCenterRow__box.NutritionCenterTableBox .NutritionCenterTable .tableRow{display:flex;align-items:center;justify-content:space-between}.NutritionCenter .NutritionCenterRow__box.NutritionCenterTableBox .NutritionCenterTable .tableRow:first-child{padding:16px 20px;background-color:#f8f8f8}.NutritionCenter .NutritionCenterRow__box.NutritionCenterTableBox .NutritionCenterTable .tableRow:not(:first-child){padding:16px 0;margin:0 20px}.NutritionCenter .NutritionCenterRow__box.NutritionCenterTableBox .NutritionCenterTable .tableRow:not(:first-child):not(:last-child){border-bottom:1px solid #eee}.NutritionCenter .NutritionCenterRow__box.NutritionCenterTableBox .NutritionCenterTable .tableRow .tableCol:nth-child(1){max-width:66.66%;width:228px}.NutritionCenter .NutritionCenterRow__box.NutritionCenterTableBox .NutritionCenterTable .tableRow .tableCol:nth-child(1) .itemName{max-width:100%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}@supports(-webkit-box-orient: vertical){.NutritionCenter .NutritionCenterRow__box.NutritionCenterTableBox .NutritionCenterTable .tableRow .tableCol:nth-child(1) .itemName{position:relative;height:1.2em;line-height:1.2em;overflow:hidden;background-color:rgba(0,0,0,0);word-break:break-word;white-space:normal;text-overflow:unset;min-height:10px}.NutritionCenter .NutritionCenterRow__box.NutritionCenterTableBox .NutritionCenterTable .tableRow .tableCol:nth-child(1) .itemName:after{content:"";text-align:right;position:absolute;bottom:0;right:0;width:30%;height:1.2em;background:linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%)}@supports(-webkit-line-clamp: 1){.NutritionCenter .NutritionCenterRow__box.NutritionCenterTableBox .NutritionCenterTable .tableRow .tableCol:nth-child(1) .itemName{display:-webkit-box;-webkit-line-clamp:1;max-height:1.2em;height:auto;-webkit-box-orient:vertical}.NutritionCenter .NutritionCenterRow__box.NutritionCenterTableBox .NutritionCenterTable .tableRow .tableCol:nth-child(1) .itemName:after{display:none}}}.NutritionCenter .NutritionCenterRow__box.NutritionCenterTableBox .NutritionCenterTable .tableRow .tableCol:nth-child(2){max-width:16.66%;width:60px}.NutritionCenter .NutritionCenterRow__box.NutritionCenterTableBox .NutritionCenterTable .tableRow .tableCol:nth-child(3){max-width:16.66%;width:54px;text-align:right}.NutritionCenter .NutritionCenterRow__box.NutritionCenterTableBox .TopItemsNullScreen{min-height:254px;padding:16px}.NutritionCenter .NutritionCenterRow__box.NutritionCenterTableBox .OtherNutrientsNullScreen{min-height:196px;padding:16px}@media(min-width: 1280px){.NutritionCenter .NutritionCenterRow{display:flex;justify-content:space-between}}.NutritionCenter .Goal__nullScreen{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:196px;margin-top:24px}.NutritionCenter .Goal__nullScreen h5:nth-child(1){margin-bottom:6px}.NutritionCenter .Goal__nullScreen p:nth-child(2){margin-bottom:16px}.NutritionCenter .Goal__nullScreen .icon{margin:0 2px 1px 0}.NutritionCenter .Goal .GoalGraph{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;margin-top:24px}.NutritionCenter .Goal .GoalGraph__graph{position:relative;width:155px;height:155px}.NutritionCenter .Goal .GoalGraph__graph .GoalGraphCalories{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.NutritionCenter .Goal .GoalGraph__graph .GoalChart{max-height:100%;max-width:100%}.NutritionCenter .Goal .GoalGraph__legend{display:flex;flex-direction:column;justify-content:space-between;width:40%}.NutritionCenter .Goal .GoalGraph__legend .LegendMacroRow{text-transform:uppercase}.NutritionCenter .Goal .GoalGraph__legend .LegendMacroRow:not(:first-child){margin-top:12px}.NutritionCenter .Goal .GoalGraph__legend .LegendMacroRow .legend-label{margin-bottom:2px}.NutritionCenter .Goal .GoalGraph__legend .LegendMacroRow .legend-label:before{content:"";display:inline-block;width:8px;height:8px;margin-right:5px;margin-bottom:1px;background-color:#eee;border-radius:50%}.NutritionCenter .Goal .GoalGraph__legend .LegendMacroRow .legend-label--protein:before{background-color:#37a16c}.NutritionCenter .Goal .GoalGraph__legend .LegendMacroRow .legend-label--carbs:before{background-color:#64bbe1}.NutritionCenter .Goal .GoalGraph__legend .LegendMacroRow .legend-label--fat:before{background-color:#ffa450}.NutritionCenter .LoggedMeals__info{margin-top:20px;padding:16px;background-color:#f8f8f8;border-radius:8px}.NutritionCenter .LoggedMeals__info .LoggedMealsIconWrapper{display:flex;align-items:center;justify-content:center;width:52px;height:52px;margin-right:16px;box-sizing:border-box;background-color:#fff;border-radius:50%}.NutritionCenter .LoggedMeals__info .LoggedMealsIconWrapper .icon{width:15.5px !important;height:19px !important}.NutritionCenter .LoggedMeals__details .LoggedMealCol{width:33.33%}.NutritionCenter .LoggedMeals__details .LoggedMealCol--order1{order:1}.NutritionCenter .LoggedMeals__details .LoggedMealCol--order2{order:2}.NutritionCenter .LoggedMeals__details .LoggedMealCol--order3{order:3}.NutritionCenter .LoggedMeals__details .LoggedMealCol--order4{order:4}.NutritionCenter .LoggedMeals__details .LoggedMealCol--order5{order:5}.NutritionCenter .LoggedMeals__details--twoCols .LoggedMealCol{width:50%}.NutritionCenter .LoggedMeals .LoggedMealsNullScreen{min-height:100px}.NutritionCenter .MacroCompliance .MacroComplianceNullScreen{min-height:267px}.NutritionCenter .MacroCompliance .MacroComplianceLegend{display:flex;width:100%;padding-top:16px;padding-left:13px}.NutritionCenter .MacroCompliance .MacroComplianceLegend__item{display:flex;align-items:center}.NutritionCenter .MacroCompliance .MacroComplianceLegend__item .circle{width:8px;height:8px;margin-right:5px;border-radius:50%;background-color:#eee}.NutritionCenter .MacroCompliance .WeeklyAverage{width:100%;padding:16px 12px;background-color:#f8f8f8;border-radius:8px}.NutritionCenter .MacroCompliance .WeeklyAverage:not(:last-child){margin-right:8px}.NutritionCenter .MacroCompliance .WeeklyAverage__title{text-transform:uppercase;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.NutritionCenter .TopItems{min-height:354px;padding:0}.NutritionCenter .TopItems .TopItemsNullScreen{min-height:254px;padding:16px}.NutritionCenter .OtherNutrients .BoxTitle{padding-right:0 !important}.nutritionCenterTooltip.ant-tooltip{max-width:235px}.nutritionCenterTooltip h5{font-size:18px;font-style:normal;font-weight:400;line-height:22px;letter-spacing:0;text-align:left;color:#151112}.MfpWidgets{display:flex;justify-content:space-between;flex-wrap:wrap;box-sizing:border-box}.MfpWidgets__widget{width:100%;box-sizing:border-box}.MfpWidgets__widget:not(:last-child){margin-bottom:20px}.MfpWidgets__widget iframe{border:0}.aiWorkoutBuilderDialog .modal-header{background-color:#151112;height:50px;padding:0}.aiWorkoutBuilderDialog .modal-close{top:16px;right:16px}.aiWorkoutBuilderDialog .modal-body{height:100%;display:flex;flex-direction:column}.aiWorkoutBuilderDialog__wrapper{height:calc(100% - 50px)}.aiWorkoutBuilderDialog__content{padding-top:0 !important;overflow:hidden}.aiWorkoutBuilderDialog__header{background-color:#151112}.aiWorkoutBuilderDialog .title,.aiWorkoutBuilderDialog .description{padding-top:0 !important}.aiWorkoutBuilderDialog__wrapper,.aiWorkoutBuilderDialog__chatDisplay,.aiWorkoutBuilderDialog .chat-window{flex:1}.aiWorkoutBuilderDialog__chatDisplay{overflow-y:auto;border:1px solid #dbdbdb !important;border-radius:5px;border-bottom:none !important;border-bottom-right-radius:inherit;border-bottom-left-radius:inherit;position:relative}.aiWorkoutBuilderDialog .avatar{width:32px;height:32px;border-radius:50%}.aiWorkoutBuilderDialog .typing{display:inline-flex;align-items:center;background-color:#dbdbdb;border-radius:16px;padding:8px 12px}.aiWorkoutBuilderDialog .dot{width:6px;height:6px;background-color:#a3a3a3;border-radius:50%;animation:bounce 1.4s infinite ease-in-out both}.aiWorkoutBuilderDialog .dot:nth-child(1){animation-delay:-0.32s}.aiWorkoutBuilderDialog .dot:nth-child(2){animation-delay:-0.16s}.aiWorkoutBuilderDialog .dot:nth-child(3){animation-delay:0}@keyframes bounce{0%,80%,100%{transform:scale(0)}40%{transform:scale(1)}}.aiWorkoutBuilderDialog .chat-row .user{padding-left:40px}.aiWorkoutBuilderDialog .chat-row .assistant{padding-right:40px}.aiWorkoutBuilderDialog .assistant-icon-wrapper{background-color:#ff9801}.aiWorkoutBuilderDialog .chat-row .color-red{color:#ff5366}.aiWorkoutBuilderDialog__chatInputWrapper{border:1px solid #dbdbdb !important;border-radius:5px;border-top-right-radius:inherit;border-top-left-radius:inherit;padding-top:12px;padding-bottom:12px}.aiWorkoutBuilderDialog .chatInput{border:none;white-space:pre-wrap;word-break:break-word;overflow-wrap:break-word;resize:none}.aiWorkoutBuilderDialog .chatInput:hover{border:none}.aiWorkoutBuilderDialog .chatInput:focus{border:none;box-shadow:none}.aiWorkoutBuilderDialog .chatInput::placeholder{color:#a3a3a3}.aiWorkoutBuilderDialog__previewTileCard .content{margin-bottom:10px}.aiWorkoutBuilderDialog__previewTileCard .image{width:130px;height:74px;object-fit:cover}.aiWorkoutBuilderDialog__previewTileCard .description{max-width:100%;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}.aiWorkoutBuilderDialog__previewTileCard .feedback button{min-width:unset !important}.aiWorkoutBuilderDialog__previewTileCard .bg-gray-black{background-color:#151112}.aiWorkoutBuilderDialog__previewTileCard__feedbackTooltip .ant-tooltip-content{border-radius:2px}.aiWorkoutBuilderDialog__previewTileCard__feedbackTooltip .ant-tooltip-inner{background-color:#6e6e6e;color:#fff;border:none}.aiWorkoutBuilderDialog__previewTileCard__feedbackTooltip .ant-tooltip-arrow::before{background-color:#6e6e6e;border:none !important}.aiWorkoutBuilderDialog__promptHelper{position:sticky;bottom:0px;right:0px}.aiWorkoutBuilderDialog__tooltip .ant-tooltip-content{border-radius:2px}.aiWorkoutBuilderDialog__tooltip .ant-tooltip-inner{background-color:#6e6e6e;color:#fff;border:none}.aiWorkoutBuilderDialog__tooltip .ant-tooltip-arrow::before{background-color:#6e6e6e;border:none !important}.aiWorkoutBuilderDialog .exerciseDescriptions-description h4{color:#151112}.feedbackDialog h2{white-space:nowrap;padding-bottom:32px !important}.feedbackDialog__radioGroup{margin-bottom:24px}.feedbackDialog .ant-radio-wrapper{display:flex;white-space:normal !important;margin-bottom:16px}.AddonCancellationForm__title{font-style:normal !important;font-weight:400 !important;font-size:16px !important;line-height:20px !important}@media(min-width: 992px){.AddonCancellationForm__checkListRow:not(:first-child){margin-top:20px}}.AddonCancellationForm .ant-checkbox-wrapper{display:inline-flex}.AddonCancellationForm .ant-checkbox-wrapper .ant-checkbox+span{font-style:normal;font-weight:400;font-size:12px;line-height:14px;color:#151112}.MealTrackerPermissionSelect{background:rgba(0,0,0,0);color:#229ed4}.MealTrackerPermissionSelect .ant-select-selection{background:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}.MealTrackerPermissionSelect .ant-select-arrow{color:#229ed4}.MealTrackerPermissionSelect .ant-select-selection__rendered{margin-left:0}.MealTrackerPermissionSelect .ant-select-selection-selected-value{font-size:12px}.clientTypesTable.withBasicMember .ant-select-arrow{margin-top:-5px;font-size:10px}.clientTypesTable.withBasicMember .ant-select-selection__rendered{max-width:140px;margin-right:7px}.clientTypesTable.withBasicMember .ant-select-selection-selected-value{padding-right:12px;font-size:12px}.clientTypesTable tr.ant-table-row .textWithIcon{display:flex;align-items:center}.clientTypesTable tr.ant-table-row td:not(:first-child) .textWithIcon{justify-content:center}.productCancellationDialog .ant-checkbox-wrapper>span:nth-child(2){line-height:1}.liteApp{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%}.liteApp .links-wrapper{display:flex;align-items:center;justify-content:center;gap:100px;width:100%;margin-top:75px}.liteApp .link-wrapper{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;color:#fff}.liteApp .link-wrapper svg path:last-of-type{fill:#fff}.liteApp .link-wrapper img{cursor:pointer}.findLibraryDialog-card-container{display:grid;grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));grid-gap:20px;justify-content:center}.program-description-wrap{overflow:auto;width:auto !important}.program-description-wrap_tagItem{height:25px;margin:5px 5px 5px 0;font-size:14px;padding:2px 12px;border-radius:10px;border:none;background-color:#f8f8f8;color:#a3a3a3}.library-card{min-width:260px;max-width:300px;width:100%}.library-card--container{border-radius:5px;filter:drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.15))}.library-card .ant-card-body{padding:15px}.library-card--coverContainer{position:relative;border-radius:5px;overflow:hidden;height:200px}.library-card--coverContainer:after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.65))}.library-card--coverContainer-image{min-width:260px;max-width:300px;height:100%;object-fit:cover}.library-card--coverContainer-title{position:absolute;bottom:0;left:0;font-size:18px;padding:20px;color:#fdd13c;font-weight:bold;z-index:10}.library-card--tag{margin-top:10px;text-overflow:ellipsis;overflow:hidden;display:-webkit-box !important;-webkit-line-clamp:2;-webkit-box-orient:vertical;white-space:normal}.library-card--tag-item{height:25px;margin:5px;font-size:14px;padding:2px 12px;border-radius:10px;border:none;background-color:#f8f8f8;color:#a3a3a3}.library-card-description{-webkit-box-orient:vertical !important;text-overflow:ellipsis;overflow:hidden;display:-webkit-box;-webkit-line-clamp:5;max-height:82px}.program-filter{margin-bottom:30px;display:flex;align-items:center}.program-filter--title{margin-right:20px !important}.program-filter--select-category{width:200px}.program-filter--select-tag{display:flex;align-items:center;gap:10px;margin-left:20px}.program-filter--select-tag-item{border-radius:20px !important}.errorPage{position:fixed;top:0;left:0;width:100%;height:100%;padding:0;margin:0;background:#fff url("https://file.trainerize.com/assets/app/screens/errorPage/ABC-background.png") no-repeat center;background-size:761px auto;z-index:1000;display:flex;flex-direction:column;justify-content:center;align-items:center}.errorPage__icon{height:auto;margin-bottom:4px}.errorPage__textContainer{max-width:580px;display:flex;flex-direction:column;align-items:center}.errorPage__title{font-size:36px !important;font-weight:700 !important;line-height:46px !important;color:#000 !important;margin-bottom:4px !important;max-width:500px}.errorPage__description{font-size:21px !important;font-weight:400 !important;line-height:34px !important;color:#000 !important}.errorPage__link{font-weight:700 !important;line-height:26px !important;text-align:center !important;text-decoration-line:underline !important;text-decoration-style:solid !important;text-underline-position:from-font !important;text-decoration-skip-ink:none !important}.errorPage__internalServerErrorDescription{line-height:26px !important}
