:root{
  --toastify-color-light:#fff;
  --toastify-color-dark:#121212;
  --toastify-color-info:#3498db;
  --toastify-color-success:#07bc0c;
  --toastify-color-warning:#f1c40f;
  --toastify-color-error:#e74c3c;
  --toastify-color-transparent:hsla(0,0%,100%,.7);
  --toastify-icon-color-info:var(--toastify-color-info);
  --toastify-icon-color-success:var(--toastify-color-success);
  --toastify-icon-color-warning:var(--toastify-color-warning);
  --toastify-icon-color-error:var(--toastify-color-error);
  --toastify-toast-width:320px;
  --toastify-toast-background:#fff;
  --toastify-toast-min-height:64px;
  --toastify-toast-max-height:800px;
  --toastify-font-family:sans-serif;
  --toastify-z-index:9999;
  --toastify-text-color-light:#757575;
  --toastify-text-color-dark:#fff;
  --toastify-text-color-info:#fff;
  --toastify-text-color-success:#fff;
  --toastify-text-color-warning:#fff;
  --toastify-text-color-error:#fff;
  --toastify-spinner-color:#616161;
  --toastify-spinner-color-empty-area:#e0e0e0;
  --toastify-color-progress-light:linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);
  --toastify-color-progress-dark:#bb86fc;
  --toastify-color-progress-info:var(--toastify-color-info);
  --toastify-color-progress-success:var(--toastify-color-success);
  --toastify-color-progress-warning:var(--toastify-color-warning);
  --toastify-color-progress-error:var(--toastify-color-error)
}

.Toastify__toast-container{
  z-index:9999;
  z-index:var(--toastify-z-index);
  -webkit-transform:translateZ(9999);
  -webkit-transform:translateZ(var(--toastify-z-index));
  position:fixed;
  padding:4px;
  width:320px;
  width:var(--toastify-toast-width);
  box-sizing:border-box;
  color:#fff
}

.Toastify__toast-container--top-left{
  top:1em;
  left:1em
}

.Toastify__toast-container--top-center{
  top:1em;
  left:50%;
  -webkit-transform:translateX(-50%);
          transform:translateX(-50%)
}

.Toastify__toast-container--top-right{
  top:1em;
  right:1em
}

.Toastify__toast-container--bottom-left{
  bottom:1em;
  left:1em
}

.Toastify__toast-container--bottom-center{
  bottom:1em;
  left:50%;
  -webkit-transform:translateX(-50%);
          transform:translateX(-50%)
}

.Toastify__toast-container--bottom-right{
  bottom:1em;
  right:1em
}

@media only screen and (max-width:480px){
  .Toastify__toast-container{
    width:100vw;
    padding:0;
    left:0;
    margin:0
  }

  .Toastify__toast-container--top-center,.Toastify__toast-container--top-left,.Toastify__toast-container--top-right{
    top:0;
    -webkit-transform:translateX(0);
            transform:translateX(0)
  }

  .Toastify__toast-container--bottom-center,.Toastify__toast-container--bottom-left,.Toastify__toast-container--bottom-right{
    bottom:0;
    -webkit-transform:translateX(0);
            transform:translateX(0)
  }

  .Toastify__toast-container--rtl{
    right:0;
    left:auto
  }
}

.Toastify__toast{
  position:relative;
  min-height:64px;
  min-height:var(--toastify-toast-min-height);
  box-sizing:border-box;
  margin-bottom:1rem;
  padding:8px;
  border-radius:4px;
  box-shadow:0 1px 10px 0 rgba(0,0,0,.1),0 2px 15px 0 rgba(0,0,0,.05);
  display:flex;
  justify-content:space-between;
  max-height:800px;
  max-height:var(--toastify-toast-max-height);
  overflow:hidden;
  font-family:sans-serif;
  font-family:var(--toastify-font-family);
  cursor:pointer;
  direction:ltr
}

.Toastify__toast--rtl{
  direction:rtl
}

.Toastify__toast-body{
  margin:auto 0;
  flex:1 1 auto;
  padding:6px;
  display:flex;
  align-items:center
}

.Toastify__toast-icon{
  -webkit-margin-end:10px;
  margin-inline-end:10px;
  width:20px;
  flex-shrink:0;
  display:flex
}

.Toastify--animate{
  -webkit-animation-fill-mode:both;
          animation-fill-mode:both;
  -webkit-animation-duration:.7s;
          animation-duration:.7s
}

.Toastify--animate-icon{
  -webkit-animation-fill-mode:both;
          animation-fill-mode:both;
  -webkit-animation-duration:.3s;
          animation-duration:.3s
}

@media only screen and (max-width:480px){
  .Toastify__toast{
    margin-bottom:0;
    border-radius:0
  }
}

.Toastify__toast-theme--dark{
  background:#121212;
  background:var(--toastify-color-dark);
  color:#fff;
  color:var(--toastify-text-color-dark)
}

.Toastify__toast-theme--colored.Toastify__toast--default,.Toastify__toast-theme--light{
  background:#fff;
  background:var(--toastify-color-light);
  color:#757575;
  color:var(--toastify-text-color-light)
}

.Toastify__toast-theme--colored.Toastify__toast--info{
  color:#fff;
  color:var(--toastify-text-color-info);
  background:#3498db;
  background:var(--toastify-color-info)
}

.Toastify__toast-theme--colored.Toastify__toast--success{
  color:#fff;
  color:var(--toastify-text-color-success);
  background:#07bc0c;
  background:var(--toastify-color-success)
}

.Toastify__toast-theme--colored.Toastify__toast--warning{
  color:#fff;
  color:var(--toastify-text-color-warning);
  background:#f1c40f;
  background:var(--toastify-color-warning)
}

.Toastify__toast-theme--colored.Toastify__toast--error{
  color:#fff;
  color:var(--toastify-text-color-error);
  background:#e74c3c;
  background:var(--toastify-color-error)
}

.Toastify__progress-bar-theme--light{
  background:-webkit-linear-gradient(left,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);
  background:linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);
  background:var(--toastify-color-progress-light)
}

.Toastify__progress-bar-theme--dark{
  background:#bb86fc;
  background:var(--toastify-color-progress-dark)
}

.Toastify__progress-bar--info{
  background:#3498db;
  background:var(--toastify-color-progress-info)
}

.Toastify__progress-bar--success{
  background:#07bc0c;
  background:var(--toastify-color-progress-success)
}

.Toastify__progress-bar--warning{
  background:#f1c40f;
  background:var(--toastify-color-progress-warning)
}

.Toastify__progress-bar--error{
  background:#e74c3c;
  background:var(--toastify-color-progress-error)
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning{
  background:hsla(0,0%,100%,.7);
  background:var(--toastify-color-transparent)
}

.Toastify__close-button{
  color:#fff;
  background:transparent;
  outline:none;
  border:none;
  padding:0;
  cursor:pointer;
  opacity:.7;
  -webkit-transition:.3s ease;
  transition:.3s ease;
  align-self:flex-start
}

.Toastify__close-button--light{
  color:#000;
  opacity:.3
}

.Toastify__close-button>svg{
  fill:currentColor;
  height:16px;
  width:14px
}

.Toastify__close-button:focus,.Toastify__close-button:hover{
  opacity:1
}

@-webkit-keyframes Toastify__trackProgress{
  0%{
    -webkit-transform:scaleX(1);
            transform:scaleX(1)
  }

  to{
    -webkit-transform:scaleX(0);
            transform:scaleX(0)
  }
}

@keyframes Toastify__trackProgress{
  0%{
    -webkit-transform:scaleX(1);
            transform:scaleX(1)
  }

  to{
    -webkit-transform:scaleX(0);
            transform:scaleX(0)
  }
}

.Toastify__progress-bar{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:5px;
  z-index:9999;
  z-index:var(--toastify-z-index);
  opacity:.7;
  -webkit-transform-origin:left;
          transform-origin:left
}

.Toastify__progress-bar--animated{
  -webkit-animation:Toastify__trackProgress linear 1 forwards;
          animation:Toastify__trackProgress linear 1 forwards
}

.Toastify__progress-bar--controlled{
  -webkit-transition:-webkit-transform .2s;
  transition:-webkit-transform .2s;
  transition:transform .2s;
  transition:transform .2s, -webkit-transform .2s
}

.Toastify__progress-bar--rtl{
  right:0;
  left:auto;
  -webkit-transform-origin:right;
          transform-origin:right
}

.Toastify__spinner{
  width:20px;
  height:20px;
  box-sizing:border-box;
  border:2px solid;
  border-radius:100%;
  border-color:#e0e0e0;
  border-color:var(--toastify-spinner-color-empty-area);
  border-right-color:#616161;
  border-right-color:var(--toastify-spinner-color);
  -webkit-animation:Toastify__spin .65s linear infinite;
          animation:Toastify__spin .65s linear infinite
}

@-webkit-keyframes Toastify__bounceInRight{
  0%,60%,75%,90%,to{
    -webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);
            animation-timing-function:cubic-bezier(.215,.61,.355,1)
  }

  0%{
    opacity:0;
    -webkit-transform:translate3d(3000px,0,0);
            transform:translate3d(3000px,0,0)
  }

  60%{
    opacity:1;
    -webkit-transform:translate3d(-25px,0,0);
            transform:translate3d(-25px,0,0)
  }

  75%{
    -webkit-transform:translate3d(10px,0,0);
            transform:translate3d(10px,0,0)
  }

  90%{
    -webkit-transform:translate3d(-5px,0,0);
            transform:translate3d(-5px,0,0)
  }

  to{
    -webkit-transform:none;
            transform:none
  }
}

@keyframes Toastify__bounceInRight{
  0%,60%,75%,90%,to{
    -webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);
            animation-timing-function:cubic-bezier(.215,.61,.355,1)
  }

  0%{
    opacity:0;
    -webkit-transform:translate3d(3000px,0,0);
            transform:translate3d(3000px,0,0)
  }

  60%{
    opacity:1;
    -webkit-transform:translate3d(-25px,0,0);
            transform:translate3d(-25px,0,0)
  }

  75%{
    -webkit-transform:translate3d(10px,0,0);
            transform:translate3d(10px,0,0)
  }

  90%{
    -webkit-transform:translate3d(-5px,0,0);
            transform:translate3d(-5px,0,0)
  }

  to{
    -webkit-transform:none;
            transform:none
  }
}

@-webkit-keyframes Toastify__bounceOutRight{
  20%{
    opacity:1;
    -webkit-transform:translate3d(-20px,0,0);
            transform:translate3d(-20px,0,0)
  }

  to{
    opacity:0;
    -webkit-transform:translate3d(2000px,0,0);
            transform:translate3d(2000px,0,0)
  }
}

@keyframes Toastify__bounceOutRight{
  20%{
    opacity:1;
    -webkit-transform:translate3d(-20px,0,0);
            transform:translate3d(-20px,0,0)
  }

  to{
    opacity:0;
    -webkit-transform:translate3d(2000px,0,0);
            transform:translate3d(2000px,0,0)
  }
}

@-webkit-keyframes Toastify__bounceInLeft{
  0%,60%,75%,90%,to{
    -webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);
            animation-timing-function:cubic-bezier(.215,.61,.355,1)
  }

  0%{
    opacity:0;
    -webkit-transform:translate3d(-3000px,0,0);
            transform:translate3d(-3000px,0,0)
  }

  60%{
    opacity:1;
    -webkit-transform:translate3d(25px,0,0);
            transform:translate3d(25px,0,0)
  }

  75%{
    -webkit-transform:translate3d(-10px,0,0);
            transform:translate3d(-10px,0,0)
  }

  90%{
    -webkit-transform:translate3d(5px,0,0);
            transform:translate3d(5px,0,0)
  }

  to{
    -webkit-transform:none;
            transform:none
  }
}

@keyframes Toastify__bounceInLeft{
  0%,60%,75%,90%,to{
    -webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);
            animation-timing-function:cubic-bezier(.215,.61,.355,1)
  }

  0%{
    opacity:0;
    -webkit-transform:translate3d(-3000px,0,0);
            transform:translate3d(-3000px,0,0)
  }

  60%{
    opacity:1;
    -webkit-transform:translate3d(25px,0,0);
            transform:translate3d(25px,0,0)
  }

  75%{
    -webkit-transform:translate3d(-10px,0,0);
            transform:translate3d(-10px,0,0)
  }

  90%{
    -webkit-transform:translate3d(5px,0,0);
            transform:translate3d(5px,0,0)
  }

  to{
    -webkit-transform:none;
            transform:none
  }
}

@-webkit-keyframes Toastify__bounceOutLeft{
  20%{
    opacity:1;
    -webkit-transform:translate3d(20px,0,0);
            transform:translate3d(20px,0,0)
  }

  to{
    opacity:0;
    -webkit-transform:translate3d(-2000px,0,0);
            transform:translate3d(-2000px,0,0)
  }
}

@keyframes Toastify__bounceOutLeft{
  20%{
    opacity:1;
    -webkit-transform:translate3d(20px,0,0);
            transform:translate3d(20px,0,0)
  }

  to{
    opacity:0;
    -webkit-transform:translate3d(-2000px,0,0);
            transform:translate3d(-2000px,0,0)
  }
}

@-webkit-keyframes Toastify__bounceInUp{
  0%,60%,75%,90%,to{
    -webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);
            animation-timing-function:cubic-bezier(.215,.61,.355,1)
  }

  0%{
    opacity:0;
    -webkit-transform:translate3d(0,3000px,0);
            transform:translate3d(0,3000px,0)
  }

  60%{
    opacity:1;
    -webkit-transform:translate3d(0,-20px,0);
            transform:translate3d(0,-20px,0)
  }

  75%{
    -webkit-transform:translate3d(0,10px,0);
            transform:translate3d(0,10px,0)
  }

  90%{
    -webkit-transform:translate3d(0,-5px,0);
            transform:translate3d(0,-5px,0)
  }

  to{
    -webkit-transform:translateZ(0);
            transform:translateZ(0)
  }
}

@keyframes Toastify__bounceInUp{
  0%,60%,75%,90%,to{
    -webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);
            animation-timing-function:cubic-bezier(.215,.61,.355,1)
  }

  0%{
    opacity:0;
    -webkit-transform:translate3d(0,3000px,0);
            transform:translate3d(0,3000px,0)
  }

  60%{
    opacity:1;
    -webkit-transform:translate3d(0,-20px,0);
            transform:translate3d(0,-20px,0)
  }

  75%{
    -webkit-transform:translate3d(0,10px,0);
            transform:translate3d(0,10px,0)
  }

  90%{
    -webkit-transform:translate3d(0,-5px,0);
            transform:translate3d(0,-5px,0)
  }

  to{
    -webkit-transform:translateZ(0);
            transform:translateZ(0)
  }
}

@-webkit-keyframes Toastify__bounceOutUp{
  20%{
    -webkit-transform:translate3d(0,-10px,0);
            transform:translate3d(0,-10px,0)
  }

  40%,45%{
    opacity:1;
    -webkit-transform:translate3d(0,20px,0);
            transform:translate3d(0,20px,0)
  }

  to{
    opacity:0;
    -webkit-transform:translate3d(0,-2000px,0);
            transform:translate3d(0,-2000px,0)
  }
}

@keyframes Toastify__bounceOutUp{
  20%{
    -webkit-transform:translate3d(0,-10px,0);
            transform:translate3d(0,-10px,0)
  }

  40%,45%{
    opacity:1;
    -webkit-transform:translate3d(0,20px,0);
            transform:translate3d(0,20px,0)
  }

  to{
    opacity:0;
    -webkit-transform:translate3d(0,-2000px,0);
            transform:translate3d(0,-2000px,0)
  }
}

@-webkit-keyframes Toastify__bounceInDown{
  0%,60%,75%,90%,to{
    -webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);
            animation-timing-function:cubic-bezier(.215,.61,.355,1)
  }

  0%{
    opacity:0;
    -webkit-transform:translate3d(0,-3000px,0);
            transform:translate3d(0,-3000px,0)
  }

  60%{
    opacity:1;
    -webkit-transform:translate3d(0,25px,0);
            transform:translate3d(0,25px,0)
  }

  75%{
    -webkit-transform:translate3d(0,-10px,0);
            transform:translate3d(0,-10px,0)
  }

  90%{
    -webkit-transform:translate3d(0,5px,0);
            transform:translate3d(0,5px,0)
  }

  to{
    -webkit-transform:none;
            transform:none
  }
}

@keyframes Toastify__bounceInDown{
  0%,60%,75%,90%,to{
    -webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);
            animation-timing-function:cubic-bezier(.215,.61,.355,1)
  }

  0%{
    opacity:0;
    -webkit-transform:translate3d(0,-3000px,0);
            transform:translate3d(0,-3000px,0)
  }

  60%{
    opacity:1;
    -webkit-transform:translate3d(0,25px,0);
            transform:translate3d(0,25px,0)
  }

  75%{
    -webkit-transform:translate3d(0,-10px,0);
            transform:translate3d(0,-10px,0)
  }

  90%{
    -webkit-transform:translate3d(0,5px,0);
            transform:translate3d(0,5px,0)
  }

  to{
    -webkit-transform:none;
            transform:none
  }
}

@-webkit-keyframes Toastify__bounceOutDown{
  20%{
    -webkit-transform:translate3d(0,10px,0);
            transform:translate3d(0,10px,0)
  }

  40%,45%{
    opacity:1;
    -webkit-transform:translate3d(0,-20px,0);
            transform:translate3d(0,-20px,0)
  }

  to{
    opacity:0;
    -webkit-transform:translate3d(0,2000px,0);
            transform:translate3d(0,2000px,0)
  }
}

@keyframes Toastify__bounceOutDown{
  20%{
    -webkit-transform:translate3d(0,10px,0);
            transform:translate3d(0,10px,0)
  }

  40%,45%{
    opacity:1;
    -webkit-transform:translate3d(0,-20px,0);
            transform:translate3d(0,-20px,0)
  }

  to{
    opacity:0;
    -webkit-transform:translate3d(0,2000px,0);
            transform:translate3d(0,2000px,0)
  }
}

.Toastify__bounce-enter--bottom-left,.Toastify__bounce-enter--top-left{
  -webkit-animation-name:Toastify__bounceInLeft;
          animation-name:Toastify__bounceInLeft
}

.Toastify__bounce-enter--bottom-right,.Toastify__bounce-enter--top-right{
  -webkit-animation-name:Toastify__bounceInRight;
          animation-name:Toastify__bounceInRight
}

.Toastify__bounce-enter--top-center{
  -webkit-animation-name:Toastify__bounceInDown;
          animation-name:Toastify__bounceInDown
}

.Toastify__bounce-enter--bottom-center{
  -webkit-animation-name:Toastify__bounceInUp;
          animation-name:Toastify__bounceInUp
}

.Toastify__bounce-exit--bottom-left,.Toastify__bounce-exit--top-left{
  -webkit-animation-name:Toastify__bounceOutLeft;
          animation-name:Toastify__bounceOutLeft
}

.Toastify__bounce-exit--bottom-right,.Toastify__bounce-exit--top-right{
  -webkit-animation-name:Toastify__bounceOutRight;
          animation-name:Toastify__bounceOutRight
}

.Toastify__bounce-exit--top-center{
  -webkit-animation-name:Toastify__bounceOutUp;
          animation-name:Toastify__bounceOutUp
}

.Toastify__bounce-exit--bottom-center{
  -webkit-animation-name:Toastify__bounceOutDown;
          animation-name:Toastify__bounceOutDown
}

@-webkit-keyframes Toastify__zoomIn{
  0%{
    opacity:0;
    -webkit-transform:scale3d(.3,.3,.3);
            transform:scale3d(.3,.3,.3)
  }

  50%{
    opacity:1
  }
}

@keyframes Toastify__zoomIn{
  0%{
    opacity:0;
    -webkit-transform:scale3d(.3,.3,.3);
            transform:scale3d(.3,.3,.3)
  }

  50%{
    opacity:1
  }
}

@-webkit-keyframes Toastify__zoomOut{
  0%{
    opacity:1
  }

  50%{
    opacity:0;
    -webkit-transform:scale3d(.3,.3,.3);
            transform:scale3d(.3,.3,.3)
  }

  to{
    opacity:0
  }
}

@keyframes Toastify__zoomOut{
  0%{
    opacity:1
  }

  50%{
    opacity:0;
    -webkit-transform:scale3d(.3,.3,.3);
            transform:scale3d(.3,.3,.3)
  }

  to{
    opacity:0
  }
}

.Toastify__zoom-enter{
  -webkit-animation-name:Toastify__zoomIn;
          animation-name:Toastify__zoomIn
}

.Toastify__zoom-exit{
  -webkit-animation-name:Toastify__zoomOut;
          animation-name:Toastify__zoomOut
}

@-webkit-keyframes Toastify__flipIn{
  0%{
    -webkit-transform:perspective(400px) rotateX(90deg);
            transform:perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function:ease-in;
            animation-timing-function:ease-in;
    opacity:0
  }

  40%{
    -webkit-transform:perspective(400px) rotateX(-20deg);
            transform:perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function:ease-in;
            animation-timing-function:ease-in
  }

  60%{
    -webkit-transform:perspective(400px) rotateX(10deg);
            transform:perspective(400px) rotateX(10deg);
    opacity:1
  }

  80%{
    -webkit-transform:perspective(400px) rotateX(-5deg);
            transform:perspective(400px) rotateX(-5deg)
  }

  to{
    -webkit-transform:perspective(400px);
            transform:perspective(400px)
  }
}

@keyframes Toastify__flipIn{
  0%{
    -webkit-transform:perspective(400px) rotateX(90deg);
            transform:perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function:ease-in;
            animation-timing-function:ease-in;
    opacity:0
  }

  40%{
    -webkit-transform:perspective(400px) rotateX(-20deg);
            transform:perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function:ease-in;
            animation-timing-function:ease-in
  }

  60%{
    -webkit-transform:perspective(400px) rotateX(10deg);
            transform:perspective(400px) rotateX(10deg);
    opacity:1
  }

  80%{
    -webkit-transform:perspective(400px) rotateX(-5deg);
            transform:perspective(400px) rotateX(-5deg)
  }

  to{
    -webkit-transform:perspective(400px);
            transform:perspective(400px)
  }
}

@-webkit-keyframes Toastify__flipOut{
  0%{
    -webkit-transform:perspective(400px);
            transform:perspective(400px)
  }

  30%{
    -webkit-transform:perspective(400px) rotateX(-20deg);
            transform:perspective(400px) rotateX(-20deg);
    opacity:1
  }

  to{
    -webkit-transform:perspective(400px) rotateX(90deg);
            transform:perspective(400px) rotateX(90deg);
    opacity:0
  }
}

@keyframes Toastify__flipOut{
  0%{
    -webkit-transform:perspective(400px);
            transform:perspective(400px)
  }

  30%{
    -webkit-transform:perspective(400px) rotateX(-20deg);
            transform:perspective(400px) rotateX(-20deg);
    opacity:1
  }

  to{
    -webkit-transform:perspective(400px) rotateX(90deg);
            transform:perspective(400px) rotateX(90deg);
    opacity:0
  }
}

.Toastify__flip-enter{
  -webkit-animation-name:Toastify__flipIn;
          animation-name:Toastify__flipIn
}

.Toastify__flip-exit{
  -webkit-animation-name:Toastify__flipOut;
          animation-name:Toastify__flipOut
}

@-webkit-keyframes Toastify__slideInRight{
  0%{
    -webkit-transform:translate3d(110%,0,0);
            transform:translate3d(110%,0,0);
    visibility:visible
  }

  to{
    -webkit-transform:translateZ(0);
            transform:translateZ(0)
  }
}

@keyframes Toastify__slideInRight{
  0%{
    -webkit-transform:translate3d(110%,0,0);
            transform:translate3d(110%,0,0);
    visibility:visible
  }

  to{
    -webkit-transform:translateZ(0);
            transform:translateZ(0)
  }
}

@-webkit-keyframes Toastify__slideInLeft{
  0%{
    -webkit-transform:translate3d(-110%,0,0);
            transform:translate3d(-110%,0,0);
    visibility:visible
  }

  to{
    -webkit-transform:translateZ(0);
            transform:translateZ(0)
  }
}

@keyframes Toastify__slideInLeft{
  0%{
    -webkit-transform:translate3d(-110%,0,0);
            transform:translate3d(-110%,0,0);
    visibility:visible
  }

  to{
    -webkit-transform:translateZ(0);
            transform:translateZ(0)
  }
}

@-webkit-keyframes Toastify__slideInUp{
  0%{
    -webkit-transform:translate3d(0,110%,0);
            transform:translate3d(0,110%,0);
    visibility:visible
  }

  to{
    -webkit-transform:translateZ(0);
            transform:translateZ(0)
  }
}

@keyframes Toastify__slideInUp{
  0%{
    -webkit-transform:translate3d(0,110%,0);
            transform:translate3d(0,110%,0);
    visibility:visible
  }

  to{
    -webkit-transform:translateZ(0);
            transform:translateZ(0)
  }
}

@-webkit-keyframes Toastify__slideInDown{
  0%{
    -webkit-transform:translate3d(0,-110%,0);
            transform:translate3d(0,-110%,0);
    visibility:visible
  }

  to{
    -webkit-transform:translateZ(0);
            transform:translateZ(0)
  }
}

@keyframes Toastify__slideInDown{
  0%{
    -webkit-transform:translate3d(0,-110%,0);
            transform:translate3d(0,-110%,0);
    visibility:visible
  }

  to{
    -webkit-transform:translateZ(0);
            transform:translateZ(0)
  }
}

@-webkit-keyframes Toastify__slideOutRight{
  0%{
    -webkit-transform:translateZ(0);
            transform:translateZ(0)
  }

  to{
    visibility:hidden;
    -webkit-transform:translate3d(110%,0,0);
            transform:translate3d(110%,0,0)
  }
}

@keyframes Toastify__slideOutRight{
  0%{
    -webkit-transform:translateZ(0);
            transform:translateZ(0)
  }

  to{
    visibility:hidden;
    -webkit-transform:translate3d(110%,0,0);
            transform:translate3d(110%,0,0)
  }
}

@-webkit-keyframes Toastify__slideOutLeft{
  0%{
    -webkit-transform:translateZ(0);
            transform:translateZ(0)
  }

  to{
    visibility:hidden;
    -webkit-transform:translate3d(-110%,0,0);
            transform:translate3d(-110%,0,0)
  }
}

@keyframes Toastify__slideOutLeft{
  0%{
    -webkit-transform:translateZ(0);
            transform:translateZ(0)
  }

  to{
    visibility:hidden;
    -webkit-transform:translate3d(-110%,0,0);
            transform:translate3d(-110%,0,0)
  }
}

@-webkit-keyframes Toastify__slideOutDown{
  0%{
    -webkit-transform:translateZ(0);
            transform:translateZ(0)
  }

  to{
    visibility:hidden;
    -webkit-transform:translate3d(0,500px,0);
            transform:translate3d(0,500px,0)
  }
}

@keyframes Toastify__slideOutDown{
  0%{
    -webkit-transform:translateZ(0);
            transform:translateZ(0)
  }

  to{
    visibility:hidden;
    -webkit-transform:translate3d(0,500px,0);
            transform:translate3d(0,500px,0)
  }
}

@-webkit-keyframes Toastify__slideOutUp{
  0%{
    -webkit-transform:translateZ(0);
            transform:translateZ(0)
  }

  to{
    visibility:hidden;
    -webkit-transform:translate3d(0,-500px,0);
            transform:translate3d(0,-500px,0)
  }
}

@keyframes Toastify__slideOutUp{
  0%{
    -webkit-transform:translateZ(0);
            transform:translateZ(0)
  }

  to{
    visibility:hidden;
    -webkit-transform:translate3d(0,-500px,0);
            transform:translate3d(0,-500px,0)
  }
}

.Toastify__slide-enter--bottom-left,.Toastify__slide-enter--top-left{
  -webkit-animation-name:Toastify__slideInLeft;
          animation-name:Toastify__slideInLeft
}

.Toastify__slide-enter--bottom-right,.Toastify__slide-enter--top-right{
  -webkit-animation-name:Toastify__slideInRight;
          animation-name:Toastify__slideInRight
}

.Toastify__slide-enter--top-center{
  -webkit-animation-name:Toastify__slideInDown;
          animation-name:Toastify__slideInDown
}

.Toastify__slide-enter--bottom-center{
  -webkit-animation-name:Toastify__slideInUp;
          animation-name:Toastify__slideInUp
}

.Toastify__slide-exit--bottom-left,.Toastify__slide-exit--top-left{
  -webkit-animation-name:Toastify__slideOutLeft;
          animation-name:Toastify__slideOutLeft
}

.Toastify__slide-exit--bottom-right,.Toastify__slide-exit--top-right{
  -webkit-animation-name:Toastify__slideOutRight;
          animation-name:Toastify__slideOutRight
}

.Toastify__slide-exit--top-center{
  -webkit-animation-name:Toastify__slideOutUp;
          animation-name:Toastify__slideOutUp
}

.Toastify__slide-exit--bottom-center{
  -webkit-animation-name:Toastify__slideOutDown;
          animation-name:Toastify__slideOutDown
}

@-webkit-keyframes Toastify__spin{
  0%{
    -webkit-transform:rotate(0deg);
            transform:rotate(0deg)
  }

  to{
    -webkit-transform:rotate(1turn);
            transform:rotate(1turn)
  }
}

@keyframes Toastify__spin{
  0%{
    -webkit-transform:rotate(0deg);
            transform:rotate(0deg)
  }

  to{
    -webkit-transform:rotate(1turn);
            transform:rotate(1turn)
  }
}

/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
::before,
::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

html {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button,
[role="button"] {
  cursor: pointer;
}

/**
 * Override legacy focus reset from Normalize with modern Firefox focus styles.
 *
 * This is actually an improvement over the new defaults in Firefox in our testing,
 * as it triggers the better focus styles even for links, which still use a dotted
 * outline in Firefox by default.
 */

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
video {
  max-width: 100%;
  height: auto;
}

/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */

[hidden] {
  display: none;
}

*, ::before, ::after{
  --tw-border-opacity:1;
  border-color:rgba(229, 231, 235, var(--tw-border-opacity))
}

.container{
  width:100%
}

@media (min-width: 640px){
  .container{
    max-width:640px
  }
}

@media (min-width: 768px){
  .container{
    max-width:768px
  }
}

@media (min-width: 1024px){
  .container{
    max-width:1024px
  }
}

@media (min-width: 1280px){
  .container{
    max-width:1280px
  }
}

@media (min-width: 1536px){
  .container{
    max-width:1536px
  }
}

.visible{
  visibility:visible !important
}

.static{
  position:static !important
}

.fixed{
  position:fixed !important
}

.absolute{
  position:absolute !important
}

.relative{
  position:relative !important
}

.sticky{
  position:-webkit-sticky !important;
  position:sticky !important
}

.top-0{
  top:0px !important
}

.left-0{
  left:0px !important
}

.isolate{
  isolation:isolate !important
}

.m-1{
  margin:0.25rem !important
}

.m-auto{
  margin:auto !important
}

.mx-auto{
  margin-left:auto !important;
  margin-right:auto !important
}

.my-2{
  margin-top:0.5rem !important;
  margin-bottom:0.5rem !important
}

.mt-4{
  margin-top:1rem !important
}

.mt-6{
  margin-top:1.5rem !important
}

.-mt-4{
  margin-top:-1rem !important
}

.mr-3{
  margin-right:0.75rem !important
}

.mb-0{
  margin-bottom:0px !important
}

.mb-2{
  margin-bottom:0.5rem !important
}

.mb-3{
  margin-bottom:0.75rem !important
}

.mb-4{
  margin-bottom:1rem !important
}

.mb-5{
  margin-bottom:1.25rem !important
}

.mb-6{
  margin-bottom:1.5rem !important
}

.mb-8{
  margin-bottom:2rem !important
}

.block{
  display:block !important
}

.inline-block{
  display:inline-block !important
}

.inline{
  display:inline !important
}

.flex{
  display:flex !important
}

.table{
  display:table !important
}

.grid{
  display:grid !important
}

.inline-grid{
  display:inline-grid !important
}

.contents{
  display:contents !important
}

.hidden{
  display:none !important
}

.h-8{
  height:2rem !important
}

.h-full{
  height:100% !important
}

.h-screen{
  height:100vh !important
}

.w-2\/3{
  width:66.666667% !important
}

.w-3\/5{
  width:60% !important
}

.w-full{
  width:100% !important
}

.w-screen{
  width:100vw !important
}

.max-w-sm{
  max-width:24rem !important
}

.max-w-3xl{
  max-width:48rem !important
}

.flex-shrink{
  flex-shrink:1 !important
}

.flex-grow-0{
  flex-grow:0 !important
}

.flex-grow{
  flex-grow:1 !important
}

.transform{
  --tw-translate-x:0 !important;
  --tw-translate-y:0 !important;
  --tw-rotate:0 !important;
  --tw-skew-x:0 !important;
  --tw-skew-y:0 !important;
  --tw-scale-x:1 !important;
  --tw-scale-y:1 !important;
  -webkit-transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
          transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important
}

@-webkit-keyframes spin{
  to{
    -webkit-transform:rotate(360deg);
            transform:rotate(360deg)
  }
}

@keyframes spin{
  to{
    -webkit-transform:rotate(360deg);
            transform:rotate(360deg)
  }
}

@-webkit-keyframes ping{
  75%, 100%{
    -webkit-transform:scale(2);
            transform:scale(2);
    opacity:0
  }
}

@keyframes ping{
  75%, 100%{
    -webkit-transform:scale(2);
            transform:scale(2);
    opacity:0
  }
}

@-webkit-keyframes pulse{
  50%{
    opacity:.5
  }
}

@keyframes pulse{
  50%{
    opacity:.5
  }
}

@-webkit-keyframes bounce{
  0%, 100%{
    -webkit-transform:translateY(-25%);
            transform:translateY(-25%);
    -webkit-animation-timing-function:cubic-bezier(0.8,0,1,1);
            animation-timing-function:cubic-bezier(0.8,0,1,1)
  }

  50%{
    -webkit-transform:none;
            transform:none;
    -webkit-animation-timing-function:cubic-bezier(0,0,0.2,1);
            animation-timing-function:cubic-bezier(0,0,0.2,1)
  }
}

@keyframes bounce{
  0%, 100%{
    -webkit-transform:translateY(-25%);
            transform:translateY(-25%);
    -webkit-animation-timing-function:cubic-bezier(0.8,0,1,1);
            animation-timing-function:cubic-bezier(0.8,0,1,1)
  }

  50%{
    -webkit-transform:none;
            transform:none;
    -webkit-animation-timing-function:cubic-bezier(0,0,0.2,1);
            animation-timing-function:cubic-bezier(0,0,0.2,1)
  }
}

.cursor-pointer{
  cursor:pointer !important
}

.resize{
  resize:both !important
}

.list-disc{
  list-style-type:disc !important
}

.flex-row{
  flex-direction:row !important
}

.flex-col{
  flex-direction:column !important
}

.items-start{
  align-items:flex-start !important
}

.items-center{
  align-items:center !important
}

.justify-start{
  justify-content:flex-start !important
}

.justify-center{
  justify-content:center !important
}

.space-x-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse:0 !important;
  margin-right:calc(0.25rem * var(--tw-space-x-reverse)) !important;
  margin-left:calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important
}

.space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse:0 !important;
  margin-right:calc(0.5rem * var(--tw-space-x-reverse)) !important;
  margin-left:calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important
}

.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:0 !important;
  margin-top:calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom:calc(0.5rem * var(--tw-space-y-reverse)) !important
}

.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:0 !important;
  margin-top:calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom:calc(1.5rem * var(--tw-space-y-reverse)) !important
}

.overflow-y-auto{
  overflow-y:auto !important
}

.overflow-x-hidden{
  overflow-x:hidden !important
}

.truncate{
  overflow:hidden !important;
  text-overflow:ellipsis !important;
  white-space:nowrap !important
}

.border{
  border-width:1px !important
}

.last\:border-0:last-child{
  border-width:0px !important
}

.border-b{
  border-bottom-width:1px !important
}

.bg-gradient-to-r{
  background-image:-webkit-linear-gradient(left, var(--tw-gradient-stops)) !important;
  background-image:linear-gradient(to right, var(--tw-gradient-stops)) !important
}

.p-6{
  padding:1.5rem !important
}

.p-8{
  padding:2rem !important
}

.py-3{
  padding-top:0.75rem !important;
  padding-bottom:0.75rem !important
}

.text-center{
  text-align:center !important
}

.text-base{
  font-size:1rem !important;
  line-height:1.5rem !important
}

.text-lg{
  font-size:1.125rem !important;
  line-height:1.75rem !important
}

.text-2xl{
  font-size:1.5rem !important;
  line-height:2rem !important
}

.text-3xl{
  font-size:1.875rem !important;
  line-height:2.25rem !important
}

.text-4xl{
  font-size:2.25rem !important;
  line-height:2.5rem !important
}

.font-normal{
  font-weight:400 !important
}

.font-medium{
  font-weight:500 !important
}

.font-bold{
  font-weight:700 !important
}

.font-extrabold{
  font-weight:800 !important
}

.uppercase{
  text-transform:uppercase !important
}

.lowercase{
  text-transform:lowercase !important
}

.capitalize{
  text-transform:capitalize !important
}

.ordinal{
  --tw-ordinal:var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-slashed-zero:var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-numeric-figure:var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-numeric-spacing:var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-numeric-fraction:var(--tw-empty,/*!*/ /*!*/) !important;
  -webkit-font-feature-settings:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important;
          font-feature-settings:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important;
  font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important
}

.ordinal{
  --tw-ordinal:ordinal !important
}

.leading-relaxed{
  line-height:1.625 !important
}

*, ::before, ::after{
  --tw-shadow:0 0 #0000
}

.shadow{
  --tw-shadow:0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  box-shadow:0 0 #0000, 0 0 #0000, var(--tw-shadow) !important;
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important
}

.shadow-none{
  --tw-shadow:0 0 #0000 !important;
  box-shadow:0 0 #0000, 0 0 #0000, var(--tw-shadow) !important;
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important
}

*, ::before, ::after{
  --tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width:0px;
  --tw-ring-offset-color:#fff;
  --tw-ring-color:rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow:0 0 #0000;
  --tw-ring-shadow:0 0 #0000
}

.ring{
  --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000 !important;
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important
}

.filter{
  --tw-blur:var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-brightness:var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-contrast:var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-grayscale:var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-hue-rotate:var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-invert:var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-saturate:var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-sepia:var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-drop-shadow:var(--tw-empty,/*!*/ /*!*/) !important;
  -webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
          filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important
}

.blur{
  --tw-blur:blur(8px) !important
}

.drop-shadow{
  --tw-drop-shadow:drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important
}

.transition{
  -webkit-transition-property:background-color, border-color, color, fill, stroke, opacity, box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter !important;
  transition-property:background-color, border-color, color, fill, stroke, opacity, box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter !important;
  transition-property:background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
  transition-property:background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-transform, -webkit-filter, -webkit-backdrop-filter !important;
  -webkit-transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1) !important;
          transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1) !important;
  -webkit-transition-duration:150ms !important;
          transition-duration:150ms !important
}

.ease-in{
  -webkit-transition-timing-function:cubic-bezier(0.4, 0, 1, 1) !important;
          transition-timing-function:cubic-bezier(0.4, 0, 1, 1) !important
}

.ease-out{
  -webkit-transition-timing-function:cubic-bezier(0, 0, 0.2, 1) !important;
          transition-timing-function:cubic-bezier(0, 0, 0.2, 1) !important
}

.ease-in-out{
  -webkit-transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1) !important;
          transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1) !important
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

.tippy-box[data-animation=scale-subtle][data-placement^=top]{
  -webkit-transform-origin:bottom;
          transform-origin:bottom
}

.tippy-box[data-animation=scale-subtle][data-placement^=bottom]{
  -webkit-transform-origin:top;
          transform-origin:top
}

.tippy-box[data-animation=scale-subtle][data-placement^=left]{
  -webkit-transform-origin:right;
          transform-origin:right
}

.tippy-box[data-animation=scale-subtle][data-placement^=right]{
  -webkit-transform-origin:left;
          transform-origin:left
}

.tippy-box[data-animation=scale-subtle][data-state=hidden]{
  -webkit-transform:scale(0.8);
          transform:scale(0.8);
  opacity:0
}

html{
  line-height:1.15;
  -webkit-text-size-adjust:100%
}

body{
  margin:0
}

main{
  display:block
}

h1{
  font-size:2em;
  margin:.67em 0
}

hr{
  box-sizing:content-box;
  height:0;
  overflow:visible
}

pre{
  font-family:monospace,monospace;
  font-size:1em
}

a{
  background-color:transparent
}

abbr[title]{
  border-bottom:none;
  text-decoration:underline;
  -webkit-text-decoration:underline dotted;
  text-decoration:underline dotted
}

b,strong{
  font-weight:bolder
}

code,kbd,samp{
  font-family:monospace,monospace;
  font-size:1em
}

small{
  font-size:80%
}

sub,sup{
  font-size:75%;
  line-height:0;
  position:relative;
  vertical-align:baseline
}

sub{
  bottom:-0.25em
}

sup{
  top:-0.5em
}

img{
  border-style:none
}

button,input,optgroup,select,textarea{
  font-family:inherit;
  font-size:100%;
  line-height:1.15;
  margin:0
}

button,input{
  overflow:visible
}

button,select{
  text-transform:none
}

[type=button],[type=reset],[type=submit],button{
  -webkit-appearance:button
}

[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{
  border-style:none;
  padding:0
}

[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{
  outline:1px dotted ButtonText
}

fieldset{
  padding:.35em .75em .625em
}

legend{
  box-sizing:border-box;
  color:inherit;
  display:table;
  max-width:100%;
  padding:0;
  white-space:normal
}

progress{
  vertical-align:baseline
}

textarea{
  overflow:auto
}

[type=checkbox],[type=radio]{
  box-sizing:border-box
}

[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{
  height:auto
}

[type=search]{
  -webkit-appearance:textfield;
  outline-offset:-2px
}

[type=search]::-webkit-search-decoration{
  -webkit-appearance:none
}

::-webkit-file-upload-button{
  -webkit-appearance:button;
  font:inherit
}

details{
  display:block
}

summary{
  display:list-item
}

[hidden],template{
  display:none
}

:root{
  --neeto-ui-black:18,18,18;
  --neeto-ui-white:255,255,255;
  --neeto-ui-gray-800:31,31,31;
  --neeto-ui-gray-700:47,57,65;
  --neeto-ui-gray-600:104,115,125;
  --neeto-ui-gray-500:135,146,157;
  --neeto-ui-gray-400:194,200,204;
  --neeto-ui-gray-300:216,220,222;
  --neeto-ui-gray-200:233,235,237;
  --neeto-ui-gray-100:248,249,249;
  --neeto-ui-primary-800:45,54,212;
  --neeto-ui-primary-600:54,66,223;
  --neeto-ui-primary-500:69,88,249;
  --neeto-ui-primary-100:235,236,254;
  --neeto-ui-error-800:187,18,26;
  --neeto-ui-error-600:201,37,45;
  --neeto-ui-error-500:215,55,63;
  --neeto-ui-error-100:254,236,240;
  --neeto-ui-success-800:16,113,84;
  --neeto-ui-success-600:18,128,92;
  --neeto-ui-success-500:38,142,108;
  --neeto-ui-success-100:225,243,238;
  --neeto-ui-warning-800:189,100,13;
  --neeto-ui-warning-600:203,111,16;
  --neeto-ui-warning-500:218,123,17;
  --neeto-ui-warning-100:251,242,225;
  --neeto-ui-info-800:9,90,186;
  --neeto-ui-info-600:13,102,208;
  --neeto-ui-info-500:20,115,230;
  --neeto-ui-info-100:226,242,255;
  --neeto-ui-pastel-silver:232,233,237;
  --neeto-ui-pastel-red:255,229,229;
  --neeto-ui-pastel-yellow:254,243,197;
  --neeto-ui-pastel-green:211,249,232;
  --neeto-ui-pastel-blue:236,244,255;
  --neeto-ui-pastel-purple:238,235,255;
  --neeto-ui-pastel-pink:253,226,241;
  --neeto-ui-surface-bg:255,255,255;
  --neeto-ui-shadow-xs:0px 1px 4px -1px rgba(28,48,74,0.12);
  --neeto-ui-shadow-s:0px 3px 12px -1px rgba(28,52,84,0.12),0px 2px 4px -1px rgba(28,55,90,0.08);
  --neeto-ui-shadow-sm:0px 3px 12px -1px rgba(28,52,84,0.12),0px 2px 4px -1px rgba(28,55,90,0.08);
  --neeto-ui-shadow-m:0px 8px 24px -4px rgba(28,50,79,0.12),0px 2px 6px -1px rgba(28,55,90,0.08);
  --neeto-ui-shadow-md:0px 8px 24px -4px rgba(28,50,79,0.12),0px 2px 6px -1px rgba(28,55,90,0.08);
  --neeto-ui-shadow-l:0 8px 24px rgba(140,149,159,0.2),0px 3px 18px -2px rgba(28,55,90,0.08);
  --neeto-ui-shadow-lg:0 8px 24px rgba(140,149,159,0.2);
  --neeto-ui-text-h1:32px;
  --neeto-ui-text-h2:24px;
  --neeto-ui-text-h3:20px;
  --neeto-ui-text-h4:16px;
  --neeto-ui-text-h5:14px;
  --neeto-ui-text-h6:12px;
  --neeto-ui-text-body1:16px;
  --neeto-ui-text-body2:14px;
  --neeto-ui-text-body3:12px;
  --neeto-ui-text-nano:10px;
  --neeto-ui-text-xxs:10px;
  --neeto-ui-text-xs:12px;
  --neeto-ui-text-sm:14px;
  --neeto-ui-text-base:16px;
  --neeto-ui-text-lg:18px;
  --neeto-ui-text-xl:20px;
  --neeto-ui-text-2xl:24px;
  --neeto-ui-text-3xl:32px;
  --neeto-ui-text-4xl:48px;
  --neeto-ui-font-thin:100;
  --neeto-ui-font-extralight:200;
  --neeto-ui-font-light:300;
  --neeto-ui-font-normal:400;
  --neeto-ui-font-medium:500;
  --neeto-ui-font-semibold:600;
  --neeto-ui-font-bold:700;
  --neeto-ui-font-extrabold:800;
  --neeto-ui-font-black:900;
  --neeto-ui-leading-none:1;
  --neeto-ui-leading-tight:1.25;
  --neeto-ui-leading-snug:1.375;
  --neeto-ui-leading-normal:1.5;
  --neeto-ui-leading-relaxed:1.625;
  --neeto-ui-leading-loose:2;
  --neeto-ui-text-transform-none:none;
  --neeto-ui-text-transform-capitalize:capitalize;
  --neeto-ui-text-transform-uppercase:uppercase;
  --neeto-ui-text-transform-lowercase:lowercase;
  --neeto-ui-text-transform-full-width:full-width;
  --neeto-ui-text-transform-inherit:inherit;
  --neeto-ui-text-transform-initial:initial;
  --neeto-ui-text-transform-revert:revert;
  --neeto-ui-text-transform-unset:unset;
  --neeto-ui-rounded-none:0;
  --neeto-ui-rounded-sm:3px;
  --neeto-ui-rounded:5px;
  --neeto-ui-rounded-md:6px;
  --neeto-ui-rounded-lg:8px;
  --neeto-ui-rounded-xl:12px;
  --neeto-ui-rounded-full:999px;
  --neeto-ui-transition:all 0.3s linear;
  --neeto-ui-modal-z-index:99999;
  --neeto-ui-sidebar-width:72px;
  --neeto-ui-pane-header-height:78px;
  --neeto-ui-pane-footer-height:80px;
  --neeto-ui-main-header-height:80px;
  --neeto-ui-main-header-with-breadcrumbs-height:94px;
  --neeto-ui-sub-header-height:37px;
  --neeto-ui-sub-header-bottom-margin:20px;
  --neeto-ui-pagination-block-height:88px;
  --neeto-ui-table-header-height:40px
}

.neeto-ui-theme--dark{
  --neeto-ui-surface-bg:18,18,18;
  background-color:#121212;
  --neeto-ui-white:18,18,18;
  --neeto-ui-black:224,224,224;
  --neeto-ui-gray-100:30,30,30;
  --neeto-ui-gray-200:44,44,44;
  --neeto-ui-gray-300:57,57,57;
  --neeto-ui-gray-400:73,73,73;
  --neeto-ui-gray-500:92,92,92;
  --neeto-ui-gray-600:124,124,124;
  --neeto-ui-gray-700:162,162,162;
  --neeto-ui-gray-800:200,200,200;
  --neeto-ui-primary-800:209,213,254;
  --neeto-ui-primary-600:181,188,253;
  --neeto-ui-primary-500:125,137,251;
  --neeto-ui-primary-100:27,28,37;
  --neeto-ui-error-800:247,109,116;
  --neeto-ui-error-600:236,91,98;
  --neeto-ui-error-500:227,72,80;
  --neeto-ui-error-100:129,33,38;
  --neeto-ui-success-800:57,185,144;
  --neeto-ui-success-600:51,171,132;
  --neeto-ui-success-500:45,157,120;
  --neeto-ui-success-100:23,85,65;
  --neeto-ui-warning-800:249,164,63;
  --neeto-ui-warning-600:242,148,35;
  --neeto-ui-warning-500:230,134,25;
  --neeto-ui-warning-100:131,74,11;
  --neeto-ui-info-800:75,156,245;
  --neeto-ui-info-600:55,142,240;
  --neeto-ui-info-500:38,128,235;
  --neeto-ui-info-100:11,69,137;
  --neeto-ui-pastel-silver:167,168,170;
  --neeto-ui-pastel-red:183,164,165;
  --neeto-ui-pastel-yellow:182,175,143;
  --neeto-ui-pastel-green:152,179,167;
  --neeto-ui-pastel-blue:170,175,183;
  --neeto-ui-pastel-purple:171,169,183;
  --neeto-ui-pastel-pink:181,162,174
}

audio,canvas,embed,iframe,img,object,svg,video{
  display:block
}

button{
  background-color:transparent;
  background-image:none;
  border:none
}

fieldset,ol,ul{
  margin:0;
  padding:0
}

blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{
  margin:0
}

[type=checkbox],[type=radio]{
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  padding:0;
  -webkit-print-color-adjust:exact;
  color-adjust:exact;
  display:inline-block;
  vertical-align:middle;
  background-origin:border-box;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
      user-select:none;
  flex-shrink:0;
  height:1rem;
  width:1rem;
  color:#2563eb;
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  border-color:#6b7280;
  border-width:1px
}

[type=checkbox]:checked,[type=radio]:checked{
  border-color:transparent;
  background-color:currentColor;
  background-size:auto;
  background-position:50%;
  background-repeat:no-repeat
}

[type=radio]:checked{
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width=%276%27 height=%276%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%273%27 cy=%273%27 r=%273%27 fill=%27%23fff%27/%3E%3C/svg%3E")
}

[type=checkbox]:checked{
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width=%2711%27 height=%278%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M9.667 1L4 6.667 1.333 4%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E")
}

[type=radio]{
  border-radius:100%
}

body{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Fira Sans,Droid Sans,Helvetica Neue,sans-serif !important;
  font-size:14px;
  font-weight:400;
  line-height:1.3
}

body *,body :after,body :before{
  box-sizing:border-box;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale
}

body{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-text-h1,.neeto-ui-text-h2,.neeto-ui-text-h3,.neeto-ui-text-h4,.neeto-ui-text-h5,.neeto-ui-text-h6,h1,h2,h3,h4,h5,h6{
  color:rgb(18, 18, 18);
  color:rgb(18,18,18);
  color:rgb(var(--neeto-ui-black))
}

h1{
  font-size:32px;
  font-size:var(--neeto-ui-text-3xl)
}

h1,h2{
  font-weight:600;
  font-weight:var(--neeto-ui-font-semibold);
  line-height:1.25;
  line-height:var(--neeto-ui-leading-tight)
}

h2{
  font-size:24px;
  font-size:var(--neeto-ui-text-2xl)
}

h3{
  font-size:20px;
  font-size:var(--neeto-ui-text-xl)
}

h3,h4{
  font-weight:600;
  font-weight:var(--neeto-ui-font-semibold);
  line-height:1.25;
  line-height:var(--neeto-ui-leading-tight)
}

h4{
  font-size:16px;
  font-size:var(--neeto-ui-text-base)
}

h5{
  font-size:14px;
  font-size:var(--neeto-ui-text-sm)
}

h5,h6{
  font-weight:600;
  font-weight:var(--neeto-ui-font-semibold);
  line-height:1.25;
  line-height:var(--neeto-ui-leading-tight)
}

h6{
  font-size:12px;
  font-size:var(--neeto-ui-text-xs)
}

p{
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  line-height:1.5;
  line-height:var(--neeto-ui-leading-normal)
}

.nuifadeIn{
  -webkit-animation:nuifadeIn .3s both;
          animation:nuifadeIn .3s both
}

@-webkit-keyframes nuifadeIn{
  0%{
    opacity:0
  }

  to{
    opacity:1
  }
}

@keyframes nuifadeIn{
  0%{
    opacity:0
  }

  to{
    opacity:1
  }
}

body .focus\:neeto-ui-text-black:focus,body .hover\:neeto-ui-text-black:hover,body .neeto-ui-text-black{
  color:rgb(18, 18, 18);
  color:rgb(18,18,18);
  color:rgb(var(--neeto-ui-black))
}

body .focus\:neeto-ui-text-white:focus,body .hover\:neeto-ui-text-white:hover,body .neeto-ui-text-white{
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white))
}

body .focus\:neeto-ui-text-gray-800:focus,body .hover\:neeto-ui-text-gray-800:hover,body .neeto-ui-text-gray-800{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

body .focus\:neeto-ui-text-gray-700:focus,body .hover\:neeto-ui-text-gray-700:hover,body .neeto-ui-text-gray-700{
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700))
}

body .focus\:neeto-ui-text-gray-600:focus,body .hover\:neeto-ui-text-gray-600:hover,body .neeto-ui-text-gray-600{
  color:rgb(104, 115, 125);
  color:rgb(104,115,125);
  color:rgb(var(--neeto-ui-gray-600))
}

body .focus\:neeto-ui-text-gray-500:focus,body .hover\:neeto-ui-text-gray-500:hover,body .neeto-ui-text-gray-500{
  color:rgb(135, 146, 157);
  color:rgb(135,146,157);
  color:rgb(var(--neeto-ui-gray-500))
}

body .focus\:neeto-ui-text-gray-400:focus,body .hover\:neeto-ui-text-gray-400:hover,body .neeto-ui-text-gray-400{
  color:rgb(194, 200, 204);
  color:rgb(194,200,204);
  color:rgb(var(--neeto-ui-gray-400))
}

body .focus\:neeto-ui-text-gray-300:focus,body .hover\:neeto-ui-text-gray-300:hover,body .neeto-ui-text-gray-300{
  color:rgb(216, 220, 222);
  color:rgb(216,220,222);
  color:rgb(var(--neeto-ui-gray-300))
}

body .focus\:neeto-ui-text-gray-200:focus,body .hover\:neeto-ui-text-gray-200:hover,body .neeto-ui-text-gray-200{
  color:rgb(233, 235, 237);
  color:rgb(233,235,237);
  color:rgb(var(--neeto-ui-gray-200))
}

body .focus\:neeto-ui-text-gray-100:focus,body .hover\:neeto-ui-text-gray-100:hover,body .neeto-ui-text-gray-100{
  color:rgb(248, 249, 249);
  color:rgb(248,249,249);
  color:rgb(var(--neeto-ui-gray-100))
}

body .focus\:neeto-ui-text-primary-800:focus,body .hover\:neeto-ui-text-primary-800:hover,body .neeto-ui-text-primary-800{
  color:rgb(45, 54, 212);
  color:rgb(45,54,212);
  color:rgb(var(--neeto-ui-primary-800))
}

body .focus\:neeto-ui-text-primary-600:focus,body .hover\:neeto-ui-text-primary-600:hover,body .neeto-ui-text-primary-600{
  color:rgb(54, 66, 223);
  color:rgb(54,66,223);
  color:rgb(var(--neeto-ui-primary-600))
}

body .focus\:neeto-ui-text-primary-500:focus,body .hover\:neeto-ui-text-primary-500:hover,body .neeto-ui-text-primary-500{
  color:rgb(69, 88, 249);
  color:rgb(69,88,249);
  color:rgb(var(--neeto-ui-primary-500))
}

body .focus\:neeto-ui-text-primary-100:focus,body .hover\:neeto-ui-text-primary-100:hover,body .neeto-ui-text-primary-100{
  color:rgb(235, 236, 254);
  color:rgb(235,236,254);
  color:rgb(var(--neeto-ui-primary-100))
}

body .focus\:neeto-ui-text-error-800:focus,body .hover\:neeto-ui-text-error-800:hover,body .neeto-ui-text-error-800{
  color:rgb(187, 18, 26);
  color:rgb(187,18,26);
  color:rgb(var(--neeto-ui-error-800))
}

body .focus\:neeto-ui-text-error-600:focus,body .hover\:neeto-ui-text-error-600:hover,body .neeto-ui-text-error-600{
  color:rgb(201, 37, 45);
  color:rgb(201,37,45);
  color:rgb(var(--neeto-ui-error-600))
}

body .focus\:neeto-ui-text-error-500:focus,body .hover\:neeto-ui-text-error-500:hover,body .neeto-ui-text-error-500{
  color:rgb(215, 55, 63);
  color:rgb(215,55,63);
  color:rgb(var(--neeto-ui-error-500))
}

body .focus\:neeto-ui-text-error-100:focus,body .hover\:neeto-ui-text-error-100:hover,body .neeto-ui-text-error-100{
  color:rgb(254, 236, 240);
  color:rgb(254,236,240);
  color:rgb(var(--neeto-ui-error-100))
}

body .focus\:neeto-ui-text-success-800:focus,body .hover\:neeto-ui-text-success-800:hover,body .neeto-ui-text-success-800{
  color:rgb(16, 113, 84);
  color:rgb(16,113,84);
  color:rgb(var(--neeto-ui-success-800))
}

body .focus\:neeto-ui-text-success-600:focus,body .hover\:neeto-ui-text-success-600:hover,body .neeto-ui-text-success-600{
  color:rgb(18, 128, 92);
  color:rgb(18,128,92);
  color:rgb(var(--neeto-ui-success-600))
}

body .focus\:neeto-ui-text-success-500:focus,body .hover\:neeto-ui-text-success-500:hover,body .neeto-ui-text-success-500{
  color:rgb(38, 142, 108);
  color:rgb(38,142,108);
  color:rgb(var(--neeto-ui-success-500))
}

body .focus\:neeto-ui-text-success-100:focus,body .hover\:neeto-ui-text-success-100:hover,body .neeto-ui-text-success-100{
  color:rgb(225, 243, 238);
  color:rgb(225,243,238);
  color:rgb(var(--neeto-ui-success-100))
}

body .focus\:neeto-ui-text-warning-800:focus,body .hover\:neeto-ui-text-warning-800:hover,body .neeto-ui-text-warning-800{
  color:rgb(189, 100, 13);
  color:rgb(189,100,13);
  color:rgb(var(--neeto-ui-warning-800))
}

body .focus\:neeto-ui-text-warning-600:focus,body .hover\:neeto-ui-text-warning-600:hover,body .neeto-ui-text-warning-600{
  color:rgb(203, 111, 16);
  color:rgb(203,111,16);
  color:rgb(var(--neeto-ui-warning-600))
}

body .focus\:neeto-ui-text-warning-500:focus,body .hover\:neeto-ui-text-warning-500:hover,body .neeto-ui-text-warning-500{
  color:rgb(218, 123, 17);
  color:rgb(218,123,17);
  color:rgb(var(--neeto-ui-warning-500))
}

body .focus\:neeto-ui-text-warning-100:focus,body .hover\:neeto-ui-text-warning-100:hover,body .neeto-ui-text-warning-100{
  color:rgb(251, 242, 225);
  color:rgb(251,242,225);
  color:rgb(var(--neeto-ui-warning-100))
}

body .focus\:neeto-ui-text-info-800:focus,body .hover\:neeto-ui-text-info-800:hover,body .neeto-ui-text-info-800{
  color:rgb(9, 90, 186);
  color:rgb(9,90,186);
  color:rgb(var(--neeto-ui-info-800))
}

body .focus\:neeto-ui-text-info-600:focus,body .hover\:neeto-ui-text-info-600:hover,body .neeto-ui-text-info-600{
  color:rgb(13, 102, 208);
  color:rgb(13,102,208);
  color:rgb(var(--neeto-ui-info-600))
}

body .focus\:neeto-ui-text-info-500:focus,body .hover\:neeto-ui-text-info-500:hover,body .neeto-ui-text-info-500{
  color:rgb(20, 115, 230);
  color:rgb(20,115,230);
  color:rgb(var(--neeto-ui-info-500))
}

body .focus\:neeto-ui-text-info-100:focus,body .hover\:neeto-ui-text-info-100:hover,body .neeto-ui-text-info-100{
  color:rgb(226, 242, 255);
  color:rgb(226,242,255);
  color:rgb(var(--neeto-ui-info-100))
}

body .focus\:neeto-ui-text-pastel-silver:focus,body .hover\:neeto-ui-text-pastel-silver:hover,body .neeto-ui-text-pastel-silver{
  color:rgb(232, 233, 237);
  color:rgb(232,233,237);
  color:rgb(var(--neeto-ui-pastel-silver))
}

body .focus\:neeto-ui-text-pastel-red:focus,body .hover\:neeto-ui-text-pastel-red:hover,body .neeto-ui-text-pastel-red{
  color:rgb(255, 229, 229);
  color:rgb(255,229,229);
  color:rgb(var(--neeto-ui-pastel-red))
}

body .focus\:neeto-ui-text-pastel-yellow:focus,body .hover\:neeto-ui-text-pastel-yellow:hover,body .neeto-ui-text-pastel-yellow{
  color:rgb(254, 243, 197);
  color:rgb(254,243,197);
  color:rgb(var(--neeto-ui-pastel-yellow))
}

body .focus\:neeto-ui-text-pastel-green:focus,body .hover\:neeto-ui-text-pastel-green:hover,body .neeto-ui-text-pastel-green{
  color:rgb(211, 249, 232);
  color:rgb(211,249,232);
  color:rgb(var(--neeto-ui-pastel-green))
}

body .focus\:neeto-ui-text-pastel-blue:focus,body .hover\:neeto-ui-text-pastel-blue:hover,body .neeto-ui-text-pastel-blue{
  color:rgb(236, 244, 255);
  color:rgb(236,244,255);
  color:rgb(var(--neeto-ui-pastel-blue))
}

body .focus\:neeto-ui-text-pastel-purple:focus,body .hover\:neeto-ui-text-pastel-purple:hover,body .neeto-ui-text-pastel-purple{
  color:rgb(238, 235, 255);
  color:rgb(238,235,255);
  color:rgb(var(--neeto-ui-pastel-purple))
}

body .focus\:neeto-ui-text-pastel-pink:focus,body .hover\:neeto-ui-text-pastel-pink:hover,body .neeto-ui-text-pastel-pink{
  color:rgb(253, 226, 241);
  color:rgb(253,226,241);
  color:rgb(var(--neeto-ui-pastel-pink))
}

body .focus-visible\:neeto-ui-text-black:focus-visible{
  color:rgb(18, 18, 18);
  color:rgb(18,18,18);
  color:rgb(var(--neeto-ui-black))
}

body .focus-visible\:neeto-ui-text-white:focus-visible{
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white))
}

body .focus-visible\:neeto-ui-text-gray-800:focus-visible{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

body .focus-visible\:neeto-ui-text-gray-700:focus-visible{
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700))
}

body .focus-visible\:neeto-ui-text-gray-600:focus-visible{
  color:rgb(104, 115, 125);
  color:rgb(104,115,125);
  color:rgb(var(--neeto-ui-gray-600))
}

body .focus-visible\:neeto-ui-text-gray-500:focus-visible{
  color:rgb(135, 146, 157);
  color:rgb(135,146,157);
  color:rgb(var(--neeto-ui-gray-500))
}

body .focus-visible\:neeto-ui-text-gray-400:focus-visible{
  color:rgb(194, 200, 204);
  color:rgb(194,200,204);
  color:rgb(var(--neeto-ui-gray-400))
}

body .focus-visible\:neeto-ui-text-gray-300:focus-visible{
  color:rgb(216, 220, 222);
  color:rgb(216,220,222);
  color:rgb(var(--neeto-ui-gray-300))
}

body .focus-visible\:neeto-ui-text-gray-200:focus-visible{
  color:rgb(233, 235, 237);
  color:rgb(233,235,237);
  color:rgb(var(--neeto-ui-gray-200))
}

body .focus-visible\:neeto-ui-text-gray-100:focus-visible{
  color:rgb(248, 249, 249);
  color:rgb(248,249,249);
  color:rgb(var(--neeto-ui-gray-100))
}

body .focus-visible\:neeto-ui-text-primary-800:focus-visible{
  color:rgb(45, 54, 212);
  color:rgb(45,54,212);
  color:rgb(var(--neeto-ui-primary-800))
}

body .focus-visible\:neeto-ui-text-primary-600:focus-visible{
  color:rgb(54, 66, 223);
  color:rgb(54,66,223);
  color:rgb(var(--neeto-ui-primary-600))
}

body .focus-visible\:neeto-ui-text-primary-500:focus-visible{
  color:rgb(69, 88, 249);
  color:rgb(69,88,249);
  color:rgb(var(--neeto-ui-primary-500))
}

body .focus-visible\:neeto-ui-text-primary-100:focus-visible{
  color:rgb(235, 236, 254);
  color:rgb(235,236,254);
  color:rgb(var(--neeto-ui-primary-100))
}

body .focus-visible\:neeto-ui-text-error-800:focus-visible{
  color:rgb(187, 18, 26);
  color:rgb(187,18,26);
  color:rgb(var(--neeto-ui-error-800))
}

body .focus-visible\:neeto-ui-text-error-600:focus-visible{
  color:rgb(201, 37, 45);
  color:rgb(201,37,45);
  color:rgb(var(--neeto-ui-error-600))
}

body .focus-visible\:neeto-ui-text-error-500:focus-visible{
  color:rgb(215, 55, 63);
  color:rgb(215,55,63);
  color:rgb(var(--neeto-ui-error-500))
}

body .focus-visible\:neeto-ui-text-error-100:focus-visible{
  color:rgb(254, 236, 240);
  color:rgb(254,236,240);
  color:rgb(var(--neeto-ui-error-100))
}

body .focus-visible\:neeto-ui-text-success-800:focus-visible{
  color:rgb(16, 113, 84);
  color:rgb(16,113,84);
  color:rgb(var(--neeto-ui-success-800))
}

body .focus-visible\:neeto-ui-text-success-600:focus-visible{
  color:rgb(18, 128, 92);
  color:rgb(18,128,92);
  color:rgb(var(--neeto-ui-success-600))
}

body .focus-visible\:neeto-ui-text-success-500:focus-visible{
  color:rgb(38, 142, 108);
  color:rgb(38,142,108);
  color:rgb(var(--neeto-ui-success-500))
}

body .focus-visible\:neeto-ui-text-success-100:focus-visible{
  color:rgb(225, 243, 238);
  color:rgb(225,243,238);
  color:rgb(var(--neeto-ui-success-100))
}

body .focus-visible\:neeto-ui-text-warning-800:focus-visible{
  color:rgb(189, 100, 13);
  color:rgb(189,100,13);
  color:rgb(var(--neeto-ui-warning-800))
}

body .focus-visible\:neeto-ui-text-warning-600:focus-visible{
  color:rgb(203, 111, 16);
  color:rgb(203,111,16);
  color:rgb(var(--neeto-ui-warning-600))
}

body .focus-visible\:neeto-ui-text-warning-500:focus-visible{
  color:rgb(218, 123, 17);
  color:rgb(218,123,17);
  color:rgb(var(--neeto-ui-warning-500))
}

body .focus-visible\:neeto-ui-text-warning-100:focus-visible{
  color:rgb(251, 242, 225);
  color:rgb(251,242,225);
  color:rgb(var(--neeto-ui-warning-100))
}

body .focus-visible\:neeto-ui-text-info-800:focus-visible{
  color:rgb(9, 90, 186);
  color:rgb(9,90,186);
  color:rgb(var(--neeto-ui-info-800))
}

body .focus-visible\:neeto-ui-text-info-600:focus-visible{
  color:rgb(13, 102, 208);
  color:rgb(13,102,208);
  color:rgb(var(--neeto-ui-info-600))
}

body .focus-visible\:neeto-ui-text-info-500:focus-visible{
  color:rgb(20, 115, 230);
  color:rgb(20,115,230);
  color:rgb(var(--neeto-ui-info-500))
}

body .focus-visible\:neeto-ui-text-info-100:focus-visible{
  color:rgb(226, 242, 255);
  color:rgb(226,242,255);
  color:rgb(var(--neeto-ui-info-100))
}

body .focus-visible\:neeto-ui-text-pastel-silver:focus-visible{
  color:rgb(232, 233, 237);
  color:rgb(232,233,237);
  color:rgb(var(--neeto-ui-pastel-silver))
}

body .focus-visible\:neeto-ui-text-pastel-red:focus-visible{
  color:rgb(255, 229, 229);
  color:rgb(255,229,229);
  color:rgb(var(--neeto-ui-pastel-red))
}

body .focus-visible\:neeto-ui-text-pastel-yellow:focus-visible{
  color:rgb(254, 243, 197);
  color:rgb(254,243,197);
  color:rgb(var(--neeto-ui-pastel-yellow))
}

body .focus-visible\:neeto-ui-text-pastel-green:focus-visible{
  color:rgb(211, 249, 232);
  color:rgb(211,249,232);
  color:rgb(var(--neeto-ui-pastel-green))
}

body .focus-visible\:neeto-ui-text-pastel-blue:focus-visible{
  color:rgb(236, 244, 255);
  color:rgb(236,244,255);
  color:rgb(var(--neeto-ui-pastel-blue))
}

body .focus-visible\:neeto-ui-text-pastel-purple:focus-visible{
  color:rgb(238, 235, 255);
  color:rgb(238,235,255);
  color:rgb(var(--neeto-ui-pastel-purple))
}

body .focus-visible\:neeto-ui-text-pastel-pink:focus-visible{
  color:rgb(253, 226, 241);
  color:rgb(253,226,241);
  color:rgb(var(--neeto-ui-pastel-pink))
}

body .focus\:neeto-ui-bg-black:focus,body .hover\:neeto-ui-bg-black:hover,body .neeto-ui-bg-black{
  background-color:rgb(18, 18, 18);
  background-color:rgb(18,18,18);
  background-color:rgb(var(--neeto-ui-black))
}

body .focus\:neeto-ui-bg-white:focus,body .hover\:neeto-ui-bg-white:hover,body .neeto-ui-bg-white{
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white))
}

body .focus\:neeto-ui-bg-gray-800:focus,body .hover\:neeto-ui-bg-gray-800:hover,body .neeto-ui-bg-gray-800{
  background-color:rgb(31, 31, 31);
  background-color:rgb(31,31,31);
  background-color:rgb(var(--neeto-ui-gray-800))
}

body .focus\:neeto-ui-bg-gray-700:focus,body .hover\:neeto-ui-bg-gray-700:hover,body .neeto-ui-bg-gray-700{
  background-color:rgb(47, 57, 65);
  background-color:rgb(47,57,65);
  background-color:rgb(var(--neeto-ui-gray-700))
}

body .focus\:neeto-ui-bg-gray-600:focus,body .hover\:neeto-ui-bg-gray-600:hover,body .neeto-ui-bg-gray-600{
  background-color:rgb(104, 115, 125);
  background-color:rgb(104,115,125);
  background-color:rgb(var(--neeto-ui-gray-600))
}

body .focus\:neeto-ui-bg-gray-500:focus,body .hover\:neeto-ui-bg-gray-500:hover,body .neeto-ui-bg-gray-500{
  background-color:rgb(135, 146, 157);
  background-color:rgb(135,146,157);
  background-color:rgb(var(--neeto-ui-gray-500))
}

body .focus\:neeto-ui-bg-gray-400:focus,body .hover\:neeto-ui-bg-gray-400:hover,body .neeto-ui-bg-gray-400{
  background-color:rgb(194, 200, 204);
  background-color:rgb(194,200,204);
  background-color:rgb(var(--neeto-ui-gray-400))
}

body .focus\:neeto-ui-bg-gray-300:focus,body .hover\:neeto-ui-bg-gray-300:hover,body .neeto-ui-bg-gray-300{
  background-color:rgb(216, 220, 222);
  background-color:rgb(216,220,222);
  background-color:rgb(var(--neeto-ui-gray-300))
}

body .focus\:neeto-ui-bg-gray-200:focus,body .hover\:neeto-ui-bg-gray-200:hover,body .neeto-ui-bg-gray-200{
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200))
}

body .focus\:neeto-ui-bg-gray-100:focus,body .hover\:neeto-ui-bg-gray-100:hover,body .neeto-ui-bg-gray-100{
  background-color:rgb(248, 249, 249);
  background-color:rgb(248,249,249);
  background-color:rgb(var(--neeto-ui-gray-100))
}

body .focus\:neeto-ui-bg-primary-800:focus,body .hover\:neeto-ui-bg-primary-800:hover,body .neeto-ui-bg-primary-800{
  background-color:rgb(45, 54, 212);
  background-color:rgb(45,54,212);
  background-color:rgb(var(--neeto-ui-primary-800))
}

body .focus\:neeto-ui-bg-primary-600:focus,body .hover\:neeto-ui-bg-primary-600:hover,body .neeto-ui-bg-primary-600{
  background-color:rgb(54, 66, 223);
  background-color:rgb(54,66,223);
  background-color:rgb(var(--neeto-ui-primary-600))
}

body .focus\:neeto-ui-bg-primary-500:focus,body .hover\:neeto-ui-bg-primary-500:hover,body .neeto-ui-bg-primary-500{
  background-color:rgb(69, 88, 249);
  background-color:rgb(69,88,249);
  background-color:rgb(var(--neeto-ui-primary-500))
}

body .focus\:neeto-ui-bg-primary-100:focus,body .hover\:neeto-ui-bg-primary-100:hover,body .neeto-ui-bg-primary-100{
  background-color:rgb(235, 236, 254);
  background-color:rgb(235,236,254);
  background-color:rgb(var(--neeto-ui-primary-100))
}

body .focus\:neeto-ui-bg-error-800:focus,body .hover\:neeto-ui-bg-error-800:hover,body .neeto-ui-bg-error-800{
  background-color:rgb(187, 18, 26);
  background-color:rgb(187,18,26);
  background-color:rgb(var(--neeto-ui-error-800))
}

body .focus\:neeto-ui-bg-error-600:focus,body .hover\:neeto-ui-bg-error-600:hover,body .neeto-ui-bg-error-600{
  background-color:rgb(201, 37, 45);
  background-color:rgb(201,37,45);
  background-color:rgb(var(--neeto-ui-error-600))
}

body .focus\:neeto-ui-bg-error-500:focus,body .hover\:neeto-ui-bg-error-500:hover,body .neeto-ui-bg-error-500{
  background-color:rgb(215, 55, 63);
  background-color:rgb(215,55,63);
  background-color:rgb(var(--neeto-ui-error-500))
}

body .focus\:neeto-ui-bg-error-100:focus,body .hover\:neeto-ui-bg-error-100:hover,body .neeto-ui-bg-error-100{
  background-color:rgb(254, 236, 240);
  background-color:rgb(254,236,240);
  background-color:rgb(var(--neeto-ui-error-100))
}

body .focus\:neeto-ui-bg-success-800:focus,body .hover\:neeto-ui-bg-success-800:hover,body .neeto-ui-bg-success-800{
  background-color:rgb(16, 113, 84);
  background-color:rgb(16,113,84);
  background-color:rgb(var(--neeto-ui-success-800))
}

body .focus\:neeto-ui-bg-success-600:focus,body .hover\:neeto-ui-bg-success-600:hover,body .neeto-ui-bg-success-600{
  background-color:rgb(18, 128, 92);
  background-color:rgb(18,128,92);
  background-color:rgb(var(--neeto-ui-success-600))
}

body .focus\:neeto-ui-bg-success-500:focus,body .hover\:neeto-ui-bg-success-500:hover,body .neeto-ui-bg-success-500{
  background-color:rgb(38, 142, 108);
  background-color:rgb(38,142,108);
  background-color:rgb(var(--neeto-ui-success-500))
}

body .focus\:neeto-ui-bg-success-100:focus,body .hover\:neeto-ui-bg-success-100:hover,body .neeto-ui-bg-success-100{
  background-color:rgb(225, 243, 238);
  background-color:rgb(225,243,238);
  background-color:rgb(var(--neeto-ui-success-100))
}

body .focus\:neeto-ui-bg-warning-800:focus,body .hover\:neeto-ui-bg-warning-800:hover,body .neeto-ui-bg-warning-800{
  background-color:rgb(189, 100, 13);
  background-color:rgb(189,100,13);
  background-color:rgb(var(--neeto-ui-warning-800))
}

body .focus\:neeto-ui-bg-warning-600:focus,body .hover\:neeto-ui-bg-warning-600:hover,body .neeto-ui-bg-warning-600{
  background-color:rgb(203, 111, 16);
  background-color:rgb(203,111,16);
  background-color:rgb(var(--neeto-ui-warning-600))
}

body .focus\:neeto-ui-bg-warning-500:focus,body .hover\:neeto-ui-bg-warning-500:hover,body .neeto-ui-bg-warning-500{
  background-color:rgb(218, 123, 17);
  background-color:rgb(218,123,17);
  background-color:rgb(var(--neeto-ui-warning-500))
}

body .focus\:neeto-ui-bg-warning-100:focus,body .hover\:neeto-ui-bg-warning-100:hover,body .neeto-ui-bg-warning-100{
  background-color:rgb(251, 242, 225);
  background-color:rgb(251,242,225);
  background-color:rgb(var(--neeto-ui-warning-100))
}

body .focus\:neeto-ui-bg-info-800:focus,body .hover\:neeto-ui-bg-info-800:hover,body .neeto-ui-bg-info-800{
  background-color:rgb(9, 90, 186);
  background-color:rgb(9,90,186);
  background-color:rgb(var(--neeto-ui-info-800))
}

body .focus\:neeto-ui-bg-info-600:focus,body .hover\:neeto-ui-bg-info-600:hover,body .neeto-ui-bg-info-600{
  background-color:rgb(13, 102, 208);
  background-color:rgb(13,102,208);
  background-color:rgb(var(--neeto-ui-info-600))
}

body .focus\:neeto-ui-bg-info-500:focus,body .hover\:neeto-ui-bg-info-500:hover,body .neeto-ui-bg-info-500{
  background-color:rgb(20, 115, 230);
  background-color:rgb(20,115,230);
  background-color:rgb(var(--neeto-ui-info-500))
}

body .focus\:neeto-ui-bg-info-100:focus,body .hover\:neeto-ui-bg-info-100:hover,body .neeto-ui-bg-info-100{
  background-color:rgb(226, 242, 255);
  background-color:rgb(226,242,255);
  background-color:rgb(var(--neeto-ui-info-100))
}

body .focus\:neeto-ui-bg-pastel-silver:focus,body .hover\:neeto-ui-bg-pastel-silver:hover,body .neeto-ui-bg-pastel-silver{
  background-color:rgb(232, 233, 237);
  background-color:rgb(232,233,237);
  background-color:rgb(var(--neeto-ui-pastel-silver))
}

body .focus\:neeto-ui-bg-pastel-red:focus,body .hover\:neeto-ui-bg-pastel-red:hover,body .neeto-ui-bg-pastel-red{
  background-color:rgb(255, 229, 229);
  background-color:rgb(255,229,229);
  background-color:rgb(var(--neeto-ui-pastel-red))
}

body .focus\:neeto-ui-bg-pastel-yellow:focus,body .hover\:neeto-ui-bg-pastel-yellow:hover,body .neeto-ui-bg-pastel-yellow{
  background-color:rgb(254, 243, 197);
  background-color:rgb(254,243,197);
  background-color:rgb(var(--neeto-ui-pastel-yellow))
}

body .focus\:neeto-ui-bg-pastel-green:focus,body .hover\:neeto-ui-bg-pastel-green:hover,body .neeto-ui-bg-pastel-green{
  background-color:rgb(211, 249, 232);
  background-color:rgb(211,249,232);
  background-color:rgb(var(--neeto-ui-pastel-green))
}

body .focus\:neeto-ui-bg-pastel-blue:focus,body .hover\:neeto-ui-bg-pastel-blue:hover,body .neeto-ui-bg-pastel-blue{
  background-color:rgb(236, 244, 255);
  background-color:rgb(236,244,255);
  background-color:rgb(var(--neeto-ui-pastel-blue))
}

body .focus\:neeto-ui-bg-pastel-purple:focus,body .hover\:neeto-ui-bg-pastel-purple:hover,body .neeto-ui-bg-pastel-purple{
  background-color:rgb(238, 235, 255);
  background-color:rgb(238,235,255);
  background-color:rgb(var(--neeto-ui-pastel-purple))
}

body .focus\:neeto-ui-bg-pastel-pink:focus,body .hover\:neeto-ui-bg-pastel-pink:hover,body .neeto-ui-bg-pastel-pink{
  background-color:rgb(253, 226, 241);
  background-color:rgb(253,226,241);
  background-color:rgb(var(--neeto-ui-pastel-pink))
}

body .focus-visible\:neeto-ui-bg-black:focus-visible{
  background-color:rgb(18, 18, 18);
  background-color:rgb(18,18,18);
  background-color:rgb(var(--neeto-ui-black))
}

body .focus-visible\:neeto-ui-bg-white:focus-visible{
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white))
}

body .focus-visible\:neeto-ui-bg-gray-800:focus-visible{
  background-color:rgb(31, 31, 31);
  background-color:rgb(31,31,31);
  background-color:rgb(var(--neeto-ui-gray-800))
}

body .focus-visible\:neeto-ui-bg-gray-700:focus-visible{
  background-color:rgb(47, 57, 65);
  background-color:rgb(47,57,65);
  background-color:rgb(var(--neeto-ui-gray-700))
}

body .focus-visible\:neeto-ui-bg-gray-600:focus-visible{
  background-color:rgb(104, 115, 125);
  background-color:rgb(104,115,125);
  background-color:rgb(var(--neeto-ui-gray-600))
}

body .focus-visible\:neeto-ui-bg-gray-500:focus-visible{
  background-color:rgb(135, 146, 157);
  background-color:rgb(135,146,157);
  background-color:rgb(var(--neeto-ui-gray-500))
}

body .focus-visible\:neeto-ui-bg-gray-400:focus-visible{
  background-color:rgb(194, 200, 204);
  background-color:rgb(194,200,204);
  background-color:rgb(var(--neeto-ui-gray-400))
}

body .focus-visible\:neeto-ui-bg-gray-300:focus-visible{
  background-color:rgb(216, 220, 222);
  background-color:rgb(216,220,222);
  background-color:rgb(var(--neeto-ui-gray-300))
}

body .focus-visible\:neeto-ui-bg-gray-200:focus-visible{
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200))
}

body .focus-visible\:neeto-ui-bg-gray-100:focus-visible{
  background-color:rgb(248, 249, 249);
  background-color:rgb(248,249,249);
  background-color:rgb(var(--neeto-ui-gray-100))
}

body .focus-visible\:neeto-ui-bg-primary-800:focus-visible{
  background-color:rgb(45, 54, 212);
  background-color:rgb(45,54,212);
  background-color:rgb(var(--neeto-ui-primary-800))
}

body .focus-visible\:neeto-ui-bg-primary-600:focus-visible{
  background-color:rgb(54, 66, 223);
  background-color:rgb(54,66,223);
  background-color:rgb(var(--neeto-ui-primary-600))
}

body .focus-visible\:neeto-ui-bg-primary-500:focus-visible{
  background-color:rgb(69, 88, 249);
  background-color:rgb(69,88,249);
  background-color:rgb(var(--neeto-ui-primary-500))
}

body .focus-visible\:neeto-ui-bg-primary-100:focus-visible{
  background-color:rgb(235, 236, 254);
  background-color:rgb(235,236,254);
  background-color:rgb(var(--neeto-ui-primary-100))
}

body .focus-visible\:neeto-ui-bg-error-800:focus-visible{
  background-color:rgb(187, 18, 26);
  background-color:rgb(187,18,26);
  background-color:rgb(var(--neeto-ui-error-800))
}

body .focus-visible\:neeto-ui-bg-error-600:focus-visible{
  background-color:rgb(201, 37, 45);
  background-color:rgb(201,37,45);
  background-color:rgb(var(--neeto-ui-error-600))
}

body .focus-visible\:neeto-ui-bg-error-500:focus-visible{
  background-color:rgb(215, 55, 63);
  background-color:rgb(215,55,63);
  background-color:rgb(var(--neeto-ui-error-500))
}

body .focus-visible\:neeto-ui-bg-error-100:focus-visible{
  background-color:rgb(254, 236, 240);
  background-color:rgb(254,236,240);
  background-color:rgb(var(--neeto-ui-error-100))
}

body .focus-visible\:neeto-ui-bg-success-800:focus-visible{
  background-color:rgb(16, 113, 84);
  background-color:rgb(16,113,84);
  background-color:rgb(var(--neeto-ui-success-800))
}

body .focus-visible\:neeto-ui-bg-success-600:focus-visible{
  background-color:rgb(18, 128, 92);
  background-color:rgb(18,128,92);
  background-color:rgb(var(--neeto-ui-success-600))
}

body .focus-visible\:neeto-ui-bg-success-500:focus-visible{
  background-color:rgb(38, 142, 108);
  background-color:rgb(38,142,108);
  background-color:rgb(var(--neeto-ui-success-500))
}

body .focus-visible\:neeto-ui-bg-success-100:focus-visible{
  background-color:rgb(225, 243, 238);
  background-color:rgb(225,243,238);
  background-color:rgb(var(--neeto-ui-success-100))
}

body .focus-visible\:neeto-ui-bg-warning-800:focus-visible{
  background-color:rgb(189, 100, 13);
  background-color:rgb(189,100,13);
  background-color:rgb(var(--neeto-ui-warning-800))
}

body .focus-visible\:neeto-ui-bg-warning-600:focus-visible{
  background-color:rgb(203, 111, 16);
  background-color:rgb(203,111,16);
  background-color:rgb(var(--neeto-ui-warning-600))
}

body .focus-visible\:neeto-ui-bg-warning-500:focus-visible{
  background-color:rgb(218, 123, 17);
  background-color:rgb(218,123,17);
  background-color:rgb(var(--neeto-ui-warning-500))
}

body .focus-visible\:neeto-ui-bg-warning-100:focus-visible{
  background-color:rgb(251, 242, 225);
  background-color:rgb(251,242,225);
  background-color:rgb(var(--neeto-ui-warning-100))
}

body .focus-visible\:neeto-ui-bg-info-800:focus-visible{
  background-color:rgb(9, 90, 186);
  background-color:rgb(9,90,186);
  background-color:rgb(var(--neeto-ui-info-800))
}

body .focus-visible\:neeto-ui-bg-info-600:focus-visible{
  background-color:rgb(13, 102, 208);
  background-color:rgb(13,102,208);
  background-color:rgb(var(--neeto-ui-info-600))
}

body .focus-visible\:neeto-ui-bg-info-500:focus-visible{
  background-color:rgb(20, 115, 230);
  background-color:rgb(20,115,230);
  background-color:rgb(var(--neeto-ui-info-500))
}

body .focus-visible\:neeto-ui-bg-info-100:focus-visible{
  background-color:rgb(226, 242, 255);
  background-color:rgb(226,242,255);
  background-color:rgb(var(--neeto-ui-info-100))
}

body .focus-visible\:neeto-ui-bg-pastel-silver:focus-visible{
  background-color:rgb(232, 233, 237);
  background-color:rgb(232,233,237);
  background-color:rgb(var(--neeto-ui-pastel-silver))
}

body .focus-visible\:neeto-ui-bg-pastel-red:focus-visible{
  background-color:rgb(255, 229, 229);
  background-color:rgb(255,229,229);
  background-color:rgb(var(--neeto-ui-pastel-red))
}

body .focus-visible\:neeto-ui-bg-pastel-yellow:focus-visible{
  background-color:rgb(254, 243, 197);
  background-color:rgb(254,243,197);
  background-color:rgb(var(--neeto-ui-pastel-yellow))
}

body .focus-visible\:neeto-ui-bg-pastel-green:focus-visible{
  background-color:rgb(211, 249, 232);
  background-color:rgb(211,249,232);
  background-color:rgb(var(--neeto-ui-pastel-green))
}

body .focus-visible\:neeto-ui-bg-pastel-blue:focus-visible{
  background-color:rgb(236, 244, 255);
  background-color:rgb(236,244,255);
  background-color:rgb(var(--neeto-ui-pastel-blue))
}

body .focus-visible\:neeto-ui-bg-pastel-purple:focus-visible{
  background-color:rgb(238, 235, 255);
  background-color:rgb(238,235,255);
  background-color:rgb(var(--neeto-ui-pastel-purple))
}

body .focus-visible\:neeto-ui-bg-pastel-pink:focus-visible{
  background-color:rgb(253, 226, 241);
  background-color:rgb(253,226,241);
  background-color:rgb(var(--neeto-ui-pastel-pink))
}

body .focus\:neeto-ui-border-black:focus,body .hover\:neeto-ui-border-black:hover,body .neeto-ui-border-black{
  border-color:rgb(18, 18, 18);
  border-color:rgb(18,18,18);
  border-color:rgb(var(--neeto-ui-black))
}

body .focus\:neeto-ui-border-white:focus,body .hover\:neeto-ui-border-white:hover,body .neeto-ui-border-white{
  border-color:rgb(255, 255, 255);
  border-color:rgb(255,255,255);
  border-color:rgb(var(--neeto-ui-white))
}

body .focus\:neeto-ui-border-gray-800:focus,body .hover\:neeto-ui-border-gray-800:hover,body .neeto-ui-border-gray-800{
  border-color:rgb(31, 31, 31);
  border-color:rgb(31,31,31);
  border-color:rgb(var(--neeto-ui-gray-800))
}

body .focus\:neeto-ui-border-gray-700:focus,body .hover\:neeto-ui-border-gray-700:hover,body .neeto-ui-border-gray-700{
  border-color:rgb(47, 57, 65);
  border-color:rgb(47,57,65);
  border-color:rgb(var(--neeto-ui-gray-700))
}

body .focus\:neeto-ui-border-gray-600:focus,body .hover\:neeto-ui-border-gray-600:hover,body .neeto-ui-border-gray-600{
  border-color:rgb(104, 115, 125);
  border-color:rgb(104,115,125);
  border-color:rgb(var(--neeto-ui-gray-600))
}

body .focus\:neeto-ui-border-gray-500:focus,body .hover\:neeto-ui-border-gray-500:hover,body .neeto-ui-border-gray-500{
  border-color:rgb(135, 146, 157);
  border-color:rgb(135,146,157);
  border-color:rgb(var(--neeto-ui-gray-500))
}

body .focus\:neeto-ui-border-gray-400:focus,body .hover\:neeto-ui-border-gray-400:hover,body .neeto-ui-border-gray-400{
  border-color:rgb(194, 200, 204);
  border-color:rgb(194,200,204);
  border-color:rgb(var(--neeto-ui-gray-400))
}

body .focus\:neeto-ui-border-gray-300:focus,body .hover\:neeto-ui-border-gray-300:hover,body .neeto-ui-border-gray-300{
  border-color:rgb(216, 220, 222);
  border-color:rgb(216,220,222);
  border-color:rgb(var(--neeto-ui-gray-300))
}

body .focus\:neeto-ui-border-gray-200:focus,body .hover\:neeto-ui-border-gray-200:hover,body .neeto-ui-border-gray-200{
  border-color:rgb(233, 235, 237);
  border-color:rgb(233,235,237);
  border-color:rgb(var(--neeto-ui-gray-200))
}

body .focus\:neeto-ui-border-gray-100:focus,body .hover\:neeto-ui-border-gray-100:hover,body .neeto-ui-border-gray-100{
  border-color:rgb(248, 249, 249);
  border-color:rgb(248,249,249);
  border-color:rgb(var(--neeto-ui-gray-100))
}

body .focus\:neeto-ui-border-primary-800:focus,body .hover\:neeto-ui-border-primary-800:hover,body .neeto-ui-border-primary-800{
  border-color:rgb(45, 54, 212);
  border-color:rgb(45,54,212);
  border-color:rgb(var(--neeto-ui-primary-800))
}

body .focus\:neeto-ui-border-primary-600:focus,body .hover\:neeto-ui-border-primary-600:hover,body .neeto-ui-border-primary-600{
  border-color:rgb(54, 66, 223);
  border-color:rgb(54,66,223);
  border-color:rgb(var(--neeto-ui-primary-600))
}

body .focus\:neeto-ui-border-primary-500:focus,body .hover\:neeto-ui-border-primary-500:hover,body .neeto-ui-border-primary-500{
  border-color:rgb(69, 88, 249);
  border-color:rgb(69,88,249);
  border-color:rgb(var(--neeto-ui-primary-500))
}

body .focus\:neeto-ui-border-primary-100:focus,body .hover\:neeto-ui-border-primary-100:hover,body .neeto-ui-border-primary-100{
  border-color:rgb(235, 236, 254);
  border-color:rgb(235,236,254);
  border-color:rgb(var(--neeto-ui-primary-100))
}

body .focus\:neeto-ui-border-error-800:focus,body .hover\:neeto-ui-border-error-800:hover,body .neeto-ui-border-error-800{
  border-color:rgb(187, 18, 26);
  border-color:rgb(187,18,26);
  border-color:rgb(var(--neeto-ui-error-800))
}

body .focus\:neeto-ui-border-error-600:focus,body .hover\:neeto-ui-border-error-600:hover,body .neeto-ui-border-error-600{
  border-color:rgb(201, 37, 45);
  border-color:rgb(201,37,45);
  border-color:rgb(var(--neeto-ui-error-600))
}

body .focus\:neeto-ui-border-error-500:focus,body .hover\:neeto-ui-border-error-500:hover,body .neeto-ui-border-error-500{
  border-color:rgb(215, 55, 63);
  border-color:rgb(215,55,63);
  border-color:rgb(var(--neeto-ui-error-500))
}

body .focus\:neeto-ui-border-error-100:focus,body .hover\:neeto-ui-border-error-100:hover,body .neeto-ui-border-error-100{
  border-color:rgb(254, 236, 240);
  border-color:rgb(254,236,240);
  border-color:rgb(var(--neeto-ui-error-100))
}

body .focus\:neeto-ui-border-success-800:focus,body .hover\:neeto-ui-border-success-800:hover,body .neeto-ui-border-success-800{
  border-color:rgb(16, 113, 84);
  border-color:rgb(16,113,84);
  border-color:rgb(var(--neeto-ui-success-800))
}

body .focus\:neeto-ui-border-success-600:focus,body .hover\:neeto-ui-border-success-600:hover,body .neeto-ui-border-success-600{
  border-color:rgb(18, 128, 92);
  border-color:rgb(18,128,92);
  border-color:rgb(var(--neeto-ui-success-600))
}

body .focus\:neeto-ui-border-success-500:focus,body .hover\:neeto-ui-border-success-500:hover,body .neeto-ui-border-success-500{
  border-color:rgb(38, 142, 108);
  border-color:rgb(38,142,108);
  border-color:rgb(var(--neeto-ui-success-500))
}

body .focus\:neeto-ui-border-success-100:focus,body .hover\:neeto-ui-border-success-100:hover,body .neeto-ui-border-success-100{
  border-color:rgb(225, 243, 238);
  border-color:rgb(225,243,238);
  border-color:rgb(var(--neeto-ui-success-100))
}

body .focus\:neeto-ui-border-warning-800:focus,body .hover\:neeto-ui-border-warning-800:hover,body .neeto-ui-border-warning-800{
  border-color:rgb(189, 100, 13);
  border-color:rgb(189,100,13);
  border-color:rgb(var(--neeto-ui-warning-800))
}

body .focus\:neeto-ui-border-warning-600:focus,body .hover\:neeto-ui-border-warning-600:hover,body .neeto-ui-border-warning-600{
  border-color:rgb(203, 111, 16);
  border-color:rgb(203,111,16);
  border-color:rgb(var(--neeto-ui-warning-600))
}

body .focus\:neeto-ui-border-warning-500:focus,body .hover\:neeto-ui-border-warning-500:hover,body .neeto-ui-border-warning-500{
  border-color:rgb(218, 123, 17);
  border-color:rgb(218,123,17);
  border-color:rgb(var(--neeto-ui-warning-500))
}

body .focus\:neeto-ui-border-warning-100:focus,body .hover\:neeto-ui-border-warning-100:hover,body .neeto-ui-border-warning-100{
  border-color:rgb(251, 242, 225);
  border-color:rgb(251,242,225);
  border-color:rgb(var(--neeto-ui-warning-100))
}

body .focus\:neeto-ui-border-info-800:focus,body .hover\:neeto-ui-border-info-800:hover,body .neeto-ui-border-info-800{
  border-color:rgb(9, 90, 186);
  border-color:rgb(9,90,186);
  border-color:rgb(var(--neeto-ui-info-800))
}

body .focus\:neeto-ui-border-info-600:focus,body .hover\:neeto-ui-border-info-600:hover,body .neeto-ui-border-info-600{
  border-color:rgb(13, 102, 208);
  border-color:rgb(13,102,208);
  border-color:rgb(var(--neeto-ui-info-600))
}

body .focus\:neeto-ui-border-info-500:focus,body .hover\:neeto-ui-border-info-500:hover,body .neeto-ui-border-info-500{
  border-color:rgb(20, 115, 230);
  border-color:rgb(20,115,230);
  border-color:rgb(var(--neeto-ui-info-500))
}

body .focus\:neeto-ui-border-info-100:focus,body .hover\:neeto-ui-border-info-100:hover,body .neeto-ui-border-info-100{
  border-color:rgb(226, 242, 255);
  border-color:rgb(226,242,255);
  border-color:rgb(var(--neeto-ui-info-100))
}

body .focus\:neeto-ui-border-pastel-silver:focus,body .hover\:neeto-ui-border-pastel-silver:hover,body .neeto-ui-border-pastel-silver{
  border-color:rgb(232, 233, 237);
  border-color:rgb(232,233,237);
  border-color:rgb(var(--neeto-ui-pastel-silver))
}

body .focus\:neeto-ui-border-pastel-red:focus,body .hover\:neeto-ui-border-pastel-red:hover,body .neeto-ui-border-pastel-red{
  border-color:rgb(255, 229, 229);
  border-color:rgb(255,229,229);
  border-color:rgb(var(--neeto-ui-pastel-red))
}

body .focus\:neeto-ui-border-pastel-yellow:focus,body .hover\:neeto-ui-border-pastel-yellow:hover,body .neeto-ui-border-pastel-yellow{
  border-color:rgb(254, 243, 197);
  border-color:rgb(254,243,197);
  border-color:rgb(var(--neeto-ui-pastel-yellow))
}

body .focus\:neeto-ui-border-pastel-green:focus,body .hover\:neeto-ui-border-pastel-green:hover,body .neeto-ui-border-pastel-green{
  border-color:rgb(211, 249, 232);
  border-color:rgb(211,249,232);
  border-color:rgb(var(--neeto-ui-pastel-green))
}

body .focus\:neeto-ui-border-pastel-blue:focus,body .hover\:neeto-ui-border-pastel-blue:hover,body .neeto-ui-border-pastel-blue{
  border-color:rgb(236, 244, 255);
  border-color:rgb(236,244,255);
  border-color:rgb(var(--neeto-ui-pastel-blue))
}

body .focus\:neeto-ui-border-pastel-purple:focus,body .hover\:neeto-ui-border-pastel-purple:hover,body .neeto-ui-border-pastel-purple{
  border-color:rgb(238, 235, 255);
  border-color:rgb(238,235,255);
  border-color:rgb(var(--neeto-ui-pastel-purple))
}

body .focus\:neeto-ui-border-pastel-pink:focus,body .hover\:neeto-ui-border-pastel-pink:hover,body .neeto-ui-border-pastel-pink{
  border-color:rgb(253, 226, 241);
  border-color:rgb(253,226,241);
  border-color:rgb(var(--neeto-ui-pastel-pink))
}

body .focus-visible\:neeto-ui-border-black:focus-visible{
  border-color:rgb(18, 18, 18);
  border-color:rgb(18,18,18);
  border-color:rgb(var(--neeto-ui-black))
}

body .focus-visible\:neeto-ui-border-white:focus-visible{
  border-color:rgb(255, 255, 255);
  border-color:rgb(255,255,255);
  border-color:rgb(var(--neeto-ui-white))
}

body .focus-visible\:neeto-ui-border-gray-800:focus-visible{
  border-color:rgb(31, 31, 31);
  border-color:rgb(31,31,31);
  border-color:rgb(var(--neeto-ui-gray-800))
}

body .focus-visible\:neeto-ui-border-gray-700:focus-visible{
  border-color:rgb(47, 57, 65);
  border-color:rgb(47,57,65);
  border-color:rgb(var(--neeto-ui-gray-700))
}

body .focus-visible\:neeto-ui-border-gray-600:focus-visible{
  border-color:rgb(104, 115, 125);
  border-color:rgb(104,115,125);
  border-color:rgb(var(--neeto-ui-gray-600))
}

body .focus-visible\:neeto-ui-border-gray-500:focus-visible{
  border-color:rgb(135, 146, 157);
  border-color:rgb(135,146,157);
  border-color:rgb(var(--neeto-ui-gray-500))
}

body .focus-visible\:neeto-ui-border-gray-400:focus-visible{
  border-color:rgb(194, 200, 204);
  border-color:rgb(194,200,204);
  border-color:rgb(var(--neeto-ui-gray-400))
}

body .focus-visible\:neeto-ui-border-gray-300:focus-visible{
  border-color:rgb(216, 220, 222);
  border-color:rgb(216,220,222);
  border-color:rgb(var(--neeto-ui-gray-300))
}

body .focus-visible\:neeto-ui-border-gray-200:focus-visible{
  border-color:rgb(233, 235, 237);
  border-color:rgb(233,235,237);
  border-color:rgb(var(--neeto-ui-gray-200))
}

body .focus-visible\:neeto-ui-border-gray-100:focus-visible{
  border-color:rgb(248, 249, 249);
  border-color:rgb(248,249,249);
  border-color:rgb(var(--neeto-ui-gray-100))
}

body .focus-visible\:neeto-ui-border-primary-800:focus-visible{
  border-color:rgb(45, 54, 212);
  border-color:rgb(45,54,212);
  border-color:rgb(var(--neeto-ui-primary-800))
}

body .focus-visible\:neeto-ui-border-primary-600:focus-visible{
  border-color:rgb(54, 66, 223);
  border-color:rgb(54,66,223);
  border-color:rgb(var(--neeto-ui-primary-600))
}

body .focus-visible\:neeto-ui-border-primary-500:focus-visible{
  border-color:rgb(69, 88, 249);
  border-color:rgb(69,88,249);
  border-color:rgb(var(--neeto-ui-primary-500))
}

body .focus-visible\:neeto-ui-border-primary-100:focus-visible{
  border-color:rgb(235, 236, 254);
  border-color:rgb(235,236,254);
  border-color:rgb(var(--neeto-ui-primary-100))
}

body .focus-visible\:neeto-ui-border-error-800:focus-visible{
  border-color:rgb(187, 18, 26);
  border-color:rgb(187,18,26);
  border-color:rgb(var(--neeto-ui-error-800))
}

body .focus-visible\:neeto-ui-border-error-600:focus-visible{
  border-color:rgb(201, 37, 45);
  border-color:rgb(201,37,45);
  border-color:rgb(var(--neeto-ui-error-600))
}

body .focus-visible\:neeto-ui-border-error-500:focus-visible{
  border-color:rgb(215, 55, 63);
  border-color:rgb(215,55,63);
  border-color:rgb(var(--neeto-ui-error-500))
}

body .focus-visible\:neeto-ui-border-error-100:focus-visible{
  border-color:rgb(254, 236, 240);
  border-color:rgb(254,236,240);
  border-color:rgb(var(--neeto-ui-error-100))
}

body .focus-visible\:neeto-ui-border-success-800:focus-visible{
  border-color:rgb(16, 113, 84);
  border-color:rgb(16,113,84);
  border-color:rgb(var(--neeto-ui-success-800))
}

body .focus-visible\:neeto-ui-border-success-600:focus-visible{
  border-color:rgb(18, 128, 92);
  border-color:rgb(18,128,92);
  border-color:rgb(var(--neeto-ui-success-600))
}

body .focus-visible\:neeto-ui-border-success-500:focus-visible{
  border-color:rgb(38, 142, 108);
  border-color:rgb(38,142,108);
  border-color:rgb(var(--neeto-ui-success-500))
}

body .focus-visible\:neeto-ui-border-success-100:focus-visible{
  border-color:rgb(225, 243, 238);
  border-color:rgb(225,243,238);
  border-color:rgb(var(--neeto-ui-success-100))
}

body .focus-visible\:neeto-ui-border-warning-800:focus-visible{
  border-color:rgb(189, 100, 13);
  border-color:rgb(189,100,13);
  border-color:rgb(var(--neeto-ui-warning-800))
}

body .focus-visible\:neeto-ui-border-warning-600:focus-visible{
  border-color:rgb(203, 111, 16);
  border-color:rgb(203,111,16);
  border-color:rgb(var(--neeto-ui-warning-600))
}

body .focus-visible\:neeto-ui-border-warning-500:focus-visible{
  border-color:rgb(218, 123, 17);
  border-color:rgb(218,123,17);
  border-color:rgb(var(--neeto-ui-warning-500))
}

body .focus-visible\:neeto-ui-border-warning-100:focus-visible{
  border-color:rgb(251, 242, 225);
  border-color:rgb(251,242,225);
  border-color:rgb(var(--neeto-ui-warning-100))
}

body .focus-visible\:neeto-ui-border-info-800:focus-visible{
  border-color:rgb(9, 90, 186);
  border-color:rgb(9,90,186);
  border-color:rgb(var(--neeto-ui-info-800))
}

body .focus-visible\:neeto-ui-border-info-600:focus-visible{
  border-color:rgb(13, 102, 208);
  border-color:rgb(13,102,208);
  border-color:rgb(var(--neeto-ui-info-600))
}

body .focus-visible\:neeto-ui-border-info-500:focus-visible{
  border-color:rgb(20, 115, 230);
  border-color:rgb(20,115,230);
  border-color:rgb(var(--neeto-ui-info-500))
}

body .focus-visible\:neeto-ui-border-info-100:focus-visible{
  border-color:rgb(226, 242, 255);
  border-color:rgb(226,242,255);
  border-color:rgb(var(--neeto-ui-info-100))
}

body .focus-visible\:neeto-ui-border-pastel-silver:focus-visible{
  border-color:rgb(232, 233, 237);
  border-color:rgb(232,233,237);
  border-color:rgb(var(--neeto-ui-pastel-silver))
}

body .focus-visible\:neeto-ui-border-pastel-red:focus-visible{
  border-color:rgb(255, 229, 229);
  border-color:rgb(255,229,229);
  border-color:rgb(var(--neeto-ui-pastel-red))
}

body .focus-visible\:neeto-ui-border-pastel-yellow:focus-visible{
  border-color:rgb(254, 243, 197);
  border-color:rgb(254,243,197);
  border-color:rgb(var(--neeto-ui-pastel-yellow))
}

body .focus-visible\:neeto-ui-border-pastel-green:focus-visible{
  border-color:rgb(211, 249, 232);
  border-color:rgb(211,249,232);
  border-color:rgb(var(--neeto-ui-pastel-green))
}

body .focus-visible\:neeto-ui-border-pastel-blue:focus-visible{
  border-color:rgb(236, 244, 255);
  border-color:rgb(236,244,255);
  border-color:rgb(var(--neeto-ui-pastel-blue))
}

body .focus-visible\:neeto-ui-border-pastel-purple:focus-visible{
  border-color:rgb(238, 235, 255);
  border-color:rgb(238,235,255);
  border-color:rgb(var(--neeto-ui-pastel-purple))
}

body .focus-visible\:neeto-ui-border-pastel-pink:focus-visible{
  border-color:rgb(253, 226, 241);
  border-color:rgb(253,226,241);
  border-color:rgb(var(--neeto-ui-pastel-pink))
}

body .focus\:neeto-ui-shadow-xs:focus,body .hover\:neeto-ui-shadow-xs:hover,body .neeto-ui-shadow-xs{
  box-shadow:0px 1px 4px -1px rgba(28, 48, 74, 0.12);
  box-shadow:0px 1px 4px -1px rgba(28,48,74,0.12);
  box-shadow:var(--neeto-ui-shadow-xs)
}

body .focus\:neeto-ui-shadow-s:focus,body .hover\:neeto-ui-shadow-s:hover,body .neeto-ui-shadow-s{
  box-shadow:0px 3px 12px -1px rgba(28, 52, 84, 0.12),0px 2px 4px -1px rgba(28, 55, 90, 0.08);
  box-shadow:0px 3px 12px -1px rgba(28,52,84,0.12),0px 2px 4px -1px rgba(28,55,90,0.08);
  box-shadow:var(--neeto-ui-shadow-s)
}

body .focus\:neeto-ui-shadow-sm:focus,body .hover\:neeto-ui-shadow-sm:hover,body .neeto-ui-shadow-sm{
  box-shadow:0px 3px 12px -1px rgba(28, 52, 84, 0.12),0px 2px 4px -1px rgba(28, 55, 90, 0.08);
  box-shadow:0px 3px 12px -1px rgba(28,52,84,0.12),0px 2px 4px -1px rgba(28,55,90,0.08);
  box-shadow:var(--neeto-ui-shadow-sm)
}

body .focus\:neeto-ui-shadow-m:focus,body .hover\:neeto-ui-shadow-m:hover,body .neeto-ui-shadow-m{
  box-shadow:0px 8px 24px -4px rgba(28, 50, 79, 0.12),0px 2px 6px -1px rgba(28, 55, 90, 0.08);
  box-shadow:0px 8px 24px -4px rgba(28,50,79,0.12),0px 2px 6px -1px rgba(28,55,90,0.08);
  box-shadow:var(--neeto-ui-shadow-m)
}

body .focus\:neeto-ui-shadow-md:focus,body .hover\:neeto-ui-shadow-md:hover,body .neeto-ui-shadow-md{
  box-shadow:0px 8px 24px -4px rgba(28, 50, 79, 0.12),0px 2px 6px -1px rgba(28, 55, 90, 0.08);
  box-shadow:0px 8px 24px -4px rgba(28,50,79,0.12),0px 2px 6px -1px rgba(28,55,90,0.08);
  box-shadow:var(--neeto-ui-shadow-md)
}

body .focus\:neeto-ui-shadow-l:focus,body .hover\:neeto-ui-shadow-l:hover,body .neeto-ui-shadow-l{
  box-shadow:0 8px 24px rgba(140, 149, 159, 0.2),0px 3px 18px -2px rgba(28, 55, 90, 0.08);
  box-shadow:0 8px 24px rgba(140,149,159,0.2),0px 3px 18px -2px rgba(28,55,90,0.08);
  box-shadow:var(--neeto-ui-shadow-l)
}

body .focus\:neeto-ui-shadow-lg:focus,body .hover\:neeto-ui-shadow-lg:hover,body .neeto-ui-shadow-lg{
  box-shadow:0 8px 24px rgba(140, 149, 159, 0.2);
  box-shadow:0 8px 24px rgba(140,149,159,0.2);
  box-shadow:var(--neeto-ui-shadow-lg)
}

body .focus-visible\:neeto-ui-shadow-xs:focus-visible{
  box-shadow:0px 1px 4px -1px rgba(28, 48, 74, 0.12);
  box-shadow:0px 1px 4px -1px rgba(28,48,74,0.12);
  box-shadow:var(--neeto-ui-shadow-xs)
}

body .focus-visible\:neeto-ui-shadow-s:focus-visible{
  box-shadow:0px 3px 12px -1px rgba(28, 52, 84, 0.12),0px 2px 4px -1px rgba(28, 55, 90, 0.08);
  box-shadow:0px 3px 12px -1px rgba(28,52,84,0.12),0px 2px 4px -1px rgba(28,55,90,0.08);
  box-shadow:var(--neeto-ui-shadow-s)
}

body .focus-visible\:neeto-ui-shadow-sm:focus-visible{
  box-shadow:0px 3px 12px -1px rgba(28, 52, 84, 0.12),0px 2px 4px -1px rgba(28, 55, 90, 0.08);
  box-shadow:0px 3px 12px -1px rgba(28,52,84,0.12),0px 2px 4px -1px rgba(28,55,90,0.08);
  box-shadow:var(--neeto-ui-shadow-sm)
}

body .focus-visible\:neeto-ui-shadow-m:focus-visible{
  box-shadow:0px 8px 24px -4px rgba(28, 50, 79, 0.12),0px 2px 6px -1px rgba(28, 55, 90, 0.08);
  box-shadow:0px 8px 24px -4px rgba(28,50,79,0.12),0px 2px 6px -1px rgba(28,55,90,0.08);
  box-shadow:var(--neeto-ui-shadow-m)
}

body .focus-visible\:neeto-ui-shadow-md:focus-visible{
  box-shadow:0px 8px 24px -4px rgba(28, 50, 79, 0.12),0px 2px 6px -1px rgba(28, 55, 90, 0.08);
  box-shadow:0px 8px 24px -4px rgba(28,50,79,0.12),0px 2px 6px -1px rgba(28,55,90,0.08);
  box-shadow:var(--neeto-ui-shadow-md)
}

body .focus-visible\:neeto-ui-shadow-l:focus-visible{
  box-shadow:0 8px 24px rgba(140, 149, 159, 0.2),0px 3px 18px -2px rgba(28, 55, 90, 0.08);
  box-shadow:0 8px 24px rgba(140,149,159,0.2),0px 3px 18px -2px rgba(28,55,90,0.08);
  box-shadow:var(--neeto-ui-shadow-l)
}

body .focus-visible\:neeto-ui-shadow-lg:focus-visible{
  box-shadow:0 8px 24px rgba(140, 149, 159, 0.2);
  box-shadow:0 8px 24px rgba(140,149,159,0.2);
  box-shadow:var(--neeto-ui-shadow-lg)
}

body .neeto-ui-text-h1{
  font-size:32px;
  font-size:var(--neeto-ui-text-h1)
}

body .neeto-ui-text-h2{
  font-size:24px;
  font-size:var(--neeto-ui-text-h2)
}

body .neeto-ui-text-h3{
  font-size:20px;
  font-size:var(--neeto-ui-text-h3)
}

body .neeto-ui-text-h4{
  font-size:16px;
  font-size:var(--neeto-ui-text-h4)
}

body .neeto-ui-text-h5{
  font-size:14px;
  font-size:var(--neeto-ui-text-h5)
}

body .neeto-ui-text-h6{
  font-size:12px;
  font-size:var(--neeto-ui-text-h6)
}

body .neeto-ui-text-body1{
  font-size:16px;
  font-size:var(--neeto-ui-text-body1)
}

body .neeto-ui-text-body2{
  font-size:14px;
  font-size:var(--neeto-ui-text-body2)
}

body .neeto-ui-text-body3{
  font-size:12px;
  font-size:var(--neeto-ui-text-body3)
}

body .neeto-ui-text-nano{
  font-size:10px;
  font-size:var(--neeto-ui-text-nano)
}

body .neeto-ui-text-xxs{
  font-size:10px;
  font-size:var(--neeto-ui-text-xxs)
}

body .neeto-ui-text-xs{
  font-size:12px;
  font-size:var(--neeto-ui-text-xs)
}

body .neeto-ui-text-sm{
  font-size:14px;
  font-size:var(--neeto-ui-text-sm)
}

body .neeto-ui-text-base{
  font-size:16px;
  font-size:var(--neeto-ui-text-base)
}

body .neeto-ui-text-lg{
  font-size:18px;
  font-size:var(--neeto-ui-text-lg)
}

body .neeto-ui-text-xl{
  font-size:20px;
  font-size:var(--neeto-ui-text-xl)
}

body .neeto-ui-text-2xl{
  font-size:24px;
  font-size:var(--neeto-ui-text-2xl)
}

body .neeto-ui-text-3xl{
  font-size:32px;
  font-size:var(--neeto-ui-text-3xl)
}

body .neeto-ui-text-4xl{
  font-size:48px;
  font-size:var(--neeto-ui-text-4xl)
}

body .neeto-ui-font-thin{
  font-weight:100;
  font-weight:var(--neeto-ui-font-thin)
}

body .neeto-ui-font-extralight{
  font-weight:200;
  font-weight:var(--neeto-ui-font-extralight)
}

body .neeto-ui-font-light{
  font-weight:300;
  font-weight:var(--neeto-ui-font-light)
}

body .neeto-ui-font-normal{
  font-weight:400;
  font-weight:var(--neeto-ui-font-normal)
}

body .neeto-ui-font-medium{
  font-weight:500;
  font-weight:var(--neeto-ui-font-medium)
}

body .neeto-ui-font-semibold{
  font-weight:600;
  font-weight:var(--neeto-ui-font-semibold)
}

body .neeto-ui-font-bold{
  font-weight:700;
  font-weight:var(--neeto-ui-font-bold)
}

body .neeto-ui-font-extrabold{
  font-weight:800;
  font-weight:var(--neeto-ui-font-extrabold)
}

body .neeto-ui-font-black{
  font-weight:900;
  font-weight:var(--neeto-ui-font-black)
}

body .neeto-ui-leading-none{
  line-height:1;
  line-height:var(--neeto-ui-leading-none)
}

body .neeto-ui-leading-tight{
  line-height:1.25;
  line-height:var(--neeto-ui-leading-tight)
}

body .neeto-ui-leading-snug{
  line-height:1.375;
  line-height:var(--neeto-ui-leading-snug)
}

body .neeto-ui-leading-normal{
  line-height:1.5;
  line-height:var(--neeto-ui-leading-normal)
}

body .neeto-ui-leading-relaxed{
  line-height:1.625;
  line-height:var(--neeto-ui-leading-relaxed)
}

body .neeto-ui-leading-loose{
  line-height:2;
  line-height:var(--neeto-ui-leading-loose)
}

body .neeto-ui-text-transform-none{
  text-transform:none;
  text-transform:var(--neeto-ui-text-transform-none)
}

body .neeto-ui-text-transform-capitalize{
  text-transform:capitalize;
  text-transform:var(--neeto-ui-text-transform-capitalize)
}

body .neeto-ui-text-transform-uppercase{
  text-transform:uppercase;
  text-transform:var(--neeto-ui-text-transform-uppercase)
}

body .neeto-ui-text-transform-lowercase{
  text-transform:lowercase;
  text-transform:var(--neeto-ui-text-transform-lowercase)
}

body .neeto-ui-text-transform-full-width{
  text-transform:full-width;
  text-transform:var(--neeto-ui-text-transform-full-width)
}

body .neeto-ui-text-transform-inherit{
  text-transform:inherit;
  text-transform:var(--neeto-ui-text-transform-inherit)
}

body .neeto-ui-text-transform-initial{
  text-transform:initial;
  text-transform:var(--neeto-ui-text-transform-initial)
}

body .neeto-ui-text-transform-revert{
  text-transform:revert;
  text-transform:var(--neeto-ui-text-transform-revert)
}

body .neeto-ui-text-transform-unset{
  text-transform:inherit;
  text-transform:inherit;
  text-transform:var(--neeto-ui-text-transform-unset)
}

.neeto-ui-flex{
  display:flex
}

.neeto-ui-inline-flex{
  display:inline-flex
}

.neeto-ui-flex-shrink-0{
  flex-shrink:0
}

.neeto-ui-flex-shrink{
  flex-shrink:1
}

.neeto-ui-flex-grow-0{
  flex-grow:0
}

.neeto-ui-flex-grow{
  flex-grow:1
}

.neeto-ui-flex-row{
  flex-direction:row
}

.neeto-ui-flex-row-reverse{
  flex-direction:row-reverse
}

.neeto-ui-flex-col{
  flex-direction:column
}

.neeto-ui-flex-col-reverse{
  flex-direction:column-reverse
}

.neeto-ui-flex-wrap{
  flex-wrap:wrap
}

.neeto-ui-flex-wrap-reverse{
  flex-wrap:wrap-reverse
}

.neeto-ui-flex-nowrap{
  flex-wrap:nowrap
}

.neeto-ui-items-start{
  align-items:flex-start
}

.neeto-ui-items-end{
  align-items:flex-end
}

.neeto-ui-items-center{
  align-items:center
}

.neeto-ui-items-baseline{
  align-items:baseline
}

.neeto-ui-items-stretch{
  align-items:stretch
}

.neeto-ui-justify-start{
  justify-content:flex-start
}

.neeto-ui-justify-end{
  justify-content:flex-end
}

.neeto-ui-justify-center{
  justify-content:center
}

.neeto-ui-justify-between{
  justify-content:space-between
}

.neeto-ui-justify-around{
  justify-content:space-around
}

.neeto-ui-justify-evenly{
  justify-content:space-evenly
}

.neeto-ui-justify-items-start{
  justify-items:start
}

.neeto-ui-justify-items-end{
  justify-items:end
}

.neeto-ui-justify-items-center{
  justify-items:center
}

.neeto-ui-justify-items-stretch{
  justify-items:stretch
}

.neeto-ui-self-auto{
  align-self:auto
}

.neeto-ui-self-start{
  align-self:flex-start
}

.neeto-ui-self-end{
  align-self:flex-end
}

.neeto-ui-self-center{
  align-self:center
}

.neeto-ui-self-stretch{
  align-self:stretch
}

.neeto-ui-self-baseline{
  align-self:baseline
}

.neeto-ui-justify-self-auto{
  justify-self:auto
}

.neeto-ui-justify-self-start{
  justify-self:start
}

.neeto-ui-justify-self-end{
  justify-self:end
}

.neeto-ui-justify-self-center{
  justify-self:center
}

.neeto-ui-justify-self-stretch{
  justify-self:stretch
}

.neeto-ui-overflow-auto{
  overflow:auto
}

.neeto-ui-overflow-hidden{
  overflow:hidden
}

.neeto-ui-overflow-visible{
  overflow:visible
}

.neeto-ui-overflow-scroll{
  overflow:scroll
}

.neeto-ui-overflow-x-auto{
  overflow-x:auto
}

.neeto-ui-overflow-y-auto{
  overflow-y:auto
}

.neeto-ui-overflow-x-hidden{
  overflow-x:hidden
}

.neeto-ui-overflow-y-hidden{
  overflow-y:hidden
}

.neeto-ui-overflow-x-visible{
  overflow-x:visible
}

.neeto-ui-overflow-y-visible{
  overflow-y:visible
}

.neeto-ui-overflow-x-scroll{
  overflow-x:scroll
}

.neeto-ui-overflow-y-scroll{
  overflow-y:scroll
}

.neeto-ui-truncate{
  overflow:hidden;
  white-space:nowrap
}

.neeto-ui-overflow-ellipsis,.neeto-ui-truncate{
  text-overflow:ellipsis
}

.neeto-ui-whitespace-normal{
  white-space:normal
}

.neeto-ui-whitespace-nowrap{
  white-space:nowrap
}

.neeto-ui-whitespace-pre{
  white-space:pre
}

.neeto-ui-whitespace-pre-wrap{
  white-space:pre-wrap
}

.neeto-ui-break-normal{
  overflow-wrap:normal;
  word-break:normal
}

.neeto-ui-break-words{
  overflow-wrap:break-word
}

.neeto-ui-break-all{
  word-break:break-all
}

.neeto-ui-cursor-pointer{
  cursor:pointer
}

.neeto-ui-cursor-not-allowed{
  cursor:not-allowed
}

.neeto-ui-select-none{
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
      user-select:none
}

.neeto-ui-gap-0{
  gap:0
}

.neeto-ui-gap-1{
  gap:.25rem
}

.neeto-ui-gap-2{
  gap:.5rem
}

.neeto-ui-gap-3{
  gap:.75rem
}

.neeto-ui-gap-4{
  gap:1rem
}

.neeto-ui-gap-5{
  gap:1.25rem
}

.neeto-ui-gap-6{
  gap:1.5rem
}

.neeto-ui-text-left{
  text-align:left
}

.neeto-ui-text-center{
  text-align:center
}

.neeto-ui-text-right{
  text-align:right
}

.neeto-ui-text-justify{
  text-align:justify
}

.neeto-ui-w-full{
  width:100%
}

.neeto-ui-w-screen{
  width:100vw
}

.neeto-ui-h-full{
  height:100%
}

.neeto-ui-h-screen{
  height:100vh
}

.neeto-ui-min-w-0{
  min-width:0
}

.neeto-ui-no-underline{
  text-decoration:none
}

.neeto-ui-p-0{
  padding:0
}

.neeto-ui-p-1{
  padding:.25rem
}

.neeto-ui-p-2{
  padding:.5rem
}

.neeto-ui-p-3{
  padding:.75rem
}

.neeto-ui-p-4{
  padding:1rem
}

.neeto-ui-p-5{
  padding:1.25rem
}

.neeto-ui-p-6{
  padding:1.5rem
}

.neeto-ui-pl-0{
  padding-left:0
}

.neeto-ui-pl-1{
  padding-left:.25rem
}

.neeto-ui-pl-2{
  padding-left:.5rem
}

.neeto-ui-pl-3{
  padding-left:.75rem
}

.neeto-ui-pl-4{
  padding-left:1rem
}

.neeto-ui-pl-5{
  padding-left:1.25rem
}

.neeto-ui-pl-6{
  padding-left:1.5rem
}

.neeto-ui-pt-0{
  padding-top:0
}

.neeto-ui-pt-1{
  padding-top:.25rem
}

.neeto-ui-pt-2{
  padding-top:.5rem
}

.neeto-ui-pt-3{
  padding-top:.75rem
}

.neeto-ui-pt-4{
  padding-top:1rem
}

.neeto-ui-pt-5{
  padding-top:1.25rem
}

.neeto-ui-pt-6{
  padding-top:1.5rem
}

.neeto-ui-pr-0{
  padding-right:0
}

.neeto-ui-pr-1{
  padding-right:.25rem
}

.neeto-ui-pr-2{
  padding-right:.5rem
}

.neeto-ui-pr-3{
  padding-right:.75rem
}

.neeto-ui-pr-4{
  padding-right:1rem
}

.neeto-ui-pr-5{
  padding-right:1.25rem
}

.neeto-ui-pr-6{
  padding-right:1.5rem
}

.neeto-ui-pb-0{
  padding-bottom:0
}

.neeto-ui-pb-1{
  padding-bottom:.25rem
}

.neeto-ui-pb-2{
  padding-bottom:.5rem
}

.neeto-ui-pb-3{
  padding-bottom:.75rem
}

.neeto-ui-pb-4{
  padding-bottom:1rem
}

.neeto-ui-pb-5{
  padding-bottom:1.25rem
}

.neeto-ui-pb-6{
  padding-bottom:1.5rem
}

.neeto-ui-px-0{
  padding-left:0;
  padding-right:0
}

.neeto-ui-px-1{
  padding-left:.25rem;
  padding-right:.25rem
}

.neeto-ui-px-2{
  padding-left:.5rem;
  padding-right:.5rem
}

.neeto-ui-px-3{
  padding-left:.75rem;
  padding-right:.75rem
}

.neeto-ui-px-4{
  padding-left:1rem;
  padding-right:1rem
}

.neeto-ui-px-5{
  padding-left:1.25rem;
  padding-right:1.25rem
}

.neeto-ui-px-6{
  padding-left:1.5rem;
  padding-right:1.5rem
}

.neeto-ui-py-0{
  padding-top:0;
  padding-bottom:0
}

.neeto-ui-py-1{
  padding-top:.25rem;
  padding-bottom:.25rem
}

.neeto-ui-py-2{
  padding-top:.5rem;
  padding-bottom:.5rem
}

.neeto-ui-py-3{
  padding-top:.75rem;
  padding-bottom:.75rem
}

.neeto-ui-py-4{
  padding-top:1rem;
  padding-bottom:1rem
}

.neeto-ui-py-5{
  padding-top:1.25rem;
  padding-bottom:1.25rem
}

.neeto-ui-py-6{
  padding-top:1.5rem;
  padding-bottom:1.5rem
}

.neeto-ui-m-0{
  margin:0
}

.neeto-ui-m-1{
  margin:.25rem
}

.neeto-ui-m-2{
  margin:.5rem
}

.neeto-ui-m-3{
  margin:.75rem
}

.neeto-ui-m-4{
  margin:1rem
}

.neeto-ui-m-5{
  margin:1.25rem
}

.neeto-ui-m-6{
  margin:1.5rem
}

.neeto-ui-ml-0{
  margin-left:0
}

.neeto-ui-ml-1{
  margin-left:.25rem
}

.neeto-ui-ml-2{
  margin-left:.5rem
}

.neeto-ui-ml-3{
  margin-left:.75rem
}

.neeto-ui-ml-4{
  margin-left:1rem
}

.neeto-ui-ml-5{
  margin-left:1.25rem
}

.neeto-ui-ml-6{
  margin-left:1.5rem
}

.neeto-ui-mt-0{
  margin-top:0
}

.neeto-ui-mt-1{
  margin-top:.25rem
}

.neeto-ui-mt-2{
  margin-top:.5rem
}

.neeto-ui-mt-3{
  margin-top:.75rem
}

.neeto-ui-mt-4{
  margin-top:1rem
}

.neeto-ui-mt-5{
  margin-top:1.25rem
}

.neeto-ui-mt-6{
  margin-top:1.5rem
}

.neeto-ui-mr-0{
  margin-right:0
}

.neeto-ui-mr-1{
  margin-right:.25rem
}

.neeto-ui-mr-2{
  margin-right:.5rem
}

.neeto-ui-mr-3{
  margin-right:.75rem
}

.neeto-ui-mr-4{
  margin-right:1rem
}

.neeto-ui-mr-5{
  margin-right:1.25rem
}

.neeto-ui-mr-6{
  margin-right:1.5rem
}

.neeto-ui-mb-0{
  margin-bottom:0
}

.neeto-ui-mb-1{
  margin-bottom:.25rem
}

.neeto-ui-mb-2{
  margin-bottom:.5rem
}

.neeto-ui-mb-3{
  margin-bottom:.75rem
}

.neeto-ui-mb-4{
  margin-bottom:1rem
}

.neeto-ui-mb-5{
  margin-bottom:1.25rem
}

.neeto-ui-mb-6{
  margin-bottom:1.5rem
}

.neeto-ui-mx-0{
  margin-left:0;
  margin-right:0
}

.neeto-ui-mx-1{
  margin-left:.25rem;
  margin-right:.25rem
}

.neeto-ui-mx-2{
  margin-left:.5rem;
  margin-right:.5rem
}

.neeto-ui-mx-3{
  margin-left:.75rem;
  margin-right:.75rem
}

.neeto-ui-mx-4{
  margin-left:1rem;
  margin-right:1rem
}

.neeto-ui-mx-5{
  margin-left:1.25rem;
  margin-right:1.25rem
}

.neeto-ui-mx-6{
  margin-left:1.5rem;
  margin-right:1.5rem
}

.neeto-ui-my-0{
  margin-top:0;
  margin-bottom:0
}

.neeto-ui-my-1{
  margin-top:.25rem;
  margin-bottom:.25rem
}

.neeto-ui-my-2{
  margin-top:.5rem;
  margin-bottom:.5rem
}

.neeto-ui-my-3{
  margin-top:.75rem;
  margin-bottom:.75rem
}

.neeto-ui-my-4{
  margin-top:1rem;
  margin-bottom:1rem
}

.neeto-ui-my-5{
  margin-top:1.25rem;
  margin-bottom:1.25rem
}

.neeto-ui-my-6{
  margin-top:1.5rem;
  margin-bottom:1.5rem
}

.neeto-ui-transition-none{
  -webkit-transition-property:none;
  transition-property:none
}

.neeto-ui-transition-all{
  -webkit-transition-property:all;
  transition-property:all;
  -webkit-transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration:.15s;
          transition-duration:.15s
}

.neeto-ui-transition-colors{
  -webkit-transition-property:background-color,border-color,color,fill,stroke;
  transition-property:background-color,border-color,color,fill,stroke;
  -webkit-transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration:.15s;
          transition-duration:.15s
}

.neeto-ui-list-none{
  list-style-type:none
}

.neeto-ui-rounded-none{
  border-radius:0;
  border-radius:var(--neeto-ui-rounded-none)
}

.neeto-ui-rounded-sm{
  border-radius:3px;
  border-radius:var(--neeto-ui-rounded-sm)
}

.neeto-ui-rounded{
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded)
}

.neeto-ui-rounded-md{
  border-radius:6px;
  border-radius:var(--neeto-ui-rounded-md)
}

.neeto-ui-rounded-lg{
  border-radius:8px;
  border-radius:var(--neeto-ui-rounded-lg)
}

.neeto-ui-rounded-xl{
  border-radius:12px;
  border-radius:var(--neeto-ui-rounded-xl)
}

.neeto-ui-rounded-full{
  border-radius:999px;
  border-radius:var(--neeto-ui-rounded-full)
}

.neeto-ui-border-t{
  border-top-width:1px
}

.neeto-ui-border-l{
  border-left-width:1px
}

.neeto-ui-border-r{
  border-right-width:1px
}

.neeto-ui-border-b{
  border-bottom-width:1px
}

.neeto-ui-left-0{
  left:0
}

.neeto-ui-left-1{
  left:.25rem
}

.neeto-ui-left-2{
  left:.5rem
}

.neeto-ui-left-3{
  left:.75rem
}

.neeto-ui-left-4{
  left:1rem
}

.neeto-ui-left-5{
  left:1.25rem
}

.neeto-ui-left-6{
  left:1.5rem
}

.neeto-ui-top-0{
  top:0
}

.neeto-ui-top-1{
  top:.25rem
}

.neeto-ui-top-2{
  top:.5rem
}

.neeto-ui-top-3{
  top:.75rem
}

.neeto-ui-top-4{
  top:1rem
}

.neeto-ui-top-5{
  top:1.25rem
}

.neeto-ui-top-6{
  top:1.5rem
}

.neeto-ui-right-0{
  right:0
}

.neeto-ui-right-1{
  right:.25rem
}

.neeto-ui-right-2{
  right:.5rem
}

.neeto-ui-right-3{
  right:.75rem
}

.neeto-ui-right-4{
  right:1rem
}

.neeto-ui-right-5{
  right:1.25rem
}

.neeto-ui-right-6{
  right:1.5rem
}

.neeto-ui-bottom-0{
  bottom:0
}

.neeto-ui-bottom-1{
  bottom:.25rem
}

.neeto-ui-bottom-2{
  bottom:.5rem
}

.neeto-ui-bottom-3{
  bottom:.75rem
}

.neeto-ui-bottom-4{
  bottom:1rem
}

.neeto-ui-bottom-5{
  bottom:1.25rem
}

.neeto-ui-bottom-6{
  bottom:1.5rem
}

.neeto-ui-absolute{
  position:absolute
}

.neeto-ui-relative{
  position:relative
}

.neeto-ui-sticky{
  position:-webkit-sticky;
  position:sticky
}

.neeto-ui-no-outline{
  outline:none !important
}

@-webkit-keyframes antSlideUpIn{
  0%{
    -webkit-transform:scaleY(0.8);
            transform:scaleY(0.8);
    -webkit-transform-origin:0 0;
            transform-origin:0 0;
    opacity:0
  }

  to{
    -webkit-transform:scaleY(1);
            transform:scaleY(1);
    -webkit-transform-origin:0 0;
            transform-origin:0 0;
    opacity:1
  }
}

@keyframes antSlideUpIn{
  0%{
    -webkit-transform:scaleY(0.8);
            transform:scaleY(0.8);
    -webkit-transform-origin:0 0;
            transform-origin:0 0;
    opacity:0
  }

  to{
    -webkit-transform:scaleY(1);
            transform:scaleY(1);
    -webkit-transform-origin:0 0;
            transform-origin:0 0;
    opacity:1
  }
}

@-webkit-keyframes antSlideUpOut{
  0%{
    -webkit-transform:scaleY(1);
            transform:scaleY(1);
    -webkit-transform-origin:0 0;
            transform-origin:0 0;
    opacity:1
  }

  to{
    -webkit-transform:scaleY(0.8);
            transform:scaleY(0.8);
    -webkit-transform-origin:0 0;
            transform-origin:0 0;
    opacity:0
  }
}

@keyframes antSlideUpOut{
  0%{
    -webkit-transform:scaleY(1);
            transform:scaleY(1);
    -webkit-transform-origin:0 0;
            transform-origin:0 0;
    opacity:1
  }

  to{
    -webkit-transform:scaleY(0.8);
            transform:scaleY(0.8);
    -webkit-transform-origin:0 0;
            transform-origin:0 0;
    opacity:0
  }
}

@-webkit-keyframes antSlideDownIn{
  0%{
    -webkit-transform:scaleY(0.8);
            transform:scaleY(0.8);
    -webkit-transform-origin:100% 100%;
            transform-origin:100% 100%;
    opacity:0
  }

  to{
    -webkit-transform:scaleY(1);
            transform:scaleY(1);
    -webkit-transform-origin:100% 100%;
            transform-origin:100% 100%;
    opacity:1
  }
}

@keyframes antSlideDownIn{
  0%{
    -webkit-transform:scaleY(0.8);
            transform:scaleY(0.8);
    -webkit-transform-origin:100% 100%;
            transform-origin:100% 100%;
    opacity:0
  }

  to{
    -webkit-transform:scaleY(1);
            transform:scaleY(1);
    -webkit-transform-origin:100% 100%;
            transform-origin:100% 100%;
    opacity:1
  }
}

@-webkit-keyframes antSlideDownOut{
  0%{
    -webkit-transform:scaleY(1);
            transform:scaleY(1);
    -webkit-transform-origin:100% 100%;
            transform-origin:100% 100%;
    opacity:1
  }

  to{
    -webkit-transform:scaleY(0.8);
            transform:scaleY(0.8);
    -webkit-transform-origin:100% 100%;
            transform-origin:100% 100%;
    opacity:0
  }
}

@keyframes antSlideDownOut{
  0%{
    -webkit-transform:scaleY(1);
            transform:scaleY(1);
    -webkit-transform-origin:100% 100%;
            transform-origin:100% 100%;
    opacity:1
  }

  to{
    -webkit-transform:scaleY(0.8);
            transform:scaleY(0.8);
    -webkit-transform-origin:100% 100%;
            transform-origin:100% 100%;
    opacity:0
  }
}

@-webkit-keyframes antSlideLeftIn{
  0%{
    -webkit-transform:scaleX(0.8);
            transform:scaleX(0.8);
    -webkit-transform-origin:0 0;
            transform-origin:0 0;
    opacity:0
  }

  to{
    -webkit-transform:scaleX(1);
            transform:scaleX(1);
    -webkit-transform-origin:0 0;
            transform-origin:0 0;
    opacity:1
  }
}

@keyframes antSlideLeftIn{
  0%{
    -webkit-transform:scaleX(0.8);
            transform:scaleX(0.8);
    -webkit-transform-origin:0 0;
            transform-origin:0 0;
    opacity:0
  }

  to{
    -webkit-transform:scaleX(1);
            transform:scaleX(1);
    -webkit-transform-origin:0 0;
            transform-origin:0 0;
    opacity:1
  }
}

@-webkit-keyframes antSlideLeftOut{
  0%{
    -webkit-transform:scaleX(1);
            transform:scaleX(1);
    -webkit-transform-origin:0 0;
            transform-origin:0 0;
    opacity:1
  }

  to{
    -webkit-transform:scaleX(0.8);
            transform:scaleX(0.8);
    -webkit-transform-origin:0 0;
            transform-origin:0 0;
    opacity:0
  }
}

@keyframes antSlideLeftOut{
  0%{
    -webkit-transform:scaleX(1);
            transform:scaleX(1);
    -webkit-transform-origin:0 0;
            transform-origin:0 0;
    opacity:1
  }

  to{
    -webkit-transform:scaleX(0.8);
            transform:scaleX(0.8);
    -webkit-transform-origin:0 0;
            transform-origin:0 0;
    opacity:0
  }
}

@-webkit-keyframes antSlideRightIn{
  0%{
    -webkit-transform:scaleX(0.8);
            transform:scaleX(0.8);
    -webkit-transform-origin:100% 0;
            transform-origin:100% 0;
    opacity:0
  }

  to{
    -webkit-transform:scaleX(1);
            transform:scaleX(1);
    -webkit-transform-origin:100% 0;
            transform-origin:100% 0;
    opacity:1
  }
}

@keyframes antSlideRightIn{
  0%{
    -webkit-transform:scaleX(0.8);
            transform:scaleX(0.8);
    -webkit-transform-origin:100% 0;
            transform-origin:100% 0;
    opacity:0
  }

  to{
    -webkit-transform:scaleX(1);
            transform:scaleX(1);
    -webkit-transform-origin:100% 0;
            transform-origin:100% 0;
    opacity:1
  }
}

@-webkit-keyframes antSlideRightOut{
  0%{
    -webkit-transform:scaleX(1);
            transform:scaleX(1);
    -webkit-transform-origin:100% 0;
            transform-origin:100% 0;
    opacity:1
  }

  to{
    -webkit-transform:scaleX(0.8);
            transform:scaleX(0.8);
    -webkit-transform-origin:100% 0;
            transform-origin:100% 0;
    opacity:0
  }
}

@keyframes antSlideRightOut{
  0%{
    -webkit-transform:scaleX(1);
            transform:scaleX(1);
    -webkit-transform-origin:100% 0;
            transform-origin:100% 0;
    opacity:1
  }

  to{
    -webkit-transform:scaleX(0.8);
            transform:scaleX(0.8);
    -webkit-transform-origin:100% 0;
            transform-origin:100% 0;
    opacity:0
  }
}

.ant-spin{
  box-sizing:border-box;
  margin:0;
  padding:0;
  color:rgba(0, 0, 0, 0.85);
  font-size:14px;
  font-variant:tabular-nums;
  line-height:1.5715;
  list-style:none;
  -webkit-font-feature-settings:"tnum";
          font-feature-settings:"tnum";
  position:absolute;
  display:none;
  color:#1890ff;
  text-align:center;
  vertical-align:middle;
  opacity:0;
  -webkit-transition:-webkit-transform .3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition:-webkit-transform .3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition:transform .3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition:transform .3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-transform .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;
  -webkit-transition:opacity .3s;
  transition:opacity .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;
  -webkit-transition:all .3s;
  transition:all .3s;
  content:"";
  pointer-events:none
}

.ant-spin-blur{
  clear:both;
  overflow:hidden;
  opacity:.5;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
      user-select:none;
  pointer-events:none
}

.ant-spin-blur:after{
  opacity:.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:#1890ff;
  border-radius:100%;
  -webkit-transform:scale(0.75);
          transform:scale(0.75);
  -webkit-transform-origin:50% 50%;
          transform-origin:50% 50%;
  opacity:.3;
  -webkit-animation:antSpinMove 1s linear infinite alternate;
          animation:antSpinMove 1s linear infinite alternate
}

.ant-spin-dot-item:first-child{
  top:0;
  left:0
}

.ant-spin-dot-item:nth-child(2){
  top:0;
  right:0;
  -webkit-animation-delay:.4s;
          animation-delay:.4s
}

.ant-spin-dot-item:nth-child(3){
  right:0;
  bottom:0;
  -webkit-animation-delay:.8s;
          animation-delay:.8s
}

.ant-spin-dot-item:nth-child(4){
  bottom:0;
  left:0;
  -webkit-animation-delay:1.2s;
          animation-delay:1.2s
}

.ant-spin-dot-spin{
  -webkit-transform:rotate(45deg);
          transform:rotate(45deg);
  -webkit-animation:antRotate 1.2s linear infinite;
          animation:antRotate 1.2s linear infinite
}

.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(-ms-high-contrast: active), (-ms-high-contrast: none){
  .ant-spin-blur{
    background:#fff;
    opacity:.5
  }
}

@-webkit-keyframes antSpinMove{
  to{
    opacity:1
  }
}

@keyframes antSpinMove{
  to{
    opacity:1
  }
}

@-webkit-keyframes antRotate{
  to{
    -webkit-transform:rotate(405deg);
            transform:rotate(405deg)
  }
}

@keyframes antRotate{
  to{
    -webkit-transform:rotate(405deg);
            transform:rotate(405deg)
  }
}

.ant-spin-rtl{
  direction:rtl
}

.ant-spin-rtl .ant-spin-dot-spin{
  -webkit-transform:rotate(-45deg);
          transform:rotate(-45deg);
  -webkit-animation-name:antRotateRtl;
          animation-name:antRotateRtl
}

@-webkit-keyframes antRotateRtl{
  to{
    -webkit-transform:rotate(-405deg);
            transform:rotate(-405deg)
  }
}

@keyframes antRotateRtl{
  to{
    -webkit-transform:rotate(-405deg);
            transform:rotate(-405deg)
  }
}

.ant-btn{
  line-height:1.5715;
  position:relative;
  display:inline-block;
  font-weight:400;
  white-space:nowrap;
  text-align:center;
  background-image:none;
  border:1px solid transparent;
  cursor:pointer;
  -webkit-transition:all .3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition:all .3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
      user-select:none;
  touch-action:manipulation;
  height:32px;
  padding:4px 15px;
  font-size:14px;
  border-radius:2px
}

.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]{
  cursor:not-allowed
}

.ant-btn[disabled]>*{
  pointer-events:none
}

.ant-btn-lg{
  height:40px;
  padding:6.4px 15px;
  font-size:16px;
  border-radius:2px
}

.ant-btn-sm{
  height:24px;
  padding:0 7px;
  font-size:14px;
  border-radius:2px
}

.ant-picker{
  box-sizing:border-box;
  margin:0;
  color:rgba(0, 0, 0, 0.85);
  font-size:14px;
  font-variant:tabular-nums;
  line-height:1.5715;
  list-style:none;
  -webkit-font-feature-settings:"tnum";
          font-feature-settings:"tnum";
  padding:4px 11px;
  position:relative;
  display:inline-flex;
  align-items:center;
  background:#fff;
  border:1px solid #d9d9d9;
  border-radius:2px;
  -webkit-transition:border .3s,box-shadow .3s;
  transition:border .3s,box-shadow .3s
}

.ant-picker-focused,.ant-picker:hover{
  border-color:#40a9ff;
  border-right-width:1px !important
}

.ant-picker-focused{
  outline:0;
  box-shadow:0 0 0 2px rgba(24, 144, 255, 0.2)
}

.ant-picker.ant-picker-disabled{
  background:#f5f5f5;
  border-color:#d9d9d9;
  cursor:not-allowed
}

.ant-picker.ant-picker-disabled .ant-picker-suffix{
  color:rgba(0, 0, 0, 0.25)
}

.ant-picker.ant-picker-borderless{
  background-color:transparent !important;
  border-color:transparent !important;
  box-shadow:none !important
}

.ant-picker-input{
  position:relative;
  display:inline-flex;
  align-items:center;
  width:100%
}

.ant-picker-input>input{
  position:relative;
  display:inline-block;
  width:100%;
  min-width:0;
  color:rgba(0, 0, 0, 0.85);
  font-size:14px;
  line-height:1.5715;
  background-color:#fff;
  background-image:none;
  border-radius:2px;
  -webkit-transition:all .3s;
  transition:all .3s;
  flex:auto;
  min-width:1px;
  height:auto;
  padding:0;
  background:transparent;
  border:0
}

.ant-picker-input>input::-moz-placeholder{
  opacity:1
}

.ant-picker-input>input::-webkit-input-placeholder{
  color:#bfbfbf
}

.ant-picker-input>input:-ms-input-placeholder{
  color:#bfbfbf
}

.ant-picker-input>input::placeholder{
  color:#bfbfbf
}

.ant-picker-input>input:-moz-placeholder-shown{
  text-overflow:ellipsis
}

.ant-picker-input>input:-ms-input-placeholder{
  text-overflow:ellipsis
}

.ant-picker-input>input:placeholder-shown{
  text-overflow:ellipsis
}

.ant-picker-input>input:hover{
  border-color:#40a9ff;
  border-right-width:1px !important
}

.ant-picker-input>input-focused,.ant-picker-input>input:focus{
  border-color:#40a9ff;
  border-right-width:1px !important;
  outline:0;
  box-shadow:0 0 0 2px rgba(24, 144, 255, 0.2)
}

.ant-picker-input>input-disabled{
  color:rgba(0, 0, 0, 0.25);
  background-color:#f5f5f5;
  border-color:#d9d9d9;
  box-shadow:none;
  cursor:not-allowed;
  opacity:1
}

.ant-picker-input>input-disabled:hover{
  border-color:#d9d9d9;
  border-right-width:1px !important
}

.ant-picker-input>input[disabled]{
  color:rgba(0, 0, 0, 0.25);
  background-color:#f5f5f5;
  border-color:#d9d9d9;
  box-shadow:none;
  cursor:not-allowed;
  opacity:1
}

.ant-picker-input>input[disabled]:hover{
  border-color:#d9d9d9;
  border-right-width:1px !important
}

.ant-picker-input>input-borderless,.ant-picker-input>input-borderless-disabled,.ant-picker-input>input-borderless-focused,.ant-picker-input>input-borderless:focus,.ant-picker-input>input-borderless:hover,.ant-picker-input>input-borderless[disabled]{
  background-color:transparent;
  border:none;
  box-shadow:none
}

textarea.ant-picker-input>input{
  max-width:100%;
  height:auto;
  min-height:32px;
  line-height:1.5715;
  vertical-align:bottom;
  -webkit-transition:all .3s,height 0s;
  transition:all .3s,height 0s
}

.ant-picker-input>input-lg{
  padding:6.5px 11px;
  font-size:16px
}

.ant-picker-input>input-sm{
  padding:0 7px
}

.ant-picker-input>input:focus{
  box-shadow:none
}

.ant-picker-input>input[disabled]{
  background:transparent
}

.ant-picker-input:hover .ant-picker-clear{
  opacity:1
}

.ant-picker-input-placeholder>input{
  color:#bfbfbf
}

.ant-picker-large{
  padding:6.5px 11px
}

.ant-picker-large .ant-picker-input>input{
  font-size:16px
}

.ant-picker-small{
  padding:0 7px
}

.ant-picker-suffix{
  align-self:center;
  margin-left:4px;
  color:rgba(0, 0, 0, 0.25);
  line-height:1;
  pointer-events:none
}

.ant-picker-suffix>*{
  vertical-align:top
}

.ant-picker-clear{
  position:absolute;
  top:50%;
  right:0;
  color:rgba(0, 0, 0, 0.25);
  line-height:1;
  background:#fff;
  -webkit-transform:translateY(-50%);
          transform:translateY(-50%);
  cursor:pointer;
  opacity:0;
  -webkit-transition:opacity .3s,color .3s;
  transition:opacity .3s,color .3s
}

.ant-picker-clear>*{
  vertical-align:top
}

.ant-picker-clear:hover{
  color:rgba(0, 0, 0, 0.45)
}

.ant-picker-separator{
  position:relative;
  display:inline-block;
  width:1em;
  height:16px;
  color:rgba(0, 0, 0, 0.25);
  font-size:16px;
  vertical-align:top;
  cursor:default
}

.ant-picker-focused .ant-picker-separator{
  color:rgba(0, 0, 0, 0.45)
}

.ant-picker-disabled .ant-picker-range-separator .ant-picker-separator{
  cursor:not-allowed
}

.ant-picker-range{
  position:relative;
  display:inline-flex
}

.ant-picker-range .ant-picker-clear{
  right:11px
}

.ant-picker-range:hover .ant-picker-clear{
  opacity:1
}

.ant-picker-range .ant-picker-active-bar{
  bottom:-1px;
  height:2px;
  margin-left:11px;
  background:#1890ff;
  opacity:0;
  -webkit-transition:all .3s ease-out;
  transition:all .3s ease-out;
  pointer-events:none
}

.ant-picker-range.ant-picker-focused .ant-picker-active-bar{
  opacity:1
}

.ant-picker-range-separator{
  align-items:center;
  padding:0 8px;
  line-height:1
}

.ant-picker-range.ant-picker-small .ant-picker-clear{
  right:7px
}

.ant-picker-range.ant-picker-small .ant-picker-active-bar{
  margin-left:7px
}

.ant-picker-dropdown{
  box-sizing:border-box;
  margin:0;
  padding:0;
  color:rgba(0, 0, 0, 0.85);
  font-size:14px;
  font-variant:tabular-nums;
  line-height:1.5715;
  list-style:none;
  -webkit-font-feature-settings:"tnum";
          font-feature-settings:"tnum";
  position:absolute;
  z-index:1050
}

.ant-picker-dropdown-hidden{
  display:none
}

.ant-picker-dropdown-placement-bottomLeft .ant-picker-range-arrow{
  top:1.66666667px;
  display:block;
  -webkit-transform:rotate(-45deg);
          transform:rotate(-45deg)
}

.ant-picker-dropdown-placement-topLeft .ant-picker-range-arrow{
  bottom:1.66666667px;
  display:block;
  -webkit-transform:rotate(135deg);
          transform:rotate(135deg)
}

.ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-topLeft,.ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-topRight,.ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-topLeft,.ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-topRight{
  -webkit-animation-name:antSlideDownIn;
          animation-name:antSlideDownIn
}

.ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-bottomLeft,.ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-bottomRight,.ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-bottomLeft,.ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-bottomRight{
  -webkit-animation-name:antSlideUpIn;
          animation-name:antSlideUpIn
}

.ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-topLeft,.ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-topRight{
  -webkit-animation-name:antSlideDownOut;
          animation-name:antSlideDownOut
}

.ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-bottomLeft,.ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-bottomRight{
  -webkit-animation-name:antSlideUpOut;
          animation-name:antSlideUpOut
}

.ant-picker-dropdown-range{
  padding:6.66666667px 0
}

.ant-picker-dropdown-range-hidden{
  display:none
}

.ant-picker-dropdown .ant-picker-panel>.ant-picker-time-panel{
  padding-top:4px
}

.ant-picker-ranges{
  margin-bottom:0;
  padding:4px 12px;
  overflow:hidden;
  line-height:34px;
  text-align:left;
  list-style:none
}

.ant-picker-ranges>li{
  display:inline-block
}

.ant-picker-ranges .ant-picker-preset>.ant-tag-blue{
  color:#1890ff;
  background:#e6f7ff;
  border-color:#91d5ff
}

.ant-picker-ranges .ant-picker-ok{
  float:right;
  margin-left:8px
}

.ant-picker-range-wrapper{
  display:flex
}

.ant-picker-range-arrow{
  position:absolute;
  z-index:1;
  display:none;
  width:10px;
  height:10px;
  margin-left:16.5px;
  box-shadow:2px -2px 6px rgba(0, 0, 0, 0.06);
  -webkit-transition:left .3s ease-out;
  transition:left .3s ease-out
}

.ant-picker-range-arrow:after{
  position:absolute;
  top:1px;
  right:1px;
  width:10px;
  height:10px;
  border-color:#fff #fff transparent transparent;
  border-style:solid;
  border-width:5px;
  content:""
}

.ant-picker-panel-container{
  overflow:hidden;
  vertical-align:top;
  background:#fff;
  border-radius:2px;
  box-shadow:0 3px 6px -4px rgba(0, 0, 0, 0.12),0 6px 16px 0 rgba(0, 0, 0, 0.08),0 9px 28px 8px rgba(0, 0, 0, 0.05);
  -webkit-transition:margin .3s;
  transition:margin .3s
}

.ant-picker-panel-container .ant-picker-panels{
  display:inline-flex;
  flex-wrap:nowrap;
  direction:ltr
}

.ant-picker-panel-container .ant-picker-panel{
  vertical-align:top;
  background:transparent;
  border-width:0 0 1px;
  border-radius:0
}

.ant-picker-panel-container .ant-picker-panel .ant-picker-content,.ant-picker-panel-container .ant-picker-panel table{
  text-align:center
}

.ant-picker-panel-container .ant-picker-panel-focused{
  border-color:#f0f0f0
}

.ant-picker-panel{
  display:inline-flex;
  flex-direction:column;
  text-align:center;
  background:#fff;
  border:1px solid #f0f0f0;
  border-radius:2px;
  outline:none
}

.ant-picker-panel-focused{
  border-color:#1890ff
}

.ant-picker-date-panel,.ant-picker-decade-panel,.ant-picker-month-panel,.ant-picker-quarter-panel,.ant-picker-time-panel,.ant-picker-week-panel,.ant-picker-year-panel{
  display:flex;
  flex-direction:column;
  width:280px
}

.ant-picker-header{
  display:flex;
  padding:0 8px;
  color:rgba(0, 0, 0, 0.85);
  border-bottom:1px solid #f0f0f0
}

.ant-picker-header>*{
  flex:none
}

.ant-picker-header button{
  padding:0;
  color:rgba(0, 0, 0, 0.25);
  line-height:40px;
  background:transparent;
  border:0;
  cursor:pointer;
  -webkit-transition:color .3s;
  transition:color .3s
}

.ant-picker-header>button{
  min-width:1.6em;
  font-size:14px
}

.ant-picker-header>button:hover{
  color:rgba(0, 0, 0, 0.85)
}

.ant-picker-header-view{
  flex:auto;
  font-weight:500;
  line-height:40px
}

.ant-picker-header-view button{
  color:inherit;
  font-weight:inherit
}

.ant-picker-header-view button:not(:first-child){
  margin-left:8px
}

.ant-picker-header-view button:hover{
  color:#1890ff
}

.ant-picker-next-icon,.ant-picker-prev-icon,.ant-picker-super-next-icon,.ant-picker-super-prev-icon{
  position:relative;
  display:inline-block;
  width:7px;
  height:7px
}

.ant-picker-next-icon:before,.ant-picker-prev-icon:before,.ant-picker-super-next-icon:before,.ant-picker-super-prev-icon:before{
  position:absolute;
  top:0;
  left:0;
  display:inline-block;
  width:7px;
  height:7px;
  border:0 solid;
  border-width:1.5px 0 0 1.5px;
  content:""
}

.ant-picker-super-next-icon:after,.ant-picker-super-prev-icon:after{
  position:absolute;
  top:4px;
  left:4px;
  display:inline-block;
  width:7px;
  height:7px;
  border:0 solid;
  border-width:1.5px 0 0 1.5px;
  content:""
}

.ant-picker-prev-icon,.ant-picker-super-prev-icon{
  -webkit-transform:rotate(-45deg);
          transform:rotate(-45deg)
}

.ant-picker-next-icon,.ant-picker-super-next-icon{
  -webkit-transform:rotate(135deg);
          transform:rotate(135deg)
}

.ant-picker-content{
  width:100%;
  table-layout:fixed;
  border-collapse:collapse
}

.ant-picker-content td,.ant-picker-content th{
  position:relative;
  min-width:24px;
  font-weight:400
}

.ant-picker-content th{
  height:30px;
  color:rgba(0, 0, 0, 0.85);
  line-height:30px
}

.ant-picker-cell{
  padding:3px 0;
  color:rgba(0, 0, 0, 0.25);
  cursor:pointer
}

.ant-picker-cell-in-view{
  color:rgba(0, 0, 0, 0.85)
}

.ant-picker-cell:before{
  position:absolute;
  top:50%;
  right:0;
  left:0;
  z-index:1;
  height:24px;
  -webkit-transform:translateY(-50%);
          transform:translateY(-50%);
  -webkit-transition:all .3s;
  transition:all .3s;
  content:""
}

.ant-picker-cell:hover:not(.ant-picker-cell-in-view) .ant-picker-cell-inner,.ant-picker-cell:hover:not(.ant-picker-cell-selected):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end):not(.ant-picker-cell-range-hover-start):not(.ant-picker-cell-range-hover-end) .ant-picker-cell-inner{
  background:#f5f5f5
}

.ant-picker-cell-in-view.ant-picker-cell-today .ant-picker-cell-inner:before{
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  z-index:1;
  border:1px solid #1890ff;
  border-radius:2px;
  content:""
}

.ant-picker-cell-in-view.ant-picker-cell-in-range{
  position:relative
}

.ant-picker-cell-in-view.ant-picker-cell-in-range:before{
  background:#e6f7ff
}

.ant-picker-cell-in-view.ant-picker-cell-range-end .ant-picker-cell-inner,.ant-picker-cell-in-view.ant-picker-cell-range-start .ant-picker-cell-inner,.ant-picker-cell-in-view.ant-picker-cell-selected .ant-picker-cell-inner{
  color:#fff;
  background:#1890ff
}

.ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-range-end-single):before,.ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-range-start-single):before{
  background:#e6f7ff
}

.ant-picker-cell-in-view.ant-picker-cell-range-start:before{
  left:50%
}

.ant-picker-cell-in-view.ant-picker-cell-range-end:before{
  right:50%
}

.ant-picker-cell-in-view.ant-picker-cell-range-hover-end.ant-picker-cell-range-end-single:after,.ant-picker-cell-in-view.ant-picker-cell-range-hover-end.ant-picker-cell-range-start.ant-picker-cell-range-end.ant-picker-cell-range-start-near-hover:after,.ant-picker-cell-in-view.ant-picker-cell-range-hover-end:not(.ant-picker-cell-in-range):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end):after,.ant-picker-cell-in-view.ant-picker-cell-range-hover-start.ant-picker-cell-range-start-single:after,.ant-picker-cell-in-view.ant-picker-cell-range-hover-start.ant-picker-cell-range-start.ant-picker-cell-range-end.ant-picker-cell-range-end-near-hover:after,.ant-picker-cell-in-view.ant-picker-cell-range-hover-start:not(.ant-picker-cell-in-range):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end):after,.ant-picker-cell-in-view.ant-picker-cell-range-hover:not(.ant-picker-cell-in-range):after{
  position:absolute;
  top:50%;
  z-index:0;
  height:24px;
  border-top:1px dashed #7ec1ff;
  border-bottom:1px dashed #7ec1ff;
  -webkit-transform:translateY(-50%);
          transform:translateY(-50%);
  -webkit-transition:all .3s;
  transition:all .3s;
  content:""
}

.ant-picker-cell-range-hover-end:after,.ant-picker-cell-range-hover-start:after,.ant-picker-cell-range-hover:after{
  right:0;
  left:2px
}

.ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover:before,.ant-picker-cell-in-view.ant-picker-cell-range-end.ant-picker-cell-range-hover:before,.ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-range-end-single).ant-picker-cell-range-hover-end:before,.ant-picker-cell-in-view.ant-picker-cell-range-start.ant-picker-cell-range-hover:before,.ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-range-start-single).ant-picker-cell-range-hover-start:before,.ant-picker-panel>:not(.ant-picker-date-panel) .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end:before,.ant-picker-panel>:not(.ant-picker-date-panel) .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start:before{
  background:#cbe6ff
}

.ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-range-start-single):not(.ant-picker-cell-range-end) .ant-picker-cell-inner{
  border-radius:2px 0 0 2px
}

.ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-range-end-single):not(.ant-picker-cell-range-start) .ant-picker-cell-inner{
  border-radius:0 2px 2px 0
}

.ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end .ant-picker-cell-inner:after,.ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start .ant-picker-cell-inner:after{
  position:absolute;
  top:0;
  bottom:0;
  z-index:-1;
  background:#cbe6ff;
  -webkit-transition:all .3s;
  transition:all .3s;
  content:""
}

.ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start .ant-picker-cell-inner:after{
  right:-6px;
  left:0
}

.ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end .ant-picker-cell-inner:after{
  right:0;
  left:-6px
}

.ant-picker-cell-range-hover.ant-picker-cell-range-start:after{
  right:50%
}

.ant-picker-cell-range-hover.ant-picker-cell-range-end:after{
  left:50%
}

.ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-start:not(.ant-picker-cell-range-hover-edge-start-near-range):after,.ant-picker-cell-in-view.ant-picker-cell-range-hover-start:after,.ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-edge-start.ant-picker-cell-range-hover-edge-start-near-range:after,tr>.ant-picker-cell-in-view.ant-picker-cell-range-hover-end:first-child:after,tr>.ant-picker-cell-in-view.ant-picker-cell-range-hover:first-child:after{
  left:6px;
  border-left:1px dashed #7ec1ff;
  border-top-left-radius:2px;
  border-bottom-left-radius:2px
}

.ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover-edge-end.ant-picker-cell-range-hover-edge-end-near-range:after,.ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-end:not(.ant-picker-cell-range-hover-edge-end-near-range):after,.ant-picker-cell-in-view.ant-picker-cell-range-hover-end:after,tr>.ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child:after,tr>.ant-picker-cell-in-view.ant-picker-cell-range-hover:last-child:after{
  right:6px;
  border-right:1px dashed #7ec1ff;
  border-top-right-radius:2px;
  border-bottom-right-radius:2px
}

.ant-picker-cell-disabled{
  color:rgba(0, 0, 0, 0.25);
  pointer-events:none
}

.ant-picker-cell-disabled .ant-picker-cell-inner{
  background:transparent
}

.ant-picker-cell-disabled:before{
  background:rgba(0, 0, 0, 0.04)
}

.ant-picker-cell-disabled.ant-picker-cell-today .ant-picker-cell-inner:before{
  border-color:rgba(0, 0, 0, 0.25)
}

.ant-picker-decade-panel .ant-picker-content,.ant-picker-month-panel .ant-picker-content,.ant-picker-quarter-panel .ant-picker-content,.ant-picker-year-panel .ant-picker-content{
  height:264px
}

.ant-picker-decade-panel .ant-picker-cell-inner,.ant-picker-month-panel .ant-picker-cell-inner,.ant-picker-quarter-panel .ant-picker-cell-inner,.ant-picker-year-panel .ant-picker-cell-inner{
  padding:0 8px
}

.ant-picker-quarter-panel .ant-picker-content{
  height:56px
}

.ant-picker-footer{
  width:-moz-min-content;
  width:-webkit-min-content;
  width:min-content;
  min-width:100%;
  line-height:38px;
  text-align:center;
  border-bottom:1px solid transparent
}

.ant-picker-panel .ant-picker-footer{
  border-top:1px solid #f0f0f0
}

.ant-picker-footer-extra{
  padding:0 12px;
  line-height:38px;
  text-align:left
}

.ant-picker-footer-extra:not(:last-child){
  border-bottom:1px solid #f0f0f0
}

.ant-picker-now{
  text-align:left
}

.ant-picker-today-btn{
  color:#1890ff
}

.ant-picker-today-btn:hover{
  color:#40a9ff
}

.ant-picker-today-btn:active{
  color:#096dd9
}

.ant-picker-today-btn.ant-picker-today-btn-disabled{
  color:rgba(0, 0, 0, 0.25);
  cursor:not-allowed
}

.ant-picker-decade-panel .ant-picker-cell-inner{
  padding:0 4px
}

.ant-picker-decade-panel .ant-picker-cell:before{
  display:none
}

.ant-picker-month-panel .ant-picker-body,.ant-picker-quarter-panel .ant-picker-body,.ant-picker-year-panel .ant-picker-body{
  padding:0 8px
}

.ant-picker-month-panel .ant-picker-cell-inner,.ant-picker-quarter-panel .ant-picker-cell-inner,.ant-picker-year-panel .ant-picker-cell-inner{
  width:60px
}

.ant-picker-month-panel .ant-picker-cell-range-hover-start:after,.ant-picker-quarter-panel .ant-picker-cell-range-hover-start:after,.ant-picker-year-panel .ant-picker-cell-range-hover-start:after{
  left:14px;
  border-left:1px dashed #7ec1ff;
  border-radius:2px 0 0 2px
}

.ant-picker-month-panel .ant-picker-cell-range-hover-end:after,.ant-picker-panel-rtl .ant-picker-month-panel .ant-picker-cell-range-hover-start:after,.ant-picker-panel-rtl .ant-picker-quarter-panel .ant-picker-cell-range-hover-start:after,.ant-picker-panel-rtl .ant-picker-year-panel .ant-picker-cell-range-hover-start:after,.ant-picker-quarter-panel .ant-picker-cell-range-hover-end:after,.ant-picker-year-panel .ant-picker-cell-range-hover-end:after{
  right:14px;
  border-right:1px dashed #7ec1ff;
  border-radius:0 2px 2px 0
}

.ant-picker-panel-rtl .ant-picker-month-panel .ant-picker-cell-range-hover-end:after,.ant-picker-panel-rtl .ant-picker-quarter-panel .ant-picker-cell-range-hover-end:after,.ant-picker-panel-rtl .ant-picker-year-panel .ant-picker-cell-range-hover-end:after{
  left:14px;
  border-left:1px dashed #7ec1ff;
  border-radius:2px 0 0 2px
}

.ant-picker-week-panel .ant-picker-body{
  padding:8px 12px
}

.ant-picker-week-panel .ant-picker-cell-selected .ant-picker-cell-inner,.ant-picker-week-panel .ant-picker-cell .ant-picker-cell-inner,.ant-picker-week-panel .ant-picker-cell:hover .ant-picker-cell-inner{
  background:transparent !important
}

.ant-picker-week-panel-row td{
  -webkit-transition:background .3s;
  transition:background .3s
}

.ant-picker-week-panel-row:hover td{
  background:#f5f5f5
}

.ant-picker-week-panel-row-selected:hover td,.ant-picker-week-panel-row-selected td{
  background:#1890ff
}

.ant-picker-week-panel-row-selected:hover td.ant-picker-cell-week,.ant-picker-week-panel-row-selected td.ant-picker-cell-week{
  color:hsla(0, 0%, 100%, 0.5)
}

.ant-picker-week-panel-row-selected:hover td.ant-picker-cell-today .ant-picker-cell-inner:before,.ant-picker-week-panel-row-selected td.ant-picker-cell-today .ant-picker-cell-inner:before{
  border-color:#fff
}

.ant-picker-week-panel-row-selected:hover td .ant-picker-cell-inner,.ant-picker-week-panel-row-selected td .ant-picker-cell-inner{
  color:#fff
}

.ant-picker-date-panel .ant-picker-body{
  padding:8px 12px
}

.ant-picker-date-panel .ant-picker-content{
  width:252px
}

.ant-picker-date-panel .ant-picker-content th{
  width:36px
}

.ant-picker-datetime-panel{
  display:flex
}

.ant-picker-datetime-panel .ant-picker-time-panel{
  border-left:1px solid #f0f0f0
}

.ant-picker-datetime-panel .ant-picker-date-panel,.ant-picker-datetime-panel .ant-picker-time-panel{
  -webkit-transition:opacity .3s;
  transition:opacity .3s
}

.ant-picker-datetime-panel-active .ant-picker-date-panel,.ant-picker-datetime-panel-active .ant-picker-time-panel{
  opacity:.3
}

.ant-picker-datetime-panel-active .ant-picker-date-panel-active,.ant-picker-datetime-panel-active .ant-picker-time-panel-active{
  opacity:1
}

.ant-picker-time-panel{
  width:auto;
  min-width:auto
}

.ant-picker-time-panel .ant-picker-content{
  display:flex;
  flex:auto;
  height:224px
}

.ant-picker-time-panel-column{
  flex:1 0 auto;
  width:56px;
  margin:0;
  padding:0;
  overflow-y:hidden;
  text-align:left;
  list-style:none;
  -webkit-transition:background .3s;
  transition:background .3s
}

.ant-picker-time-panel-column:after{
  display:block;
  height:196px;
  content:""
}

.ant-picker-datetime-panel .ant-picker-time-panel-column:after{
  height:198px
}

.ant-picker-time-panel-column:not(:first-child){
  border-left:1px solid #f0f0f0
}

.ant-picker-time-panel-column-active{
  background:rgba(230, 247, 255, 0.2)
}

.ant-picker-time-panel-column:hover{
  overflow-y:auto
}

.ant-picker-time-panel-column>li{
  margin:0;
  padding:0
}

.ant-picker-time-panel-column>li.ant-picker-time-panel-cell .ant-picker-time-panel-cell-inner{
  display:block;
  width:100%;
  height:28px;
  margin:0;
  padding:0 0 0 14px;
  color:rgba(0, 0, 0, 0.85);
  line-height:28px;
  border-radius:0;
  cursor:pointer;
  -webkit-transition:background .3s;
  transition:background .3s
}

.ant-picker-time-panel-column>li.ant-picker-time-panel-cell .ant-picker-time-panel-cell-inner:hover{
  background:#f5f5f5
}

.ant-picker-time-panel-column>li.ant-picker-time-panel-cell-selected .ant-picker-time-panel-cell-inner{
  background:#e6f7ff
}

.ant-picker-time-panel-column>li.ant-picker-time-panel-cell-disabled .ant-picker-time-panel-cell-inner{
  color:rgba(0, 0, 0, 0.25);
  background:transparent;
  cursor:not-allowed
}

:root .ant-picker-range-wrapper .ant-picker-month-panel .ant-picker-cell,:root .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-cell,_:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-month-panel .ant-picker-cell,_:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-cell{
  padding:21px 0
}

.ant-picker-rtl{
  direction:rtl
}

.ant-picker-rtl .ant-picker-suffix{
  margin-right:4px;
  margin-left:0
}

.ant-picker-rtl .ant-picker-clear{
  right:auto;
  left:0
}

.ant-picker-rtl .ant-picker-separator{
  -webkit-transform:rotate(180deg);
          transform:rotate(180deg)
}

.ant-picker-panel-rtl .ant-picker-header-view button:not(:first-child){
  margin-right:8px;
  margin-left:0
}

.ant-picker-rtl.ant-picker-range .ant-picker-clear{
  right:auto;
  left:11px
}

.ant-picker-rtl.ant-picker-range .ant-picker-active-bar{
  margin-right:11px;
  margin-left:0
}

.ant-picker-rtl.ant-picker-range.ant-picker-small .ant-picker-active-bar{
  margin-right:7px
}

.ant-picker-dropdown-rtl .ant-picker-ranges{
  text-align:right
}

.ant-picker-dropdown-rtl .ant-picker-ranges .ant-picker-ok{
  float:left;
  margin-right:8px;
  margin-left:0
}

.ant-picker-panel-rtl{
  direction:rtl
}

.ant-picker-panel-rtl .ant-picker-prev-icon,.ant-picker-panel-rtl .ant-picker-super-prev-icon{
  -webkit-transform:rotate(135deg);
          transform:rotate(135deg)
}

.ant-picker-panel-rtl .ant-picker-next-icon,.ant-picker-panel-rtl .ant-picker-super-next-icon{
  -webkit-transform:rotate(-45deg);
          transform:rotate(-45deg)
}

.ant-picker-cell .ant-picker-cell-inner{
  position:relative;
  z-index:2;
  display:inline-block;
  min-width:24px;
  height:24px;
  line-height:24px;
  border-radius:2px;
  -webkit-transition:background .3s,border .3s;
  transition:background .3s,border .3s
}

.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-start:before{
  right:50%;
  left:0
}

.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-end:before{
  right:0;
  left:50%
}

.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-start.ant-picker-cell-range-end:before{
  right:50%;
  left:50%
}

.ant-picker-panel-rtl .ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start .ant-picker-cell-inner:after{
  right:0;
  left:-6px
}

.ant-picker-panel-rtl .ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end .ant-picker-cell-inner:after{
  right:-6px;
  left:0
}

.ant-picker-panel-rtl .ant-picker-cell-range-hover.ant-picker-cell-range-start:after{
  right:0;
  left:50%
}

.ant-picker-panel-rtl .ant-picker-cell-range-hover.ant-picker-cell-range-end:after{
  right:50%;
  left:0
}

.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-range-start-single):not(.ant-picker-cell-range-end) .ant-picker-cell-inner{
  border-radius:0 2px 2px 0
}

.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-range-end-single):not(.ant-picker-cell-range-start) .ant-picker-cell-inner{
  border-radius:2px 0 0 2px
}

.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-start:not(.ant-picker-cell-range-hover-edge-start-near-range):after,.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:after,.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-edge-start.ant-picker-cell-range-hover-edge-start-near-range:after,.ant-picker-panel-rtl tr>.ant-picker-cell-in-view.ant-picker-cell-range-hover:not(.ant-picker-cell-selected):first-child:after{
  right:6px;
  left:0;
  border-right:1px dashed #7ec1ff;
  border-left:none;
  border-top-left-radius:0;
  border-top-right-radius:2px;
  border-bottom-right-radius:2px;
  border-bottom-left-radius:0
}

.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover-edge-end.ant-picker-cell-range-hover-edge-end-near-range:after,.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-end:not(.ant-picker-cell-range-hover-edge-end-near-range):after,.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-hover-end:after,.ant-picker-panel-rtl tr>.ant-picker-cell-in-view.ant-picker-cell-range-hover:not(.ant-picker-cell-selected):last-child:after{
  right:0;
  left:6px;
  border-right:none;
  border-left:1px dashed #7ec1ff;
  border-top-left-radius:2px;
  border-top-right-radius:0;
  border-bottom-right-radius:0;
  border-bottom-left-radius:2px
}

.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover-start.ant-picker-cell-range-hover-edge-end:not(.ant-picker-cell-range-hover):after,.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-edge-start:not(.ant-picker-cell-range-hover):after,.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-end.ant-picker-cell-range-hover-edge-start:not(.ant-picker-cell-range-hover):after,.ant-picker-panel-rtl tr>.ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover.ant-picker-cell-range-hover-edge-end:first-child:after,.ant-picker-panel-rtl tr>.ant-picker-cell-in-view.ant-picker-cell-range-hover-end:first-child:after,.ant-picker-panel-rtl tr>.ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child:after,.ant-picker-panel-rtl tr>.ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover.ant-picker-cell-range-hover-edge-start:last-child:after{
  right:6px;
  left:6px;
  border-right:1px dashed #7ec1ff;
  border-left:1px dashed #7ec1ff;
  border-radius:2px
}

.ant-picker-dropdown-rtl .ant-picker-footer-extra{
  direction:rtl;
  text-align:right
}

.ant-picker-panel-rtl .ant-picker-time-panel{
  direction:ltr
}

.ant-table.ant-table-middle{
  font-size:14px
}

.ant-table.ant-table-middle .ant-table-footer,.ant-table.ant-table-middle .ant-table-tbody>tr>td,.ant-table.ant-table-middle .ant-table-thead>tr>th,.ant-table.ant-table-middle .ant-table-title,.ant-table.ant-table-middle tfoot>tr>td,.ant-table.ant-table-middle tfoot>tr>th{
  padding:12px 8px
}

.ant-table.ant-table-middle .ant-table-filter-trigger{
  margin-right:-4px
}

.ant-table.ant-table-middle .ant-table-expanded-row-fixed{
  margin:-12px -8px
}

.ant-table.ant-table-middle .ant-table-tbody .ant-table-wrapper:only-child .ant-table{
  margin:-12px -8px -12px 25px
}

.ant-table.ant-table-small{
  font-size:14px
}

.ant-table.ant-table-small .ant-table-footer,.ant-table.ant-table-small .ant-table-tbody>tr>td,.ant-table.ant-table-small .ant-table-thead>tr>th,.ant-table.ant-table-small .ant-table-title,.ant-table.ant-table-small tfoot>tr>td,.ant-table.ant-table-small tfoot>tr>th{
  padding:8px
}

.ant-table.ant-table-small .ant-table-filter-trigger{
  margin-right:-4px
}

.ant-table.ant-table-small .ant-table-expanded-row-fixed{
  margin:-8px
}

.ant-table.ant-table-small .ant-table-tbody .ant-table-wrapper:only-child .ant-table{
  margin:-8px -8px -8px 25px
}

.ant-table-small .ant-table-thead>tr>th{
  background-color:#fafafa
}

.ant-table-small .ant-table-selection-column{
  width:46px;
  min-width:46px
}

.ant-table.ant-table-bordered>.ant-table-title{
  border:1px solid #f0f0f0
}

.ant-table.ant-table-bordered>.ant-table-container{
  border-left:1px solid #f0f0f0
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr>th{
  border-right:1px solid #f0f0f0
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr:not(:last-child)>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr:not(:last-child)>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr:not(:last-child)>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr:not(:last-child)>th{
  border-bottom:1px solid #f0f0f0
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr>th:before,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr>th:before,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr>th:before,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr>th:before{
  background-color:transparent !important
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tfoot>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tfoot>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tfoot>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tfoot>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr>.ant-table-cell-fix-right-first:after{
  border-right:1px solid #f0f0f0
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>td>.ant-table-expanded-row-fixed{
  margin:-16px -17px
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>td>.ant-table-expanded-row-fixed:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>td>.ant-table-expanded-row-fixed:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>td>.ant-table-expanded-row-fixed:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>td>.ant-table-expanded-row-fixed:after{
  position:absolute;
  top:0;
  right:1px;
  border-right:1px solid #f0f0f0;
  content:""
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table{
  border-top:1px solid #f0f0f0
}

.ant-table.ant-table-bordered.ant-table-scroll-horizontal>.ant-table-container>.ant-table-body>table>tbody>tr.ant-table-expanded-row>td,.ant-table.ant-table-bordered.ant-table-scroll-horizontal>.ant-table-container>.ant-table-body>table>tbody>tr.ant-table-placeholder>td{
  border-right:0
}

.ant-table.ant-table-bordered.ant-table-middle>.ant-table-container>.ant-table-body>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered.ant-table-middle>.ant-table-container>.ant-table-content>table>tbody>tr>td>.ant-table-expanded-row-fixed{
  margin:-12px -9px
}

.ant-table.ant-table-bordered.ant-table-small>.ant-table-container>.ant-table-body>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered.ant-table-small>.ant-table-container>.ant-table-content>table>tbody>tr>td>.ant-table-expanded-row-fixed{
  margin:-8px -9px
}

.ant-table.ant-table-bordered>.ant-table-footer{
  border:1px solid #f0f0f0
}

.ant-table-cell .ant-table-container:first-child{
  border-top:0
}

.ant-table-cell-scrollbar{
  box-shadow:0 1px 0 1px #fafafa
}

.ant-table-wrapper{
  clear:both;
  max-width:100%
}

.ant-table-wrapper:before{
  display:table;
  content:""
}

.ant-table-wrapper:after{
  display:table;
  clear:both;
  content:""
}

.ant-table{
  box-sizing:border-box;
  margin:0;
  padding:0;
  color:rgba(0, 0, 0, 0.85);
  font-variant:tabular-nums;
  line-height:1.5715;
  list-style:none;
  -webkit-font-feature-settings:"tnum";
          font-feature-settings:"tnum";
  position:relative;
  font-size:14px;
  background:#fff;
  border-radius:2px
}

.ant-table table{
  width:100%;
  text-align:left;
  border-radius:2px 2px 0 0;
  border-collapse:separate;
  border-spacing:0
}

.ant-table-tbody>tr>td,.ant-table-thead>tr>th,.ant-table tfoot>tr>td,.ant-table tfoot>tr>th{
  position:relative;
  padding:16px;
  overflow-wrap:break-word
}

.ant-table-cell-ellipsis{
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
  word-break:keep-all
}

.ant-table-cell-ellipsis.ant-table-cell-fix-left-last,.ant-table-cell-ellipsis.ant-table-cell-fix-right-first{
  overflow:visible
}

.ant-table-cell-ellipsis.ant-table-cell-fix-left-last .ant-table-cell-content,.ant-table-cell-ellipsis.ant-table-cell-fix-right-first .ant-table-cell-content{
  display:block;
  overflow:hidden;
  text-overflow:ellipsis
}

.ant-table-cell-ellipsis .ant-table-column-title{
  overflow:hidden;
  text-overflow:ellipsis;
  word-break:keep-all
}

.ant-table-title{
  padding:16px
}

.ant-table-footer{
  padding:16px;
  color:rgba(0, 0, 0, 0.85);
  background:#fafafa
}

.ant-table-thead>tr>th{
  position:relative;
  color:rgba(0, 0, 0, 0.85);
  font-weight:500;
  text-align:left;
  background:#fafafa;
  border-bottom:1px solid #f0f0f0;
  -webkit-transition:background .3s ease;
  transition:background .3s ease
}

.ant-table-thead>tr>th[colspan]:not([colspan="1"]){
  text-align:center
}

.ant-table-thead>tr>th:not(:last-child):not(.ant-table-selection-column):not(.ant-table-row-expand-icon-cell):not([colspan]):before{
  position:absolute;
  top:50%;
  right:0;
  width:1px;
  height:1.6em;
  background-color:rgba(0, 0, 0, 0.06);
  -webkit-transform:translateY(-50%);
          transform:translateY(-50%);
  -webkit-transition:background-color .3s;
  transition:background-color .3s;
  content:""
}

.ant-table-thead>tr:not(:last-child)>th[colspan]{
  border-bottom:0
}

.ant-table-tbody>tr>td{
  border-bottom:1px solid #f0f0f0;
  -webkit-transition:background .3s;
  transition:background .3s
}

.ant-table-tbody>tr>td>.ant-table-expanded-row-fixed>.ant-table-wrapper:only-child .ant-table,.ant-table-tbody>tr>td>.ant-table-wrapper:only-child .ant-table{
  margin:-16px -16px -16px 33px
}

.ant-table-tbody>tr>td>.ant-table-expanded-row-fixed>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td,.ant-table-tbody>tr>td>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td{
  border-bottom:0
}

.ant-table-tbody>tr>td>.ant-table-expanded-row-fixed>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td:first-child,.ant-table-tbody>tr>td>.ant-table-expanded-row-fixed>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td:last-child,.ant-table-tbody>tr>td>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td:first-child,.ant-table-tbody>tr>td>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td:last-child{
  border-radius:0
}

.ant-table-tbody>tr.ant-table-row:hover>td{
  background:#fafafa
}

.ant-table-tbody>tr.ant-table-row-selected>td{
  background:#e6f7ff;
  border-color:rgba(0, 0, 0, 0.03)
}

.ant-table-tbody>tr.ant-table-row-selected:hover>td{
  background:#dcf4ff
}

.ant-table-summary{
  position:relative;
  z-index:2;
  background:#fff
}

div.ant-table-summary{
  box-shadow:0 -1px 0 #f0f0f0
}

.ant-table-summary>tr>td,.ant-table-summary>tr>th{
  border-bottom:1px solid #f0f0f0
}

.ant-table-pagination.ant-pagination{
  margin:12px 0 0
}

.ant-table-pagination{
  display:flex;
  flex-wrap:wrap;
  row-gap:8px
}

.ant-table-pagination>*{
  flex:none
}

.ant-table-pagination-left{
  justify-content:flex-start
}

.ant-table-pagination-center{
  justify-content:center
}

.ant-table-pagination-right{
  justify-content:flex-end
}

.ant-table-thead th.ant-table-column-has-sorters{
  cursor:pointer;
  -webkit-transition:all .3s;
  transition:all .3s
}

.ant-table-thead th.ant-table-column-has-sorters:hover{
  background:rgba(0, 0, 0, 0.04)
}

.ant-table-thead th.ant-table-column-has-sorters:hover:before{
  background-color:transparent !important
}

.ant-table-thead th.ant-table-column-has-sorters.ant-table-cell-fix-left:hover,.ant-table-thead th.ant-table-column-has-sorters.ant-table-cell-fix-right:hover,.ant-table-thead th.ant-table-column-sort{
  background:#f5f5f5
}

.ant-table-thead th.ant-table-column-sort:before{
  background-color:transparent !important
}

td.ant-table-column-sort{
  background:#fafafa
}

.ant-table-column-title{
  position:relative;
  z-index:1;
  flex:1 1
}

.ant-table-column-sorters{
  display:flex;
  flex:auto;
  align-items:center;
  justify-content:space-between
}

.ant-table-column-sorters:after{
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  width:100%;
  height:100%;
  content:""
}

.ant-table-column-sorter{
  color:#bfbfbf;
  font-size:0;
  -webkit-transition:color .3s;
  transition:color .3s
}

.ant-table-column-sorter-inner{
  display:inline-flex;
  flex-direction:column;
  align-items:center
}

.ant-table-column-sorter-down,.ant-table-column-sorter-up{
  font-size:11px
}

.ant-table-column-sorter-down.active,.ant-table-column-sorter-up.active{
  color:#1890ff
}

.ant-table-column-sorter-up+.ant-table-column-sorter-down{
  margin-top:-0.3em
}

.ant-table-column-sorters:hover .ant-table-column-sorter{
  color:#a6a6a6
}

.ant-table-filter-column{
  display:flex;
  justify-content:space-between
}

.ant-table-filter-trigger{
  position:relative;
  display:flex;
  align-items:center;
  margin:-4px -8px -4px 4px;
  padding:0 4px;
  color:#bfbfbf;
  font-size:12px;
  border-radius:2px;
  cursor:pointer;
  -webkit-transition:all .3s;
  transition:all .3s
}

.ant-table-filter-trigger:hover{
  color:rgba(0, 0, 0, 0.45);
  background:rgba(0, 0, 0, 0.04)
}

.ant-table-filter-trigger.active{
  color:#1890ff
}

.ant-table-filter-dropdown{
  box-sizing:border-box;
  margin:0;
  padding:0;
  color:rgba(0, 0, 0, 0.85);
  font-size:14px;
  font-variant:tabular-nums;
  line-height:1.5715;
  list-style:none;
  -webkit-font-feature-settings:"tnum";
          font-feature-settings:"tnum";
  min-width:120px;
  background-color:#fff;
  border-radius:2px;
  box-shadow:0 3px 6px -4px rgba(0, 0, 0, 0.12),0 6px 16px 0 rgba(0, 0, 0, 0.08),0 9px 28px 8px rgba(0, 0, 0, 0.05)
}

.ant-table-filter-dropdown .ant-dropdown-menu{
  max-height:264px;
  overflow-x:hidden;
  border:0;
  box-shadow:none
}

.ant-table-filter-dropdown-submenu>ul{
  max-height:calc(100vh - 130px);
  overflow-x:hidden;
  overflow-y:auto
}

.ant-table-filter-dropdown-submenu .ant-checkbox-wrapper+span,.ant-table-filter-dropdown .ant-checkbox-wrapper+span{
  padding-left:8px
}

.ant-table-filter-dropdown-btns{
  display:flex;
  justify-content:space-between;
  padding:7px 8px 7px 3px;
  overflow:hidden;
  background-color:inherit;
  border-top:1px solid #f0f0f0
}

.ant-table-selection-col{
  width:32px
}

.ant-table-bordered .ant-table-selection-col{
  width:50px
}

table tr td.ant-table-selection-column,table tr th.ant-table-selection-column{
  padding-right:8px;
  padding-left:8px;
  text-align:center;
  z-index:1
}

table tr td.ant-table-selection-column .ant-radio-wrapper,table tr th.ant-table-selection-column .ant-radio-wrapper{
  margin-right:0
}

table tr th.ant-table-selection-column:after{
  background-color:transparent !important
}

.ant-table-selection{
  position:relative;
  display:inline-flex;
  flex-direction:column
}

.ant-table-selection-extra{
  position:absolute;
  top:0;
  z-index:1;
  cursor:pointer;
  -webkit-transition:all .3s;
  transition:all .3s;
  -webkit-margin-start:100%;
  margin-inline-start:100%;
  -webkit-padding-start:4px;
  padding-inline-start:4px
}

.ant-table-selection-extra .anticon{
  color:#bfbfbf;
  font-size:10px
}

.ant-table-selection-extra .anticon:hover{
  color:#a6a6a6
}

.ant-table-expand-icon-col{
  width:48px
}

.ant-table-row-expand-icon-cell{
  text-align:center
}

.ant-table-row-indent{
  float:left;
  height:1px
}

.ant-table-row-expand-icon{
  color:#1890ff;
  text-decoration:none;
  cursor:pointer;
  -webkit-transition:color .3s;
  transition:color .3s;
  position:relative;
  display:inline-flex;
  float:left;
  box-sizing:border-box;
  width:17px;
  height:17px;
  padding:0;
  color:inherit;
  line-height:17px;
  background:#fff;
  border:1px solid #f0f0f0;
  border-radius:2px;
  outline:none;
  -webkit-transform:scale(0.94117647);
          transform:scale(0.94117647);
  -webkit-transition:all .3s;
  transition:all .3s;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
      user-select:none
}

.ant-table-row-expand-icon:focus,.ant-table-row-expand-icon:hover{
  color:#40a9ff
}

.ant-table-row-expand-icon:active{
  color:#096dd9
}

.ant-table-row-expand-icon:active,.ant-table-row-expand-icon:focus,.ant-table-row-expand-icon:hover{
  border-color:currentColor
}

.ant-table-row-expand-icon:after,.ant-table-row-expand-icon:before{
  position:absolute;
  background:currentColor;
  -webkit-transition:-webkit-transform .3s ease-out;
  transition:-webkit-transform .3s ease-out;
  transition:transform .3s ease-out;
  transition:transform .3s ease-out, -webkit-transform .3s ease-out;
  content:""
}

.ant-table-row-expand-icon:before{
  top:7px;
  right:3px;
  left:3px;
  height:1px
}

.ant-table-row-expand-icon:after{
  top:3px;
  bottom:3px;
  left:7px;
  width:1px;
  -webkit-transform:rotate(90deg);
          transform:rotate(90deg)
}

.ant-table-row-expand-icon-collapsed:before{
  -webkit-transform:rotate(-180deg);
          transform:rotate(-180deg)
}

.ant-table-row-expand-icon-collapsed:after{
  -webkit-transform:rotate(0deg);
          transform:rotate(0deg)
}

.ant-table-row-expand-icon-spaced{
  background:transparent;
  border:0;
  visibility:hidden
}

.ant-table-row-expand-icon-spaced:after,.ant-table-row-expand-icon-spaced:before{
  display:none;
  content:none
}

.ant-table-row-indent+.ant-table-row-expand-icon{
  margin-top:2.5005px;
  margin-right:8px
}

tr.ant-table-expanded-row:hover>td,tr.ant-table-expanded-row>td{
  background:#fbfbfb
}

tr.ant-table-expanded-row .ant-descriptions-view{
  display:flex
}

tr.ant-table-expanded-row .ant-descriptions-view table{
  flex:auto;
  width:auto
}

.ant-table .ant-table-expanded-row-fixed{
  position:relative;
  margin:-16px;
  padding:16px
}

.ant-table-tbody>tr.ant-table-placeholder{
  text-align:center
}

.ant-table-empty .ant-table-tbody>tr.ant-table-placeholder{
  color:rgba(0, 0, 0, 0.25)
}

.ant-table-tbody>tr.ant-table-placeholder:hover>td{
  background:#fff
}

.ant-table-cell-fix-left,.ant-table-cell-fix-right{
  position:-webkit-sticky !important;
  position:sticky !important;
  z-index:2;
  background:#fff
}

.ant-table-cell-fix-left-first:after,.ant-table-cell-fix-left-last:after{
  position:absolute;
  top:0;
  right:0;
  bottom:-1px;
  width:30px;
  -webkit-transform:translateX(100%);
          transform:translateX(100%);
  -webkit-transition:box-shadow .3s;
  transition:box-shadow .3s;
  content:"";
  pointer-events:none
}

.ant-table-cell-fix-right-first:after,.ant-table-cell-fix-right-last:after{
  position:absolute;
  top:0;
  bottom:-1px;
  left:0;
  width:30px;
  -webkit-transform:translateX(-100%);
          transform:translateX(-100%);
  -webkit-transition:box-shadow .3s;
  transition:box-shadow .3s;
  content:"";
  pointer-events:none
}

.ant-table .ant-table-container:after,.ant-table .ant-table-container:before{
  position:absolute;
  top:0;
  bottom:0;
  z-index:1;
  width:30px;
  -webkit-transition:box-shadow .3s;
  transition:box-shadow .3s;
  content:"";
  pointer-events:none
}

.ant-table .ant-table-container:before{
  left:0
}

.ant-table .ant-table-container:after{
  right:0
}

.ant-table-ping-left:not(.ant-table-has-fix-left) .ant-table-container{
  position:relative
}

.ant-table-ping-left .ant-table-cell-fix-left-first:after,.ant-table-ping-left .ant-table-cell-fix-left-last:after,.ant-table-ping-left:not(.ant-table-has-fix-left) .ant-table-container:before{
  box-shadow:inset 10px 0 8px -8px rgba(0, 0, 0, 0.15)
}

.ant-table-ping-left .ant-table-cell-fix-left-last:before{
  background-color:transparent !important
}

.ant-table-ping-right:not(.ant-table-has-fix-right) .ant-table-container{
  position:relative
}

.ant-table-ping-right .ant-table-cell-fix-right-first:after,.ant-table-ping-right .ant-table-cell-fix-right-last:after,.ant-table-ping-right:not(.ant-table-has-fix-right) .ant-table-container:after{
  box-shadow:inset -10px 0 8px -8px rgba(0, 0, 0, 0.15)
}

.ant-table-sticky-holder,.ant-table-sticky-scroll{
  position:-webkit-sticky;
  position:sticky;
  z-index:3;
  background:#fff
}

.ant-table-sticky-scroll{
  bottom:0;
  display:flex;
  align-items:center;
  border-top:1px solid #f0f0f0;
  opacity:.6
}

.ant-table-sticky-scroll:hover{
  -webkit-transform-origin:center bottom;
          transform-origin:center bottom
}

.ant-table-sticky-scroll-bar{
  height:8px;
  background-color:rgba(0, 0, 0, 0.35);
  border-radius:4px
}

.ant-table-sticky-scroll-bar-active,.ant-table-sticky-scroll-bar:hover{
  background-color:rgba(0, 0, 0, 0.8)
}

@media(-ms-high-contrast: none){
  .ant-table-ping-left .ant-table-cell-fix-left-last:after,.ant-table-ping-right .ant-table-cell-fix-right-first:after{
    box-shadow:none !important
  }
}

.ant-table-title{
  border-radius:2px 2px 0 0
}

.ant-table-title+.ant-table-container{
  border-top-left-radius:0;
  border-top-right-radius:0
}

.ant-table-title+.ant-table-container table>thead>tr:first-child th:first-child,.ant-table-title+.ant-table-container table>thead>tr:first-child th:last-child{
  border-radius:0
}

.ant-table-container{
  border-top-right-radius:2px
}

.ant-table-container,.ant-table-container table>thead>tr:first-child th:first-child{
  border-top-left-radius:2px
}

.ant-table-container table>thead>tr:first-child th:last-child{
  border-top-right-radius:2px
}

.ant-table-footer{
  border-radius:0 0 2px 2px
}

.ant-table-rtl,.ant-table-wrapper-rtl{
  direction:rtl
}

.ant-table-wrapper-rtl .ant-table table{
  text-align:right
}

.ant-table-wrapper-rtl .ant-table-thead>tr>th[colspan]:not([colspan="1"]){
  text-align:center
}

.ant-table-wrapper-rtl .ant-table-thead>tr>th{
  text-align:right
}

.ant-table-tbody>tr .ant-table-wrapper:only-child .ant-table.ant-table-rtl{
  margin:-16px 33px -16px -16px
}

.ant-table-wrapper.ant-table-wrapper-rtl .ant-table-pagination-left{
  justify-content:flex-end
}

.ant-table-wrapper.ant-table-wrapper-rtl .ant-table-pagination-right{
  justify-content:flex-start
}

.ant-table-wrapper-rtl .ant-table-column-sorter{
  margin-right:8px;
  margin-left:0
}

.ant-table-wrapper-rtl .ant-table-filter-column-title{
  padding:16px 16px 16px 2.3em
}

.ant-table-rtl .ant-table-thead tr th.ant-table-column-has-sorters .ant-table-filter-column-title{
  padding:0 0 0 2.3em
}

.ant-table-wrapper-rtl .ant-table-filter-trigger-container{
  right:auto;
  left:0
}

.ant-dropdown-menu-submenu-rtl.ant-table-filter-dropdown-submenu .ant-checkbox-wrapper+span,.ant-dropdown-menu-submenu-rtl.ant-table-filter-dropdown .ant-checkbox-wrapper+span,.ant-dropdown-rtl .ant-table-filter-dropdown-submenu .ant-checkbox-wrapper+span,.ant-dropdown-rtl .ant-table-filter-dropdown .ant-checkbox-wrapper+span{
  padding-right:8px;
  padding-left:0
}

.ant-table-wrapper-rtl .ant-table-selection{
  text-align:center
}

.ant-table-wrapper-rtl .ant-table-row-expand-icon,.ant-table-wrapper-rtl .ant-table-row-indent{
  float:right
}

.ant-table-wrapper-rtl .ant-table-row-indent+.ant-table-row-expand-icon{
  margin-right:0;
  margin-left:8px
}

.ant-table-wrapper-rtl .ant-table-row-expand-icon:after{
  -webkit-transform:rotate(-90deg);
          transform:rotate(-90deg)
}

.ant-table-wrapper-rtl .ant-table-row-expand-icon-collapsed:before{
  -webkit-transform:rotate(180deg);
          transform:rotate(180deg)
}

.ant-table-wrapper-rtl .ant-table-row-expand-icon-collapsed:after{
  -webkit-transform:rotate(0deg);
          transform:rotate(0deg)
}

.ant-pagination{
  box-sizing:border-box;
  color:rgba(0, 0, 0, 0.85);
  font-size:14px;
  font-variant:tabular-nums;
  line-height:1.5715;
  -webkit-font-feature-settings:"tnum";
          font-feature-settings:"tnum"
}

.ant-pagination,.ant-pagination ol,.ant-pagination ul{
  margin:0;
  padding:0;
  list-style:none
}

.ant-pagination:after{
  display:block;
  clear:both;
  height:0;
  overflow:hidden;
  visibility:hidden;
  content:" "
}

.ant-pagination-item,.ant-pagination-total-text{
  display:inline-block;
  height:32px;
  margin-right:8px;
  line-height:30px;
  vertical-align:middle
}

.ant-pagination-item{
  min-width:32px;
  font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
  text-align:center;
  list-style:none;
  background-color:#fff;
  border:1px solid #d9d9d9;
  border-radius:2px;
  outline:0;
  cursor:pointer;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
      user-select:none
}

.ant-pagination-item a{
  display:block;
  padding:0 6px;
  color:rgba(0, 0, 0, 0.85);
  -webkit-transition:none;
  transition:none
}

.ant-pagination-item a:hover{
  text-decoration:none
}

.ant-pagination-item:focus-visible,.ant-pagination-item:hover{
  border-color:#1890ff;
  -webkit-transition:all .3s;
  transition:all .3s
}

.ant-pagination-item:focus-visible a,.ant-pagination-item:hover a{
  color:#1890ff
}

.ant-pagination-item-active{
  font-weight:500;
  background:#fff;
  border-color:#1890ff
}

.ant-pagination-item-active a{
  color:#1890ff
}

.ant-pagination-item-active:focus-visible,.ant-pagination-item-active:hover{
  border-color:#40a9ff
}

.ant-pagination-item-active:focus-visible a,.ant-pagination-item-active:hover a{
  color:#40a9ff
}

.ant-pagination-jump-next,.ant-pagination-jump-prev{
  outline:0
}

.ant-pagination-jump-next .ant-pagination-item-container,.ant-pagination-jump-prev .ant-pagination-item-container{
  position:relative
}

.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{
  color:#1890ff;
  font-size:12px;
  letter-spacing:-1px;
  opacity:0;
  -webkit-transition:all .2s;
  transition:all .2s
}

.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon-svg,.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon-svg{
  top:0;
  right:0;
  bottom:0;
  left:0;
  margin:auto
}

.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-ellipsis,.ant-pagination-jump-prev .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);
  font-family:Arial,Helvetica,sans-serif;
  letter-spacing:2px;
  text-align:center;
  text-indent:.13em;
  opacity:1;
  -webkit-transition:all .2s;
  transition:all .2s
}

.ant-pagination-jump-next:focus-visible .ant-pagination-item-link-icon,.ant-pagination-jump-next:hover .ant-pagination-item-link-icon,.ant-pagination-jump-prev:focus-visible .ant-pagination-item-link-icon,.ant-pagination-jump-prev:hover .ant-pagination-item-link-icon{
  opacity:1
}

.ant-pagination-jump-next:focus-visible .ant-pagination-item-ellipsis,.ant-pagination-jump-next:hover .ant-pagination-item-ellipsis,.ant-pagination-jump-prev:focus-visible .ant-pagination-item-ellipsis,.ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis{
  opacity:0
}

.ant-pagination-jump-next,.ant-pagination-jump-prev,.ant-pagination-prev{
  margin-right:8px
}

.ant-pagination-jump-next,.ant-pagination-jump-prev,.ant-pagination-next,.ant-pagination-prev{
  display:inline-block;
  min-width:32px;
  height:32px;
  color:rgba(0, 0, 0, 0.85);
  font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
  line-height:32px;
  text-align:center;
  vertical-align:middle;
  list-style:none;
  border-radius:2px;
  cursor:pointer;
  -webkit-transition:all .3s;
  transition:all .3s
}

.ant-pagination-next,.ant-pagination-prev{
  font-family:Arial,Helvetica,sans-serif;
  outline:0
}

.ant-pagination-next button,.ant-pagination-prev button{
  color:rgba(0, 0, 0, 0.85);
  cursor:pointer;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
      user-select:none
}

.ant-pagination-next:hover button,.ant-pagination-prev:hover button{
  border-color:#40a9ff
}

.ant-pagination-next .ant-pagination-item-link,.ant-pagination-prev .ant-pagination-item-link{
  display:block;
  width:100%;
  height:100%;
  padding:0;
  font-size:12px;
  text-align:center;
  background-color:#fff;
  border:1px solid #d9d9d9;
  border-radius:2px;
  outline:none;
  -webkit-transition:all .3s;
  transition:all .3s
}

.ant-pagination-next:focus-visible .ant-pagination-item-link,.ant-pagination-next:hover .ant-pagination-item-link,.ant-pagination-prev:focus-visible .ant-pagination-item-link,.ant-pagination-prev:hover .ant-pagination-item-link{
  color:#1890ff;
  border-color:#1890ff
}

.ant-pagination-disabled,.ant-pagination-disabled:focus-visible,.ant-pagination-disabled:hover{
  cursor:not-allowed
}

.ant-pagination-disabled .ant-pagination-item-link,.ant-pagination-disabled:focus-visible .ant-pagination-item-link,.ant-pagination-disabled:hover .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
}

@media(-ms-high-contrast: none){
  .ant-pagination-options,.ant-pagination-options ::-ms-backdrop{
    vertical-align:top
  }
}

.ant-pagination-options-size-changer.ant-select{
  display:inline-block;
  width:auto
}

.ant-pagination-options-quick-jumper{
  display:inline-block;
  height:32px;
  margin-left:8px;
  line-height:32px;
  vertical-align:top
}

.ant-pagination-options-quick-jumper input{
  position:relative;
  display:inline-block;
  width:100%;
  min-width:0;
  padding:4px 11px;
  color:rgba(0, 0, 0, 0.85);
  font-size:14px;
  line-height:1.5715;
  background-color:#fff;
  background-image:none;
  border:1px solid #d9d9d9;
  border-radius:2px;
  -webkit-transition:all .3s;
  transition:all .3s;
  width:50px;
  height:32px;
  margin:0 8px
}

.ant-pagination-options-quick-jumper input::-moz-placeholder{
  opacity:1
}

.ant-pagination-options-quick-jumper input::-webkit-input-placeholder{
  color:#bfbfbf
}

.ant-pagination-options-quick-jumper input:-ms-input-placeholder{
  color:#bfbfbf
}

.ant-pagination-options-quick-jumper input::placeholder{
  color:#bfbfbf
}

.ant-pagination-options-quick-jumper input:-moz-placeholder-shown{
  text-overflow:ellipsis
}

.ant-pagination-options-quick-jumper input:-ms-input-placeholder{
  text-overflow:ellipsis
}

.ant-pagination-options-quick-jumper input:placeholder-shown{
  text-overflow:ellipsis
}

.ant-pagination-options-quick-jumper input:hover{
  border-color:#40a9ff;
  border-right-width:1px !important
}

.ant-pagination-options-quick-jumper input-focused,.ant-pagination-options-quick-jumper input:focus{
  border-color:#40a9ff;
  border-right-width:1px !important;
  outline:0;
  box-shadow:0 0 0 2px rgba(24, 144, 255, 0.2)
}

.ant-pagination-options-quick-jumper input-disabled{
  color:rgba(0, 0, 0, 0.25);
  background-color:#f5f5f5;
  border-color:#d9d9d9;
  box-shadow:none;
  cursor:not-allowed;
  opacity:1
}

.ant-pagination-options-quick-jumper input-disabled:hover{
  border-color:#d9d9d9;
  border-right-width:1px !important
}

.ant-pagination-options-quick-jumper input[disabled]{
  color:rgba(0, 0, 0, 0.25);
  background-color:#f5f5f5;
  border-color:#d9d9d9;
  box-shadow:none;
  cursor:not-allowed;
  opacity:1
}

.ant-pagination-options-quick-jumper input[disabled]:hover{
  border-color:#d9d9d9;
  border-right-width:1px !important
}

.ant-pagination-options-quick-jumper input-borderless,.ant-pagination-options-quick-jumper input-borderless-disabled,.ant-pagination-options-quick-jumper input-borderless-focused,.ant-pagination-options-quick-jumper input-borderless:focus,.ant-pagination-options-quick-jumper input-borderless:hover,.ant-pagination-options-quick-jumper input-borderless[disabled]{
  background-color:transparent;
  border:none;
  box-shadow:none
}

textarea.ant-pagination-options-quick-jumper input{
  max-width:100%;
  height:auto;
  min-height:32px;
  line-height:1.5715;
  vertical-align:bottom;
  -webkit-transition:all .3s,height 0s;
  transition:all .3s,height 0s
}

.ant-pagination-options-quick-jumper input-lg{
  padding:6.5px 11px;
  font-size:16px
}

.ant-pagination-options-quick-jumper input-sm{
  padding:0 7px
}

.ant-pagination-simple .ant-pagination-next,.ant-pagination-simple .ant-pagination-prev{
  height:24px;
  line-height:24px;
  vertical-align:top
}

.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link,.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link{
  height:24px;
  background-color:transparent;
  border:0
}

.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link:after,.ant-pagination-simple .ant-pagination-prev .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:2px;
  outline:none;
  -webkit-transition:border-color .3s;
  transition:border-color .3s
}

.ant-pagination-simple .ant-pagination-simple-pager input:hover{
  border-color:#1890ff
}

.ant-pagination-simple .ant-pagination-simple-pager input[disabled]{
  color:rgba(0, 0, 0, 0.25);
  background:#f5f5f5;
  border-color:#d9d9d9;
  cursor:not-allowed
}

.ant-pagination.mini .ant-pagination-simple-pager,.ant-pagination.mini .ant-pagination-total-text{
  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-next,.ant-pagination.mini .ant-pagination-prev{
  min-width:24px;
  height:24px;
  margin:0;
  line-height:24px
}

.ant-pagination.mini .ant-pagination-next .ant-pagination-item-link,.ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link{
  background:transparent;
  border-color:transparent
}

.ant-pagination.mini .ant-pagination-next .ant-pagination-item-link:after,.ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link:after{
  height:24px;
  line-height:24px
}

.ant-pagination.mini .ant-pagination-jump-next,.ant-pagination.mini .ant-pagination-jump-prev{
  height:24px;
  margin-right:0;
  line-height:24px
}

.ant-pagination.mini .ant-pagination-options{
  margin-left:2px
}

.ant-pagination.mini .ant-pagination-options-size-changer{
  top:0
}

.ant-pagination.mini .ant-pagination-options-quick-jumper{
  height:24px;
  line-height:24px
}

.ant-pagination.mini .ant-pagination-options-quick-jumper input{
  padding:0 7px;
  width:44px;
  height:24px
}

.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:#e6e6e6
}

.ant-pagination.ant-pagination-disabled .ant-pagination-item-active a{
  color:rgba(0, 0, 0, 0.25)
}

.ant-pagination.ant-pagination-disabled .ant-pagination-item-link{
  color:rgba(0, 0, 0, 0.25);
  background:#f5f5f5;
  border-color:#d9d9d9;
  cursor:not-allowed
}

.ant-pagination-simple.ant-pagination.ant-pagination-disabled .ant-pagination-item-link{
  background:transparent
}

.ant-pagination.ant-pagination-disabled .ant-pagination-item-link-icon{
  opacity:0
}

.ant-pagination.ant-pagination-disabled .ant-pagination-item-ellipsis{
  opacity:1
}

.ant-pagination.ant-pagination-disabled .ant-pagination-simple-pager{
  color:rgba(0, 0, 0, 0.25)
}

@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-pagination-rtl .ant-pagination-item,.ant-pagination-rtl .ant-pagination-jump-next,.ant-pagination-rtl .ant-pagination-jump-prev,.ant-pagination-rtl .ant-pagination-prev,.ant-pagination-rtl .ant-pagination-total-text{
  margin-right:0;
  margin-left:8px
}

.ant-pagination-rtl .ant-pagination-slash{
  margin:0 5px 0 10px
}

.ant-pagination-rtl .ant-pagination-options{
  margin-right:16px;
  margin-left:0
}

.ant-pagination-rtl .ant-pagination-options .ant-pagination-options-size-changer.ant-select{
  margin-right:0;
  margin-left:8px
}

.ant-pagination-rtl .ant-pagination-options .ant-pagination-options-quick-jumper{
  margin-left:0
}

.ant-pagination-rtl.ant-pagination-simple .ant-pagination-simple-pager,.ant-pagination-rtl.ant-pagination-simple .ant-pagination-simple-pager input{
  margin-right:0;
  margin-left:8px
}

.ant-pagination-rtl.ant-pagination.mini .ant-pagination-options{
  margin-right:2px;
  margin-left:0
}

.ant-select-single .ant-select-selector{
  display:flex
}

.ant-select-single .ant-select-selector .ant-select-selection-search{
  position:absolute;
  top:0;
  right:11px;
  bottom:0;
  left:11px
}

.ant-select-single .ant-select-selector .ant-select-selection-search-input{
  width:100%
}

.ant-select-single .ant-select-selector .ant-select-selection-item,.ant-select-single .ant-select-selector .ant-select-selection-placeholder{
  padding:0;
  line-height:30px;
  -webkit-transition:all .3s;
  transition:all .3s
}

@supports(-moz-appearance: meterbar){
  .ant-select-single .ant-select-selector .ant-select-selection-item,.ant-select-single .ant-select-selector .ant-select-selection-placeholder{
    line-height:30px
  }
}

.ant-select-single .ant-select-selector .ant-select-selection-item{
  position:relative;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
      user-select:none
}

.ant-select-single .ant-select-selector .ant-select-selection-placeholder{
  pointer-events:none
}

.ant-select-single .ant-select-selector .ant-select-selection-item:after,.ant-select-single .ant-select-selector .ant-select-selection-placeholder:after,.ant-select-single .ant-select-selector:after{
  display:inline-block;
  width:0;
  visibility:hidden;
  content:" "
}

.ant-select-single.ant-select-show-arrow .ant-select-selection-search{
  right:25px
}

.ant-select-single.ant-select-show-arrow .ant-select-selection-item,.ant-select-single.ant-select-show-arrow .ant-select-selection-placeholder{
  padding-right:18px
}

.ant-select-single.ant-select-open .ant-select-selection-item{
  color:#bfbfbf
}

.ant-select-single:not(.ant-select-customize-input) .ant-select-selector{
  width:100%;
  height:32px;
  padding:0 11px
}

.ant-select-single:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input{
  height:30px
}

.ant-select-single:not(.ant-select-customize-input) .ant-select-selector:after{
  line-height:30px
}

.ant-select-single.ant-select-customize-input .ant-select-selector:after{
  display:none
}

.ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-search{
  position:static;
  width:100%
}

.ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-placeholder{
  position:absolute;
  right:0;
  left:0;
  padding:0 11px
}

.ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-placeholder:after{
  display:none
}

.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector{
  height:40px
}

.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item,.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder,.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector:after{
  line-height:38px
}

.ant-select-single.ant-select-lg:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input{
  height:38px
}

.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector{
  height:24px
}

.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item,.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder,.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector:after{
  line-height:22px
}

.ant-select-single.ant-select-sm:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input{
  height:22px
}

.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selection-search{
  right:7px;
  left:7px
}

.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector{
  padding:0 7px
}

.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-search{
  right:28px
}

.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-item,.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-placeholder{
  padding-right:21px
}

.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector{
  padding:0 11px
}

.ant-select-selection-overflow{
  position:relative;
  display:flex;
  flex:auto;
  flex-wrap:wrap;
  max-width:100%
}

.ant-select-selection-overflow-item{
  flex:none;
  align-self:center;
  max-width:100%
}

.ant-select-multiple .ant-select-selector{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  padding:1px 4px
}

.ant-select-show-search.ant-select-multiple .ant-select-selector{
  cursor:text
}

.ant-select-disabled.ant-select-multiple .ant-select-selector{
  background:#f5f5f5;
  cursor:not-allowed
}

.ant-select-multiple .ant-select-selector:after{
  display:inline-block;
  width:0;
  margin:2px 0;
  line-height:24px;
  content:" "
}

.ant-select-multiple.ant-select-allow-clear .ant-select-selector,.ant-select-multiple.ant-select-show-arrow .ant-select-selector{
  padding-right:24px
}

.ant-select-multiple .ant-select-selection-item{
  position:relative;
  display:flex;
  flex:none;
  box-sizing:border-box;
  max-width:100%;
  height:24px;
  margin-top:2px;
  margin-bottom:2px;
  line-height:22px;
  background:#f5f5f5;
  border:1px solid #f0f0f0;
  border-radius:2px;
  cursor:default;
  -webkit-transition:font-size .3s,line-height .3s,height .3s;
  transition:font-size .3s,line-height .3s,height .3s;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
      user-select:none;
  -webkit-margin-end:4px;
  margin-inline-end:4px;
  -webkit-padding-start:8px;
  padding-inline-start:8px;
  -webkit-padding-end:4px;
  padding-inline-end:4px
}

.ant-select-disabled.ant-select-multiple .ant-select-selection-item{
  color:#bfbfbf;
  border-color:#d9d9d9;
  cursor:not-allowed
}

.ant-select-multiple .ant-select-selection-item-content{
  display:inline-block;
  margin-right:4px;
  overflow:hidden;
  white-space:pre;
  text-overflow:ellipsis
}

.ant-select-multiple .ant-select-selection-item-remove{
  color:inherit;
  font-style:normal;
  line-height:0;
  text-align:center;
  text-transform:none;
  vertical-align:-0.125em;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:inline-block;
  color:rgba(0, 0, 0, 0.45);
  font-weight:700;
  font-size:10px;
  line-height:inherit;
  cursor:pointer
}

.ant-select-multiple .ant-select-selection-item-remove>*{
  line-height:1
}

.ant-select-multiple .ant-select-selection-item-remove svg{
  display:inline-block
}

.ant-select-multiple .ant-select-selection-item-remove:before{
  display:none
}

.ant-select-multiple .ant-select-selection-item-remove .ant-select-multiple .ant-select-selection-item-remove-icon{
  display:block
}

.ant-select-multiple .ant-select-selection-item-remove>.anticon{
  vertical-align:-0.2em
}

.ant-select-multiple .ant-select-selection-item-remove:hover{
  color:rgba(0, 0, 0, 0.75)
}

.ant-select-multiple .ant-select-selection-overflow-item+.ant-select-selection-overflow-item .ant-select-selection-search{
  -webkit-margin-start:0;
  margin-inline-start:0
}

.ant-select-multiple .ant-select-selection-search{
  position:relative;
  max-width:100%;
  margin-top:2px;
  margin-bottom:2px;
  -webkit-margin-start:7px;
  margin-inline-start:7px
}

.ant-select-multiple .ant-select-selection-search-input,.ant-select-multiple .ant-select-selection-search-mirror{
  height:24px;
  font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
  line-height:24px;
  -webkit-transition:all .3s;
  transition:all .3s
}

.ant-select-multiple .ant-select-selection-search-input{
  width:100%;
  min-width:4.1px
}

.ant-select-multiple .ant-select-selection-search-mirror{
  position:absolute;
  top:0;
  left:0;
  z-index:999;
  white-space:pre;
  visibility:hidden
}

.ant-select-multiple .ant-select-selection-placeholder{
  position:absolute;
  top:50%;
  right:11px;
  left:11px;
  -webkit-transform:translateY(-50%);
          transform:translateY(-50%);
  -webkit-transition:all .3s;
  transition:all .3s
}

.ant-select-multiple.ant-select-lg .ant-select-selector:after{
  line-height:32px
}

.ant-select-multiple.ant-select-lg .ant-select-selection-item{
  line-height:30px
}

.ant-select-multiple.ant-select-lg .ant-select-selection-search{
  height:32px;
  line-height:32px
}

.ant-select-multiple.ant-select-lg .ant-select-selection-search-input,.ant-select-multiple.ant-select-lg .ant-select-selection-search-mirror{
  height:32px;
  line-height:30px
}

.ant-select-multiple.ant-select-sm .ant-select-selector:after{
  line-height:16px
}

.ant-select-multiple.ant-select-sm .ant-select-selection-item{
  height:16px;
  line-height:14px
}

.ant-select-multiple.ant-select-sm .ant-select-selection-search{
  height:16px;
  line-height:16px
}

.ant-select-multiple.ant-select-sm .ant-select-selection-search-input,.ant-select-multiple.ant-select-sm .ant-select-selection-search-mirror{
  height:16px;
  line-height:14px
}

.ant-select-multiple.ant-select-sm .ant-select-selection-placeholder{
  left:7px
}

.ant-select-multiple.ant-select-sm .ant-select-selection-search{
  -webkit-margin-start:3px;
  margin-inline-start:3px
}

.ant-select-multiple.ant-select-lg .ant-select-selection-item{
  height:32px;
  line-height:32px
}

.ant-select-disabled .ant-select-selection-item-remove{
  display:none
}

.ant-select{
  box-sizing:border-box;
  margin:0;
  padding:0;
  color:rgba(0, 0, 0, 0.85);
  font-size:14px;
  font-variant:tabular-nums;
  line-height:1.5715;
  list-style:none;
  -webkit-font-feature-settings:"tnum";
          font-feature-settings:"tnum";
  position:relative;
  display:inline-block;
  cursor:pointer
}

.ant-select:not(.ant-select-customize-input) .ant-select-selector{
  position:relative;
  background-color:#fff;
  border:1px solid #d9d9d9;
  border-radius:2px;
  -webkit-transition:all .3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition:all .3s cubic-bezier(0.645, 0.045, 0.355, 1)
}

.ant-select:not(.ant-select-customize-input) .ant-select-selector input{
  cursor:pointer
}

.ant-select-show-search.ant-select:not(.ant-select-customize-input) .ant-select-selector{
  cursor:text
}

.ant-select-show-search.ant-select:not(.ant-select-customize-input) .ant-select-selector input{
  cursor:auto
}

.ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector{
  border-color:#40a9ff;
  border-right-width:1px !important;
  outline:0;
  box-shadow:0 0 0 2px rgba(24, 144, 255, 0.2)
}

.ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector{
  color:rgba(0, 0, 0, 0.25);
  background:#f5f5f5;
  cursor:not-allowed
}

.ant-select-multiple.ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector{
  background:#f5f5f5
}

.ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector input{
  cursor:not-allowed
}

.ant-select:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input{
  margin:0;
  padding:0;
  background:transparent;
  border:none;
  outline:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none
}

.ant-select:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input::-webkit-search-cancel-button{
  display:none;
  -webkit-appearance:none
}

.ant-select:not(.ant-select-disabled):hover .ant-select-selector{
  border-color:#40a9ff;
  border-right-width:1px !important
}

.ant-select-selection-item{
  flex:1 1;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis
}

@media(-ms-high-contrast: none){
  .ant-select-selection-item,.ant-select-selection-item ::-ms-backdrop{
    flex:auto
  }
}

.ant-select-selection-placeholder{
  flex:1 1;
  overflow:hidden;
  color:#bfbfbf;
  white-space:nowrap;
  text-overflow:ellipsis;
  pointer-events:none
}

@media(-ms-high-contrast: none){
  .ant-select-selection-placeholder,.ant-select-selection-placeholder ::-ms-backdrop{
    flex:auto
  }
}

.ant-select-arrow{
  display:inline-block;
  color:inherit;
  font-style:normal;
  line-height:0;
  text-transform:none;
  vertical-align:-0.125em;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  position:absolute;
  top:50%;
  right:11px;
  width:12px;
  height:12px;
  margin-top:-6px;
  color:rgba(0, 0, 0, 0.25);
  font-size:12px;
  line-height:1;
  text-align:center;
  pointer-events:none
}

.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 .anticon{
  vertical-align:top;
  -webkit-transition:-webkit-transform .3s;
  transition:-webkit-transform .3s;
  transition:transform .3s;
  transition:transform .3s, -webkit-transform .3s
}

.ant-select-arrow .anticon>svg{
  vertical-align:top
}

.ant-select-arrow .anticon:not(.ant-select-suffix){
  pointer-events:auto
}

.ant-select-disabled .ant-select-arrow{
  cursor:not-allowed
}

.ant-select-clear{
  position:absolute;
  top:50%;
  right:11px;
  z-index:1;
  display:inline-block;
  width:12px;
  height:12px;
  margin-top:-6px;
  color:rgba(0, 0, 0, 0.25);
  font-size:12px;
  font-style:normal;
  line-height:1;
  text-align:center;
  text-transform:none;
  background:#fff;
  cursor:pointer;
  opacity:0;
  -webkit-transition:color .3s ease,opacity .15s ease;
  transition:color .3s ease,opacity .15s ease;
  text-rendering:auto
}

.ant-select-clear:before{
  display:block
}

.ant-select-clear:hover{
  color:rgba(0, 0, 0, 0.45)
}

.ant-select:hover .ant-select-clear{
  opacity:1
}

.ant-select-dropdown{
  margin:0;
  color:rgba(0, 0, 0, 0.85);
  font-variant:tabular-nums;
  line-height:1.5715;
  list-style:none;
  -webkit-font-feature-settings:"tnum", normal;
          font-feature-settings:"tnum", normal;
  position:absolute;
  top:-9999px;
  left:-9999px;
  z-index:1050;
  box-sizing:border-box;
  padding:4px 0;
  overflow:hidden;
  font-size:14px;
  font-variant:normal;
  background-color:#fff;
  border-radius:2px;
  outline:none;
  box-shadow:0 3px 6px -4px rgba(0, 0, 0, 0.12),0 6px 16px 0 rgba(0, 0, 0, 0.08),0 9px 28px 8px rgba(0, 0, 0, 0.05)
}

.ant-select-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-select-dropdown-placement-bottomLeft,.ant-select-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-select-dropdown-placement-bottomLeft{
  -webkit-animation-name:antSlideUpIn;
          animation-name:antSlideUpIn
}

.ant-select-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-select-dropdown-placement-topLeft,.ant-select-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-select-dropdown-placement-topLeft{
  -webkit-animation-name:antSlideDownIn;
          animation-name:antSlideDownIn
}

.ant-select-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-select-dropdown-placement-bottomLeft{
  -webkit-animation-name:antSlideUpOut;
          animation-name:antSlideUpOut
}

.ant-select-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-select-dropdown-placement-topLeft{
  -webkit-animation-name:antSlideDownOut;
          animation-name:antSlideDownOut
}

.ant-select-dropdown-hidden{
  display:none
}

.ant-select-dropdown-empty{
  color:rgba(0, 0, 0, 0.25)
}

.ant-select-item-empty{
  color:rgba(0, 0, 0, 0.85);
  color:rgba(0, 0, 0, 0.25)
}

.ant-select-item,.ant-select-item-empty{
  position:relative;
  display:block;
  min-height:32px;
  padding:5px 12px;
  font-weight:400;
  font-size:14px;
  line-height:22px
}

.ant-select-item{
  color:rgba(0, 0, 0, 0.85);
  cursor:pointer;
  -webkit-transition:background .3s ease;
  transition:background .3s ease
}

.ant-select-item-group{
  color:rgba(0, 0, 0, 0.45);
  font-size:12px;
  cursor:default
}

.ant-select-item-option{
  display:flex
}

.ant-select-item-option-content{
  flex:auto;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis
}

.ant-select-item-option-state{
  flex:none
}

.ant-select-item-option-active:not(.ant-select-item-option-disabled){
  background-color:#f5f5f5
}

.ant-select-item-option-selected:not(.ant-select-item-option-disabled){
  color:rgba(0, 0, 0, 0.85);
  font-weight:600;
  background-color:#e6f7ff
}

.ant-select-item-option-selected:not(.ant-select-item-option-disabled) .ant-select-item-option-state{
  color:#1890ff
}

.ant-select-item-option-disabled{
  color:rgba(0, 0, 0, 0.25);
  cursor:not-allowed
}

.ant-select-item-option-disabled.ant-select-item-option-selected{
  background-color:#f5f5f5
}

.ant-select-item-option-grouped{
  padding-left:24px
}

.ant-select-lg{
  font-size:16px
}

.ant-select-borderless .ant-select-selector{
  background-color:transparent !important;
  border-color:transparent !important;
  box-shadow:none !important
}

.ant-select-rtl{
  direction:rtl
}

.ant-select-rtl .ant-select-arrow,.ant-select-rtl .ant-select-clear{
  right:auto;
  left:11px
}

.ant-select-dropdown-rtl{
  direction:rtl
}

.ant-select-dropdown-rtl .ant-select-item-option-grouped{
  padding-right:24px;
  padding-left:12px
}

.ant-select-rtl.ant-select-multiple.ant-select-allow-clear .ant-select-selector,.ant-select-rtl.ant-select-multiple.ant-select-show-arrow .ant-select-selector{
  padding-right:4px;
  padding-left:24px
}

.ant-select-rtl.ant-select-multiple .ant-select-selection-item{
  text-align:right
}

.ant-select-rtl.ant-select-multiple .ant-select-selection-item-content{
  margin-right:0;
  margin-left:4px;
  text-align:right
}

.ant-select-rtl.ant-select-multiple .ant-select-selection-search-mirror{
  right:0;
  left:auto
}

.ant-select-rtl.ant-select-multiple .ant-select-selection-placeholder{
  right:11px;
  left:auto
}

.ant-select-rtl.ant-select-multiple.ant-select-sm .ant-select-selection-placeholder{
  right:7px
}

.ant-select-rtl.ant-select-single .ant-select-selector .ant-select-selection-item,.ant-select-rtl.ant-select-single .ant-select-selector .ant-select-selection-placeholder{
  right:0;
  left:9px;
  text-align:right
}

.ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-search{
  right:11px;
  left:25px
}

.ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-item,.ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-placeholder{
  padding-right:0;
  padding-left:18px
}

.ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-search{
  right:6px
}

.ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-item,.ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-placeholder{
  padding-right:0;
  padding-left:21px
}

.neeto-ui-accordions-outer-wrapper{
  padding:24px;
  border-radius:8px;
  border-radius:var(--neeto-ui-rounded-lg)
}

.neeto-ui-accordion__wrapper{
  border-bottom:thin solid rgb(216, 220, 222);
  border-bottom:thin solid rgb(216,220,222);
  border-bottom:thin solid rgb(var(--neeto-ui-gray-300))
}

.neeto-ui-accordion__wrapper--last-item{
  border-bottom:none
}

.neeto-ui-accordion__wrapper .neeto-ui-accordion__item{
  padding:16px 8px;
  cursor:pointer;
  -webkit-transition:all .3s;
  transition:all .3s
}

.neeto-ui-accordion__wrapper .neeto-ui-accordion__item .neeto-ui-accordion__item-handle{
  font-size:16px;
  font-weight:500;
  line-height:16px
}

.neeto-ui-accordion__wrapper .neeto-ui-accordion__item:focus{
  outline:none
}

.neeto-ui-accordion__wrapper .neeto-ui-accordion__item:hover .neeto-ui-accordion__item-handle{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-accordion__wrapper .neeto-ui-accordion__item:focus-visible{
  outline:3px solid rgba(69, 88, 249, 50%);
  outline:3px solid rgba(69,88,249, 50%);
  outline:3px solid rgba(var(--neeto-ui-primary-500), 50%);
  outline-offset:1px;
  box-shadow:none
}

.neeto-ui-accordion__wrapper .neeto-ui-accordion__item:focus-visible .neeto-ui-accordion__item-handle{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-accordion__wrapper .neeto-ui-accordion__drop{
  padding:4px 8px 16px;
  margin-bottom:0;
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700))
}

.neeto-ui-action-dropdown{
  display:inline-flex;
  flex-direction:row;
  align-items:center;
  justify-content:center;
  gap:1px
}

.neeto-ui-action-dropdown>.neeto-ui-btn:first-child{
  border-top-right-radius:0;
  border-bottom-right-radius:0
}

.neeto-ui-action-dropdown>.neeto-ui-btn.neeto-ui-btn--icon-only{
  border-top-left-radius:0;
  border-bottom-left-radius:0
}

.neeto-ui-avatar--container{
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  position:relative;
  flex-shrink:0
}

.neeto-ui-avatar--container.neeto-ui-avatar--container-round{
  border-radius:999px;
  border-radius:var(--neeto-ui-rounded-full)
}

.neeto-ui-avatar--container .neeto-ui-avatar__text{
  font-weight:600;
  font-weight:var(--neeto-ui-font-semibold);
  text-align:center;
  text-transform:capitalize;
  font-size:10px;
  font-size:var(--neeto-ui-text-xxs);
  color:#2f3941;
  line-height:1
}

.neeto-ui-avatar--container .neeto-ui-avatar__text.neeto-ui-avatar__text-medium{
  font-size:12px;
  font-size:var(--neeto-ui-text-xs)
}

.neeto-ui-avatar--container .neeto-ui-avatar__text.neeto-ui-avatar__text-large{
  font-size:14px;
  font-size:var(--neeto-ui-text-sm)
}

.neeto-ui-avatar--container .neeto-ui-avatar__text.neeto-ui-avatar__text-xlarge{
  font-size:24px;
  font-size:var(--neeto-ui-text-2xl)
}

.neeto-ui-avatar--container .neeto-ui-avatar__status{
  position:absolute;
  right:0;
  top:0;
  width:.4rem;
  height:.4rem;
  background-color:#fff;
  border:.5px solid #fff;
  border-radius:999px;
  border-radius:var(--neeto-ui-rounded-full);
  -webkit-transform:translateX(-40%);
          transform:translateX(-40%)
}

.neeto-ui-avatar--container .neeto-ui-avatar__status.neeto-ui-avatar__status-medium{
  width:.465rem;
  height:.465rem
}

.neeto-ui-avatar--container .neeto-ui-avatar__status.neeto-ui-avatar__status-large{
  width:.563rem;
  height:.563rem
}

.neeto-ui-avatar--container .neeto-ui-avatar__status.neeto-ui-avatar__status-xlarge{
  width:.75rem;
  height:.75rem;
  -webkit-transform:translateX(-65%);
          transform:translateX(-65%)
}

.neeto-ui-avatar--container .neeto-ui-avatar__status.online{
  background-color:rgb(38, 142, 108);
  background-color:rgb(38,142,108);
  background-color:rgb(var(--neeto-ui-success-500))
}

.neeto-ui-avatar--container .neeto-ui-avatar__status.idle{
  background-color:rgb(218, 123, 17);
  background-color:rgb(218,123,17);
  background-color:rgb(var(--neeto-ui-warning-500))
}

.neeto-ui-avatar--container .neeto-ui-avatar__status.offline{
  background-color:rgb(216, 220, 222);
  background-color:rgb(216,220,222);
  background-color:rgb(var(--neeto-ui-gray-300))
}

.neeto-ui-avatar--container .neeto-ui-avatar{
  display:inline-block;
  border-radius:999px;
  border-radius:var(--neeto-ui-rounded-full);
  height:1.5rem;
  width:1.5rem;
  -o-object-fit:cover;
  object-fit:cover
}

.neeto-ui-avatar--container .neeto-ui-avatar.hidden{
  display:none
}

.neeto-ui-avatar--container .neeto-ui-avatar.neeto-ui-avatar--medium{
  height:2rem;
  width:2rem
}

.neeto-ui-avatar--container .neeto-ui-avatar.neeto-ui-avatar--large{
  height:2.5rem;
  width:2.5rem
}

.neeto-ui-avatar--container .neeto-ui-avatar.neeto-ui-avatar--xlarge{
  height:4rem;
  width:4rem
}

.neeto-ui-avatar--container-bg-1{
  background-color:rgb(232, 233, 237);
  background-color:rgb(232,233,237);
  background-color:rgb(var(--neeto-ui-pastel-silver))
}

.neeto-ui-avatar--container-bg-2{
  background-color:rgb(255, 229, 229);
  background-color:rgb(255,229,229);
  background-color:rgb(var(--neeto-ui-pastel-red))
}

.neeto-ui-avatar--container-bg-3{
  background-color:rgb(254, 243, 197);
  background-color:rgb(254,243,197);
  background-color:rgb(var(--neeto-ui-pastel-yellow))
}

.neeto-ui-avatar--container-bg-4{
  background-color:rgb(211, 249, 232);
  background-color:rgb(211,249,232);
  background-color:rgb(var(--neeto-ui-pastel-green))
}

.neeto-ui-avatar--container-bg-5{
  background-color:rgb(236, 244, 255);
  background-color:rgb(236,244,255);
  background-color:rgb(var(--neeto-ui-pastel-blue))
}

.neeto-ui-avatar--container-bg-6{
  background-color:rgb(238, 235, 255);
  background-color:rgb(238,235,255);
  background-color:rgb(var(--neeto-ui-pastel-purple))
}

.neeto-ui-avatar--container-bg-7{
  background-color:rgb(253, 226, 241);
  background-color:rgb(253,226,241);
  background-color:rgb(var(--neeto-ui-pastel-pink))
}

.neeto-ui-btn{
  position:relative;
  display:inline-flex !important;
  align-items:center;
  padding:6px 8px;
  gap:4px;
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  font-weight:500;
  font-weight:var(--neeto-ui-font-medium);
  line-height:16px;
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  border:none;
  outline:none;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
      user-select:none;
  min-width:0;
  cursor:pointer
}

.neeto-ui-btn.neeto-ui-btn--icon-only{
  padding:6px
}

.neeto-ui-btn.neeto-ui-btn--icon-only .neeto-ui-btn__icon,.neeto-ui-btn.neeto-ui-btn--icon-only .neeto-ui-btn__spinner svg{
  pointer-events:none;
  width:16px !important;
  height:16px !important
}

.neeto-ui-btn--size-medium{
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  padding:8px 16px;
  gap:8px
}

.neeto-ui-btn--size-medium.neeto-ui-btn--icon-only .neeto-ui-btn__icon,.neeto-ui-btn--size-medium.neeto-ui-btn--icon-only .neeto-ui-btn__spinner svg{
  pointer-events:none;
  width:20px !important;
  height:20px !important
}

.neeto-ui-btn--size-large{
  font-size:16px;
  font-size:var(--neeto-ui-text-base);
  padding:12px 20px;
  gap:10px
}

.neeto-ui-btn--size-large.neeto-ui-btn--icon-only{
  padding:8px
}

.neeto-ui-btn--size-large.neeto-ui-btn--icon-only .neeto-ui-btn__icon,.neeto-ui-btn--size-large.neeto-ui-btn--icon-only .neeto-ui-btn__spinner svg{
  width:24px !important;
  height:24px !important
}

.neeto-ui-btn:focus,.neeto-ui-btn:focus-visible{
  outline:none
}

.neeto-ui-btn:hover{
  text-decoration:none
}

.neeto-ui-btn.disabled{
  cursor:not-allowed;
  opacity:.5
}

.neeto-ui-btn--icon-left{
  flex-direction:row-reverse
}

.neeto-ui-btn__icon,.neeto-ui-btn__spinner,.neeto-ui-btn__spinner-wrapper{
  pointer-events:none;
  color:inherit
}

.neeto-ui-btn__icon svg,.neeto-ui-btn__spinner-wrapper svg,.neeto-ui-btn__spinner svg{
  color:inherit !important
}

.neeto-ui-btn--width-full{
  width:100% !important;
  justify-content:center
}

.neeto-ui-btn--style-primary{
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white));
  background-color:rgb(69, 88, 249);
  background-color:rgb(69,88,249);
  background-color:rgb(var(--neeto-ui-primary-500))
}

.neeto-ui-btn--style-primary:active,.neeto-ui-btn--style-primary:hover:not(:disabled){
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white));
  background-color:rgb(54, 66, 223);
  background-color:rgb(54,66,223);
  background-color:rgb(var(--neeto-ui-primary-600))
}

.neeto-ui-btn--style-primary:focus{
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white));
  box-shadow:0 0 0 3px rgba(69, 88, 249, 15%);
  box-shadow:0 0 0 3px rgba(69,88,249, 15%);
  box-shadow:0 0 0 3px rgba(var(--neeto-ui-primary-500), 15%)
}

.neeto-ui-btn--style-primary:focus-visible{
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white));
  outline:3px solid rgba(69, 88, 249, 50%);
  outline:3px solid rgba(69,88,249, 50%);
  outline:3px solid rgba(var(--neeto-ui-primary-500), 50%);
  outline-offset:1px;
  box-shadow:none
}

.neeto-ui-btn--style-secondary{
  color:rgb(18, 18, 18);
  color:rgb(18,18,18);
  color:rgb(var(--neeto-ui-black));
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-btn--style-secondary:active,.neeto-ui-btn--style-secondary:hover:not(:disabled){
  color:rgb(18, 18, 18);
  color:rgb(18,18,18);
  color:rgb(var(--neeto-ui-black));
  background-color:rgb(216, 220, 222);
  background-color:rgb(216,220,222);
  background-color:rgb(var(--neeto-ui-gray-300))
}

.neeto-ui-btn--style-secondary:focus{
  color:rgb(18, 18, 18);
  color:rgb(18,18,18);
  color:rgb(var(--neeto-ui-black));
  box-shadow:0 0 0 3px rgba(31, 31, 31, 25%);
  box-shadow:0 0 0 3px rgba(31,31,31, 25%);
  box-shadow:0 0 0 3px rgba(var(--neeto-ui-gray-800), 25%)
}

.neeto-ui-btn--style-secondary:focus-visible{
  color:rgb(18, 18, 18);
  color:rgb(18,18,18);
  color:rgb(var(--neeto-ui-black));
  outline:3px solid rgba(69, 88, 249, 50%);
  outline:3px solid rgba(69,88,249, 50%);
  outline:3px solid rgba(var(--neeto-ui-primary-500), 50%);
  outline-offset:1px;
  box-shadow:none
}

.neeto-ui-btn--style-text{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-btn--style-text:active,.neeto-ui-btn--style-text:hover:not(:disabled){
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-btn--style-text:focus{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  box-shadow:0 0 0 3px rgba(31, 31, 31, 15%);
  box-shadow:0 0 0 3px rgba(31,31,31, 15%);
  box-shadow:0 0 0 3px rgba(var(--neeto-ui-gray-800), 15%)
}

.neeto-ui-btn--style-text:focus-visible{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  outline:3px solid rgba(69, 88, 249, 50%);
  outline:3px solid rgba(69,88,249, 50%);
  outline:3px solid rgba(var(--neeto-ui-primary-500), 50%);
  outline-offset:1px;
  box-shadow:none
}

.neeto-ui-btn--style-link{
  color:rgb(45, 54, 212);
  color:rgb(45,54,212);
  color:rgb(var(--neeto-ui-primary-800));
  padding:0
}

.neeto-ui-btn--style-link:active,.neeto-ui-btn--style-link:focus,.neeto-ui-btn--style-link:hover:not(:disabled){
  opacity:.8
}

.neeto-ui-btn--style-link:focus-visible{
  outline:3px solid rgba(69, 88, 249, 50%);
  outline:3px solid rgba(69,88,249, 50%);
  outline:3px solid rgba(var(--neeto-ui-primary-500), 50%);
  outline-offset:1px;
  box-shadow:none
}

.neeto-ui-btn--style-danger{
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white));
  background-color:rgb(215, 55, 63);
  background-color:rgb(215,55,63);
  background-color:rgb(var(--neeto-ui-error-500))
}

.neeto-ui-btn--style-danger:active,.neeto-ui-btn--style-danger:hover:not(:disabled){
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white));
  background-color:rgb(201, 37, 45);
  background-color:rgb(201,37,45);
  background-color:rgb(var(--neeto-ui-error-600))
}

.neeto-ui-btn--style-danger:focus{
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white));
  box-shadow:0 0 0 3px rgba(215, 55, 63, 15%);
  box-shadow:0 0 0 3px rgba(215,55,63, 15%);
  box-shadow:0 0 0 3px rgba(var(--neeto-ui-error-500), 15%)
}

.neeto-ui-btn--style-danger:focus-visible{
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white));
  outline:3px solid rgba(69, 88, 249, 50%);
  outline:3px solid rgba(69,88,249, 50%);
  outline:3px solid rgba(var(--neeto-ui-primary-500), 50%);
  outline-offset:1px;
  box-shadow:none
}

.neeto-ui-btn--style-danger-text{
  color:rgb(187, 18, 26);
  color:rgb(187,18,26);
  color:rgb(var(--neeto-ui-error-800))
}

.neeto-ui-btn--style-danger-text:active,.neeto-ui-btn--style-danger-text:hover:not(:disabled){
  color:rgb(187, 18, 26);
  color:rgb(187,18,26);
  color:rgb(var(--neeto-ui-error-800));
  background-color:rgb(254, 236, 240);
  background-color:rgb(254,236,240);
  background-color:rgb(var(--neeto-ui-error-100))
}

.neeto-ui-btn--style-danger-text:focus{
  color:rgb(187, 18, 26);
  color:rgb(187,18,26);
  color:rgb(var(--neeto-ui-error-800));
  box-shadow:0 0 0 3px rgba(215, 55, 63, 15%);
  box-shadow:0 0 0 3px rgba(215,55,63, 15%);
  box-shadow:0 0 0 3px rgba(var(--neeto-ui-error-500), 15%)
}

.neeto-ui-btn--style-danger-text:focus-visible{
  color:rgb(187, 18, 26);
  color:rgb(187,18,26);
  color:rgb(var(--neeto-ui-error-800));
  outline:3px solid rgba(69, 88, 249, 50%);
  outline:3px solid rgba(69,88,249, 50%);
  outline:3px solid rgba(var(--neeto-ui-primary-500), 50%);
  outline-offset:1px;
  box-shadow:none
}

.neeto-ui-callout{
  display:flex;
  flex-direction:row;
  justify-content:flex-start;
  align-items:center;
  border-radius:6px;
  border-radius:var(--neeto-ui-rounded-md);
  padding:9px 12px;
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  line-height:16px;
  font-weight:500;
  font-weight:var(--neeto-ui-font-medium);
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  gap:12px
}

.neeto-ui-callout .neeto-ui-callout__icon{
  flex-shrink:0
}

.neeto-ui-callout.neeto-ui-callout--info{
  background-color:rgb(226, 242, 255);
  background-color:rgb(226,242,255);
  background-color:rgb(var(--neeto-ui-info-100));
  border:1px solid rgb(20, 115, 230);
  border:1px solid rgb(20,115,230);
  border:1px solid rgb(var(--neeto-ui-info-500))
}

.neeto-ui-callout.neeto-ui-callout--info .neeto-ui-callout__icon{
  color:rgb(20, 115, 230);
  color:rgb(20,115,230);
  color:rgb(var(--neeto-ui-info-500))
}

.neeto-ui-callout.neeto-ui-callout--warning{
  background-color:rgb(251, 242, 225);
  background-color:rgb(251,242,225);
  background-color:rgb(var(--neeto-ui-warning-100));
  border:1px solid rgb(218, 123, 17);
  border:1px solid rgb(218,123,17);
  border:1px solid rgb(var(--neeto-ui-warning-500))
}

.neeto-ui-callout.neeto-ui-callout--warning .neeto-ui-callout__icon{
  color:rgb(218, 123, 17);
  color:rgb(218,123,17);
  color:rgb(var(--neeto-ui-warning-500))
}

.neeto-ui-callout.neeto-ui-callout--danger{
  background-color:rgb(254, 236, 240);
  background-color:rgb(254,236,240);
  background-color:rgb(var(--neeto-ui-error-100));
  border:1px solid rgb(215, 55, 63);
  border:1px solid rgb(215,55,63);
  border:1px solid rgb(var(--neeto-ui-error-500))
}

.neeto-ui-callout.neeto-ui-callout--danger .neeto-ui-callout__icon{
  color:rgb(215, 55, 63);
  color:rgb(215,55,63);
  color:rgb(var(--neeto-ui-error-500))
}

.neeto-ui-callout.neeto-ui-callout--success{
  background-color:rgb(225, 243, 238);
  background-color:rgb(225,243,238);
  background-color:rgb(var(--neeto-ui-success-100));
  border:1px solid rgb(38, 142, 108);
  border:1px solid rgb(38,142,108);
  border:1px solid rgb(var(--neeto-ui-success-500))
}

.neeto-ui-callout.neeto-ui-callout--success .neeto-ui-callout__icon{
  color:rgb(38, 142, 108);
  color:rgb(38,142,108);
  color:rgb(var(--neeto-ui-success-500))
}

.neeto-ui-checkbox__wrapper{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-start;
  flex-grow:1
}

.neeto-ui-checkbox__wrapper .neeto-ui-checkbox__container{
  display:flex;
  flex-direction:row;
  justify-content:flex-start;
  align-items:center
}

.neeto-ui-checkbox__wrapper .neeto-ui-checkbox__container .neeto-ui-label{
  margin-left:8px
}

.neeto-ui-checkbox__wrapper .neeto-ui-checkbox__container .neeto-ui-checkbox[type=checkbox]{
  width:16px;
  height:16px;
  color:rgb(69, 88, 249);
  color:rgb(69,88,249);
  color:rgb(var(--neeto-ui-primary-500));
  border:2px solid rgb(194, 200, 204);
  border:2px solid rgb(194,200,204);
  border:2px solid rgb(var(--neeto-ui-gray-400));
  border-radius:3px;
  border-radius:var(--neeto-ui-rounded-sm)
}

.neeto-ui-checkbox__wrapper .neeto-ui-checkbox__container .neeto-ui-checkbox[type=checkbox]:not(:disabled){
  cursor:pointer
}

.neeto-ui-checkbox__wrapper .neeto-ui-checkbox__container .neeto-ui-checkbox[type=checkbox]:hover:not(:disabled,:checked){
  border-color:rgb(135, 146, 157);
  border-color:rgb(135,146,157);
  border-color:rgb(var(--neeto-ui-gray-500))
}

.neeto-ui-checkbox__wrapper .neeto-ui-checkbox__container .neeto-ui-checkbox[type=checkbox]:checked{
  border:none !important
}

.neeto-ui-checkbox__wrapper .neeto-ui-checkbox__container .neeto-ui-checkbox[type=checkbox]:disabled{
  opacity:.5;
  cursor:not-allowed
}

.neeto-ui-checkbox__wrapper .neeto-ui-checkbox__container .neeto-ui-checkbox[type=checkbox]:focus{
  outline:transparent
}

.neeto-ui-checkbox__wrapper .neeto-ui-checkbox__container .neeto-ui-checkbox[type=checkbox]:focus-visible{
  outline:3px solid rgba(69, 88, 249, 50%);
  outline:3px solid rgba(69,88,249, 50%);
  outline:3px solid rgba(var(--neeto-ui-primary-500), 50%);
  outline-offset:1px;
  box-shadow:none
}

.ant-checkbox [type=checkbox]{
  width:16px;
  height:16px;
  color:rgb(69, 88, 249);
  color:rgb(69,88,249);
  color:rgb(var(--neeto-ui-primary-500));
  border:2px solid rgb(194, 200, 204);
  border:2px solid rgb(194,200,204);
  border:2px solid rgb(var(--neeto-ui-gray-400));
  border-radius:3px;
  border-radius:var(--neeto-ui-rounded-sm)
}

.ant-checkbox [type=checkbox]:not(:disabled){
  cursor:pointer
}

.ant-checkbox [type=checkbox]:hover:not(:disabled,:checked){
  border-color:rgb(135, 146, 157);
  border-color:rgb(135,146,157);
  border-color:rgb(var(--neeto-ui-gray-500))
}

.ant-checkbox [type=checkbox]:checked{
  border:none !important
}

.ant-checkbox [type=checkbox]:disabled{
  opacity:.5;
  cursor:not-allowed
}

.ant-checkbox [type=checkbox]:focus{
  outline:transparent
}

.ant-checkbox [type=checkbox]:focus-visible{
  outline:3px solid rgba(69, 88, 249, 50%);
  outline:3px solid rgba(69,88,249, 50%);
  outline:3px solid rgba(var(--neeto-ui-primary-500), 50%);
  outline-offset:1px;
  box-shadow:none
}

.ant-checkbox .ant-checkbox-inner{
  display:none
}

.neeto-ui-colorpicker__dropdown{
  width:100%
}

.neeto-ui-colorpicker__popover{
  width:224px;
  padding:12px
}

.neeto-ui-colorpicker__popover .neeto-ui-colorpicker__eyedropper-btn svg{
  fill:currentColor
}

.neeto-ui-colorpicker__popover .neeto-ui-colorpicker__palette-wrapper{
  margin-top:12px
}

.neeto-ui-colorpicker__popover .neeto-ui-colorpicker__saturation{
  width:100%;
  padding-bottom:75%;
  position:relative;
  overflow:hidden
}

.neeto-ui-colorpicker__popover .neeto-ui-colorpicker__saturation .neeto-ui-colorpicker__pointer{
  width:4px;
  height:4px;
  box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0, 0, 0, 0.3),0 0 1px 2px rgba(0, 0, 0, 0.4);
  border-radius:50%;
  -webkit-transform:translate(-2px, -2px);
          transform:translate(-2px, -2px)
}

.neeto-ui-colorpicker__popover .neeto-ui-colorpicker__hue{
  height:10px;
  margin:12px 0;
  position:relative
}

.neeto-ui-colorpicker__popover .neeto-ui-colorpicker__hue .neeto-ui-colorpicker__slider{
  width:12px;
  height:12px;
  border-radius:50%;
  -webkit-transform:translate(-6px, -1px);
          transform:translate(-6px, -1px);
  background-color:#f8f8f8;
  box-shadow:0 1px 4px 0 rgba(0, 0, 0, 0.37)
}

.neeto-ui-colorpicker__popover .neeto-ui-colorpicker__pointer .react-colorful__saturation-pointer{
  width:20px;
  height:20px
}

.neeto-ui-color-palette__item{
  width:32px;
  height:32px;
  border:thin solid transparent;
  -webkit-transition:all .3s;
  transition:all .3s;
  padding:2px;
  border-radius:6px;
  border-radius:var(--neeto-ui-rounded-md);
  margin:0 4px 4px 0
}

.neeto-ui-color-palette__item.active{
  border-color:rgb(135, 146, 157);
  border-color:rgb(135,146,157);
  border-color:rgb(var(--neeto-ui-gray-500))
}

.neeto-ui-color-palette__item div{
  width:100%;
  min-height:100%;
  border-radius:6px;
  border-radius:var(--neeto-ui-rounded-md);
  overflow:hidden
}

.neeto-ui-colorpicker__target{
  display:flex;
  align-items:center;
  justify-content:space-between;
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  border:1px solid rgb(194, 200, 204);
  border:1px solid rgb(194,200,204);
  border:1px solid rgb(var(--neeto-ui-gray-400));
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  height:40px;
  padding:8px 12px;
  gap:12px
}

.neeto-ui-colorpicker__target:hover{
  border-color:rgb(47, 57, 65);
  border-color:rgb(47,57,65);
  border-color:rgb(var(--neeto-ui-gray-700))
}

.neeto-ui-colorpicker__target:focus-visible{
  border-color:rgb(69, 88, 249);
  border-color:rgb(69,88,249);
  border-color:rgb(var(--neeto-ui-primary-500));
  box-shadow:0 0 0 3px rgba(69, 88, 249, 15%);
  box-shadow:0 0 0 3px rgba(69,88,249, 15%);
  box-shadow:0 0 0 3px rgba(var(--neeto-ui-primary-500), 15%);
  outline:none
}

.neeto-ui-colorpicker__target-size--small{
  height:28px;
  padding:8px;
  gap:12px
}

.neeto-ui-colorpicker__target-size--medium{
  height:32px;
  padding:8px;
  gap:12px
}

.neeto-ui-colorpicker__target-size--large{
  height:40px;
  padding:12px;
  gap:12px
}

.neeto-ui-colorpicker__target .neeto-ui-colorpicker-target__color-wrapper{
  display:flex;
  flex-direction:row;
  justify-content:center;
  align-items:center;
  gap:8px
}

.neeto-ui-colorpicker__target .neeto-ui-colorpicker-target__color{
  display:flex;
  flex-direction:row;
  justify-content:center;
  align-items:center;
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  width:24px;
  height:24px
}

.neeto-ui-colorpicker__target-size--small .neeto-ui-colorpicker-target__color{
  width:20px;
  height:20px
}

.neeto-ui-colorpicker__target .neeto-ui-colorpicker-target__code{
  font-size:14px;
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  font-weight:500;
  font-weight:var(--neeto-ui-font-medium);
  min-width:70px
}

.neeto-ui-label{
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  line-height:1;
  color:rgb(18, 18, 18);
  color:rgb(18,18,18);
  color:rgb(var(--neeto-ui-black));
  font-weight:500;
  font-weight:var(--neeto-ui-font-medium)
}

.neeto-ui-label__help-icon-wrap{
  margin-left:4px
}

.neeto-ui-header__search-input{
  width:288px
}

.neeto-ui-date-input{
  width:100%;
  display:flex;
  flex-direction:row;
  justify-content:flex-start;
  align-items:center;
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  border:thin solid rgb(194, 200, 204);
  border:thin solid rgb(194,200,204);
  border:thin solid rgb(var(--neeto-ui-gray-400));
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  overflow:hidden;
  line-height:1.2
}

.neeto-ui-date-input.neeto-ui-date-input--large{
  padding:8px 12px
}

.neeto-ui-date-input.neeto-ui-date-input--medium{
  padding:4px 8px
}

.neeto-ui-date-input.neeto-ui-date-input--small{
  padding:2px 8px
}

.neeto-ui-date-input .ant-picker-input>input{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-date-input:hover:not(.neeto-ui-date-input--naked,.neeto-ui-date-input--error,.neeto-ui-date-input--disabled,.neeto-ui-time-input--disabled,.ant-picker-focused){
  border-color:rgb(31, 31, 31);
  border-color:rgb(31,31,31);
  border-color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-date-input.neeto-ui-date-input--disabled{
  background-color:rgb(248, 249, 249);
  background-color:rgb(248,249,249);
  background-color:rgb(var(--neeto-ui-gray-100));
  cursor:not-allowed
}

.neeto-ui-date-input.neeto-ui-date-input--disabled input{
  cursor:not-allowed
}

.neeto-ui-date-input .ant-picker-suffix{
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700))
}

.neeto-ui-date-input.ant-picker-focused{
  border-color:rgb(69, 88, 249) !important;
  border-color:rgb(69,88,249) !important;
  border-color:rgb(var(--neeto-ui-primary-500)) !important;
  box-shadow:0 0 0 3px rgba(69, 88, 249, 15%) !important;
  box-shadow:0 0 0 3px rgba(69,88,249, 15%) !important;
  box-shadow:0 0 0 3px rgba(var(--neeto-ui-primary-500), 15%) !important
}

.neeto-ui-date-input.ant-picker-focused.neeto-ui-date-input--naked{
  border:none;
  box-shadow:none !important
}

.neeto-ui-date-input.ant-picker-focused .ant-picker-suffix{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-date-input.neeto-ui-date-input--naked{
  border:none;
  box-shadow:none;
  padding-left:0;
  padding-right:0
}

.neeto-ui-date-input.neeto-ui-date-input--naked .neeto-ui-date-input__prefix{
  margin-left:0
}

.neeto-ui-date-input.neeto-ui-date-input--naked .neeto-ui-date-input__suffix{
  margin-right:0
}

.neeto-ui-date-input.neeto-ui-date-input--error{
  border-color:rgb(215, 55, 63);
  border-color:rgb(215,55,63);
  border-color:rgb(var(--neeto-ui-error-500))
}

.neeto-ui-date-input.neeto-ui-date-input--error:focus-within:not(.neeto-ui-date-input--naked){
  box-shadow:0 0 0 3px rgb(254, 236, 240);
  box-shadow:0 0 0 3px rgb(254,236,240);
  box-shadow:0 0 0 3px rgb(var(--neeto-ui-error-100))
}

.neeto-ui-date-input .ant-picker-clear{
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white))
}

.neeto-ui-date-input .ant-picker-clear svg{
  width:16px;
  height:16px;
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700))
}

.neeto-ui-date-input .ant-picker-range-arrow{
  display:none !important
}

.neeto-ui-date-input.ant-picker-range.ant-picker-focused .ant-picker-active-bar{
  background:rgb(69, 88, 249);
  background:rgb(69,88,249);
  background:rgb(var(--neeto-ui-primary-500))
}

.neeto-ui-date-input.ant-picker-range .ant-picker-clear{
  right:8px
}

.neeto-ui-time-input{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  border:thin solid rgb(194, 200, 204);
  border:thin solid rgb(194,200,204);
  border:thin solid rgb(var(--neeto-ui-gray-400));
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  line-height:1.2
}

.neeto-ui-time-input.neeto-ui-time-input--large{
  padding:8px 12px
}

.neeto-ui-time-input.neeto-ui-time-input--medium{
  padding:4px 8px
}

.neeto-ui-time-input.neeto-ui-time-input--small{
  padding:2px 8px
}

.neeto-ui-time-input:hover:not(.neeto-ui-time-input--naked,.neeto-ui-time-input--error,.neeto-ui-time-input--disabled){
  border-color:rgb(47, 57, 65);
  border-color:rgb(47,57,65);
  border-color:rgb(var(--neeto-ui-gray-700))
}

.neeto-ui-time-input.neeto-ui-time-input--disabled{
  background-color:rgb(248, 249, 249);
  background-color:rgb(248,249,249);
  background-color:rgb(var(--neeto-ui-gray-100));
  cursor:not-allowed
}

.neeto-ui-time-input.neeto-ui-time-input--disabled input{
  cursor:not-allowed
}

.neeto-ui-time-input .ant-picker-suffix{
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700))
}

.neeto-ui-time-input.ant-picker-focused{
  border-color:rgb(69, 88, 249) !important;
  border-color:rgb(69,88,249) !important;
  border-color:rgb(var(--neeto-ui-primary-500)) !important;
  box-shadow:0 0 0 3px rgba(69, 88, 249, 15%) !important;
  box-shadow:0 0 0 3px rgba(69,88,249, 15%) !important;
  box-shadow:0 0 0 3px rgba(var(--neeto-ui-primary-500), 15%) !important
}

.neeto-ui-time-input.ant-picker-focused.neeto-ui-date-input--naked{
  border:none;
  box-shadow:none !important
}

.neeto-ui-time-input.ant-picker-focused .ant-picker-suffix{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-time-input.neeto-ui-time-input--naked{
  border:none;
  box-shadow:none
}

.neeto-ui-time-input.neeto-ui-time-input--naked .neeto-ui-time-input__prefix{
  margin-left:0
}

.neeto-ui-time-input.neeto-ui-time-input--naked .neeto-ui-time-input__suffix{
  margin-right:0
}

.neeto-ui-time-input.neeto-ui-time-input--error{
  border-color:rgb(215, 55, 63);
  border-color:rgb(215,55,63);
  border-color:rgb(var(--neeto-ui-error-500))
}

.neeto-ui-time-input.neeto-ui-time-input--error:focus-within:not(.neeto-ui-time-input--naked){
  box-shadow:0 0 0 3px rgb(254, 236, 240);
  box-shadow:0 0 0 3px rgb(254,236,240);
  box-shadow:0 0 0 3px rgb(var(--neeto-ui-error-100))
}

.neeto-ui-time-input .ant-picker-clear{
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white))
}

.neeto-ui-time-input .ant-picker-clear svg{
  width:16px;
  height:16px;
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700))
}

.neeto-ui-time-input .ant-picker-range-arrow{
  display:none !important
}

.neeto-ui-date-time-dropdown .ant-picker-time-panel .ant-picker-time-panel-column>li.ant-picker-time-panel-cell-selected .ant-picker-time-panel-cell-inner{
  background:rgb(69, 88, 249);
  background:rgb(69,88,249);
  background:rgb(var(--neeto-ui-primary-500));
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white))
}

.neeto-ui-date-time-dropdown .ant-picker-cell{
  color:rgba(31, 31, 31, 0.25);
  color:rgba(31,31,31, 0.25);
  color:rgba(var(--neeto-ui-gray-800), 0.25)
}

.neeto-ui-date-time-dropdown .ant-picker-cell:hover:not(.ant-picker-cell-in-view) .ant-picker-cell-inner,.neeto-ui-date-time-dropdown .ant-picker-cell:hover:not(.ant-picker-cell-selected):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end):not(.ant-picker-cell-range-hover-start):not(.ant-picker-cell-range-hover-end) .ant-picker-cell-inner{
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-date-time-dropdown .ant-picker-time-panel-column>li.ant-picker-time-panel-cell:not(.ant-picker-time-panel-cell-selected) .ant-picker-time-panel-cell-inner{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-date-time-dropdown .ant-picker-time-panel-column>li.ant-picker-time-panel-cell:not(.ant-picker-time-panel-cell-selected) .ant-picker-time-panel-cell-inner:hover{
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-date-time-dropdown .ant-picker-footer{
  border-top:0 !important;
  border-bottom:0 !important;
  background:rgb(248, 249, 249);
  background:rgb(248,249,249);
  background:rgb(var(--neeto-ui-gray-100))
}

.neeto-ui-date-time-dropdown{
  padding-top:2px;
  padding-bottom:2px;
  z-index:100000;
  z-index:calc(99999 + 1);
  z-index:calc(var(--neeto-ui-modal-z-index) + 1)
}

.neeto-ui-date-time-dropdown .ant-picker-panel .ant-picker-header .ant-picker-header-view{
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700))
}

.neeto-ui-date-time-dropdown .ant-picker-panel .ant-picker-header .ant-picker-header-view button:hover{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-date-time-dropdown .ant-picker-panel .ant-picker-body .ant-picker-content .ant-picker-cell.ant-picker-cell-in-view.ant-picker-cell-today .ant-picker-cell-inner:before{
  border:1px solid rgb(31, 31, 31);
  border:1px solid rgb(31,31,31);
  border:1px solid rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-date-time-dropdown .ant-picker-panel .ant-picker-body .ant-picker-content .ant-picker-cell.ant-picker-cell-in-view:after{
  border-color:rgb(194, 200, 204);
  border-color:rgb(194,200,204);
  border-color:rgb(var(--neeto-ui-gray-400))
}

.neeto-ui-date-time-dropdown .ant-picker-panel .ant-picker-body .ant-picker-content .ant-picker-cell.ant-picker-cell-in-view.ant-picker-cell-selected .ant-picker-cell-inner{
  background:rgb(69, 88, 249);
  background:rgb(69,88,249);
  background:rgb(var(--neeto-ui-primary-500));
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white))
}

.neeto-ui-date-time-dropdown .ant-picker-panel .ant-picker-body .ant-picker-content .ant-picker-cell.ant-picker-cell-in-view.ant-picker-cell-range-end:before,.neeto-ui-date-time-dropdown .ant-picker-panel .ant-picker-body .ant-picker-content .ant-picker-cell.ant-picker-cell-in-view.ant-picker-cell-range-start:before{
  background:rgb(233, 235, 237);
  background:rgb(233,235,237);
  background:rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-date-time-dropdown .ant-picker-panel .ant-picker-body .ant-picker-content .ant-picker-cell.ant-picker-cell-in-view.ant-picker-cell-range-end .ant-picker-cell-inner,.neeto-ui-date-time-dropdown .ant-picker-panel .ant-picker-body .ant-picker-content .ant-picker-cell.ant-picker-cell-in-view.ant-picker-cell-range-start .ant-picker-cell-inner{
  background:rgb(69, 88, 249);
  background:rgb(69,88,249);
  background:rgb(var(--neeto-ui-primary-500));
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white))
}

.neeto-ui-date-time-dropdown .ant-picker-panel .ant-picker-body .ant-picker-content .ant-picker-cell.ant-picker-cell-in-view.ant-picker-cell-in-range:before{
  background:rgb(233, 235, 237);
  background:rgb(233,235,237);
  background:rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-date-time-dropdown .ant-picker-panel .ant-picker-body .ant-picker-content .ant-picker-cell.ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end .ant-picker-cell-inner:after,.neeto-ui-date-time-dropdown .ant-picker-panel .ant-picker-body .ant-picker-content .ant-picker-cell.ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end:before,.neeto-ui-date-time-dropdown .ant-picker-panel .ant-picker-body .ant-picker-content .ant-picker-cell.ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start .ant-picker-cell-inner:after,.neeto-ui-date-time-dropdown .ant-picker-panel .ant-picker-body .ant-picker-content .ant-picker-cell.ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start:before,.neeto-ui-date-time-dropdown .ant-picker-panel .ant-picker-body .ant-picker-content .ant-picker-cell.ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover .ant-picker-cell-inner:after,.neeto-ui-date-time-dropdown .ant-picker-panel .ant-picker-body .ant-picker-content .ant-picker-cell.ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover:before{
  background:rgb(194, 200, 204);
  background:rgb(194,200,204);
  background:rgb(var(--neeto-ui-gray-400))
}

.neeto-ui-date-time-dropdown .ant-picker-footer .ant-picker-now-btn,.neeto-ui-date-time-dropdown .ant-picker-footer .ant-picker-today-btn{
  position:relative;
  display:inline-flex !important;
  align-items:center;
  padding:5px 8px;
  gap:4px;
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  font-size:12px;
  font-size:var(--neeto-ui-text-xs);
  font-weight:500;
  font-weight:var(--neeto-ui-font-medium);
  line-height:16px;
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  height:auto
}

.neeto-ui-date-time-dropdown .ant-picker-footer .ant-picker-now-btn:hover,.neeto-ui-date-time-dropdown .ant-picker-footer .ant-picker-today-btn:hover{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-date-time-dropdown .ant-picker-footer .ant-picker-ok button{
  position:relative;
  display:inline-flex !important;
  align-items:center;
  padding:5px 8px;
  gap:4px;
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white));
  background:rgb(69, 88, 249);
  background:rgb(69,88,249);
  background:rgb(var(--neeto-ui-primary-500));
  border-color:rgb(69, 88, 249);
  border-color:rgb(69,88,249);
  border-color:rgb(var(--neeto-ui-primary-500));
  font-size:12px;
  font-size:var(--neeto-ui-text-xs);
  font-weight:500;
  font-weight:var(--neeto-ui-font-medium);
  line-height:16px;
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  height:auto
}

.neeto-ui-date-time-dropdown .ant-picker-footer .ant-picker-ok button:not([disabled]):hover{
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white));
  background-color:rgb(54, 66, 223);
  background-color:rgb(54,66,223);
  background-color:rgb(var(--neeto-ui-primary-600))
}

.neeto-ui-date-time-dropdown .ant-picker-footer .ant-picker-ok button[disabled]{
  cursor:not-allowed;
  opacity:.5
}

.neeto-ui-date-time-dropdown .ant-picker-panel-container{
  border:1px solid rgb(194, 200, 204);
  border:1px solid rgb(194,200,204);
  border:1px solid rgb(var(--neeto-ui-gray-400));
  box-shadow:0 8px 24px rgba(140, 149, 159, 0.2);
  box-shadow:0 8px 24px rgba(140,149,159,0.2);
  box-shadow:var(--neeto-ui-shadow-lg);
  border-radius:12px;
  border-radius:var(--neeto-ui-rounded-xl);
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white))
}

.neeto-ui-date-time-dropdown .ant-picker-panel-container .ant-picker-panel{
  border:0
}

.neeto-ui-date-input--error,.neeto-ui-date-input--error.ant-picker-focused{
  border-color:rgb(215, 55, 63) !important;
  border-color:rgb(215,55,63) !important;
  border-color:rgb(var(--neeto-ui-error-500)) !important
}

.neeto-ui-date-input--error.ant-picker-focused{
  box-shadow:0 0 0 3px rgb(254, 236, 240) !important;
  box-shadow:0 0 0 3px rgb(254,236,240) !important;
  box-shadow:0 0 0 3px rgb(var(--neeto-ui-error-100)) !important
}

.neeto-ui-date-time-dropdown .ant-picker-header{
  min-height:68px;
  padding:12px 24px 0;
  white-space:nowrap;
  align-items:center;
  border-bottom-color:rgb(233, 235, 237);
  border-bottom-color:rgb(233,235,237);
  border-bottom-color:rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-date-time-dropdown .ant-picker-date-panel .ant-picker-header{
  border-bottom:0
}

.neeto-ui-date-time-dropdown .ant-picker-header-view{
  line-height:1
}

.neeto-ui-date-time-dropdown .ant-picker-header-view button{
  padding-right:24px;
  position:relative;
  font-size:16px;
  font-weight:600
}

.neeto-ui-date-time-dropdown .ant-picker-header-view button:after{
  content:"";
  position:absolute;
  right:0;
  top:0;
  height:100%;
  width:16px;
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 height=%2716%27 width=%2716%27%3E%3Cpath d=%27M6 9l6 6 6-6%27 stroke=%27%232f3941%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:50%
}

.neeto-ui-date-time-dropdown .ant-picker-header button{
  line-height:inherit;
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-date-time-dropdown .ant-picker-date-panel .ant-picker-body{
  padding-left:24px;
  padding-right:24px
}

.neeto-ui-date-time-dropdown .ant-picker-date-panel{
  width:320px
}

.neeto-ui-date-time-dropdown .ant-picker-date-panel .ant-picker-content{
  width:272px
}

.neeto-ui-date-time-dropdown .ant-picker-date-panel .ant-picker-content th{
  color:rgb(104, 115, 125);
  color:rgb(104,115,125);
  color:rgb(var(--neeto-ui-gray-600));
  font-size:12px;
  text-transform:uppercase
}

.neeto-ui-date-time-dropdown .ant-picker-cell:before{
  height:32px
}

.neeto-ui-date-time-dropdown .ant-picker-cell .ant-picker-cell-inner{
  min-width:32px;
  height:32px;
  line-height:32px;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
      user-select:none;
  font-size:14px;
  border-radius:3px
}

.neeto-ui-date-time-dropdown .ant-picker-cell .ant-picker-cell-inner:before{
  border-radius:3px
}

.neeto-ui-date-time-dropdown .ant-picker-cell-in-view{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-date-time-dropdown .ant-picker-cell-in-view.ant-picker-cell-today .ant-picker-cell-inner:before{
  border-color:rgb(69, 88, 249) !important;
  border-color:rgb(69,88,249) !important;
  border-color:rgb(var(--neeto-ui-primary-500)) !important
}

.neeto-ui-date-time-dropdown .ant-picker-range.ant-picker-focused .ant-picker-active-bar{
  background:rgb(69, 88, 249) !important;
  background:rgb(69,88,249) !important;
  background:rgb(var(--neeto-ui-primary-500)) !important
}

.neeto-ui-date-time-dropdown .ant-picker-date-panel .ant-picker-header .ant-picker-header-super-next-btn,.neeto-ui-date-time-dropdown .ant-picker-date-panel .ant-picker-header .ant-picker-header-super-prev-btn{
  display:none !important
}

.neeto-ui-date-time-dropdown .ant-picker-datetime-panel .ant-picker-time-panel,.neeto-ui-date-time-dropdown .ant-picker-time-panel-column:not(:first-child){
  border-left-color:rgb(233, 235, 237);
  border-left-color:rgb(233,235,237);
  border-left-color:rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-date-input-custom-panel .ant-picker-time-panel-column{
  width:62px;
  flex-grow:0;
  border:0
}

.neeto-ui-date-input-custom-panel .ant-picker-time-panel-cell-inner{
  padding-left:0 !important;
  padding-right:0 !important;
  text-align:center;
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-date-input-custom-panel .neeto-ui-date-input-custom-panel__header{
  display:flex;
  flex-direction:column;
  padding:16px 16px 8px
}

.neeto-ui-date-input-custom-panel .neeto-ui-date-input-custom-panel__header-now-btn{
  margin-left:auto;
  margin-right:auto;
  margin-bottom:22px;
  font-size:12px !important
}

.neeto-ui-date-input-custom-panel .neeto-ui-date-input-custom-panel__header-cols{
  display:flex;
  gap:12px
}

.neeto-ui-date-input-custom-panel .neeto-ui-date-input-custom-panel__header-col{
  width:62px;
  text-align:center;
  color:rgb(104, 115, 125);
  color:rgb(104,115,125);
  color:rgb(var(--neeto-ui-gray-600));
  font-size:12px;
  line-height:16px;
  text-transform:uppercase
}

.neeto-ui-date-input-custom-panel .neeto-ui-date-input-custom-panel__body .ant-picker-panel{
  width:100%
}

.neeto-ui-date-input-custom-panel .neeto-ui-date-input-custom-panel__body .ant-picker-content{
  gap:12px
}

.neeto-ui-date-input-custom-panel .neeto-ui-date-input-custom-panel__body .ant-picker-time-panel{
  padding-left:16px;
  padding-right:16px
}

.neeto-ui-date-input-custom-panel .neeto-ui-date-input-custom-panel__body .ant-picker-time-panel-cell-inner{
  border-radius:3px !important
}

.ant-picker-ranges>li{
  margin-right:8px
}

.ant-picker-ranges .ant-picker-preset>.ant-tag-blue{
  height:auto;
  padding:5px 8px;
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  font-size:12px;
  font-size:var(--neeto-ui-text-xs);
  font-weight:500;
  font-weight:var(--neeto-ui-font-medium);
  line-height:16px;
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  background:hsla(0, 0%, 100%, 0);
  cursor:pointer
}

.ant-picker-ranges .ant-picker-preset>.ant-tag-blue:hover{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  background:rgb(233, 235, 237);
  background:rgb(233,235,237);
  background:rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-dropdown__wrapper.neeto-ui-dropdown__wrapper--auto-width ul{
  min-width:auto
}

.neeto-ui-dropdown__wrapper--multilevel .neeto-ui-dropdown__popup{
  overflow-y:visible
}

.neeto-ui-dropdown{
  margin:6px 0;
  box-shadow:0 8px 24px rgba(140, 149, 159, 0.2) !important;
  box-shadow:0 8px 24px rgba(140,149,159,0.2) !important;
  box-shadow:var(--neeto-ui-shadow-lg) !important;
  border-radius:5px !important;
  border-radius:var(--neeto-ui-rounded) !important;
  border:1px solid rgb(194, 200, 204);
  border:1px solid rgb(194,200,204);
  border:1px solid rgb(var(--neeto-ui-gray-400))
}

.neeto-ui-dropdown .tippy-content{
  position:relative;
  padding:0;
  z-index:1
}

.neeto-ui-dropdown__popup{
  width:auto;
  min-width:168px;
  max-height:480px;
  overflow-y:auto;
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  z-index:99999
}

@media(max-height: 1000px){
  .neeto-ui-dropdown__popup{
    max-height:calc(40vh - 50px)
  }
}

.neeto-ui-dropdown__popup .neeto-ui-dropdown--item,.neeto-ui-dropdown__popup li{
  display:flex;
  cursor:pointer;
  position:relative;
  white-space:nowrap;
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  font-weight:400;
  font-weight:var(--neeto-ui-font-normal);
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  padding:6px 40px 6px 12px;
  text-decoration:none;
  outline-color:transparent
}

.neeto-ui-dropdown__popup .neeto-ui-dropdown--item.disabled,.neeto-ui-dropdown__popup li.disabled{
  cursor:not-allowed;
  color:rgb(135, 146, 157);
  color:rgb(135,146,157);
  color:rgb(var(--neeto-ui-gray-500))
}

.neeto-ui-dropdown__popup .neeto-ui-dropdown--item:focus,.neeto-ui-dropdown__popup .neeto-ui-dropdown--item:hover,.neeto-ui-dropdown__popup li:focus,.neeto-ui-dropdown__popup li:hover{
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-dropdown__popup .neeto-ui-dropdown--item.loading:not(.active):after,.neeto-ui-dropdown__popup li.loading:not(.active):after{
  content:"";
  position:absolute;
  right:16px;
  top:0;
  bottom:0;
  margin:auto;
  width:16px;
  height:16px;
  display:block;
  border-radius:50%;
  border-left-color:rgb(233, 235, 237);
  border-left-color:rgb(233,235,237);
  border-left-color:rgb(var(--neeto-ui-gray-200));
  border-top-color:rgb(233, 235, 237);
  border-top-color:rgb(233,235,237);
  border-top-color:rgb(var(--neeto-ui-gray-200));
  border-color:rgb(18, 18, 18) rgb(233, 235, 237) rgb(233, 235, 237) rgb(18, 18, 18);
  border-color:rgb(18,18,18) rgb(233,235,237) rgb(233,235,237) rgb(18,18,18);
  border-color:rgb(var(--neeto-ui-black)) rgb(var(--neeto-ui-gray-200)) rgb(var(--neeto-ui-gray-200)) rgb(var(--neeto-ui-black));
  border-style:solid;
  border-width:2px;
  -webkit-animation:spin 1s linear infinite;
          animation:spin 1s linear infinite
}

.neeto-ui-dropdown__popup .neeto-ui-dropdown--item.active,.neeto-ui-dropdown__popup li.active{
  background-color:rgb(31, 31, 31);
  background-color:rgb(31,31,31);
  background-color:rgb(var(--neeto-ui-gray-800));
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white))
}

.neeto-ui-dropdown__popup .neeto-ui-dropdown__popup-menu{
  padding:4px 0
}

.neeto-ui-dropdown__popup .neeto-ui-dropdown__popup-menu-item{
  all:unset;
  display:block
}

.neeto-ui-dropdown__popup .neeto-ui-dropdown__popup-menu-item-btn{
  width:100%;
  display:flex;
  align-items:center;
  cursor:pointer;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
      user-select:none;
  position:relative;
  white-space:nowrap;
  line-height:1.143;
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  font-weight:400;
  font-weight:var(--neeto-ui-font-normal);
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  padding:6px 12px;
  min-height:32px;
  gap:8px;
  text-decoration:none;
  outline-color:transparent;
  border-radius:0
}

.neeto-ui-dropdown__popup .neeto-ui-dropdown__popup-menu-item-btn--disabled{
  cursor:not-allowed;
  opacity:.5
}

.neeto-ui-dropdown__popup .neeto-ui-dropdown__popup-menu-item-btn:focus:not(:disabled):not(.neeto-ui-dropdown__popup-menu-item-btn--active),.neeto-ui-dropdown__popup .neeto-ui-dropdown__popup-menu-item-btn:hover:not(:disabled):not(.neeto-ui-dropdown__popup-menu-item-btn--active){
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-dropdown__popup .neeto-ui-dropdown__popup-menu-item-btn--active{
  background-color:rgb(69, 88, 249);
  background-color:rgb(69,88,249);
  background-color:rgb(var(--neeto-ui-primary-500));
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white))
}

.neeto-ui-dropdown__popup .neeto-ui-dropdown__popup-menu-item-btn--style-danger{
  color:rgb(187, 18, 26);
  color:rgb(187,18,26);
  color:rgb(var(--neeto-ui-error-800))
}

.neeto-ui-dropdown__popup .neeto-ui-dropdown__popup-divider{
  all:unset;
  width:100%;
  display:flex;
  height:1px;
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200));
  margin:4px 0;
  pointer-events:none
}

.neeto-ui-dropdown__popup .neeto-ui-dropdown__popup-menu-item-btn__suffix{
  margin-left:auto
}

.neeto-ui-input__wrapper{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-start;
  flex-grow:1
}

.neeto-ui-input__wrapper .neeto-ui-input__label-wrapper{
  display:flex;
  gap:8px;
  justify-content:space-between;
  width:100%
}

.neeto-ui-input__wrapper .neeto-ui-input__label-wrapper .neeto-ui-label{
  flex-grow:1;
  overflow-wrap:break-word
}

.neeto-ui-input__wrapper .neeto-ui-input__label-wrapper .neeto-ui-input__max-length{
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700));
  line-height:1;
  margin-bottom:8px;
  margin-left:auto
}

.neeto-ui-input__wrapper .neeto-ui-input__label-wrapper .neeto-ui-input__max-length.neeto-ui-input__max-length--error{
  color:rgb(187, 18, 26);
  color:rgb(187,18,26);
  color:rgb(var(--neeto-ui-error-800))
}

.neeto-ui-input__wrapper .neeto-ui-label{
  margin-bottom:8px
}

.neeto-ui-input__wrapper .neeto-ui-input{
  width:100%;
  display:flex;
  flex-direction:row;
  justify-content:flex-start;
  align-items:center;
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  border:thin solid rgb(194, 200, 204);
  border:thin solid rgb(194,200,204);
  border:thin solid rgb(var(--neeto-ui-gray-400));
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  overflow:hidden
}

.neeto-ui-input__wrapper .neeto-ui-input input,.neeto-ui-input__wrapper .neeto-ui-input textarea{
  width:100%;
  background-color:transparent;
  color:inherit;
  border:none;
  font-size:inherit;
  box-shadow:none;
  outline:none
}

.neeto-ui-input__wrapper .neeto-ui-input input::-moz-placeholder,.neeto-ui-input__wrapper .neeto-ui-input textarea::-moz-placeholder{
  color:rgb(194, 200, 204);
  color:rgb(194,200,204);
  color:rgb(var(--neeto-ui-gray-400))
}

.neeto-ui-input__wrapper .neeto-ui-input input::-webkit-input-placeholder, .neeto-ui-input__wrapper .neeto-ui-input textarea::-webkit-input-placeholder{
  color:rgb(194, 200, 204);
  color:rgb(194,200,204);
  color:rgb(var(--neeto-ui-gray-400))
}

.neeto-ui-input__wrapper .neeto-ui-input input::-moz-placeholder, .neeto-ui-input__wrapper .neeto-ui-input textarea::-moz-placeholder{
  color:rgb(194, 200, 204);
  color:rgb(194,200,204);
  color:rgb(var(--neeto-ui-gray-400))
}

.neeto-ui-input__wrapper .neeto-ui-input input:-ms-input-placeholder, .neeto-ui-input__wrapper .neeto-ui-input textarea:-ms-input-placeholder{
  color:rgb(194, 200, 204);
  color:rgb(194,200,204);
  color:rgb(var(--neeto-ui-gray-400))
}

.neeto-ui-input__wrapper .neeto-ui-input input::placeholder,.neeto-ui-input__wrapper .neeto-ui-input textarea::placeholder{
  color:rgb(194, 200, 204);
  color:rgb(194,200,204);
  color:rgb(var(--neeto-ui-gray-400))
}

.neeto-ui-input__wrapper .neeto-ui-input input:focus,.neeto-ui-input__wrapper .neeto-ui-input textarea:focus{
  outline-color:transparent
}

.neeto-ui-input__wrapper .neeto-ui-input input{
  line-height:1.2
}

.neeto-ui-input__wrapper .neeto-ui-input textarea{
  padding:0;
  max-height:224px;
  overflow-y:auto;
  line-height:1.5
}

.neeto-ui-input__wrapper .neeto-ui-input:hover:not(.neeto-ui-input--naked,.neeto-ui-input--error,.neeto-ui-input--disabled){
  border-color:rgb(47, 57, 65);
  border-color:rgb(47,57,65);
  border-color:rgb(var(--neeto-ui-gray-700))
}

.neeto-ui-input__wrapper .neeto-ui-input:focus-within:not(.neeto-ui-input--naked,.neeto-ui-input--error){
  border-color:rgb(69, 88, 249);
  border-color:rgb(69,88,249);
  border-color:rgb(var(--neeto-ui-primary-500));
  box-shadow:0 0 0 3px rgba(69, 88, 249, 15%);
  box-shadow:0 0 0 3px rgba(69,88,249, 15%);
  box-shadow:0 0 0 3px rgba(var(--neeto-ui-primary-500), 15%)
}

.neeto-ui-input__wrapper .neeto-ui-input:focus-within:not(.neeto-ui-input--naked,.neeto-ui-input--error) .neeto-ui-input__prefix,.neeto-ui-input__wrapper .neeto-ui-input:focus-within:not(.neeto-ui-input--naked,.neeto-ui-input--error) .neeto-ui-input__suffix{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--error{
  border-color:rgb(215, 55, 63);
  border-color:rgb(215,55,63);
  border-color:rgb(var(--neeto-ui-error-500))
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--error:focus-within:not(.neeto-ui-input--naked){
  box-shadow:0 0 0 3px rgb(254, 236, 240);
  box-shadow:0 0 0 3px rgb(254,236,240);
  box-shadow:0 0 0 3px rgb(var(--neeto-ui-error-100))
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--error textarea{
  resize:none
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--disabled{
  background-color:rgb(248, 249, 249);
  background-color:rgb(248,249,249);
  background-color:rgb(var(--neeto-ui-gray-100));
  cursor:not-allowed
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--disabled input,.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--disabled textarea{
  cursor:not-allowed
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--small input{
  padding:4px 8px;
  min-height:26px
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--small .neeto-ui-input__prefix{
  margin-left:8px
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--small .neeto-ui-input__suffix{
  margin-right:8px
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--small.neeto-ui-input--textarea{
  padding:8px
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--medium input{
  padding:5px 8px;
  min-height:30px
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--medium .neeto-ui-input__prefix{
  margin-left:8px
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--medium .neeto-ui-input__suffix{
  margin-right:8px
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--medium.neeto-ui-input--textarea{
  padding:8px
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--large input{
  padding:8px 12px;
  min-height:38px
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--large .neeto-ui-input__prefix{
  margin-left:12px
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--large .neeto-ui-input__suffix{
  margin-right:12px
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--large.neeto-ui-input--textarea{
  padding:12px
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--naked{
  border:none;
  box-shadow:none;
  padding-left:0;
  padding-right:0
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--naked input{
  padding-left:0;
  padding-right:0
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--naked .neeto-ui-input__prefix{
  margin-left:0
}

.neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--naked .neeto-ui-input__suffix{
  margin-right:0
}

.neeto-ui-input__wrapper .neeto-ui-input__prefix,.neeto-ui-input__wrapper .neeto-ui-input__suffix{
  display:flex;
  flex-direction:row;
  justify-content:flex-start;
  align-items:center;
  font-size:14px;
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700))
}

.neeto-ui-input__wrapper .neeto-ui-input__prefix svg,.neeto-ui-input__wrapper .neeto-ui-input__suffix svg{
  width:16px;
  height:16px
}

.neeto-ui-input__wrapper .neeto-ui-input--block-add-on .neeto-ui-input__prefix,.neeto-ui-input__wrapper .neeto-ui-input--block-add-on .neeto-ui-input__suffix{
  margin:0;
  padding:8px 12px;
  background-color:rgb(248, 249, 249);
  background-color:rgb(248,249,249);
  background-color:rgb(var(--neeto-ui-gray-100))
}

.neeto-ui-input__wrapper .neeto-ui-input--block-add-on .neeto-ui-input__prefix{
  border-right:thin solid rgb(194, 200, 204);
  border-right:thin solid rgb(194,200,204);
  border-right:thin solid rgb(var(--neeto-ui-gray-400))
}

.neeto-ui-input__wrapper .neeto-ui-input--block-add-on .neeto-ui-input__suffix{
  border-left:thin solid rgb(194, 200, 204);
  border-left:thin solid rgb(194,200,204);
  border-left:thin solid rgb(var(--neeto-ui-gray-400))
}

.neeto-ui-input__help-text{
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700))
}

.neeto-ui-input__error,.neeto-ui-input__help-text{
  margin-top:8px;
  font-size:12px;
  font-size:var(--neeto-ui-text-xs);
  line-height:1.1
}

.neeto-ui-input__error{
  color:rgb(187, 18, 26);
  color:rgb(187,18,26);
  color:rgb(var(--neeto-ui-error-800))
}

:root{
  --neeto-ui-modal-spacing:24px
}

.neeto-ui-modal__backdrop{
  position:fixed;
  z-index:99999;
  z-index:var(--neeto-ui-modal-z-index);
  left:0;
  top:0;
  width:100vw;
  height:100vh;
  overflow-y:auto;
  overflow-x:hidden;
  display:grid;
  justify-content:center;
  align-items:center;
  -webkit-transition:all .3s;
  transition:all .3s;
  background-color:rgba(27, 31, 35, 0.8666666667);
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px)
}

.neeto-ui-modal__backdrop .neeto-ui-modal__wrapper{
  width:50%;
  max-width:100%;
  position:relative;
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  border-radius:12px;
  border-radius:var(--neeto-ui-rounded-xl);
  opacity:0;
  -webkit-transform:scale(1.1);
          transform:scale(1.1);
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px);
  -webkit-animation:showModalWrapper .3s forwards;
          animation:showModalWrapper .3s forwards
}

@-webkit-keyframes showModalWrapper{
  0%{
    opacity:0;
    -webkit-transform:scale(1.1);
            transform:scale(1.1);
    -webkit-backdrop-filter:blur(2px);
    backdrop-filter:blur(2px)
  }

  to{
    opacity:1;
    -webkit-transform:scale(1);
            transform:scale(1);
    -webkit-backdrop-filter:blur(0);
    backdrop-filter:blur(0)
  }
}

@keyframes showModalWrapper{
  0%{
    opacity:0;
    -webkit-transform:scale(1.1);
            transform:scale(1.1);
    -webkit-backdrop-filter:blur(2px);
    backdrop-filter:blur(2px)
  }

  to{
    opacity:1;
    -webkit-transform:scale(1);
            transform:scale(1);
    -webkit-backdrop-filter:blur(0);
    backdrop-filter:blur(0)
  }
}

.neeto-ui-modal__backdrop .neeto-ui-modal__wrapper .neeto-ui-modal__close{
  position:absolute;
  top:24px;
  top:var(--neeto-ui-modal-spacing);
  right:24px;
  right:var(--neeto-ui-modal-spacing)
}

.neeto-ui-modal__backdrop .neeto-ui-modal__wrapper.neeto-ui-modal__wrapper--small{
  width:320px
}

.neeto-ui-modal__backdrop .neeto-ui-modal__wrapper.neeto-ui-modal__wrapper--medium{
  width:480px
}

.neeto-ui-modal__backdrop .neeto-ui-modal__wrapper.neeto-ui-modal__wrapper--large{
  width:720px
}

.neeto-ui-modal__backdrop .neeto-ui-modal__wrapper.neeto-ui-modal__wrapper--fullscreen{
  width:100%;
  height:100%;
  max-width:100vw;
  max-height:100vh;
  border-radius:0;
  border-radius:var(--neeto-ui-rounded-none);
  -webkit-transform:scale(1);
          transform:scale(1);
  -webkit-animation:nuifadeIn 0s forwards;
          animation:nuifadeIn 0s forwards
}

.neeto-ui-modal__backdrop .neeto-ui-modal__wrapper .neeto-ui-modal__header{
  padding:24px 64px 16px 24px;
  padding:var(--neeto-ui-modal-spacing) 64px 16px var(--neeto-ui-modal-spacing);
  overflow-wrap:break-word
}

.neeto-ui-modal__backdrop .neeto-ui-modal__wrapper .neeto-ui-modal__header-desc{
  margin-top:8px;
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700))
}

.neeto-ui-modal__backdrop .neeto-ui-modal__wrapper .neeto-ui-modal__body{
  padding:0 24px 24px;
  padding:0 var(--neeto-ui-modal-spacing) var(--neeto-ui-modal-spacing);
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  line-height:1.5;
  word-wrap:break-word
}

.neeto-ui-modal__backdrop .neeto-ui-modal__wrapper .neeto-ui-modal__footer{
  padding:0 24px 24px;
  padding:0 var(--neeto-ui-modal-spacing) var(--neeto-ui-modal-spacing)
}

.neeto-ui-modal__backdrop .neeto-ui-modal__wrapper .neeto-ui-alert__footer{
  padding:0 24px 24px;
  padding:0 var(--neeto-ui-modal-spacing) var(--neeto-ui-modal-spacing);
  display:flex
}

.neeto-ui-modal__backdrop .neeto-ui-icon__wrapper{
  display:flex;
  flex-direction:row;
  justify-content:flex-start;
  align-items:center;
  margin-bottom:24px;
  margin-bottom:var(--neeto-ui-modal-spacing);
  padding:10px 0 0 2px
}

.neeto-ui-modal-enter.neeto-ui-modal__backdrop{
  opacity:0;
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px)
}

.neeto-ui-modal-enter-active.neeto-ui-modal__backdrop,.neeto-ui-modal-enter-done.neeto-ui-modal__backdrop,.neeto-ui-modal-exit.neeto-ui-modal__backdrop{
  opacity:1;
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px)
}

.neeto-ui-modal-exit-active.neeto-ui-modal__backdrop{
  opacity:0;
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px)
}

.neeto-ui-pageloader__wrapper{
  position:relative;
  width:100%;
  height:100%
}

.neeto-ui-pageloader__wrapper .neeto-ui-pageloader{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%
}

.neeto-ui-pageloader__wrapper .neeto-ui-pageloader__content{
  position:relative;
  padding:8px;
  margin-bottom:16px;
  width:66px;
  height:66px;
  overflow:hidden
}

.neeto-ui-pageloader__wrapper .neeto-ui-pageloader__text{
  margin-bottom:4rem;
  text-align:center;
  font-size:1.25rem;
  line-height:1.75rem;
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-pageloader__spinner{
  height:25px;
  display:flex;
  gap:2px;
  position:absolute;
  left:50%;
  top:50%;
  -webkit-transform:translate(-50%, -50%);
          transform:translate(-50%, -50%)
}

.neeto-ui-pageloader__spinner>div{
  background-color:#fff;
  height:100%;
  width:2px;
  border-radius:2px;
  display:inline-flex;
  -webkit-animation:neeto-ui-stretchdelay 1.2s ease-in-out infinite;
          animation:neeto-ui-stretchdelay 1.2s ease-in-out infinite
}

.neeto-ui-pageloader__spinner .neeto-ui-pageloader__rect2{
  -webkit-animation-delay:-1.1s;
          animation-delay:-1.1s
}

.neeto-ui-pageloader__spinner .neeto-ui-pageloader__rect3{
  -webkit-animation-delay:-1s;
          animation-delay:-1s
}

.neeto-ui-pageloader__spinner .neeto-ui-pageloader__rect4{
  -webkit-animation-delay:-0.9s;
          animation-delay:-0.9s
}

.neeto-ui-pageloader__spinner .neeto-ui-pageloader__rect5{
  -webkit-animation-delay:-0.8s;
          animation-delay:-0.8s
}

@-webkit-keyframes neeto-ui-stretchdelay{
  0%,40%,to{
    transform:scaleY(0.4);
    -webkit-transform:scaleY(0.4)
  }

  20%{
    transform:scaleY(1);
    -webkit-transform:scaleY(1)
  }
}

@keyframes neeto-ui-stretchdelay{
  0%,40%,to{
    transform:scaleY(0.4);
    -webkit-transform:scaleY(0.4)
  }

  20%{
    transform:scaleY(1);
    -webkit-transform:scaleY(1)
  }
}

.neeto-ui-pagination__wrapper{
  display:flex;
  flex-direction:row;
  justify-content:flex-start;
  align-items:center;
  list-style:none
}

.neeto-ui-pagination__wrapper .neeto-ui-pagination__item:not(.neeto-ui-pagination__item--dots){
  margin:0 4px;
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  border:1px solid transparent;
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  overflow:hidden
}

.neeto-ui-pagination__wrapper .neeto-ui-pagination__item:not(.neeto-ui-pagination__item--dots):hover:not(.disabled,.active){
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200));
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-pagination__wrapper .neeto-ui-pagination__item{
  width:32px;
  min-width:32px;
  height:32px;
  line-height:30px;
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  font-weight:500;
  font-weight:var(--neeto-ui-font-medium);
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700));
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
      user-select:none
}

.neeto-ui-pagination__wrapper .neeto-ui-pagination__item a{
  display:block;
  text-align:center;
  color:inherit;
  text-decoration:none;
  cursor:pointer
}

.neeto-ui-pagination__wrapper .neeto-ui-pagination__item:focus-visible{
  outline:3px solid rgba(69, 88, 249, 50%);
  outline:3px solid rgba(69,88,249, 50%);
  outline:3px solid rgba(var(--neeto-ui-primary-500), 50%);
  outline-offset:1px;
  box-shadow:none
}

.neeto-ui-pagination__wrapper .neeto-ui-pagination__item:focus-visible a{
  outline:none;
  border:none
}

.neeto-ui-pagination__wrapper .neeto-ui-pagination__item.active{
  border-color:rgb(69, 88, 249);
  border-color:rgb(69,88,249);
  border-color:rgb(var(--neeto-ui-primary-500));
  background-color:rgb(69, 88, 249);
  background-color:rgb(69,88,249);
  background-color:rgb(var(--neeto-ui-primary-500));
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white))
}

.neeto-ui-pagination__wrapper .neeto-ui-pagination__item.neeto-ui-pagination__item--dots{
  background-color:transparent;
  text-align:center
}

.neeto-ui-pagination__wrapper .neeto-ui-pagination__item.neeto-ui-pagination__item--navigate{
  text-align:center;
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700));
  display:flex;
  flex-direction:row;
  justify-content:center;
  align-items:center
}

.neeto-ui-pagination__wrapper .neeto-ui-pagination__item.neeto-ui-pagination__item--navigate:active,.neeto-ui-pagination__wrapper .neeto-ui-pagination__item.neeto-ui-pagination__item--navigate:hover:not(.disabled){
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-pagination__wrapper .neeto-ui-pagination__item.neeto-ui-pagination__item--navigate.disabled{
  color:rgb(216, 220, 222);
  color:rgb(216,220,222);
  color:rgb(var(--neeto-ui-gray-300))
}

.neeto-ui-pagination__wrapper .neeto-ui-pagination__item.neeto-ui-pagination__item--navigate.disabled a{
  cursor:not-allowed
}

.neeto-ui-pane__backdrop{
  position:fixed;
  z-index:99998;
  left:0;
  top:0;
  width:100vw;
  overflow-x:hidden;
  overflow-y:auto;
  background-color:rgba(27, 31, 35, 0.8666666667)
}

.neeto-ui-pane__backdrop,.neeto-ui-pane__wrapper{
  height:100vh;
  -webkit-transition:all .3s;
  transition:all .3s;
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px)
}

.neeto-ui-pane__wrapper{
  overflow:hidden;
  max-width:100%;
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  -webkit-transform:translateX(100%);
          transform:translateX(100%)
}

.neeto-ui-pane__wrapper--small{
  width:480px
}

.neeto-ui-pane__wrapper--large{
  width:50vw
}

@media screen and (max-width: 1024px){
  .neeto-ui-pane__wrapper{
    width:50%
  }
}

@media screen and (max-width: 767px){
  .neeto-ui-pane__wrapper{
    width:100%
  }
}

.neeto-ui-pane__close{
  position:absolute;
  top:24px;
  right:24px
}

.neeto-ui-pane__header{
  width:100%;
  padding:24px 60px 24px 24px
}

.neeto-ui-pane__body{
  width:100%;
  height:calc(100vh - 78px);
  height:calc(100vh - var(--neeto-ui-pane-header-height));
  padding:0 24px;
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  overflow-y:auto
}

.neeto-ui-pane__body.neeto-ui-pane__body--has-footer{
  height:calc(100vh - 78px - 80px);
  height:calc(100vh - var(--neeto-ui-pane-header-height) - var(--neeto-ui-pane-footer-height))
}

.neeto-ui-pane__footer{
  width:100%;
  padding:24px;
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  min-height:80px;
  min-height:var(--neeto-ui-pane-footer-height)
}

.neeto-ui-pane__footer.neeto-ui-pane__footer__absolute{
  width:100%;
  position:absolute;
  left:0;
  bottom:0
}

.neeto-ui-pane-enter.neeto-ui-pane__backdrop{
  opacity:0;
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px)
}

.neeto-ui-pane-enter .neeto-ui-pane__wrapper{
  -webkit-transform:translateX(100%);
          transform:translateX(100%);
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px)
}

.neeto-ui-pane-enter-active.neeto-ui-pane__backdrop,.neeto-ui-pane-enter-done.neeto-ui-pane__backdrop{
  opacity:1;
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px)
}

.neeto-ui-pane-enter-active .neeto-ui-pane__wrapper,.neeto-ui-pane-enter-done .neeto-ui-pane__wrapper{
  -webkit-transform:translateX(0);
          transform:translateX(0);
  -webkit-backdrop-filter:blur(0);
  backdrop-filter:blur(0)
}

.neeto-ui-pane-exit.neeto-ui-pane__backdrop{
  opacity:1;
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px)
}

.neeto-ui-pane-exit .neeto-ui-pane__wrapper{
  -webkit-transform:translateX(100%);
          transform:translateX(100%);
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px)
}

.neeto-ui-pane-exit-active.neeto-ui-pane__backdrop{
  opacity:0;
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px)
}

.neeto-ui-pane-exit-active .neeto-ui-pane__wrapper{
  -webkit-transform:translateX(100%);
          transform:translateX(100%);
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px)
}

.neeto-ui-radio__wrapper{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-start;
  flex-grow:1
}

.neeto-ui-radio__wrapper .neeto-ui-radio__label{
  margin-bottom:12px
}

.neeto-ui-radio__wrapper .neeto-ui-radio-input__error{
  margin-top:4px;
  color:rgb(215, 55, 63);
  color:rgb(215,55,63);
  color:rgb(var(--neeto-ui-error-500));
  font-size:12px;
  font-size:var(--neeto-ui-text-xs)
}

.neeto-ui-radio__container,.neeto-ui-radio__container .neeto-ui-radio__item{
  display:flex;
  flex-direction:row;
  justify-content:flex-start;
  align-items:center
}

.neeto-ui-radio__container .neeto-ui-radio__item .neeto-ui-label{
  margin-left:8px
}

.neeto-ui-radio__container .neeto-ui-radio__item:not(:last-child){
  margin-right:16px
}

.neeto-ui-radio__container .neeto-ui-radio[type=radio]{
  width:16px;
  height:16px;
  color:rgb(69, 88, 249);
  color:rgb(69,88,249);
  color:rgb(var(--neeto-ui-primary-500));
  border:2px solid rgb(194, 200, 204);
  border:2px solid rgb(194,200,204);
  border:2px solid rgb(var(--neeto-ui-gray-400));
  justify-content:flex-start;
  align-items:flex-start
}

.neeto-ui-radio__container .neeto-ui-radio[type=radio]:not(:disabled){
  cursor:pointer
}

.neeto-ui-radio__container .neeto-ui-radio[type=radio]:hover:not(:disabled,:checked){
  border-color:rgb(135, 146, 157);
  border-color:rgb(135,146,157);
  border-color:rgb(var(--neeto-ui-gray-500))
}

.neeto-ui-radio__container .neeto-ui-radio[type=radio]:disabled{
  opacity:.5;
  cursor:not-allowed
}

.neeto-ui-radio__container .neeto-ui-radio[type=radio]:checked{
  border:none !important
}

.neeto-ui-radio__container .neeto-ui-radio[type=radio]:focus{
  outline:transparent
}

.neeto-ui-radio__container .neeto-ui-radio[type=radio]:focus-visible{
  outline:3px solid rgba(69, 88, 249, 50%);
  outline:3px solid rgba(69,88,249, 50%);
  outline:3px solid rgba(var(--neeto-ui-primary-500), 50%);
  outline-offset:1px;
  box-shadow:none
}

.neeto-ui-radio__container.neeto-ui-radio__container--error .neeto-ui-radio[type=radio]{
  border-color:rgb(215, 55, 63);
  border-color:rgb(215,55,63);
  border-color:rgb(var(--neeto-ui-error-500))
}

.neeto-ui-radio__container.neeto-ui-radio__container--stacked{
  flex-direction:column;
  align-items:flex-start
}

.neeto-ui-radio__container.neeto-ui-radio__container--stacked .neeto-ui-radio__item:not(:last-child){
  margin-bottom:16px
}

.neeto-ui-react-select__container.neeto-ui-react-select__container--error .neeto-ui-react-select__control{
  border:thin solid rgb(215, 55, 63) !important;
  border:thin solid rgb(215,55,63) !important;
  border:thin solid rgb(var(--neeto-ui-error-500)) !important
}

.neeto-ui-react-select__container.neeto-ui-react-select__container--error .neeto-ui-react-select__control.neeto-ui-react-select__control--is-focused{
  box-shadow:0 0 0 3px rgb(254, 236, 240);
  box-shadow:0 0 0 3px rgb(254,236,240);
  box-shadow:0 0 0 3px rgb(var(--neeto-ui-error-100))
}

.neeto-ui-react-select__container{
  width:100%
}

.neeto-ui-react-select__container,.neeto-ui-react-select__menu-portal{
  font-size:14px;
  font-size:var(--neeto-ui-text-sm)
}

.neeto-ui-react-select__container.neeto-ui-react-select__container--naked .neeto-ui-react-select__control,.neeto-ui-react-select__menu-portal.neeto-ui-react-select__container--naked .neeto-ui-react-select__control{
  border:none;
  background-color:transparent
}

.neeto-ui-react-select__container.neeto-ui-react-select__container--naked .neeto-ui-react-select__control.neeto-ui-react-select__control--is-focused,.neeto-ui-react-select__menu-portal.neeto-ui-react-select__container--naked .neeto-ui-react-select__control.neeto-ui-react-select__control--is-focused{
  border:none
}

.neeto-ui-react-select__container.neeto-ui-react-select__container--naked .neeto-ui-react-select__indicator,.neeto-ui-react-select__container.neeto-ui-react-select__container--naked .neeto-ui-react-select__value-container,.neeto-ui-react-select__menu-portal.neeto-ui-react-select__container--naked .neeto-ui-react-select__indicator,.neeto-ui-react-select__menu-portal.neeto-ui-react-select__container--naked .neeto-ui-react-select__value-container{
  padding:0
}

.neeto-ui-react-select__container.neeto-ui-react-select--is-disabled,.neeto-ui-react-select__menu-portal.neeto-ui-react-select--is-disabled{
  cursor:not-allowed;
  pointer-events:all
}

.neeto-ui-react-select__container.neeto-ui-react-select--is-disabled .neeto-ui-react-select__indicators,.neeto-ui-react-select__menu-portal.neeto-ui-react-select--is-disabled .neeto-ui-react-select__indicators{
  pointer-events:none
}

.neeto-ui-react-select__container .neeto-ui-react-select__control.neeto-ui-react-select__control--is-disabled,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__control.neeto-ui-react-select__control--is-disabled{
  background-color:rgb(248, 249, 249) !important;
  background-color:rgb(248,249,249) !important;
  background-color:rgb(var(--neeto-ui-gray-100)) !important;
  border:thin solid rgb(194, 200, 204) !important;
  border:thin solid rgb(194,200,204) !important;
  border:thin solid rgb(var(--neeto-ui-gray-400)) !important;
  cursor:not-allowed
}

.neeto-ui-react-select__container .neeto-ui-react-select__control.neeto-ui-react-select__control--is-focused,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__control.neeto-ui-react-select__control--is-focused{
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  outline-color:transparent;
  border-color:rgb(69, 88, 249);
  border-color:rgb(69,88,249);
  border-color:rgb(var(--neeto-ui-primary-500));
  box-shadow:0 0 0 3px rgba(69, 88, 249, 15%);
  box-shadow:0 0 0 3px rgba(69,88,249, 15%);
  box-shadow:0 0 0 3px rgba(var(--neeto-ui-primary-500), 15%)
}

.neeto-ui-react-select__container .neeto-ui-react-select__control,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__control{
  border:thin solid rgb(194, 200, 204);
  border:thin solid rgb(194,200,204);
  border:thin solid rgb(var(--neeto-ui-gray-400));
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  min-height:0;
  -webkit-transition:border .3s;
  transition:border .3s
}

.neeto-ui-react-select__container .neeto-ui-react-select__control:hover:not(.neeto-ui-react-select__control--is-focused),.neeto-ui-react-select__menu-portal .neeto-ui-react-select__control:hover:not(.neeto-ui-react-select__control--is-focused){
  border-color:rgb(47, 57, 65);
  border-color:rgb(47,57,65);
  border-color:rgb(var(--neeto-ui-gray-700))
}

.neeto-ui-react-select__container .neeto-ui-react-select__value-container,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__value-container{
  line-height:1.2
}

.neeto-ui-react-select__container.neeto-ui-react-select__container--small .neeto-ui-react-select__value-container,.neeto-ui-react-select__menu-portal.neeto-ui-react-select__container--small .neeto-ui-react-select__value-container{
  min-height:26px;
  padding:0 8px
}

.neeto-ui-react-select__container.neeto-ui-react-select__container--small .neeto-ui-react-select__indicators,.neeto-ui-react-select__menu-portal.neeto-ui-react-select__container--small .neeto-ui-react-select__indicators{
  padding-right:8px
}

.neeto-ui-react-select__container.neeto-ui-react-select__container--medium .neeto-ui-react-select__value-container,.neeto-ui-react-select__menu-portal.neeto-ui-react-select__container--medium .neeto-ui-react-select__value-container{
  min-height:30px;
  padding:0 8px
}

.neeto-ui-react-select__container.neeto-ui-react-select__container--medium .neeto-ui-react-select__indicators,.neeto-ui-react-select__menu-portal.neeto-ui-react-select__container--medium .neeto-ui-react-select__indicators{
  padding-right:8px
}

.neeto-ui-react-select__container.neeto-ui-react-select__container--large .neeto-ui-react-select__value-container,.neeto-ui-react-select__menu-portal.neeto-ui-react-select__container--large .neeto-ui-react-select__value-container{
  padding:0 12px;
  min-height:38px
}

.neeto-ui-react-select__container.neeto-ui-react-select__container--large .neeto-ui-react-select__indicators,.neeto-ui-react-select__menu-portal.neeto-ui-react-select__container--large .neeto-ui-react-select__indicators{
  padding-right:12px
}

.neeto-ui-react-select__container .neeto-ui-react-select__placeholder,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__placeholder{
  color:rgb(194, 200, 204);
  color:rgb(194,200,204);
  color:rgb(var(--neeto-ui-gray-400));
  font-size:inherit;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis
}

.neeto-ui-react-select__container .neeto-ui-react-select__input-container,.neeto-ui-react-select__container .neeto-ui-react-select__single-value,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__input-container,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__single-value{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-react-select__container .neeto-ui-react-select__input,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__input{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  font-size:inherit
}

.neeto-ui-react-select__container .neeto-ui-react-select__indicator-separator,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__indicator-separator{
  display:none
}

.neeto-ui-react-select__container .neeto-ui-react-select__indicators,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__indicators{
  padding-right:12px;
  gap:8px
}

.neeto-ui-react-select__container .neeto-ui-react-select__indicator,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__indicator{
  padding:0;
  cursor:pointer;
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition)
}

.neeto-ui-react-select__container .neeto-ui-react-select__indicator:hover,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__indicator:hover{
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700))
}

.neeto-ui-react-select__container .neeto-ui-react-select__menu,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__menu{
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  margin:6px 0 16px;
  z-index:20;
  border:thin solid rgb(194, 200, 204) !important;
  border:thin solid rgb(194,200,204) !important;
  border:thin solid rgb(var(--neeto-ui-gray-400)) !important;
  box-shadow:0 8px 24px rgba(140, 149, 159, 0.2);
  box-shadow:0 8px 24px rgba(140,149,159,0.2);
  box-shadow:var(--neeto-ui-shadow-lg);
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white))
}

.neeto-ui-react-select__container .neeto-ui-react-select__menu .neeto-ui-react-select__menu-list,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__menu .neeto-ui-react-select__menu-list{
  position:relative;
  max-height:480px
}

@media(max-height: 1000px){
  .neeto-ui-react-select__container .neeto-ui-react-select__menu .neeto-ui-react-select__menu-list,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__menu .neeto-ui-react-select__menu-list{
    max-height:calc(40vh - 50px)
  }
}

.neeto-ui-react-select__container .neeto-ui-react-select__menu .neeto-ui-react-select__option,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__menu .neeto-ui-react-select__option{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  font-size:inherit;
  cursor:pointer;
  overflow-wrap:break-word;
  word-wrap:break-word;
  word-break:break-word;
  padding:8px 12px;
  line-height:1.1;
  min-height:32px;
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition)
}

.neeto-ui-react-select__container .neeto-ui-react-select__menu .neeto-ui-react-select__option--is-focused,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__menu .neeto-ui-react-select__option--is-focused{
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-react-select__container .neeto-ui-react-select__menu .neeto-ui-react-select__option--is-disabled,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__menu .neeto-ui-react-select__option--is-disabled{
  color:rgb(233, 235, 237);
  color:rgb(233,235,237);
  color:rgb(var(--neeto-ui-gray-200));
  cursor:not-allowed
}

.neeto-ui-react-select__container .neeto-ui-react-select__menu .neeto-ui-react-select__option--is-selected,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__menu .neeto-ui-react-select__option--is-selected{
  background-color:rgb(69, 88, 249);
  background-color:rgb(69,88,249);
  background-color:rgb(var(--neeto-ui-primary-500));
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white))
}

.neeto-ui-react-select__container .neeto-ui-react-select__menu .neeto-ui-react-select__fixed-option,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__menu .neeto-ui-react-select__fixed-option{
  width:100%;
  font-size:inherit;
  border-top:thin solid rgb(248, 249, 249);
  border-top:thin solid rgb(248,249,249);
  border-top:thin solid rgb(var(--neeto-ui-gray-100));
  padding:2px 0;
  cursor:pointer
}

.neeto-ui-react-select__container .neeto-ui-react-select__menu .neeto-ui-react-select__fixed-option a,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__menu .neeto-ui-react-select__fixed-option a{
  width:100%;
  display:inline-block;
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700));
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
      user-select:none;
  padding:8px 12px
}

.neeto-ui-react-select__container .neeto-ui-react-select__menu .neeto-ui-react-select__fixed-option:hover a,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__menu .neeto-ui-react-select__fixed-option:hover a{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  text-decoration:none
}

.neeto-ui-react-select__container .neeto-ui-react-select__multi-value,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__multi-value{
  display:flex;
  flex-direction:row;
  justify-content:flex-start;
  align-items:stretch;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
      user-select:none;
  background-color:transparent;
  border:thin solid rgb(194, 200, 204);
  border:thin solid rgb(194,200,204);
  border:thin solid rgb(var(--neeto-ui-gray-400));
  border-radius:100px;
  margin:3px 4px 3px 0;
  padding:0 8px;
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-react-select__container .neeto-ui-react-select__multi-value .neeto-ui-react-select__multi-value__label,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__multi-value .neeto-ui-react-select__multi-value__label{
  margin:0 6px 0 0;
  color:inherit !important;
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  line-height:1.25;
  line-height:var(--neeto-ui-leading-tight);
  padding:2px 0;
  line-height:1;
  display:flex;
  align-items:center
}

.neeto-ui-react-select__container .neeto-ui-react-select__multi-value .neeto-ui-react-select__multi-value__remove,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__multi-value .neeto-ui-react-select__multi-value__remove{
  color:inherit !important
}

.neeto-ui-react-select__container .neeto-ui-react-select__multi-value .neeto-ui-react-select__multi-value__remove:hover,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__multi-value .neeto-ui-react-select__multi-value__remove:hover{
  opacity:.7
}

.neeto-ui-react-select__container .neeto-ui-react-select__multi-value__remove,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__multi-value__remove{
  cursor:pointer;
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  border-top-right-radius:0;
  border-bottom-right-radius:0;
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  padding:0
}

.neeto-ui-react-select__container .neeto-ui-react-select__multi-value__remove:hover,.neeto-ui-react-select__menu-portal .neeto-ui-react-select__multi-value__remove:hover{
  background-color:transparent;
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700))
}

.neeto-ui-react-select__menu-portal .neeto-ui-react-select__menu{
  margin:6px 0
}

.neeto-ui-switch__wrapper{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-start;
  width:-moz-fit-content;
  width:-webkit-fit-content;
  width:fit-content
}

.neeto-ui-switch__wrapper .neeto-ui-switch__container{
  display:flex;
  flex-direction:row;
  justify-content:flex-start;
  align-items:center
}

.neeto-ui-switch__wrapper .neeto-ui-switch__container .neeto-ui-label{
  margin-left:12px
}

.neeto-ui-switch__wrapper .neeto-ui-switch__container .neeto-ui-switch__item{
  width:44px;
  height:24px;
  border:2px solid transparent;
  border-radius:20px;
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  background-color:rgb(216, 220, 222);
  background-color:rgb(216,220,222);
  background-color:rgb(var(--neeto-ui-gray-300));
  cursor:pointer;
  display:inline-flex;
  flex-direction:row;
  justify-content:flex-start;
  align-items:center;
  flex-shrink:0
}

.neeto-ui-switch__wrapper .neeto-ui-switch__container .neeto-ui-switch__item input[type=checkbox]{
  width:0;
  height:0;
  opacity:0;
  border:0
}

.neeto-ui-switch__wrapper .neeto-ui-switch__container .neeto-ui-switch__item.neeto-ui-switch__item--disabled{
  opacity:.7;
  cursor:not-allowed
}

.neeto-ui-switch__wrapper .neeto-ui-switch__container .neeto-ui-switch__item.neeto-ui-switch__item--checked{
  background-color:rgb(38, 142, 108);
  background-color:rgb(38,142,108);
  background-color:rgb(var(--neeto-ui-success-500))
}

.neeto-ui-switch__wrapper .neeto-ui-switch__container .neeto-ui-switch__item .neeto-ui-switch{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  -webkit-transition:all .3s ease-in-out;
  transition:all .3s ease-in-out;
  -webkit-transform:translateX(0);
          transform:translateX(0);
  color:rgb(194, 200, 204);
  color:rgb(194,200,204);
  color:rgb(var(--neeto-ui-gray-400));
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  border-radius:16px;
  box-shadow:0 4px 4px 0 rgba(0, 0, 0, 0.05)
}

.neeto-ui-switch__wrapper .neeto-ui-switch__container .neeto-ui-switch__item .neeto-ui-switch--checked{
  -webkit-transform:translateX(20px);
          transform:translateX(20px);
  color:rgb(38, 142, 108);
  color:rgb(38,142,108);
  color:rgb(var(--neeto-ui-success-500))
}

.neeto-ui-switch__wrapper .neeto-ui-switch__container .neeto-ui-switch__item:focus-within{
  box-shadow:0 0 0 3px rgb(233, 235, 237);
  box-shadow:0 0 0 3px rgb(233,235,237);
  box-shadow:0 0 0 3px rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-switch__wrapper .neeto-ui-switch__container .neeto-ui-switch__item:focus-visible{
  outline:3px solid rgba(69, 88, 249, 50%);
  outline:3px solid rgba(69,88,249, 50%);
  outline:3px solid rgba(var(--neeto-ui-primary-500), 50%);
  outline-offset:1px;
  box-shadow:none
}

.neeto-ui-tab__wrapper{
  width:100%;
  border-bottom:2px solid rgb(216, 220, 222);
  border-bottom:2px solid rgb(216,220,222);
  border-bottom:2px solid rgb(var(--neeto-ui-gray-300))
}

.neeto-ui-tab__wrapper--size-large .neeto-ui-tab{
  font-size:20px;
  font-size:var(--neeto-ui-text-xl);
  padding-left:12px;
  padding-right:12px
}

.neeto-ui-tab__wrapper--underline-none{
  border-bottom:none
}

.neeto-ui-tab__wrapper--underline-none .neeto-ui-tab:before{
  display:none
}

.neeto-ui-tab{
  color:rgb(104, 115, 125);
  color:rgb(104,115,125);
  color:rgb(var(--neeto-ui-gray-600));
  font-weight:600;
  font-weight:var(--neeto-ui-font-semibold);
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  line-height:1;
  padding:12px 8px;
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  position:relative;
  cursor:pointer
}

.neeto-ui-tab,.neeto-ui-tab:active,.neeto-ui-tab:focus,.neeto-ui-tab:hover{
  text-decoration:none;
  outline:none
}

.neeto-ui-tab:focus-visible{
  text-decoration:none;
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  outline:3px solid rgba(69, 88, 249, 50%);
  outline:3px solid rgba(69,88,249, 50%);
  outline:3px solid rgba(var(--neeto-ui-primary-500), 50%);
  outline-offset:1px;
  box-shadow:none
}

.neeto-ui-tab__icon{
  margin-right:12px
}

.neeto-ui-tab svg{
  width:16px;
  height:16px
}

.neeto-ui-tab:hover{
  color:rgb(104, 115, 125);
  color:rgb(104,115,125);
  color:rgb(var(--neeto-ui-gray-600))
}

.neeto-ui-tab:before{
  content:"";
  position:absolute;
  width:100%;
  height:2px;
  background-color:transparent;
  left:0;
  right:0;
  bottom:-2px;
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition)
}

.neeto-ui-tab.active{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-tab.active:before{
  background-color:rgb(31, 31, 31);
  background-color:rgb(31,31,31);
  background-color:rgb(var(--neeto-ui-gray-800))
}

.ant-table-wrapper{
  width:100%;
  border-collapse:collapse
}

.ant-table-wrapper table tr td.ant-table-selection-column,.ant-table-wrapper table tr th.ant-table-selection-column{
  z-index:9999
}

.ant-table-wrapper .ant-table,.ant-table-wrapper .ant-table-cell-fix-left,.ant-table-wrapper .ant-table-cell-fix-right{
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white))
}

.ant-table-wrapper thead.ant-table-thead tr th{
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700));
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  font-size:12px;
  font-size:var(--neeto-ui-text-xs);
  vertical-align:middle;
  font-weight:700;
  font-weight:var(--neeto-ui-font-bold);
  text-transform:uppercase
}

.ant-table-wrapper thead.ant-table-thead tr th:before{
  display:none
}

.ant-table-wrapper thead.ant-table-thead tr th.ant-table-cell.ant-table-column-has-sorters:hover{
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  color:rgb(45, 54, 212);
  color:rgb(45,54,212);
  color:rgb(var(--neeto-ui-primary-800))
}

.ant-table-wrapper thead.ant-table-thead tr th.ant-table-cell.ant-table-column-has-sorters .ant-table-column-sorters .ant-table-column-sorter.ant-table-column-sorter-full .ant-table-column-sorter-inner .ant-table-column-sorter-down,.ant-table-wrapper thead.ant-table-thead tr th.ant-table-cell.ant-table-column-has-sorters .ant-table-column-sorters .ant-table-column-sorter.ant-table-column-sorter-full .ant-table-column-sorter-inner .ant-table-column-sorter-up{
  color:rgb(216, 220, 222);
  color:rgb(216,220,222);
  color:rgb(var(--neeto-ui-gray-300))
}

.ant-table-wrapper thead.ant-table-thead tr th.ant-table-cell.ant-table-column-has-sorters .ant-table-column-sorters .ant-table-column-sorter.ant-table-column-sorter-full .ant-table-column-sorter-inner .active{
  color:rgb(45, 54, 212);
  color:rgb(45,54,212);
  color:rgb(var(--neeto-ui-primary-800))
}

.ant-table-wrapper thead.ant-table-thead tr th>.ant-table-column-sorters>.ant-table-column-title{
  width:90%
}

.ant-table-wrapper .ant-table-tbody>tr.ant-table-row:hover>td{
  background-color:rgb(248, 249, 249);
  background-color:rgb(248,249,249);
  background-color:rgb(var(--neeto-ui-gray-100))
}

.ant-table-wrapper .ant-table-tbody>tr.ant-table-row-selected>td{
  background-color:rgb(235, 236, 254);
  background-color:rgb(235,236,254);
  background-color:rgb(var(--neeto-ui-primary-100))
}

.ant-table-wrapper .neeto-ui-table--row{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  font-weight:400;
  font-weight:var(--neeto-ui-font-normal);
  vertical-align:middle
}

.ant-table-wrapper .neeto-ui-table--row a:not(.neeto-ui-btn){
  color:rgb(69, 88, 249);
  color:rgb(69,88,249);
  color:rgb(var(--neeto-ui-primary-500));
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  font-weight:500;
  font-weight:var(--neeto-ui-font-medium)
}

.ant-table-wrapper .neeto-ui-table--row a:not(.neeto-ui-btn):hover{
  opacity:.8;
  color:rgb(69, 88, 249);
  color:rgb(69,88,249);
  color:rgb(var(--neeto-ui-primary-500));
  text-decoration:underline
}

.ant-table-wrapper ul.ant-pagination.ant-table-pagination.ant-table-pagination-right .ant-pagination-next .ant-pagination-item-link,.ant-table-wrapper ul.ant-pagination.ant-table-pagination.ant-table-pagination-right .ant-pagination-prev .ant-pagination-item-link{
  border-radius:3px;
  border-radius:var(--neeto-ui-rounded-sm);
  border:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background-color:255,255,255;
  background-color:var(--neeto-ui-white)
}

.ant-table-wrapper ul.ant-pagination.ant-table-pagination.ant-table-pagination-right li.ant-pagination-item{
  border:1px solid transparent;
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  font-weight:500;
  font-weight:var(--neeto-ui-font-medium);
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white))
}

.ant-table-wrapper ul.ant-pagination.ant-table-pagination.ant-table-pagination-right li.ant-pagination-item a{
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700))
}

.ant-table-wrapper ul.ant-pagination.ant-table-pagination.ant-table-pagination-right li.ant-pagination-item:hover{
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200));
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.ant-table-wrapper ul.ant-pagination.ant-table-pagination.ant-table-pagination-right li.ant-pagination-item:hover a{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.ant-table-wrapper ul.ant-pagination.ant-table-pagination.ant-table-pagination-right li.ant-pagination-item:focus-visible{
  outline:3px solid rgba(69, 88, 249, 50%);
  outline:3px solid rgba(69,88,249, 50%);
  outline:3px solid rgba(var(--neeto-ui-primary-500), 50%);
  outline-offset:1px;
  box-shadow:none
}

.ant-table-wrapper ul.ant-pagination.ant-table-pagination.ant-table-pagination-right li.ant-pagination-item.ant-pagination-item-active{
  border-color:rgb(69, 88, 249);
  border-color:rgb(69,88,249);
  border-color:rgb(var(--neeto-ui-primary-500));
  background-color:rgb(69, 88, 249);
  background-color:rgb(69,88,249);
  background-color:rgb(var(--neeto-ui-primary-500))
}

.ant-table-wrapper ul.ant-pagination.ant-table-pagination.ant-table-pagination-right li.ant-pagination-item.ant-pagination-item-active a{
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white))
}

.ant-table-wrapper ul.ant-pagination.ant-table-pagination.ant-table-pagination-right .ant-pagination-next:not(.ant-pagination-disabled):hover .ant-pagination-item-link,.ant-table-wrapper ul.ant-pagination.ant-table-pagination.ant-table-pagination-right .ant-pagination-prev:not(.ant-pagination-disabled):hover .ant-pagination-item-link{
  border-color:transparent;
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200))
}

.ant-table-wrapper ul.ant-pagination.ant-table-pagination.ant-table-pagination-right .ant-pagination-next:not(.ant-pagination-disabled):hover .ant-pagination-item-link .anticon.anticon-left,.ant-table-wrapper ul.ant-pagination.ant-table-pagination.ant-table-pagination-right .ant-pagination-next:not(.ant-pagination-disabled):hover .ant-pagination-item-link .anticon.anticon-right,.ant-table-wrapper ul.ant-pagination.ant-table-pagination.ant-table-pagination-right .ant-pagination-prev:not(.ant-pagination-disabled):hover .ant-pagination-item-link .anticon.anticon-left,.ant-table-wrapper ul.ant-pagination.ant-table-pagination.ant-table-pagination-right .ant-pagination-prev:not(.ant-pagination-disabled):hover .ant-pagination-item-link .anticon.anticon-right{
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700))
}

.ant-table-wrapper .ant-pagination-jump-next.ant-pagination-jump-next-custom-icon .anticon.anticon-double-left.ant-pagination-item-link-icon,.ant-table-wrapper .ant-pagination-jump-next.ant-pagination-jump-next-custom-icon .anticon.anticon-double-right.ant-pagination-item-link-icon,.ant-table-wrapper .ant-pagination-jump-prev.ant-pagination-jump-prev-custom-icon .anticon.anticon-double-left.ant-pagination-item-link-icon,.ant-table-wrapper .ant-pagination-jump-prev.ant-pagination-jump-prev-custom-icon .anticon.anticon-double-right.ant-pagination-item-link-icon{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.ant-table-wrapper .ant-table-tbody>tr>td,.ant-table-wrapper .ant-table-thead>tr>th,.ant-table-wrapper .ant-table tfoot>tr>td,.ant-table-wrapper .ant-table tfoot>tr>th{
  padding:10px 16px
}

.ant-table-wrapper .ant-pagination-options .ant-select-dropdown{
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  padding:4px 0;
  border:thin solid rgb(194, 200, 204) !important;
  border:thin solid rgb(194,200,204) !important;
  border:thin solid rgb(var(--neeto-ui-gray-400)) !important;
  box-shadow:0px 3px 12px -1px rgba(28, 52, 84, 0.12),0px 2px 4px -1px rgba(28, 55, 90, 0.08);
  box-shadow:0px 3px 12px -1px rgba(28,52,84,0.12),0px 2px 4px -1px rgba(28,55,90,0.08);
  box-shadow:var(--neeto-ui-shadow-sm)
}

.ant-table-wrapper .ant-pagination-options div.ant-select .ant-select-arrow{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  font-size:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center
}

.ant-table-wrapper .ant-pagination-options div.ant-select .ant-select-selector{
  border:thin solid rgb(194, 200, 204);
  border:thin solid rgb(194,200,204);
  border:thin solid rgb(var(--neeto-ui-gray-400));
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white))
}

.ant-table-wrapper .ant-pagination-options div.ant-select .ant-select-selection-item{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.ant-table-wrapper .ant-pagination-options div.ant-select:hover:not(.ant-select-focused) .ant-select-selector{
  border-color:rgb(31, 31, 31) !important;
  border-color:rgb(31,31,31) !important;
  border-color:rgb(var(--neeto-ui-gray-800)) !important;
  outline:none
}

.ant-table-wrapper .ant-pagination-options div.ant-select.ant-select-focused .ant-select-selector,.ant-table-wrapper .ant-pagination-options div.ant-select:hover:not(.ant-select-focused) .ant-select-selector:active,.ant-table-wrapper .ant-pagination-options div.ant-select:hover:not(.ant-select-focused) .ant-select-selector:focus,.ant-table-wrapper .ant-pagination-options div.ant-select:hover:not(.ant-select-focused) .ant-select-selector:focus-visible{
  border-color:rgb(69, 88, 249);
  border-color:rgb(69,88,249);
  border-color:rgb(var(--neeto-ui-primary-500));
  box-shadow:0 0 0 3px rgba(69, 88, 249, 15%);
  box-shadow:0 0 0 3px rgba(69,88,249, 15%);
  box-shadow:0 0 0 3px rgba(var(--neeto-ui-primary-500), 15%)
}

.ant-table-wrapper .ant-pagination-options div.ant-select.ant-select-focused .ant-select-selector{
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  -webkit-transition:all .3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition:all .3s cubic-bezier(0.645, 0.045, 0.355, 1);
  outline:none
}

.ant-table-wrapper .ant-pagination-options div.ant-select.ant-select-focused .ant-select-selector:active,.ant-table-wrapper .ant-pagination-options div.ant-select.ant-select-focused .ant-select-selector:focus,.ant-table-wrapper .ant-pagination-options div.ant-select.ant-select-focused .ant-select-selector:focus-visible{
  border-color:rgb(69, 88, 249);
  border-color:rgb(69,88,249);
  border-color:rgb(var(--neeto-ui-primary-500))
}

.ant-table-wrapper .ant-select-item-option-active:not(.ant-select-item-option-disabled){
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200));
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.ant-table-wrapper .ant-select-item-option-selected:not(.ant-select-item-option-disabled){
  font-weight:inherit;
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white));
  background-color:rgb(69, 88, 249);
  background-color:rgb(69,88,249);
  background-color:rgb(var(--neeto-ui-primary-500))
}

.ant-table-wrapper .ant-spin-nested-loading .ant-spin.ant-spin-spinning .ant-spin-dot-item{
  background-color:rgb(31, 31, 31);
  background-color:rgb(31,31,31);
  background-color:rgb(var(--neeto-ui-gray-800))
}

.ant-table-wrapper .ant-pagination-next:not(.ant-pagination-disabled):hover .ant-pagination-item-link,.ant-table-wrapper .ant-pagination-prev:not(.ant-pagination-disabled):hover .ant-pagination-item-link{
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200));
  border-color:rgb(233, 235, 237);
  border-color:rgb(233,235,237);
  border-color:rgb(var(--neeto-ui-gray-200))
}

.ant-table-wrapper .ant-pagination-next:not(.ant-pagination-disabled):hover .ant-pagination-item-link .anticon-left,.ant-table-wrapper .ant-pagination-next:not(.ant-pagination-disabled):hover .ant-pagination-item-link .anticon-right,.ant-table-wrapper .ant-pagination-prev:not(.ant-pagination-disabled):hover .ant-pagination-item-link .anticon-left,.ant-table-wrapper .ant-pagination-prev:not(.ant-pagination-disabled):hover .ant-pagination-item-link .anticon-right{
  opacity:1
}

.ant-table-wrapper .ant-pagination-next .ant-pagination-item-link,.ant-table-wrapper .ant-pagination-prev .ant-pagination-item-link{
  border-color:transparent
}

.ant-table-wrapper .ant-pagination-disabled .ant-pagination-item-link,.ant-table-wrapper .ant-pagination-disabled:focus-visible .ant-pagination-item-link,.ant-table-wrapper .ant-pagination-disabled:hover .ant-pagination-item-link{
  color:rgb(135, 146, 157);
  color:rgb(135,146,157);
  color:rgb(var(--neeto-ui-gray-500));
  opacity:.3
}

.ant-table-wrapper .ant-pagination-item-link .anticon-left,.ant-table-wrapper .ant-pagination-item-link .anticon-right{
  width:24px;
  height:24px;
  background-repeat:no-repeat;
  background-position:50%;
  opacity:.8
}

.ant-table-wrapper .ant-pagination-item-link .anticon-left svg,.ant-table-wrapper .ant-pagination-item-link .anticon-right svg{
  display:none
}

.ant-table-wrapper .ant-pagination-jump-next .ant-pagination-item-link,.ant-table-wrapper .ant-pagination-jump-next .ant-pagination-item-link .ant-pagination-item-container,.ant-table-wrapper .ant-pagination-jump-prev .ant-pagination-item-link,.ant-table-wrapper .ant-pagination-jump-prev .ant-pagination-item-link .ant-pagination-item-container{
  width:32px;
  height:32px;
  display:flex
}

.ant-table-wrapper .ant-pagination-jump-next .ant-pagination-item-link .anticon-double-left,.ant-table-wrapper .ant-pagination-jump-next .ant-pagination-item-link .anticon-double-right,.ant-table-wrapper .ant-pagination-jump-prev .ant-pagination-item-link .anticon-double-left,.ant-table-wrapper .ant-pagination-jump-prev .ant-pagination-item-link .anticon-double-right{
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center
}

.ant-pagination-next button,.ant-pagination-prev button{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

td.ant-table-column-sort{
  background-color:transparent
}

.ant-table-column-sorters{
  justify-content:flex-start;
  gap:8px
}

.ant-table-column-sorters .ant-table-column-title{
  flex-grow:0;
  flex-shrink:0;
  flex-basis:auto
}

.ant-table-column-has-sorters[aria-sort=ascending] .ant-table-column-title,.ant-table-column-has-sorters[aria-sort=descending] .ant-table-column-title{
  color:rgb(45, 54, 212);
  color:rgb(45,54,212);
  color:rgb(var(--neeto-ui-primary-800))
}

.ant-table-column-sorter-inner .anticon-caret-up{
  opacity:0;
  visibility:hidden
}

.ant-table-column-sorter-inner .anticon-caret-up.active{
  opacity:1;
  visibility:visible;
  position:relative;
  top:4px
}

.ant-table-column-sorter-inner .anticon-caret-down{
  opacity:0;
  visibility:hidden
}

.ant-table-column-sorter-inner .anticon-caret-down.active{
  opacity:1;
  visibility:visible;
  position:relative;
  top:-4px
}

.react-resizable{
  position:relative;
  background-clip:padding-box
}

.react-resizable-handle{
  position:absolute;
  width:10px;
  height:100%;
  bottom:0;
  right:-5px;
  cursor:col-resize;
  z-index:1
}

.ant-table.ant-table-bordered>.ant-table-title{
  border:1px solid rgb(233, 235, 237);
  border:1px solid rgb(233,235,237);
  border:1px solid rgb(var(--neeto-ui-gray-200));
  border-bottom:0
}

.ant-table.ant-table-bordered>.ant-table-container{
  border-left:1px solid rgb(233, 235, 237);
  border-left:1px solid rgb(233,235,237);
  border-left:1px solid rgb(var(--neeto-ui-gray-200))
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr>th{
  border-right:1px solid rgb(233, 235, 237);
  border-right:1px solid rgb(233,235,237);
  border-right:1px solid rgb(var(--neeto-ui-gray-200))
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr:not(:last-child)>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr:not(:last-child)>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr:not(:last-child)>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr:not(:last-child)>th{
  border-bottom:1px solid rgb(233, 235, 237);
  border-bottom:1px solid rgb(233,235,237);
  border-bottom:1px solid rgb(var(--neeto-ui-gray-200))
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tfoot>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tfoot>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tfoot>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tfoot>tr>.ant-table-cell-fix-right-first:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr>.ant-table-cell-fix-right-first:after{
  border-right:1px solid rgb(233, 235, 237);
  border-right:1px solid rgb(233,235,237);
  border-right:1px solid rgb(var(--neeto-ui-gray-200))
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>td>.ant-table-expanded-row-fixed:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>td>.ant-table-expanded-row-fixed:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>td>.ant-table-expanded-row-fixed:after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>td>.ant-table-expanded-row-fixed:after{
  bottom:0;
  border-right:1px solid rgb(233, 235, 237);
  border-right:1px solid rgb(233,235,237);
  border-right:1px solid rgb(var(--neeto-ui-gray-200))
}

.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table{
  border-top:1px solid rgb(233, 235, 237);
  border-top:1px solid rgb(233,235,237);
  border-top:1px solid rgb(var(--neeto-ui-gray-200))
}

.ant-table.ant-table-bordered>.ant-table-footer{
  border:1px solid rgb(233, 235, 237);
  border:1px solid rgb(233,235,237);
  border:1px solid rgb(var(--neeto-ui-gray-200));
  border-top:0
}

.ant-table-thead>tr>th{
  border-bottom:2px solid rgb(233, 235, 237);
  border-bottom:2px solid rgb(233,235,237);
  border-bottom:2px solid rgb(var(--neeto-ui-gray-200))
}

.ant-table-summary>tr>td,.ant-table-summary>tr>th,.ant-table-tbody>tr>td{
  border-bottom:1px solid rgb(233, 235, 237);
  border-bottom:1px solid rgb(233,235,237);
  border-bottom:1px solid rgb(var(--neeto-ui-gray-200))
}

.ant-table-filter-dropdown-btns{
  border-top:1px solid rgb(233, 235, 237);
  border-top:1px solid rgb(233,235,237);
  border-top:1px solid rgb(var(--neeto-ui-gray-200))
}

.ant-table-row-expand-icon{
  border:1px solid rgb(233, 235, 237);
  border:1px solid rgb(233,235,237);
  border:1px solid rgb(var(--neeto-ui-gray-200))
}

.ant-table-sticky-scroll{
  border-top:1px solid rgb(233, 235, 237);
  border-top:1px solid rgb(233,235,237);
  border-top:1px solid rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-tag{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  font-size:12px;
  font-size:var(--neeto-ui-text-xs);
  line-height:12px;
  font-weight:400;
  font-weight:var(--neeto-ui-font-normal);
  gap:4px;
  padding:3px 8px;
  border-radius:100px;
  color:rgb(18, 18, 18);
  color:rgb(18,18,18);
  color:rgb(var(--neeto-ui-black));
  border-width:1px;
  border-style:solid;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
      user-select:none
}

.neeto-ui-tag__indicator{
  border-radius:999px;
  border-radius:var(--neeto-ui-rounded-full);
  height:8px;
  width:8px
}

.neeto-ui-tag__icon{
  display:inline-flex;
  justify-content:center;
  align-items:center
}

.neeto-ui-tag__icon svg{
  width:12px;
  height:12px
}

.neeto-ui-tag__close{
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  cursor:pointer
}

.neeto-ui-tag__close:hover{
  opacity:.8
}

.neeto-ui-tag__close svg{
  width:12px;
  height:12px
}

.neeto-ui-tag--size-large{
  padding:3px 12px;
  gap:6px;
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  line-height:16px
}

.neeto-ui-tag--size-large .neeto-ui-tag__close svg,.neeto-ui-tag--size-large .neeto-ui-tag__icon svg{
  width:16px;
  height:16px
}

.neeto-ui-tag--type-outline.neeto-ui-tag--style-primary{
  background-color:rgb(235, 236, 254);
  background-color:rgb(235,236,254);
  background-color:rgb(var(--neeto-ui-primary-100));
  border-color:rgb(69, 88, 249);
  border-color:rgb(69,88,249);
  border-color:rgb(var(--neeto-ui-primary-500));
  color:rgb(45, 54, 212);
  color:rgb(45,54,212);
  color:rgb(var(--neeto-ui-primary-800))
}

.neeto-ui-tag--type-outline.neeto-ui-tag--style-secondary{
  border-color:rgb(194, 200, 204);
  border-color:rgb(194,200,204);
  border-color:rgb(var(--neeto-ui-gray-400));
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  color:rgb(18, 18, 18);
  color:rgb(18,18,18);
  color:rgb(var(--neeto-ui-black))
}

.neeto-ui-tag--type-outline.neeto-ui-tag--style-danger{
  background-color:rgb(254, 236, 240);
  background-color:rgb(254,236,240);
  background-color:rgb(var(--neeto-ui-error-100));
  border-color:rgb(215, 55, 63);
  border-color:rgb(215,55,63);
  border-color:rgb(var(--neeto-ui-error-500));
  color:rgb(187, 18, 26);
  color:rgb(187,18,26);
  color:rgb(var(--neeto-ui-error-800))
}

.neeto-ui-tag--type-outline.neeto-ui-tag--style-info{
  background-color:rgb(226, 242, 255);
  background-color:rgb(226,242,255);
  background-color:rgb(var(--neeto-ui-info-100));
  border-color:rgb(20, 115, 230);
  border-color:rgb(20,115,230);
  border-color:rgb(var(--neeto-ui-info-500));
  color:rgb(9, 90, 186);
  color:rgb(9,90,186);
  color:rgb(var(--neeto-ui-info-800))
}

.neeto-ui-tag--type-outline.neeto-ui-tag--style-success{
  background-color:rgb(225, 243, 238);
  background-color:rgb(225,243,238);
  background-color:rgb(var(--neeto-ui-success-100));
  border-color:rgb(38, 142, 108);
  border-color:rgb(38,142,108);
  border-color:rgb(var(--neeto-ui-success-500));
  color:rgb(16, 113, 84);
  color:rgb(16,113,84);
  color:rgb(var(--neeto-ui-success-800))
}

.neeto-ui-tag--type-outline.neeto-ui-tag--style-warning{
  background-color:rgb(251, 242, 225);
  background-color:rgb(251,242,225);
  background-color:rgb(var(--neeto-ui-warning-100));
  border-color:rgb(218, 123, 17);
  border-color:rgb(218,123,17);
  border-color:rgb(var(--neeto-ui-warning-500));
  color:rgb(189, 100, 13);
  color:rgb(189,100,13);
  color:rgb(var(--neeto-ui-warning-800))
}

.neeto-ui-tag--type-solid.neeto-ui-tag--style-primary{
  background-color:rgb(235, 236, 254);
  background-color:rgb(235,236,254);
  background-color:rgb(var(--neeto-ui-primary-100));
  border-color:rgb(235, 236, 254);
  border-color:rgb(235,236,254);
  border-color:rgb(var(--neeto-ui-primary-100))
}

.neeto-ui-tag--type-solid.neeto-ui-tag--style-secondary{
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200));
  border-color:rgb(233, 235, 237);
  border-color:rgb(233,235,237);
  border-color:rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-tag--type-solid.neeto-ui-tag--style-danger{
  background-color:rgb(254, 236, 240);
  background-color:rgb(254,236,240);
  background-color:rgb(var(--neeto-ui-error-100));
  border-color:rgb(254, 236, 240);
  border-color:rgb(254,236,240);
  border-color:rgb(var(--neeto-ui-error-100))
}

.neeto-ui-tag--type-solid.neeto-ui-tag--style-info{
  background-color:rgb(226, 242, 255);
  background-color:rgb(226,242,255);
  background-color:rgb(var(--neeto-ui-info-100));
  border-color:rgb(226, 242, 255);
  border-color:rgb(226,242,255);
  border-color:rgb(var(--neeto-ui-info-100))
}

.neeto-ui-tag--type-solid.neeto-ui-tag--style-success{
  background-color:rgb(225, 243, 238);
  background-color:rgb(225,243,238);
  background-color:rgb(var(--neeto-ui-success-100));
  border-color:rgb(225, 243, 238);
  border-color:rgb(225,243,238);
  border-color:rgb(var(--neeto-ui-success-100))
}

.neeto-ui-tag--type-solid.neeto-ui-tag--style-warning{
  background-color:rgb(251, 242, 225);
  background-color:rgb(251,242,225);
  background-color:rgb(var(--neeto-ui-warning-100));
  border-color:rgb(251, 242, 225);
  border-color:rgb(251,242,225);
  border-color:rgb(var(--neeto-ui-warning-100))
}

.tippy-box[data-animation=fade][data-state=hidden]{
  opacity:0
}

[data-tippy-root]{
  max-width:calc(100vw - 10px)
}

.tippy-box{
  position:relative;
  background-color:rgb(31, 31, 31);
  background-color:rgb(31,31,31);
  background-color:rgb(var(--neeto-ui-gray-800));
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white));
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  font-size:12px;
  font-size:var(--neeto-ui-text-xs);
  line-height:1.4;
  outline:0;
  -webkit-transition-property:visibility,opacity,-webkit-transform;
  transition-property:visibility,opacity,-webkit-transform;
  transition-property:transform,visibility,opacity;
  transition-property:transform,visibility,opacity,-webkit-transform;
  word-wrap:break-word
}

.tippy-box .neeto-ui-text-h1,.tippy-box .neeto-ui-text-h2,.tippy-box .neeto-ui-text-h3,.tippy-box .neeto-ui-text-h4,.tippy-box .neeto-ui-text-h5,.tippy-box .neeto-ui-text-h6,.tippy-box h1,.tippy-box h2,.tippy-box h3,.tippy-box h4,.tippy-box h5,.tippy-box h6{
  color:inherit
}

.tippy-box[data-placement^=top]>.tippy-arrow{
  bottom:0
}

.tippy-box[data-placement^=top]>.tippy-arrow:before{
  bottom:-7px;
  left:0;
  border-width:8px 8px 0;
  border-top-color:currentColor;
  border-top-color:initial;
  -webkit-transform-origin:center top;
          transform-origin:center top
}

.tippy-box[data-placement^=bottom]>.tippy-arrow{
  top:0
}

.tippy-box[data-placement^=bottom]>.tippy-arrow:before{
  top:-7px;
  left:0;
  border-width:0 8px 8px;
  border-bottom-color:currentColor;
  border-bottom-color:initial;
  -webkit-transform-origin:center bottom;
          transform-origin:center bottom
}

.tippy-box[data-placement^=left]>.tippy-arrow{
  right:0
}

.tippy-box[data-placement^=left]>.tippy-arrow:before{
  border-width:8px 0 8px 8px;
  border-left-color:currentColor;
  border-left-color:initial;
  right:-7px;
  -webkit-transform-origin:center left;
          transform-origin:center left
}

.tippy-box[data-placement^=right]>.tippy-arrow{
  left:0
}

.tippy-box[data-placement^=right]>.tippy-arrow:before{
  left:-7px;
  border-width:8px 8px 8px 0;
  border-right-color:currentColor;
  border-right-color:initial;
  -webkit-transform-origin:center right;
          transform-origin:center right
}

.tippy-box[data-inertia][data-state=visible]{
  -webkit-transition-timing-function:cubic-bezier(0.54, 1.5, 0.38, 1.11);
          transition-timing-function:cubic-bezier(0.54, 1.5, 0.38, 1.11)
}

.tippy-arrow{
  width:16px;
  height:16px;
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800))
}

.tippy-arrow:before{
  content:"";
  position:absolute;
  border-color:transparent;
  border-style:solid
}

.tippy-content{
  position:relative;
  padding:4px 8px;
  z-index:1
}

.tippy-box[data-placement^=top]>.tippy-svg-arrow{
  bottom:0
}

.tippy-box[data-placement^=top]>.tippy-svg-arrow:after,.tippy-box[data-placement^=top]>.tippy-svg-arrow>svg{
  top:16px;
  -webkit-transform:rotate(180deg);
          transform:rotate(180deg)
}

.tippy-box[data-placement^=bottom]>.tippy-svg-arrow{
  top:0
}

.tippy-box[data-placement^=bottom]>.tippy-svg-arrow>svg{
  bottom:16px
}

.tippy-box[data-placement^=left]>.tippy-svg-arrow{
  right:0
}

.tippy-box[data-placement^=left]>.tippy-svg-arrow:after,.tippy-box[data-placement^=left]>.tippy-svg-arrow>svg{
  -webkit-transform:rotate(90deg);
          transform:rotate(90deg);
  top:calc(50% - 3px);
  left:13px
}

.tippy-box[data-placement^=right]>.tippy-svg-arrow{
  left:0
}

.tippy-box[data-placement^=right]>.tippy-svg-arrow:after,.tippy-box[data-placement^=right]>.tippy-svg-arrow>svg{
  -webkit-transform:rotate(-90deg);
          transform:rotate(-90deg);
  top:calc(50% - 3px);
  right:13px
}

.tippy-svg-arrow{
  width:17px;
  height:17px;
  fill:rgb(31, 31, 31);
  fill:rgb(31,31,31);
  fill:rgb(var(--neeto-ui-gray-800));
  text-align:left;
  text-align:initial
}

.tippy-svg-arrow,.tippy-svg-arrow>svg{
  position:absolute
}

.tippy-svg-arrow>svg>path{
  fill:rgb(31, 31, 31);
  fill:rgb(31,31,31);
  fill:rgb(var(--neeto-ui-gray-800))
}

.tippy-box[data-theme~=light] .tippy-svg-arrow>svg>path{
  fill:rgb(255, 255, 255);
  fill:rgb(255,255,255);
  fill:rgb(var(--neeto-ui-white))
}

.tippy-box[data-theme~=light]{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  box-shadow:0px 3px 12px -1px rgba(28, 52, 84, 0.12),0px 2px 4px -1px rgba(28, 55, 90, 0.08);
  box-shadow:0px 3px 12px -1px rgba(28,52,84,0.12),0px 2px 4px -1px rgba(28,55,90,0.08);
  box-shadow:var(--neeto-ui-shadow-sm);
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white))
}

.tippy-box[data-theme~=light][data-placement^=top]>.tippy-arrow:before{
  border-top-color:rgb(255, 255, 255);
  border-top-color:rgb(255,255,255);
  border-top-color:rgb(var(--neeto-ui-white))
}

.tippy-box[data-theme~=light][data-placement^=bottom]>.tippy-arrow:before{
  border-bottom-color:rgb(255, 255, 255);
  border-bottom-color:rgb(255,255,255);
  border-bottom-color:rgb(var(--neeto-ui-white))
}

.tippy-box[data-theme~=light][data-placement^=left]>.tippy-arrow:before{
  border-left-color:rgb(255, 255, 255);
  border-left-color:rgb(255,255,255);
  border-left-color:rgb(var(--neeto-ui-white))
}

.tippy-box[data-theme~=light][data-placement^=right]>.tippy-arrow:before{
  border-right-color:rgb(255, 255, 255);
  border-right-color:rgb(255,255,255);
  border-right-color:rgb(var(--neeto-ui-white))
}

.tippy-box[data-theme~=light]>.tippy-backdrop{
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white))
}

.tippy-box[data-theme~=light]>.tippy-svg-arrow{
  fill:rgb(255, 255, 255);
  fill:rgb(255,255,255);
  fill:rgb(var(--neeto-ui-white))
}

.neeto-ui-spinner{
  position:relative;
  display:inline-block;
  font-size:20px;
  width:1em;
  height:1em
}

.neeto-ui-spinner__item{
  position:absolute;
  display:block;
  width:9px;
  height:9px;
  border-radius:100%;
  -webkit-transform:scale(0.75);
          transform:scale(0.75);
  -webkit-transform-origin:50% 50%;
          transform-origin:50% 50%;
  opacity:.3;
  -webkit-animation:neetoUISpinnerMove 1s linear infinite alternate;
          animation:neetoUISpinnerMove 1s linear infinite alternate
}

.neeto-ui-spinner__item:first-child{
  top:0;
  left:0
}

.neeto-ui-spinner__item:nth-child(2){
  top:0;
  right:0;
  -webkit-animation-delay:.4s;
          animation-delay:.4s
}

.neeto-ui-spinner__item:nth-child(3){
  right:0;
  bottom:0;
  -webkit-animation-delay:.8s;
          animation-delay:.8s
}

.neeto-ui-spinner__item:nth-child(4){
  bottom:0;
  left:0;
  -webkit-animation-delay:1.2s;
          animation-delay:1.2s
}

.neeto-ui-spinner{
  -webkit-transform:rotate(45deg);
          transform:rotate(45deg);
  -webkit-animation:neetoUISpinnerRotate 1.2s linear infinite;
          animation:neetoUISpinnerRotate 1.2s linear infinite
}

@-webkit-keyframes neetoUISpinnerMove{
  to{
    opacity:1
  }
}

@keyframes neetoUISpinnerMove{
  to{
    opacity:1
  }
}

@-webkit-keyframes neetoUISpinnerRotate{
  to{
    -webkit-transform:rotate(405deg);
            transform:rotate(405deg)
  }
}

@keyframes neetoUISpinnerRotate{
  to{
    -webkit-transform:rotate(405deg);
            transform:rotate(405deg)
  }
}

.neeto-ui-email-input .neeto-ui-label{
  margin-bottom:8px
}

.neeto-ui-email-input .neeto-ui-email-input__title-row{
  gap:8px;
  justify-content:space-between;
  width:100%
}

.neeto-ui-email-input .neeto-ui-email-input__title-row .neeto-ui-label{
  flex-grow:1;
  overflow-wrap:break-word
}

.neeto-ui-email-input .neeto-ui-email-input__title-row .neeto-ui-email-input__counter{
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700));
  line-height:1;
  margin-bottom:8px;
  margin-left:auto
}

.neeto-ui-email-input .neeto-ui-email-input__prefix{
  margin-left:12px
}

.neeto-ui-email-input .neeto-ui-email-input__prefix svg,.neeto-ui-email-input .neeto-ui-email-input__suffix svg{
  width:16px;
  height:16px
}

body .Toastify__toast-container{
  z-index:100000;
  padding:0;
  width:auto;
  max-width:640px;
  min-width:320px
}

body .Toastify__toast-container .Toastify__toast.Toastify__toast--info{
  background-color:rgba(9, 90, 186);
  background-color:rgba(9,90,186);
  background-color:rgba(var(--neeto-ui-info-800))
}

body .Toastify__toast-container .Toastify__toast.Toastify__toast--error{
  background-color:rgba(187, 18, 26);
  background-color:rgba(187,18,26);
  background-color:rgba(var(--neeto-ui-error-800))
}

body .Toastify__toast-container .Toastify__toast.Toastify__toast--success{
  background-color:rgba(16, 113, 84);
  background-color:rgba(16,113,84);
  background-color:rgba(var(--neeto-ui-success-800))
}

body .Toastify__toast-container .Toastify__toast.Toastify__toast--warning{
  background-color:rgba(189, 100, 13);
  background-color:rgba(189,100,13);
  background-color:rgba(var(--neeto-ui-warning-800))
}

body .Toastify__toast-container .neeto-ui-toastr,body .Toastify__toast-container .Toastify__toast{
  min-height:48px;
  padding:.75rem 1rem;
  margin:0 0 1rem;
  box-shadow:none;
  border-radius:6px;
  border-radius:var(--neeto-ui-rounded-md);
  font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Fira Sans,Droid Sans,Helvetica Neue,sans-serif !important
}

body .Toastify__toast-container .neeto-ui-toastr:after,body .Toastify__toast-container .Toastify__toast:after{
  visibility:hidden
}

body .Toastify__toast-container .neeto-ui-toastr .Toastify__toast-icon,body .Toastify__toast-container .Toastify__toast .Toastify__toast-icon{
  margin:0
}

body .Toastify__toast-container .neeto-ui-toastr .Toastify__toast-icon svg,body .Toastify__toast-container .Toastify__toast .Toastify__toast-icon svg{
  width:24px;
  height:24px
}

body .Toastify__toast-container .neeto-ui-toastr .Toastify__toast-body,body .Toastify__toast-container .Toastify__toast .Toastify__toast-body{
  margin:0;
  padding:0;
  gap:12px;
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white))
}

body .Toastify__toast-container .neeto-ui-toastr .Toastify__toast-body div,body .Toastify__toast-container .Toastify__toast .Toastify__toast-body div{
  display:flex;
  flex-direction:row;
  justify-content:space-between;
  align-items:center;
  gap:12px
}

body .Toastify__toast-container .neeto-ui-toastr .Toastify__toast-body div p,body .Toastify__toast-container .Toastify__toast .Toastify__toast-body div p{
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  font-weight:400;
  font-weight:var(--neeto-ui-font-normal)
}

body .Toastify__toast-container .neeto-ui-toastr .Toastify__toast-body .toastr-message-container__btn-wrapper,body .Toastify__toast-container .Toastify__toast .Toastify__toast-body .toastr-message-container__btn-wrapper{
  display:flex;
  align-items:center
}

body .Toastify__toast-container .neeto-ui-toastr .neeto-ui-toastr__close-button,body .Toastify__toast-container .Toastify__toast .neeto-ui-toastr__close-button{
  opacity:.8;
  margin:auto 0 auto 8px;
  flex-shrink:0;
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white));
  -webkit-transition:all .3s ease-in-out;
  transition:all .3s ease-in-out
}

body .Toastify__toast-container .neeto-ui-toastr .neeto-ui-toastr__close-button:active,body .Toastify__toast-container .neeto-ui-toastr .neeto-ui-toastr__close-button:focus,body .Toastify__toast-container .neeto-ui-toastr .neeto-ui-toastr__close-button:hover,body .Toastify__toast-container .Toastify__toast .neeto-ui-toastr__close-button:active,body .Toastify__toast-container .Toastify__toast .neeto-ui-toastr__close-button:focus,body .Toastify__toast-container .Toastify__toast .neeto-ui-toastr__close-button:hover{
  opacity:1
}

.neeto-ui-kbd{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px;
  height:24px;
  min-width:24px;
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700));
  font-weight:600;
  font-weight:var(--neeto-ui-font-semibold);
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200));
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded)
}

.neeto-ui-popover{
  border:thin solid rgb(31, 31, 31);
  border:thin solid rgb(31,31,31);
  border:thin solid rgb(var(--neeto-ui-gray-800))
}

.neeto-ui-popover[data-theme~=light]{
  border-color:rgb(194, 200, 204);
  border-color:rgb(194,200,204);
  border-color:rgb(var(--neeto-ui-gray-400))
}

.neeto-ui-popover .tippy-content{
  padding:1rem
}

.neeto-ui-no-data{
  display:inline-flex;
  flex-direction:column;
  justify-content:center;
  align-items:center
}

.neeto-ui-no-data .neeto-ui-no-data__image{
  margin-bottom:1.5rem
}

.neeto-ui-no-data .neeto-ui-no-data__image img{
  max-width:11.5rem;
  height:auto
}

.neeto-ui-no-data .neeto-ui-no-data__action-block{
  margin-top:1.5rem
}

.neeto-ui-app-switcher__backdrop{
  position:fixed;
  z-index:99996;
  left:72px;
  left:var(--neeto-ui-sidebar-width);
  top:0;
  width:100vw;
  overflow:hidden;
  flex-direction:row;
  align-items:center;
  background-color:rgba(27, 31, 35, 0.8666666667)
}

.neeto-ui-app-switcher__backdrop,.neeto-ui-app-switcher__wrapper{
  height:100vh;
  display:flex;
  justify-content:flex-start;
  -webkit-transition:all .3s;
  transition:all .3s;
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px)
}

.neeto-ui-app-switcher__wrapper{
  flex-direction:column;
  align-items:flex-start;
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  width:calc(100vw - 72px);
  width:calc(100vw - var(--neeto-ui-sidebar-width));
  overflow-y:auto;
  max-width:100%;
  padding:72px;
  -webkit-animation:nuifadeIn .3s ease-in;
          animation:nuifadeIn .3s ease-in
}

.neeto-ui-app-switcher__grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(288px, 1fr));
  grid-gap:24px;
  gap:24px
}

.neeto-ui-app-switcher__header{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
  gap:16px;
  margin-bottom:32px
}

.neeto-ui-app-switcher__close-btn{
  position:absolute;
  right:24px;
  top:24px
}

.neeto-ui-app-switcher__search-wrapper{
  width:316px
}

.neeto-ui-app-switcher__body{
  display:flex;
  flex-direction:column;
  width:100%;
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  margin-bottom:24px;
  gap:12px
}

.neeto-ui-app-switcher-link{
  width:100%;
  max-width:100%;
  border-radius:8px;
  border-radius:var(--neeto-ui-rounded-lg);
  background-color:rgb(248, 249, 249);
  background-color:rgb(248,249,249);
  background-color:rgb(var(--neeto-ui-gray-100));
  cursor:pointer;
  border:2px solid rgb(248, 249, 249);
  border:2px solid rgb(248,249,249);
  border:2px solid rgb(var(--neeto-ui-gray-100));
  text-decoration:none;
  -webkit-transition:background-color .3s ease-in-out;
  transition:background-color .3s ease-in-out;
  display:flex;
  align-items:center;
  padding:12px 16px;
  gap:12px
}

.neeto-ui-app-switcher-link:focus,.neeto-ui-app-switcher-link:focus-visible{
  outline:none
}

.neeto-ui-app-switcher-link:focus-visible,.neeto-ui-app-switcher-link:not(.neeto-ui-app-switcher-link--active):hover{
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-app-switcher-link--active{
  background:rgb(235, 236, 254);
  background:rgb(235,236,254);
  background:rgb(var(--neeto-ui-primary-100));
  border-color:rgb(54, 66, 223);
  border-color:rgb(54,66,223);
  border-color:rgb(var(--neeto-ui-primary-600))
}

.neeto-ui-app-switcher-link__icon-holder{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  border-radius:var(--neeto-ui-rounded-lg);
  flex-shrink:0
}

.neeto-ui-app-switcher-link__content{
  flex-grow:1
}

.neeto-ui-app-switcher-link__content span{
  display:block
}

.neeto-ui-app-switcher-enter.neeto-ui-app-switcher__backdrop{
  opacity:0;
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px)
}

.neeto-ui-app-switcher-enter-active.neeto-ui-app-switcher__backdrop,.neeto-ui-app-switcher-enter-done.neeto-ui-app-switcher__backdrop,.neeto-ui-app-switcher-exit.neeto-ui-app-switcher__backdrop{
  opacity:1;
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px)
}

.neeto-ui-app-switcher-exit-active.neeto-ui-app-switcher__backdrop{
  opacity:0;
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px)
}

.neeto-ui-wrapper{
  flex-direction:row
}

.neeto-ui-container,.neeto-ui-wrapper{
  display:flex;
  justify-content:flex-start;
  align-items:flex-start
}

.neeto-ui-container{
  flex-direction:column;
  height:100vh;
  padding:0 24px
}

.neeto-ui-container,.neeto-ui-scrollable{
  flex-grow:1;
  overflow-y:auto
}

.neeto-ui-scrollable.neeto-ui-scrollable--small{
  height:calc(100vh - 80px - 37px - 20px);
  height:calc(100vh - var(--neeto-ui-main-header-height) - var(--neeto-ui-sub-header-height) - var(--neeto-ui-sub-header-bottom-margin))
}

.neeto-ui-scrollable.neeto-ui-scrollable--large{
  height:calc(100vh - 80px);
  height:calc(100vh - var(--neeto-ui-main-header-height))
}

.neeto-ui-scrollable.neeto-ui-scrollable--viewport{
  height:100vh
}

.neeto-ui-container--header-fixed{
  padding:0
}

.neeto-ui-container--header-fixed>.neeto-ui-header,.neeto-ui-container--header-fixed>.neeto-ui-scrollable,.neeto-ui-container--header-fixed>.neeto-ui-subheader{
  padding-left:24px;
  padding-right:24px
}

.neeto-ui-subheader [data-tippy-root]{
  z-index:10000 !important
}

.neeto-chat-survey-question-accordion__header .neeto-ui-typography{
  color:inherit
}

.neeto-ui-header{
  width:100%;
  min-height:80px;
  min-height:var(--neeto-ui-main-header-height);
  background:rgb(255, 255, 255);
  background:rgb(255,255,255);
  background:rgb(var(--neeto-ui-white));
  padding:24px 0;
  display:flex;
  flex-direction:row;
  justify-content:space-between;
  align-items:center
}

.neeto-ui-header--has-breadcrumbs{
  min-height:94px;
  min-height:var(--neeto-ui-main-header-with-breadcrumbs-height)
}

.neeto-ui-header .neeto-ui-header__toggle-menubar-btn{
  margin-right:8px
}

.neeto-ui-header .neeto-ui-header__left{
  display:flex;
  flex-wrap:wrap;
  flex-direction:row;
  justify-content:flex-start;
  align-items:center
}

.neeto-ui-header .neeto-ui-header__left-data-wrap{
  display:flex;
  flex-wrap:wrap
}

.neeto-ui-header .neeto-ui-header__page-title{
  width:100%;
  display:block
}

.neeto-ui-header .neeto-ui-header__breadcrumbs-wrap{
  display:flex
}

.neeto-ui-header .neeto-ui-header__breadcrumb{
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:flex-start;
  line-height:1
}

.neeto-ui-header .neeto-ui-header__breadcrumb a{
  -webkit-transition:all .3s ease-in-out;
  transition:all .3s ease-in-out;
  text-decoration:none
}

.neeto-ui-header .neeto-ui-header__breadcrumb-separator{
  margin:0 4px
}

.neeto-ui-header .neeto-ui-header__right{
  display:flex;
  flex-direction:row;
  justify-content:flex-end;
  align-items:center
}

.neeto-ui-subheader{
  width:100%;
  display:flex;
  flex-direction:row;
  justify-content:space-between;
  align-items:center;
  min-height:37px;
  min-height:var(--neeto-ui-sub-header-height);
  margin-bottom:20px;
  margin-bottom:var(--neeto-ui-sub-header-bottom-margin);
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white))
}

.neeto-ui-subheader .neeto-ui-subheader__left-wrapper{
  display:flex;
  flex-grow:1
}

.neeto-ui-subheader .neeto-ui-subheader__left-wrapper .neeto-ui-subheader__left{
  display:flex;
  flex-direction:row;
  justify-content:flex-start;
  align-items:center
}

.neeto-ui-subheader .neeto-ui-subheader__left-wrapper .neeto-ui-subheader__left .neeto-ui-input__prefix{
  color:rgb(194, 200, 204);
  color:rgb(194,200,204);
  color:rgb(var(--neeto-ui-gray-400))
}

.neeto-ui-subheader .neeto-ui-subheader__right{
  display:flex;
  flex-direction:row;
  justify-content:flex-end;
  align-items:center;
  gap:12px
}

.neeto-ui-menubar__wrapper{
  background-color:rgb(248, 249, 249);
  background-color:rgb(248,249,249);
  background-color:rgb(var(--neeto-ui-gray-100));
  flex-shrink:0;
  overflow:hidden;
  -webkit-transition:all .3s;
  transition:all .3s
}

.neeto-ui-menubar__container{
  width:324px;
  padding:24px;
  height:100vh;
  overflow-y:auto
}

.neeto-ui-menubar__title{
  margin-bottom:16px
}

.neeto-ui-menubar__search{
  display:flex;
  align-items:center;
  margin-bottom:20px;
  gap:4px
}

.neeto-ui-menubar__subtitle{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
  margin-top:20px
}

.neeto-ui-menubar__subtitle-actions{
  display:flex;
  align-items:center;
  gap:4px
}

.neeto-ui-menubar__add-new-wrap,.neeto-ui-menubar__block{
  padding:7px 8px;
  margin-bottom:8px
}

.neeto-ui-menubar__block{
  width:100%;
  text-align:left;
  display:flex;
  justify-content:space-between;
  align-items:center;
  -webkit-transition:all .3s;
  transition:all .3s;
  cursor:pointer;
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  border:thin solid transparent
}

.neeto-ui-menubar__block:active,.neeto-ui-menubar__block:focus,.neeto-ui-menubar__block:focus-visible,.neeto-ui-menubar__block:hover{
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200));
  text-decoration:none;
  outline:none
}

.neeto-ui-menubar__block--active{
  box-shadow:0px 1px 4px -1px rgba(28, 48, 74, 0.12);
  box-shadow:0px 1px 4px -1px rgba(28,48,74,0.12);
  box-shadow:var(--neeto-ui-shadow-xs);
  border-color:rgb(216, 220, 222);
  border-color:rgb(216,220,222);
  border-color:rgb(var(--neeto-ui-gray-300))
}

.neeto-ui-menubar__block--active,.neeto-ui-menubar__block--active:active,.neeto-ui-menubar__block--active:focus,.neeto-ui-menubar__block--active:focus-visible,.neeto-ui-menubar__block--active:hover{
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white))
}

.neeto-ui-menubar__block .neeto-ui-menubar__block-label{
  display:flex;
  align-items:center
}

.neeto-ui-menubar__block .neeto-ui-menubar__block-icon{
  margin-right:4px
}

.neeto-ui-menubar__item{
  padding:12px;
  width:100%;
  margin-bottom:8px;
  -webkit-transition:all .3s;
  transition:all .3s;
  text-align:left;
  cursor:pointer;
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  border:thin solid transparent
}

.neeto-ui-menubar__item:active,.neeto-ui-menubar__item:focus,.neeto-ui-menubar__item:focus-visible,.neeto-ui-menubar__item:hover{
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200));
  outline:none
}

.neeto-ui-menubar__item--active{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  box-shadow:0px 1px 4px -1px rgba(28, 48, 74, 0.12);
  box-shadow:0px 1px 4px -1px rgba(28,48,74,0.12);
  box-shadow:var(--neeto-ui-shadow-xs);
  border-color:rgb(216, 220, 222);
  border-color:rgb(216,220,222);
  border-color:rgb(var(--neeto-ui-gray-300))
}

.neeto-ui-menubar__item--active,.neeto-ui-menubar__item--active:active,.neeto-ui-menubar__item--active:focus,.neeto-ui-menubar__item--active:focus-visible,.neeto-ui-menubar__item--active:hover{
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white))
}

.neeto-ui-menubar-enter.neeto-ui-menubar__wrapper{
  width:0
}

.neeto-ui-menubar-enter-active.neeto-ui-menubar__wrapper,.neeto-ui-menubar-enter-done.neeto-ui-menubar__wrapper,.neeto-ui-menubar-exit.neeto-ui-menubar__wrapper{
  width:324px
}

.neeto-ui-menubar-exit-active.neeto-ui-menubar__wrapper{
  width:0
}

.neeto-ui-sidebar{
  width:300px;
  max-width:300px;
  height:100vh;
  padding:40px 0;
  z-index:99997;
  -webkit-transition:all .3s;
  transition:all .3s;
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  border-right:1px solid rgb(233, 235, 237);
  border-right:1px solid rgb(233,235,237);
  border-right:1px solid rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-sidebar::-webkit-scrollbar{
  width:0;
  height:0
}

.neeto-ui-sidebar::-webkit-scrollbar-thumb{
  background:rgb(216, 220, 222);
  background:rgb(216,220,222);
  background:rgb(var(--neeto-ui-gray-300));
  border-radius:50px
}

.neeto-ui-sidebar::-webkit-scrollbar-track{
  background:"transparent"
}

@media(min-width: 1440pxpx){
  .neeto-ui-sidebar{
    width:320px;
    max-width:320px
  }
}

.neeto-ui-sidebar.neeto-ui-sidebar--collapsed{
  width:72px;
  width:var(--neeto-ui-sidebar-width);
  max-width:72px;
  max-width:var(--neeto-ui-sidebar-width)
}

.neeto-ui-sidebar__header{
  width:100%;
  padding:0 20px;
  margin-bottom:40px
}

.neeto-ui-sidebar__logo,.neeto-ui-sidebar__logo svg{
  width:40px;
  height:40px
}

.neeto-ui-sidebar__info{
  padding-left:10px;
  width:calc(100% - 40px)
}

.neeto-ui-sidebar__info .neeto-ui-typography{
  width:100%;
  text-overflow:ellipsis;
  white-space:nowrap;
  overflow:hidden;
  margin:0
}

.neeto-ui-sidebar__links{
  width:100%;
  padding-left:12px;
  padding-right:12px;
  margin-bottom:20px
}

.neeto-ui-sidebar__link{
  padding:8px;
  margin:8px 0;
  color:rgb(104, 115, 125);
  color:rgb(104,115,125);
  color:rgb(var(--neeto-ui-gray-600));
  -webkit-transition:all .3s;
  transition:all .3s;
  cursor:pointer;
  text-decoration:none;
  position:relative;
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded)
}

.neeto-ui-sidebar__link.mb-0{
  margin-bottom:0
}

.neeto-ui-sidebar__link-icon{
  flex-shrink:0;
  width:40px
}

.neeto-ui-sidebar__link-label{
  padding-left:10px;
  width:calc(100% - 40px);
  text-overflow:ellipsis;
  white-space:nowrap;
  overflow:hidden
}

.neeto-ui-sidebar__link-sub-label{
  width:calc(100% - 56px);
  text-overflow:ellipsis;
  white-space:nowrap;
  overflow:hidden
}

.neeto-ui-sidebar__link:focus,.neeto-ui-sidebar__link:focus-visible,.neeto-ui-sidebar__link:hover{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  text-decoration:none;
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-sidebar__link:focus,.neeto-ui-sidebar__link:focus-visible{
  outline:none
}

.neeto-ui-sidebar__link.active{
  background-color:rgb(235, 236, 254);
  background-color:rgb(235,236,254);
  background-color:rgb(var(--neeto-ui-primary-100));
  color:rgb(54, 66, 223);
  color:rgb(54,66,223);
  color:rgb(var(--neeto-ui-primary-600));
  text-decoration:none
}

.neeto-ui-sidebar__link--button:focus{
  background-color:transparent
}

.neeto-ui-sidebar__link--button:focus-visible{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-sidebar__link--change-log{
  outline:none !important
}

.neeto-ui-sidebar__sublink{
  padding:8px 8px 8px 58px;
  margin:4px 0;
  color:rgb(104, 115, 125);
  color:rgb(104,115,125);
  color:rgb(var(--neeto-ui-gray-600));
  -webkit-transition:all .3s;
  transition:all .3s;
  cursor:pointer;
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  text-decoration:none
}

.neeto-ui-sidebar__sublink:hover{
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700));
  text-decoration:none
}

.neeto-ui-sidebar__sublink:focus,.neeto-ui-sidebar__sublink:focus-visible{
  color:rgb(47, 57, 65);
  color:rgb(47,57,65);
  color:rgb(var(--neeto-ui-gray-700));
  outline:none;
  background-color:rgb(216, 220, 222);
  background-color:rgb(216,220,222);
  background-color:rgb(var(--neeto-ui-gray-300));
  text-decoration:none
}

.neeto-ui-sidebar__sublink.active,.neeto-ui-sidebar__sublink:active{
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  text-decoration:none
}

.neeto-ui-sidebar__footer{
  margin-top:auto;
  width:100%;
  padding:0 12px
}

.neeto-ui-sidebar__footer .neeto-ui-sidebar__profile-wrapper{
  outline:none !important
}

.neeto-ui-sidebar__footer .neeto-ui-sidebar__profile{
  width:100%;
  padding:8px;
  background-color:rgb(255, 255, 255);
  background-color:rgb(255,255,255);
  background-color:rgb(var(--neeto-ui-white));
  border-radius:5px;
  border-radius:var(--neeto-ui-rounded);
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  cursor:pointer;
  box-shadow:0px 3px 12px -1px rgba(28, 52, 84, 0.12),0px 2px 4px -1px rgba(28, 55, 90, 0.08);
  box-shadow:0px 3px 12px -1px rgba(28,52,84,0.12),0px 2px 4px -1px rgba(28,55,90,0.08);
  box-shadow:var(--neeto-ui-shadow-sm)
}

.neeto-ui-sidebar__footer .neeto-ui-sidebar__profile-content{
  width:calc(100% - 40px);
  padding-left:10px;
  padding-right:30px;
  position:relative
}

.neeto-ui-sidebar__footer .neeto-ui-sidebar__profile-content .neeto-ui-typography{
  width:100%;
  text-overflow:ellipsis;
  white-space:nowrap;
  overflow:hidden;
  margin-bottom:0
}

.neeto-ui-sidebar__footer .neeto-ui-sidebar__profile-drop-icon{
  position:absolute;
  top:50%;
  right:8px;
  -webkit-transform:translateY(-50%);
          transform:translateY(-50%);
  color:rgb(135, 146, 157);
  color:rgb(135,146,157);
  color:rgb(var(--neeto-ui-gray-500))
}

.neeto-ui-sidebar.neeto-ui-sidebar--collapsed{
  padding:24px 0
}

.neeto-ui-sidebar.neeto-ui-sidebar--collapsed .neeto-ui-sidebar__profile{
  background-color:transparent;
  box-shadow:none;
  padding:0
}

.neeto-ui-sidebar.neeto-ui-sidebar--collapsed .neeto-ui-sidebar__header,.neeto-ui-sidebar.neeto-ui-sidebar--collapsed .neeto-ui-sidebar__links{
  padding-left:16px;
  padding-right:16px
}

.neeto-ui-sidebar.neeto-ui-sidebar--collapsed .neeto-ui-sidebar__link-icon{
  width:24px
}

.neeto-ui-sidebar.neeto-ui-sidebar--collapsed .neeto-ui-sidebar__footer{
  padding-left:16px;
  padding-right:16px
}

.sidebar-featured-tooltip__content{
  border-radius:8px !important;
  box-shadow:0px 3px 12px -1px rgba(28, 52, 84, 0.12),0px 2px 4px -1px rgba(28, 55, 90, 0.08) !important;
  box-shadow:0px 3px 12px -1px rgba(28,52,84,0.12),0px 2px 4px -1px rgba(28,55,90,0.08) !important;
  box-shadow:var(--neeto-ui-shadow-sm) !important
}

.sidebar-featured-tooltip__content .tippy-content{
  padding:0
}

.sidebar-featured-tooltip{
  padding:12px;
  width:150px
}

.sidebar-featured-tooltip__icon-wrap{
  width:40px;
  height:40px;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:8px;
  border-radius:8px;
  background-color:rgb(248, 249, 249);
  background-color:rgb(248,249,249);
  background-color:rgb(var(--neeto-ui-gray-100))
}

.sidebar-featured-tooltip__title{
  margin-bottom:4px
}

.neeto-ui-help-popup-wrapper,.neeto-ui-profile-popup-wrapper{
  box-shadow:0px 1px 4px -1px rgba(28, 48, 74, 0.12) !important;
  box-shadow:0px 1px 4px -1px rgba(28,48,74,0.12) !important;
  box-shadow:var(--neeto-ui-shadow-xs) !important;
  border-radius:5px !important;
  border-radius:var(--neeto-ui-rounded) !important;
  border:1px solid rgb(194, 200, 204);
  border:1px solid rgb(194,200,204);
  border:1px solid rgb(var(--neeto-ui-gray-400))
}

.neeto-ui-help-popup-wrapper .tippy-content,.neeto-ui-profile-popup-wrapper .tippy-content{
  padding:0
}

.neeto-ui-help-popup-wrapper .tippy-svg-arrow,.neeto-ui-profile-popup-wrapper .tippy-svg-arrow{
  display:none !important
}

.neeto-ui-profile-sublist{
  border-top:1px solid rgb(194, 200, 204);
  border-top:1px solid rgb(194,200,204);
  border-top:1px solid rgb(var(--neeto-ui-gray-400));
  list-style:none;
  margin:0;
  padding:4px 0
}

.neeto-ui-help-sublist__item,.neeto-ui-profile-sublist__item{
  width:100%
}

.neeto-ui-help-sublist__item-btn,.neeto-ui-profile-sublist__item-btn{
  width:100%;
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
      user-select:none;
  position:relative;
  white-space:nowrap;
  line-height:1.143;
  -webkit-transition:all .3s linear;
  transition:all .3s linear;
  -webkit-transition:all 0.3s linear;
  transition:all 0.3s linear;
  -webkit-transition:var(--neeto-ui-transition);
  transition:var(--neeto-ui-transition);
  font-size:14px;
  font-size:var(--neeto-ui-text-sm);
  font-weight:400;
  font-weight:var(--neeto-ui-font-normal);
  color:rgb(31, 31, 31);
  color:rgb(31,31,31);
  color:rgb(var(--neeto-ui-gray-800));
  padding:6px 40px 6px 12px;
  min-height:32px;
  text-decoration:none;
  outline-color:transparent;
  border-radius:0
}

.neeto-ui-help-sublist__item-btn.disabled,.neeto-ui-profile-sublist__item-btn.disabled{
  cursor:not-allowed;
  color:rgb(135, 146, 157);
  color:rgb(135,146,157);
  color:rgb(var(--neeto-ui-gray-500))
}

.neeto-ui-help-sublist__item-btn:focus,.neeto-ui-help-sublist__item-btn:hover,.neeto-ui-profile-sublist__item-btn:focus,.neeto-ui-profile-sublist__item-btn:hover{
  background-color:rgb(233, 235, 237);
  background-color:rgb(233,235,237);
  background-color:rgb(var(--neeto-ui-gray-200))
}

.neeto-ui-help-sublist__item-btn.active,.neeto-ui-profile-sublist__item-btn.active{
  background-color:rgb(31, 31, 31);
  background-color:rgb(31,31,31);
  background-color:rgb(var(--neeto-ui-gray-800));
  color:rgb(255, 255, 255);
  color:rgb(255,255,255);
  color:rgb(var(--neeto-ui-white))
}

.neeto-ui-help-sublist__item-btn--style-danger,.neeto-ui-profile-sublist__item-btn--style-danger{
  color:rgb(187, 18, 26);
  color:rgb(187,18,26);
  color:rgb(var(--neeto-ui-error-800))
}

.neeto-ui-help-sublist__item-btn-icon,.neeto-ui-profile-sublist__item-btn-icon{
  color:rgb(104, 115, 125);
  color:rgb(104,115,125);
  color:rgb(var(--neeto-ui-gray-600))
}

.neeto-ui-help-sublist__item-btn-icon svg,.neeto-ui-profile-sublist__item-btn-icon svg{
  width:20px;
  height:20px
}

.nh-sidebar{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-start;
  min-width:72px;
  height:100vh;
  -webkit-transition:width .3s;
  transition:width .3s
}

.nh-logo{
  width:100%;
  min-height:72px;
  display:flex;
  flex-direction:row;
  justify-content:center;
  align-items:center;
  border-bottom:thin solid #d1d5db;
  padding:8px 12px
}

.notes-table-height{
  height:calc(100vh - 160px)
}

@media (min-width: 640px){
  .sm\:max-w-md{
    max-width:28rem !important
  }
}

@media (min-width: 768px){
}

@media (min-width: 1024px){
}

@media (min-width: 1280px){
}

@media (min-width: 1536px){
}
