@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;1,200;1,300;1,400;1,500;1,600&display=swap);
.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 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%;
  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-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--dark {
  background: #121212;
  color: #fff;
}
.Toastify__toast--default {
  background: #fff;
  color: #aaa;
}
.Toastify__toast--info {
  background: #3498db;
}
.Toastify__toast--success {
  background: #07bc0c;
}
.Toastify__toast--warning {
  background: #f1c40f;
}
.Toastify__toast--error {
  background: #e74c3c;
}
.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
}

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

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
}
.Toastify__close-button--default {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}
.Toastify__progress-bar--default {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
}
.Toastify__progress-bar--dark {
  background: #bb86fc;
}
@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

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

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

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

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

/*# sourceMappingURL=ReactToastify.css.map */
.dzu-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 120px;
  overflow: scroll;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  transition: all .15s linear;
  border: 2px solid #d9d9d9;
  border-radius: 4px;
}

.dzu-dropzoneActive {
  background-color: #DEEBFF;
  border-color: #2484FF;
}

.dzu-dropzoneDisabled {
  opacity: 0.5;
}

.dzu-dropzoneDisabled *:hover {
  cursor: unset;
}

.dzu-input {
  display: none;
}

.dzu-inputLabel {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: 'Helvetica', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #2484FF;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
}

.dzu-inputLabelWithFiles {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  padding: 0 14px;
  min-height: 32px;
  background-color: #E6E6E6;
  color: #2484FF;
  border: none;
  font-family: 'Helvetica', sans-serif;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  margin-left: 3%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
}

.dzu-previewContainer {
  padding: 40px 3%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  min-height: 60px;
  z-index: 1;
  border-bottom: 1px solid #ECECEC;
  box-sizing: border-box;
}

.dzu-previewStatusContainer {
  display: flex;
  align-items: center;
}

.dzu-previewFileName {
  font-family: 'Helvetica', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
}

.dzu-previewImage {
  width: auto;
  max-height: 40px;
  max-width: 140px;
  border-radius: 4px;
}

.dzu-previewButton {
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  cursor: pointer;
  opacity: 0.9;
  margin: 0 0 2px 10px;
}

.dzu-submitButtonContainer {
  margin: 24px 0;
  z-index: 1;
}

.dzu-submitButton {
  padding: 0 14px;
  min-height: 32px;
  background-color: #2484FF;
  border: none;
  border-radius: 4px;
  font-family: 'Helvetica', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFF;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
}

.dzu-submitButton:disabled {
  background-color: #E6E6E6;
  color: #333333;
  cursor: unset;
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */

@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
.swiper-button-lock {
  display: none;
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube {
  overflow: visible;
}
.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}
.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}
.swiper-flip {
  overflow: visible;
}
.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}
.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}
.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
[class^=ant-]::-ms-clear,
[class*= ant-]::-ms-clear,
[class^=ant-] input::-ms-clear,
[class*= ant-] input::-ms-clear,
[class^=ant-] input::-ms-reveal,
[class*= ant-] input::-ms-reveal {
  display: none;
}
/* stylelint-disable property-no-vendor-prefix, at-rule-no-vendor-prefix */
html,
body {
  width: 100%;
  height: 100%;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  margin: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-family: Beatrice, sans-serif;
  font-variant: tabular-nums;
  line-height: 1.6;
  background-color: #fff;
  font-feature-settings: 'tnum';
}
[tabindex='-1']:focus {
  outline: none !important;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
}
p {
  margin-top: 0;
  margin-bottom: 1em;
}
abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  border-bottom: 0;
  cursor: help;
}
address {
  margin-bottom: 1em;
  font-style: normal;
  line-height: inherit;
}
input[type='text'],
input[type='password'],
input[type='number'],
textarea {
  -webkit-appearance: none;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1em;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 500;
}
dd {
  margin-bottom: 0.5em;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1em;
}
dfn {
  font-style: italic;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: black;
  text-decoration: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  transition: color 0.3s;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #0d0d0d;
}
a:active {
  color: #000000;
}
a:active,
a:hover {
  text-decoration: none;
  outline: 0;
}
a:focus {
  text-decoration: none;
  outline: 0;
}
a[disabled] {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
pre,
code,
kbd,
samp {
  font-size: 1em;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}
pre {
  margin-top: 0;
  margin-bottom: 1em;
  overflow: auto;
}
figure {
  margin: 0 0 1em;
}
img {
  vertical-align: middle;
  border-style: none;
}
a,
area,
button,
[role='button'],
input:not([type='range']),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75em;
  padding-bottom: 0.3em;
  color: rgba(0, 0, 0, 0.45);
  text-align: left;
  caption-side: bottom;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type='radio'],
input[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.5em;
  padding: 0;
  color: inherit;
  font-size: 1.5em;
  line-height: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
mark {
  padding: 0.2em;
  background-color: #fffcf0;
}
::-moz-selection {
  color: #fff;
  background: #913ef0;
}
::selection {
  color: #fff;
  background: #913ef0;
}
.clearfix::before {
  display: table;
  content: '';
}
.clearfix::after {
  display: table;
  clear: both;
  content: '';
}
.anticon {
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.anticon > * {
  line-height: 1;
}
.anticon svg {
  display: inline-block;
}
.anticon::before {
  display: none;
}
.anticon .anticon-icon {
  display: block;
}
.anticon > .anticon {
  line-height: 0;
  vertical-align: 0;
}
.anticon[tabindex] {
  cursor: pointer;
}
.anticon-spin,
.anticon-spin::before {
  display: inline-block;
  animation: loadingCircle 1s infinite linear;
}
.ant-fade-enter,
.ant-fade-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-fade-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-fade-enter.ant-fade-enter-active,
.ant-fade-appear.ant-fade-appear-active {
  animation-name: antFadeIn;
  animation-play-state: running;
}
.ant-fade-leave.ant-fade-leave-active {
  animation-name: antFadeOut;
  animation-play-state: running;
  pointer-events: none;
}
.ant-fade-enter,
.ant-fade-appear {
  opacity: 0;
  animation-timing-function: linear;
}
.ant-fade-leave {
  animation-timing-function: linear;
}
@keyframes antFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes antFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.ant-move-up-enter,
.ant-move-up-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-move-up-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-move-up-enter.ant-move-up-enter-active,
.ant-move-up-appear.ant-move-up-appear-active {
  animation-name: antMoveUpIn;
  animation-play-state: running;
}
.ant-move-up-leave.ant-move-up-leave-active {
  animation-name: antMoveUpOut;
  animation-play-state: running;
  pointer-events: none;
}
.ant-move-up-enter,
.ant-move-up-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.ant-move-up-leave {
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}
.ant-move-down-enter,
.ant-move-down-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-move-down-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-move-down-enter.ant-move-down-enter-active,
.ant-move-down-appear.ant-move-down-appear-active {
  animation-name: antMoveDownIn;
  animation-play-state: running;
}
.ant-move-down-leave.ant-move-down-leave-active {
  animation-name: antMoveDownOut;
  animation-play-state: running;
  pointer-events: none;
}
.ant-move-down-enter,
.ant-move-down-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.ant-move-down-leave {
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}
.ant-move-left-enter,
.ant-move-left-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-move-left-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-move-left-enter.ant-move-left-enter-active,
.ant-move-left-appear.ant-move-left-appear-active {
  animation-name: antMoveLeftIn;
  animation-play-state: running;
}
.ant-move-left-leave.ant-move-left-leave-active {
  animation-name: antMoveLeftOut;
  animation-play-state: running;
  pointer-events: none;
}
.ant-move-left-enter,
.ant-move-left-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.ant-move-left-leave {
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}
.ant-move-right-enter,
.ant-move-right-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-move-right-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-move-right-enter.ant-move-right-enter-active,
.ant-move-right-appear.ant-move-right-appear-active {
  animation-name: antMoveRightIn;
  animation-play-state: running;
}
.ant-move-right-leave.ant-move-right-leave-active {
  animation-name: antMoveRightOut;
  animation-play-state: running;
  pointer-events: none;
}
.ant-move-right-enter,
.ant-move-right-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.ant-move-right-leave {
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}
@keyframes antMoveDownIn {
  0% {
    transform: translateY(100%);
    transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antMoveDownOut {
  0% {
    transform: translateY(0%);
    transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes antMoveLeftIn {
  0% {
    transform: translateX(-100%);
    transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antMoveLeftOut {
  0% {
    transform: translateX(0%);
    transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes antMoveRightIn {
  0% {
    transform: translateX(100%);
    transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antMoveRightOut {
  0% {
    transform: translateX(0%);
    transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes antMoveUpIn {
  0% {
    transform: translateY(-100%);
    transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antMoveUpOut {
  0% {
    transform: translateY(0%);
    transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes loadingCircle {
  100% {
    transform: rotate(360deg);
  }
}
[ant-click-animating='true'],
[ant-click-animating-without-extra-node='true'] {
  position: relative;
}
html {
  --antd-wave-shadow-color: #913ef0;
  --scroll-bar: 0;
}
[ant-click-animating-without-extra-node='true']::after,
.ant-click-animating-node {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  border-radius: inherit;
  box-shadow: 0 0 0 0 #913ef0;
  box-shadow: 0 0 0 0 var(--antd-wave-shadow-color);
  opacity: 0.2;
  animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
  animation-fill-mode: forwards;
  content: '';
  pointer-events: none;
}
@keyframes waveEffect {
  100% {
    box-shadow: 0 0 0 #913ef0;
    box-shadow: 0 0 0 6px var(--antd-wave-shadow-color);
  }
}
@keyframes fadeEffect {
  100% {
    opacity: 0;
  }
}
.ant-slide-up-enter,
.ant-slide-up-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-slide-up-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-slide-up-enter.ant-slide-up-enter-active,
.ant-slide-up-appear.ant-slide-up-appear-active {
  animation-name: antSlideUpIn;
  animation-play-state: running;
}
.ant-slide-up-leave.ant-slide-up-leave-active {
  animation-name: antSlideUpOut;
  animation-play-state: running;
  pointer-events: none;
}
.ant-slide-up-enter,
.ant-slide-up-appear {
  transform: scale(0);
  transform-origin: 0% 0%;
  opacity: 0;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.ant-slide-up-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
.ant-slide-down-enter,
.ant-slide-down-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-slide-down-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-slide-down-enter.ant-slide-down-enter-active,
.ant-slide-down-appear.ant-slide-down-appear-active {
  animation-name: antSlideDownIn;
  animation-play-state: running;
}
.ant-slide-down-leave.ant-slide-down-leave-active {
  animation-name: antSlideDownOut;
  animation-play-state: running;
  pointer-events: none;
}
.ant-slide-down-enter,
.ant-slide-down-appear {
  transform: scale(0);
  transform-origin: 0% 0%;
  opacity: 0;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.ant-slide-down-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
.ant-slide-left-enter,
.ant-slide-left-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-slide-left-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-slide-left-enter.ant-slide-left-enter-active,
.ant-slide-left-appear.ant-slide-left-appear-active {
  animation-name: antSlideLeftIn;
  animation-play-state: running;
}
.ant-slide-left-leave.ant-slide-left-leave-active {
  animation-name: antSlideLeftOut;
  animation-play-state: running;
  pointer-events: none;
}
.ant-slide-left-enter,
.ant-slide-left-appear {
  transform: scale(0);
  transform-origin: 0% 0%;
  opacity: 0;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.ant-slide-left-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
.ant-slide-right-enter,
.ant-slide-right-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-slide-right-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-slide-right-enter.ant-slide-right-enter-active,
.ant-slide-right-appear.ant-slide-right-appear-active {
  animation-name: antSlideRightIn;
  animation-play-state: running;
}
.ant-slide-right-leave.ant-slide-right-leave-active {
  animation-name: antSlideRightOut;
  animation-play-state: running;
  pointer-events: none;
}
.ant-slide-right-enter,
.ant-slide-right-appear {
  transform: scale(0);
  transform-origin: 0% 0%;
  opacity: 0;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.ant-slide-right-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@keyframes antSlideUpIn {
  0% {
    transform: scaleY(0.8);
    transform-origin: 0% 0%;
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    transform-origin: 0% 0%;
    opacity: 1;
  }
}
@keyframes antSlideUpOut {
  0% {
    transform: scaleY(1);
    transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    transform: scaleY(0.8);
    transform-origin: 0% 0%;
    opacity: 0;
  }
}
@keyframes antSlideDownIn {
  0% {
    transform: scaleY(0.8);
    transform-origin: 100% 100%;
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    transform-origin: 100% 100%;
    opacity: 1;
  }
}
@keyframes antSlideDownOut {
  0% {
    transform: scaleY(1);
    transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    transform: scaleY(0.8);
    transform-origin: 100% 100%;
    opacity: 0;
  }
}
@keyframes antSlideLeftIn {
  0% {
    transform: scaleX(0.8);
    transform-origin: 0% 0%;
    opacity: 0;
  }
  100% {
    transform: scaleX(1);
    transform-origin: 0% 0%;
    opacity: 1;
  }
}
@keyframes antSlideLeftOut {
  0% {
    transform: scaleX(1);
    transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    transform: scaleX(0.8);
    transform-origin: 0% 0%;
    opacity: 0;
  }
}
@keyframes antSlideRightIn {
  0% {
    transform: scaleX(0.8);
    transform-origin: 100% 0%;
    opacity: 0;
  }
  100% {
    transform: scaleX(1);
    transform-origin: 100% 0%;
    opacity: 1;
  }
}
@keyframes antSlideRightOut {
  0% {
    transform: scaleX(1);
    transform-origin: 100% 0%;
    opacity: 1;
  }
  100% {
    transform: scaleX(0.8);
    transform-origin: 100% 0%;
    opacity: 0;
  }
}
.ant-zoom-enter,
.ant-zoom-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-zoom-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-zoom-enter.ant-zoom-enter-active,
.ant-zoom-appear.ant-zoom-appear-active {
  animation-name: antZoomIn;
  animation-play-state: running;
}
.ant-zoom-leave.ant-zoom-leave-active {
  animation-name: antZoomOut;
  animation-play-state: running;
  pointer-events: none;
}
.ant-zoom-enter,
.ant-zoom-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.ant-zoom-enter-prepare,
.ant-zoom-appear-prepare {
  transform: none;
}
.ant-zoom-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-zoom-big-enter,
.ant-zoom-big-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-zoom-big-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-zoom-big-enter.ant-zoom-big-enter-active,
.ant-zoom-big-appear.ant-zoom-big-appear-active {
  animation-name: antZoomBigIn;
  animation-play-state: running;
}
.ant-zoom-big-leave.ant-zoom-big-leave-active {
  animation-name: antZoomBigOut;
  animation-play-state: running;
  pointer-events: none;
}
.ant-zoom-big-enter,
.ant-zoom-big-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.ant-zoom-big-enter-prepare,
.ant-zoom-big-appear-prepare {
  transform: none;
}
.ant-zoom-big-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-zoom-big-fast-enter,
.ant-zoom-big-fast-appear {
  animation-duration: 0.1s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-zoom-big-fast-leave {
  animation-duration: 0.1s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-zoom-big-fast-enter.ant-zoom-big-fast-enter-active,
.ant-zoom-big-fast-appear.ant-zoom-big-fast-appear-active {
  animation-name: antZoomBigIn;
  animation-play-state: running;
}
.ant-zoom-big-fast-leave.ant-zoom-big-fast-leave-active {
  animation-name: antZoomBigOut;
  animation-play-state: running;
  pointer-events: none;
}
.ant-zoom-big-fast-enter,
.ant-zoom-big-fast-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.ant-zoom-big-fast-enter-prepare,
.ant-zoom-big-fast-appear-prepare {
  transform: none;
}
.ant-zoom-big-fast-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-zoom-up-enter,
.ant-zoom-up-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-zoom-up-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-zoom-up-enter.ant-zoom-up-enter-active,
.ant-zoom-up-appear.ant-zoom-up-appear-active {
  animation-name: antZoomUpIn;
  animation-play-state: running;
}
.ant-zoom-up-leave.ant-zoom-up-leave-active {
  animation-name: antZoomUpOut;
  animation-play-state: running;
  pointer-events: none;
}
.ant-zoom-up-enter,
.ant-zoom-up-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.ant-zoom-up-enter-prepare,
.ant-zoom-up-appear-prepare {
  transform: none;
}
.ant-zoom-up-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-zoom-down-enter,
.ant-zoom-down-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-zoom-down-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-zoom-down-enter.ant-zoom-down-enter-active,
.ant-zoom-down-appear.ant-zoom-down-appear-active {
  animation-name: antZoomDownIn;
  animation-play-state: running;
}
.ant-zoom-down-leave.ant-zoom-down-leave-active {
  animation-name: antZoomDownOut;
  animation-play-state: running;
  pointer-events: none;
}
.ant-zoom-down-enter,
.ant-zoom-down-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.ant-zoom-down-enter-prepare,
.ant-zoom-down-appear-prepare {
  transform: none;
}
.ant-zoom-down-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-zoom-left-enter,
.ant-zoom-left-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-zoom-left-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-zoom-left-enter.ant-zoom-left-enter-active,
.ant-zoom-left-appear.ant-zoom-left-appear-active {
  animation-name: antZoomLeftIn;
  animation-play-state: running;
}
.ant-zoom-left-leave.ant-zoom-left-leave-active {
  animation-name: antZoomLeftOut;
  animation-play-state: running;
  pointer-events: none;
}
.ant-zoom-left-enter,
.ant-zoom-left-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.ant-zoom-left-enter-prepare,
.ant-zoom-left-appear-prepare {
  transform: none;
}
.ant-zoom-left-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-zoom-right-enter,
.ant-zoom-right-appear {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-zoom-right-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.ant-zoom-right-enter.ant-zoom-right-enter-active,
.ant-zoom-right-appear.ant-zoom-right-appear-active {
  animation-name: antZoomRightIn;
  animation-play-state: running;
}
.ant-zoom-right-leave.ant-zoom-right-leave-active {
  animation-name: antZoomRightOut;
  animation-play-state: running;
  pointer-events: none;
}
.ant-zoom-right-enter,
.ant-zoom-right-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.ant-zoom-right-enter-prepare,
.ant-zoom-right-appear-prepare {
  transform: none;
}
.ant-zoom-right-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
@keyframes antZoomIn {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes antZoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.2);
    opacity: 0;
  }
}
@keyframes antZoomBigIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes antZoomBigOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}
@keyframes antZoomUpIn {
  0% {
    transform: scale(0.8);
    transform-origin: 50% 0%;
    opacity: 0;
  }
  100% {
    transform: scale(1);
    transform-origin: 50% 0%;
  }
}
@keyframes antZoomUpOut {
  0% {
    transform: scale(1);
    transform-origin: 50% 0%;
  }
  100% {
    transform: scale(0.8);
    transform-origin: 50% 0%;
    opacity: 0;
  }
}
@keyframes antZoomLeftIn {
  0% {
    transform: scale(0.8);
    transform-origin: 0% 50%;
    opacity: 0;
  }
  100% {
    transform: scale(1);
    transform-origin: 0% 50%;
  }
}
@keyframes antZoomLeftOut {
  0% {
    transform: scale(1);
    transform-origin: 0% 50%;
  }
  100% {
    transform: scale(0.8);
    transform-origin: 0% 50%;
    opacity: 0;
  }
}
@keyframes antZoomRightIn {
  0% {
    transform: scale(0.8);
    transform-origin: 100% 50%;
    opacity: 0;
  }
  100% {
    transform: scale(1);
    transform-origin: 100% 50%;
  }
}
@keyframes antZoomRightOut {
  0% {
    transform: scale(1);
    transform-origin: 100% 50%;
  }
  100% {
    transform: scale(0.8);
    transform-origin: 100% 50%;
    opacity: 0;
  }
}
@keyframes antZoomDownIn {
  0% {
    transform: scale(0.8);
    transform-origin: 50% 100%;
    opacity: 0;
  }
  100% {
    transform: scale(1);
    transform-origin: 50% 100%;
  }
}
@keyframes antZoomDownOut {
  0% {
    transform: scale(1);
    transform-origin: 50% 100%;
  }
  100% {
    transform: scale(0.8);
    transform-origin: 50% 100%;
    opacity: 0;
  }
}
.ant-motion-collapse-legacy {
  overflow: hidden;
}
.ant-motion-collapse-legacy-active {
  transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}
.ant-motion-collapse {
  overflow: hidden;
  transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-affix {
  position: fixed;
  z-index: 10;
}
.ant-alert {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  word-wrap: break-word;
  border-radius: 2px;
}
.ant-alert-content {
  flex: 1;
  min-width: 0;
}
.ant-alert-icon {
  margin-right: 8px;
}
.ant-alert-description {
  display: none;
  font-size: 14px;
  line-height: 22px;
}
.ant-alert-success {
  background-color: #f0fff4;
  border: 1px solid #e0ffec;
}
.ant-alert-success .ant-alert-icon {
  color: #5ae399;
}
.ant-alert-info {
  background-color: #f0f7ff;
  border: 1px solid #cce2ff;
}
.ant-alert-info .ant-alert-icon {
  color: #4B80E7;
}
.ant-alert-warning {
  background-color: #fffcf0;
  border: 1px solid #ffedbf;
}
.ant-alert-warning .ant-alert-icon {
  color: #FFB946;
}
.ant-alert-error {
  background-color: #fff0f0;
  border: 1px solid #ffcccf;
}
.ant-alert-error .ant-alert-icon {
  color: #E54963;
}
.ant-alert-error .ant-alert-description > pre {
  margin: 0;
  padding: 0;
}
.ant-alert-action {
  margin-left: 8px;
}
.ant-alert-close-icon {
  margin-left: 8px;
  padding: 0;
  overflow: hidden;
  font-size: 11px;
  line-height: 11px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.ant-alert-close-icon .anticon-close {
  color: rgba(0, 0, 0, 0.45);
  transition: color 0.3s;
}
.ant-alert-close-icon .anticon-close:hover {
  color: rgba(0, 0, 0, 0.75);
}
.ant-alert-close-text {
  color: rgba(0, 0, 0, 0.45);
  transition: color 0.3s;
}
.ant-alert-close-text:hover {
  color: rgba(0, 0, 0, 0.75);
}
.ant-alert-with-description {
  align-items: flex-start;
  padding: 15px 15px 15px 24px;
}
.ant-alert-with-description.ant-alert-no-icon {
  padding: 15px 15px;
}
.ant-alert-with-description .ant-alert-icon {
  margin-right: 15px;
  font-size: 24px;
}
.ant-alert-with-description .ant-alert-message {
  display: block;
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
}
.ant-alert-message {
  color: rgba(0, 0, 0, 0.85);
}
.ant-alert-with-description .ant-alert-description {
  display: block;
}
.ant-alert.ant-alert-motion-leave {
  overflow: hidden;
  opacity: 1;
  transition: max-height 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), padding-top 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), padding-bottom 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), margin-bottom 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-alert.ant-alert-motion-leave-active {
  max-height: 0;
  margin-bottom: 0 !important;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}
.ant-alert-banner {
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
}
.ant-alert.ant-alert-rtl {
  direction: rtl;
}
.ant-alert-rtl .ant-alert-icon {
  margin-right: auto;
  margin-left: 8px;
}
.ant-alert-rtl .ant-alert-action {
  margin-right: 8px;
  margin-left: auto;
}
.ant-alert-rtl .ant-alert-close-icon {
  margin-right: 8px;
  margin-left: auto;
}
.ant-alert-rtl.ant-alert-with-description {
  padding-right: 24px;
  padding-left: 15px;
}
.ant-alert-rtl.ant-alert-with-description .ant-alert-icon {
  margin-right: auto;
  margin-left: 15px;
}
.ant-anchor {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  padding-left: 2px;
}
.ant-anchor-wrapper {
  margin-left: -4px;
  padding-left: 4px;
  overflow: auto;
  background-color: transparent;
}
.ant-anchor-ink {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.ant-anchor-ink::before {
  position: relative;
  display: block;
  width: 2px;
  height: 100%;
  margin: 0 auto;
  background-color: #f0f0f0;
  content: ' ';
}
.ant-anchor-ink-ball {
  position: absolute;
  left: 50%;
  display: none;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border: 2px solid #913ef0;
  border-radius: 8px;
  transform: translateX(-50%);
  transition: top 0.3s ease-in-out;
}
.ant-anchor-ink-ball.ant-anchor-ink-ball-visible {
  display: inline-block;
}
.ant-anchor-fixed .ant-anchor-ink .ant-anchor-ink-ball {
  display: none;
}
.ant-anchor-link {
  padding: 4px 0 4px 16px;
}
.ant-anchor-link-title {
  position: relative;
  display: block;
  margin-bottom: 3px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.85);
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.3s;
}
.ant-anchor-link-title:only-child {
  margin-bottom: 0;
}
.ant-anchor-link-active > .ant-anchor-link-title {
  color: #913ef0;
}
.ant-anchor-link .ant-anchor-link {
  padding-top: 2px;
  padding-bottom: 2px;
}
.ant-anchor-rtl {
  direction: rtl;
}
.ant-anchor-rtl.ant-anchor-wrapper {
  margin-right: -4px;
  margin-left: 0;
  padding-right: 4px;
  padding-left: 0;
}
.ant-anchor-rtl .ant-anchor-ink {
  right: 0;
  left: auto;
}
.ant-anchor-rtl .ant-anchor-ink-ball {
  right: 50%;
  left: 0;
  transform: translateX(50%);
}
.ant-anchor-rtl .ant-anchor-link {
  padding: 4px 16px 4px 0;
}
.ant-select-auto-complete {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
}
.ant-select-auto-complete .ant-select-clear {
  right: 13px;
}
.ant-avatar {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  background: #ccc;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
}
.ant-avatar-image {
  background: transparent;
}
.ant-avatar .ant-image-img {
  display: block;
}
.ant-avatar-string {
  position: absolute;
  left: 50%;
  transform-origin: 0 center;
}
.ant-avatar.ant-avatar-icon {
  font-size: 18px;
}
.ant-avatar.ant-avatar-icon > .anticon {
  margin: 0;
}
.ant-avatar-lg {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
}
.ant-avatar-lg-string {
  position: absolute;
  left: 50%;
  transform-origin: 0 center;
}
.ant-avatar-lg.ant-avatar-icon {
  font-size: 24px;
}
.ant-avatar-lg.ant-avatar-icon > .anticon {
  margin: 0;
}
.ant-avatar-sm {
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
}
.ant-avatar-sm-string {
  position: absolute;
  left: 50%;
  transform-origin: 0 center;
}
.ant-avatar-sm.ant-avatar-icon {
  font-size: 14px;
}
.ant-avatar-sm.ant-avatar-icon > .anticon {
  margin: 0;
}
.ant-avatar-square {
  border-radius: 2px;
}
.ant-avatar > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ant-avatar-group {
  display: inline-flex;
}
.ant-avatar-group .ant-avatar {
  border: 1px solid #fff;
}
.ant-avatar-group .ant-avatar:not(:first-child) {
  margin-left: -8px;
}
.ant-avatar-group-popover .ant-avatar + .ant-avatar {
  margin-left: 3px;
}
.ant-avatar-group-rtl .ant-avatar:not(:first-child) {
  margin-right: -8px;
  margin-left: 0;
}
.ant-avatar-group-popover.ant-popover-rtl .ant-avatar + .ant-avatar {
  margin-right: 3px;
  margin-left: 0;
}
.ant-back-top {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: fixed;
  right: 100px;
  bottom: 50px;
  z-index: 10;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.ant-back-top:empty {
  display: none;
}
.ant-back-top-rtl {
  right: auto;
  left: 100px;
  direction: rtl;
}
.ant-back-top-content {
  width: 40px;
  height: 40px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 20px;
  transition: all 0.3s;
}
.ant-back-top-content:hover {
  background-color: rgba(0, 0, 0, 0.85);
  transition: all 0.3s;
}
.ant-back-top-icon {
  font-size: 24px;
  line-height: 40px;
}
@media screen and (max-width: 768px) {
  .ant-back-top {
    right: 60px;
  }
  .ant-back-top-rtl {
    right: auto;
    left: 60px;
  }
}
@media screen and (max-width: 480px) {
  .ant-back-top {
    right: 20px;
  }
  .ant-back-top-rtl {
    right: auto;
    left: 20px;
  }
}
.ant-badge {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  line-height: 1;
}
.ant-badge-count {
  z-index: auto;
  min-width: 19px;
  height: 19px;
  padding: 0 6px;
  color: #fff;
  font-weight: normal;
  font-size: 11px;
  line-height: 19px;
  white-space: nowrap;
  text-align: center;
  background: #E54963;
  border-radius: 9.5px;
  box-shadow: 0 0 0 1px #fff;
}
.ant-badge-count a,
.ant-badge-count a:hover {
  color: #fff;
}
.ant-badge-count-sm {
  min-width: 14px;
  height: 14px;
  padding: 0;
  font-size: 11px;
  line-height: 14px;
  border-radius: 7px;
}
.ant-badge-multiple-words {
  padding: 0 8px;
}
.ant-badge-dot {
  z-index: auto;
  width: 6px;
  min-width: 6px;
  height: 6px;
  background: #E54963;
  border-radius: 100%;
  box-shadow: 0 0 0 1px #fff;
}
.ant-badge-dot.ant-scroll-number {
  transition: background 1.5s;
}
.ant-badge-count,
.ant-badge-dot,
.ant-badge .ant-scroll-number-custom-component {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  transform-origin: 100% 0%;
}
.ant-badge-count.anticon-spin,
.ant-badge-dot.anticon-spin,
.ant-badge .ant-scroll-number-custom-component.anticon-spin {
  animation: antBadgeLoadingCircle 1s infinite linear;
}
.ant-badge-status {
  line-height: inherit;
  vertical-align: baseline;
}
.ant-badge-status-dot {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 9px;
  height: 9px;
  vertical-align: middle;
  border-radius: 50%;
}
.ant-badge-status-success {
  background-color: #5ae399;
}
.ant-badge-status-processing {
  position: relative;
  background-color: #4B80E7;
}
.ant-badge-status-processing::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #4B80E7;
  border-radius: 50%;
  animation: antStatusProcessing 1.2s infinite ease-in-out;
  content: '';
}
.ant-badge-status-default {
  background-color: #d9d9d9;
}
.ant-badge-status-error {
  background-color: #E54963;
}
.ant-badge-status-warning {
  background-color: #FFB946;
}
.ant-badge-status-pink {
  background: #eb2f96;
}
.ant-badge-status-magenta {
  background: #eb2f96;
}
.ant-badge-status-red {
  background: #E54963;
}
.ant-badge-status-volcano {
  background: #E54963;
}
.ant-badge-status-orange {
  background: #FFB946;
}
.ant-badge-status-yellow {
  background: #FFB946;
}
.ant-badge-status-gold {
  background: #faad14;
}
.ant-badge-status-cyan {
  background: #13c2c2;
}
.ant-badge-status-lime {
  background: #a0d911;
}
.ant-badge-status-green {
  background: #5ae399;
}
.ant-badge-status-blue {
  background: #4B80E7;
}
.ant-badge-status-geekblue {
  background: #4B80E7;
}
.ant-badge-status-purple {
  background: #913ef0;
}
.ant-badge-status-text {
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
}
.ant-badge-zoom-appear,
.ant-badge-zoom-enter {
  animation: antZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  animation-fill-mode: both;
}
.ant-badge-zoom-leave {
  animation: antZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6);
  animation-fill-mode: both;
}
.ant-badge-not-a-wrapper .ant-badge-zoom-appear,
.ant-badge-not-a-wrapper .ant-badge-zoom-enter {
  animation: antNoWrapperZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}
.ant-badge-not-a-wrapper .ant-badge-zoom-leave {
  animation: antNoWrapperZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6);
}
.ant-badge-not-a-wrapper:not(.ant-badge-status) {
  vertical-align: middle;
}
.ant-badge-not-a-wrapper .ant-scroll-number-custom-component,
.ant-badge-not-a-wrapper .ant-badge-count {
  transform: none;
}
.ant-badge-not-a-wrapper .ant-scroll-number-custom-component,
.ant-badge-not-a-wrapper .ant-scroll-number {
  position: relative;
  top: auto;
  display: block;
  transform-origin: 50% 50%;
}
@keyframes antStatusProcessing {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}
.ant-scroll-number {
  overflow: hidden;
  direction: ltr;
}
.ant-scroll-number-only {
  position: relative;
  display: inline-block;
  height: 19px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  /* stylelint-disable property-no-vendor-prefix */
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  /* stylelint-enable property-no-vendor-prefix */
}
.ant-scroll-number-only > p.ant-scroll-number-only-unit {
  height: 19px;
  margin: 0;
  /* stylelint-disable property-no-vendor-prefix */
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  /* stylelint-enable property-no-vendor-prefix */
}
.ant-scroll-number-symbol {
  vertical-align: top;
}
@keyframes antZoomBadgeIn {
  0% {
    transform: scale(0) translate(50%, -50%);
    opacity: 0;
  }
  100% {
    transform: scale(1) translate(50%, -50%);
  }
}
@keyframes antZoomBadgeOut {
  0% {
    transform: scale(1) translate(50%, -50%);
  }
  100% {
    transform: scale(0) translate(50%, -50%);
    opacity: 0;
  }
}
@keyframes antNoWrapperZoomBadgeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
  }
}
@keyframes antNoWrapperZoomBadgeOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes antBadgeLoadingCircle {
  0% {
    transform-origin: 50%;
  }
  100% {
    transform: translate(50%, -50%) rotate(360deg);
    transform-origin: 50%;
  }
}
.ant-ribbon-wrapper {
  position: relative;
}
.ant-ribbon {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  top: 8px;
  height: 22px;
  padding: 0 8px;
  color: #fff;
  line-height: 22px;
  white-space: nowrap;
  background-color: #913ef0;
  border-radius: 2px;
}
.ant-ribbon-text {
  color: #fff;
}
.ant-ribbon-corner {
  position: absolute;
  top: 100%;
  width: 8px;
  height: 8px;
  color: currentcolor;
  border: 4px solid;
  transform: scaleY(0.75);
  transform-origin: top;
}
.ant-ribbon-corner::after {
  position: absolute;
  top: -4px;
  left: -4px;
  width: inherit;
  height: inherit;
  color: rgba(0, 0, 0, 0.25);
  border: inherit;
  content: '';
}
.ant-ribbon-color-pink {
  color: #eb2f96;
  background: #eb2f96;
}
.ant-ribbon-color-magenta {
  color: #eb2f96;
  background: #eb2f96;
}
.ant-ribbon-color-red {
  color: #E54963;
  background: #E54963;
}
.ant-ribbon-color-volcano {
  color: #E54963;
  background: #E54963;
}
.ant-ribbon-color-orange {
  color: #FFB946;
  background: #FFB946;
}
.ant-ribbon-color-yellow {
  color: #FFB946;
  background: #FFB946;
}
.ant-ribbon-color-gold {
  color: #faad14;
  background: #faad14;
}
.ant-ribbon-color-cyan {
  color: #13c2c2;
  background: #13c2c2;
}
.ant-ribbon-color-lime {
  color: #a0d911;
  background: #a0d911;
}
.ant-ribbon-color-green {
  color: #5ae399;
  background: #5ae399;
}
.ant-ribbon-color-blue {
  color: #4B80E7;
  background: #4B80E7;
}
.ant-ribbon-color-geekblue {
  color: #4B80E7;
  background: #4B80E7;
}
.ant-ribbon-color-purple {
  color: #913ef0;
  background: #913ef0;
}
.ant-ribbon.ant-ribbon-placement-end {
  right: -8px;
  border-bottom-right-radius: 0;
}
.ant-ribbon.ant-ribbon-placement-end .ant-ribbon-corner {
  right: 0;
  border-color: currentcolor transparent transparent currentcolor;
}
.ant-ribbon.ant-ribbon-placement-start {
  left: -8px;
  border-bottom-left-radius: 0;
}
.ant-ribbon.ant-ribbon-placement-start .ant-ribbon-corner {
  left: 0;
  border-color: currentcolor currentcolor transparent transparent;
}
.ant-badge-rtl {
  direction: rtl;
}
.ant-badge-rtl.ant-badge:not(.ant-badge-not-a-wrapper) .ant-badge-count,
.ant-badge-rtl.ant-badge:not(.ant-badge-not-a-wrapper) .ant-badge-dot,
.ant-badge-rtl.ant-badge:not(.ant-badge-not-a-wrapper) .ant-scroll-number-custom-component {
  right: auto;
  left: 0;
  direction: ltr;
  transform: translate(-50%, -50%);
  transform-origin: 0% 0%;
}
.ant-badge-rtl.ant-badge:not(.ant-badge-not-a-wrapper) .ant-scroll-number-custom-component {
  right: auto;
  left: 0;
  transform: translate(-50%, -50%);
  transform-origin: 0% 0%;
}
.ant-badge-rtl .ant-badge-status-text {
  margin-right: 8px;
  margin-left: 0;
}
.ant-badge:not(.ant-badge-not-a-wrapper).ant-badge-rtl .ant-badge-zoom-appear,
.ant-badge:not(.ant-badge-not-a-wrapper).ant-badge-rtl .ant-badge-zoom-enter {
  animation-name: antZoomBadgeInRtl;
}
.ant-badge:not(.ant-badge-not-a-wrapper).ant-badge-rtl .ant-badge-zoom-leave {
  animation-name: antZoomBadgeOutRtl;
}
.ant-ribbon-rtl {
  direction: rtl;
}
.ant-ribbon-rtl.ant-ribbon-placement-end {
  right: unset;
  left: -8px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 0;
}
.ant-ribbon-rtl.ant-ribbon-placement-end .ant-ribbon-corner {
  right: unset;
  left: 0;
  border-color: currentcolor currentcolor transparent transparent;
}
.ant-ribbon-rtl.ant-ribbon-placement-end .ant-ribbon-corner::after {
  border-color: currentcolor currentcolor transparent transparent;
}
.ant-ribbon-rtl.ant-ribbon-placement-start {
  right: -8px;
  left: unset;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
}
.ant-ribbon-rtl.ant-ribbon-placement-start .ant-ribbon-corner {
  right: 0;
  left: unset;
  border-color: currentcolor transparent transparent currentcolor;
}
.ant-ribbon-rtl.ant-ribbon-placement-start .ant-ribbon-corner::after {
  border-color: currentcolor transparent transparent currentcolor;
}
@keyframes antZoomBadgeInRtl {
  0% {
    transform: scale(0) translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    transform: scale(1) translate(-50%, -50%);
  }
}
@keyframes antZoomBadgeOutRtl {
  0% {
    transform: scale(1) translate(-50%, -50%);
  }
  100% {
    transform: scale(0) translate(-50%, -50%);
    opacity: 0;
  }
}
.ant-breadcrumb {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-variant: tabular-nums;
  line-height: 1.6;
  list-style: none;
  font-feature-settings: 'tnum';
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.ant-breadcrumb .anticon {
  font-size: 14px;
}
.ant-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-breadcrumb a {
  color: rgba(0, 0, 0, 0.45);
  transition: color 0.3s;
}
.ant-breadcrumb a:hover {
  color: rgba(0, 0, 0, 0.85);
}
.ant-breadcrumb li:last-child {
  color: rgba(0, 0, 0, 0.85);
}
.ant-breadcrumb li:last-child a {
  color: rgba(0, 0, 0, 0.85);
}
li:last-child > .ant-breadcrumb-separator {
  display: none;
}
.ant-breadcrumb-separator {
  margin: 0 8px;
  color: rgba(0, 0, 0, 0.45);
}
.ant-breadcrumb-link > .anticon + span,
.ant-breadcrumb-link > .anticon + a {
  margin-left: 4px;
}
.ant-breadcrumb-overlay-link > .anticon {
  margin-left: 4px;
}
.ant-breadcrumb-rtl {
  direction: rtl;
}
.ant-breadcrumb-rtl::before {
  display: table;
  content: '';
}
.ant-breadcrumb-rtl::after {
  display: table;
  clear: both;
  content: '';
}
.ant-breadcrumb-rtl::before {
  display: table;
  content: '';
}
.ant-breadcrumb-rtl::after {
  display: table;
  clear: both;
  content: '';
}
.ant-breadcrumb-rtl > span {
  float: right;
}
.ant-breadcrumb-rtl .ant-breadcrumb-link > .anticon + span,
.ant-breadcrumb-rtl .ant-breadcrumb-link > .anticon + a {
  margin-right: 4px;
  margin-left: 0;
}
.ant-breadcrumb-rtl .ant-breadcrumb-overlay-link > .anticon {
  margin-right: 4px;
  margin-left: 0;
}
.ant-btn {
  line-height: 1.6;
  position: relative;
  display: inline-block;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  background-image: none;
  border: 1px solid transparent;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  touch-action: manipulation;
  height: 32px;
  padding: 3.8px 15px;
  border-radius: 2px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  font-size: 11px;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: rgba(0, 0, 0, 0.85);
  border-color: #d9d9d9;
  background: #fff;
}
.ant-btn > .anticon {
  line-height: 1;
}
.ant-btn,
.ant-btn:active,
.ant-btn:focus {
  outline: 0;
}
.ant-btn:not([disabled]):hover {
  text-decoration: none;
}
.ant-btn:not([disabled]):active {
  outline: 0;
  box-shadow: none;
}
.ant-btn[disabled] {
  cursor: not-allowed;
}
.ant-btn[disabled] > * {
  pointer-events: none;
}
.ant-btn-lg {
  height: 40px;
  padding: 6.2px 15px;
  font-size: 16px;
  border-radius: 2px;
}
.ant-btn-sm {
  height: 24px;
  padding: 0 7px;
  font-size: 14px;
  border-radius: 2px;
}
.ant-btn > a:only-child {
  color: currentcolor;
}
.ant-btn > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn:hover,
.ant-btn:focus {
  color: #b36afc;
  border-color: #b36afc;
  background: #fff;
}
.ant-btn:hover > a:only-child,
.ant-btn:focus > a:only-child {
  color: currentcolor;
}
.ant-btn:hover > a:only-child::after,
.ant-btn:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn:active {
  color: #6f2ac9;
  border-color: #6f2ac9;
  background: #fff;
}
.ant-btn:active > a:only-child {
  color: currentcolor;
}
.ant-btn:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn[disabled],
.ant-btn[disabled]:hover,
.ant-btn[disabled]:focus,
.ant-btn[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: #f5f5f5;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn[disabled] > a:only-child,
.ant-btn[disabled]:hover > a:only-child,
.ant-btn[disabled]:focus > a:only-child,
.ant-btn[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn[disabled] > a:only-child::after,
.ant-btn[disabled]:hover > a:only-child::after,
.ant-btn[disabled]:focus > a:only-child::after,
.ant-btn[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn:hover,
.ant-btn:focus,
.ant-btn:active {
  text-decoration: none;
  background: #fff;
}
.ant-btn > span {
  display: inline-block;
}
.ant-btn-primary {
  color: #fff;
  border-color: #913ef0;
  background: #913ef0;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
  background: var(--theme-primary, '#5f3db1') !important;
  border-color: var(--theme-primary-dark) !important;
  color: white !important;
  text-decoration: none !important;
  box-shadow: none;
  border-width: 1px;
}
.ant-btn-primary > a:only-child {
  color: currentcolor;
}
.ant-btn-primary > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-primary:hover,
.ant-btn-primary:focus {
  color: #fff;
  border-color: #b36afc;
  background: #b36afc;
}
.ant-btn-primary:hover > a:only-child,
.ant-btn-primary:focus > a:only-child {
  color: currentcolor;
}
.ant-btn-primary:hover > a:only-child::after,
.ant-btn-primary:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-primary:active {
  color: #fff;
  border-color: #6f2ac9;
  background: #6f2ac9;
}
.ant-btn-primary:active > a:only-child {
  color: currentcolor;
}
.ant-btn-primary:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-primary[disabled],
.ant-btn-primary[disabled]:hover,
.ant-btn-primary[disabled]:focus,
.ant-btn-primary[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: #f5f5f5;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-primary[disabled] > a:only-child,
.ant-btn-primary[disabled]:hover > a:only-child,
.ant-btn-primary[disabled]:focus > a:only-child,
.ant-btn-primary[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn-primary[disabled] > a:only-child::after,
.ant-btn-primary[disabled]:hover > a:only-child::after,
.ant-btn-primary[disabled]:focus > a:only-child::after,
.ant-btn-primary[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-primary:hover,
.ant-btn-primary:focus {
  color: white !important;
  background: var(--theme-primary-dark) !important;
  box-shadow: 0 4px 10px rgba(139, 62, 240, 0.24) !important;
}
.ant-btn-primary:disabled {
  box-shadow: none !important;
  background-color: #C2CFE0 !important;
  border-color: #C2CFE0 !important;
  opacity: 0.8 !important;
}
.ant-btn-primary:disabled.text-disabled-primary {
  color: var(--theme-primary, '#5f3db1') !important;
  font-weight: 600 !important;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
  border-right-color: #b36afc;
  border-left-color: #b36afc;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
  border-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
  border-right-color: #b36afc;
}
.ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
  border-right-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child),
.ant-btn-group .ant-btn-primary + .ant-btn-primary {
  border-left-color: #b36afc;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
.ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] {
  border-left-color: #d9d9d9;
}
.ant-btn-ghost {
  color: rgba(0, 0, 0, 0.85);
  border-color: #d9d9d9;
  background: transparent;
}
.ant-btn-ghost > a:only-child {
  color: currentcolor;
}
.ant-btn-ghost > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-ghost:hover,
.ant-btn-ghost:focus {
  color: #b36afc;
  border-color: #b36afc;
  background: transparent;
}
.ant-btn-ghost:hover > a:only-child,
.ant-btn-ghost:focus > a:only-child {
  color: currentcolor;
}
.ant-btn-ghost:hover > a:only-child::after,
.ant-btn-ghost:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-ghost:active {
  color: #6f2ac9;
  border-color: #6f2ac9;
  background: transparent;
}
.ant-btn-ghost:active > a:only-child {
  color: currentcolor;
}
.ant-btn-ghost:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-ghost[disabled],
.ant-btn-ghost[disabled]:hover,
.ant-btn-ghost[disabled]:focus,
.ant-btn-ghost[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: #f5f5f5;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-ghost[disabled] > a:only-child,
.ant-btn-ghost[disabled]:hover > a:only-child,
.ant-btn-ghost[disabled]:focus > a:only-child,
.ant-btn-ghost[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn-ghost[disabled] > a:only-child::after,
.ant-btn-ghost[disabled]:hover > a:only-child::after,
.ant-btn-ghost[disabled]:focus > a:only-child::after,
.ant-btn-ghost[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dashed {
  color: rgba(0, 0, 0, 0.85);
  border-color: #d9d9d9;
  background: #fff;
  border-style: dashed;
}
.ant-btn-dashed > a:only-child {
  color: currentcolor;
}
.ant-btn-dashed > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dashed:hover,
.ant-btn-dashed:focus {
  color: #b36afc;
  border-color: #b36afc;
  background: #fff;
}
.ant-btn-dashed:hover > a:only-child,
.ant-btn-dashed:focus > a:only-child {
  color: currentcolor;
}
.ant-btn-dashed:hover > a:only-child::after,
.ant-btn-dashed:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dashed:active {
  color: #6f2ac9;
  border-color: #6f2ac9;
  background: #fff;
}
.ant-btn-dashed:active > a:only-child {
  color: currentcolor;
}
.ant-btn-dashed:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dashed[disabled],
.ant-btn-dashed[disabled]:hover,
.ant-btn-dashed[disabled]:focus,
.ant-btn-dashed[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: #f5f5f5;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-dashed[disabled] > a:only-child,
.ant-btn-dashed[disabled]:hover > a:only-child,
.ant-btn-dashed[disabled]:focus > a:only-child,
.ant-btn-dashed[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn-dashed[disabled] > a:only-child::after,
.ant-btn-dashed[disabled]:hover > a:only-child::after,
.ant-btn-dashed[disabled]:focus > a:only-child::after,
.ant-btn-dashed[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-danger {
  border-color: #E54963;
  background: #E54963;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
  background-color: var(--theme-danger, '#E54963');
  border-color: var(--theme-danger, '#E54963');
  color: #fff;
}
.ant-btn-danger > a:only-child {
  color: currentcolor;
}
.ant-btn-danger > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-danger:hover,
.ant-btn-danger:focus {
  color: #fff;
  border-color: #f27485;
  background: #f27485;
}
.ant-btn-danger:hover > a:only-child,
.ant-btn-danger:focus > a:only-child {
  color: currentcolor;
}
.ant-btn-danger:hover > a:only-child::after,
.ant-btn-danger:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-danger:active {
  color: #fff;
  border-color: #bf3450;
  background: #bf3450;
}
.ant-btn-danger:active > a:only-child {
  color: currentcolor;
}
.ant-btn-danger:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-danger[disabled],
.ant-btn-danger[disabled]:hover,
.ant-btn-danger[disabled]:focus,
.ant-btn-danger[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: #f5f5f5;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-danger[disabled] > a:only-child,
.ant-btn-danger[disabled]:hover > a:only-child,
.ant-btn-danger[disabled]:focus > a:only-child,
.ant-btn-danger[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn-danger[disabled] > a:only-child::after,
.ant-btn-danger[disabled]:hover > a:only-child::after,
.ant-btn-danger[disabled]:focus > a:only-child::after,
.ant-btn-danger[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-link {
  color: black;
  border-color: transparent;
  box-shadow: none;
  color: #90a0b7;
  background: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
  text-decoration: underline;
}
.ant-btn-link > a:only-child {
  color: currentcolor;
}
.ant-btn-link > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-link:hover,
.ant-btn-link:focus {
  color: #b36afc;
  border-color: #b36afc;
  background: transparent;
}
.ant-btn-link:hover > a:only-child,
.ant-btn-link:focus > a:only-child {
  color: currentcolor;
}
.ant-btn-link:hover > a:only-child::after,
.ant-btn-link:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-link:active {
  color: #6f2ac9;
  border-color: #6f2ac9;
  background: transparent;
}
.ant-btn-link:active > a:only-child {
  color: currentcolor;
}
.ant-btn-link:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-link[disabled],
.ant-btn-link[disabled]:hover,
.ant-btn-link[disabled]:focus,
.ant-btn-link[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: #f5f5f5;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-link[disabled] > a:only-child,
.ant-btn-link[disabled]:hover > a:only-child,
.ant-btn-link[disabled]:focus > a:only-child,
.ant-btn-link[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn-link[disabled] > a:only-child::after,
.ant-btn-link[disabled]:hover > a:only-child::after,
.ant-btn-link[disabled]:focus > a:only-child::after,
.ant-btn-link[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-link:hover {
  background: transparent;
}
.ant-btn-link:hover,
.ant-btn-link:focus,
.ant-btn-link:active {
  border-color: transparent;
}
.ant-btn-link[disabled],
.ant-btn-link[disabled]:hover,
.ant-btn-link[disabled]:focus,
.ant-btn-link[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: transparent;
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-link[disabled] > a:only-child,
.ant-btn-link[disabled]:hover > a:only-child,
.ant-btn-link[disabled]:focus > a:only-child,
.ant-btn-link[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn-link[disabled] > a:only-child::after,
.ant-btn-link[disabled]:hover > a:only-child::after,
.ant-btn-link[disabled]:focus > a:only-child::after,
.ant-btn-link[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-link:not(:disabled):hover,
.ant-btn-link:not(:disabled):focus {
  color: #7186a3 !important;
}
.ant-btn-link.disabled-edit-link {
  opacity: 0.75;
  color: #707683 !important;
  font-weight: 500;
  border-width: 1px;
  background-color: unset !important;
  border-color: #707683 !important;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
.ant-btn-link.disabled-edit-link * {
  color: #707683 !important;
}
.ant-btn-link.disabled-edit-link:hover,
.ant-btn-link.disabled-edit-link:focus,
.ant-btn-link.disabled-edit-link:active {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
  color: #707683 !important;
  background-color: unset !important;
  box-shadow: none !important;
}
.ant-btn-link.disabled-edit-link:hover *,
.ant-btn-link.disabled-edit-link:focus *,
.ant-btn-link.disabled-edit-link:active * {
  color: #707683 !important;
}
.ant-btn-link.disabled-edit-link p {
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  padding: 0.5rem !important;
  line-height: 119.3%;
  display: flex;
  align-items: center;
  text-align: right;
  letter-spacing: 0.01em;
  color: #90a0b7;
  margin-bottom: 0;
}
.ant-btn-link.disabled-edit-link p > span {
  margin-right: 0.5rem !important;
}
.ant-btn-link.disabled-edit-link p .tooltip-info span i {
  margin-left: 0;
}
.ant-btn-text {
  color: rgba(0, 0, 0, 0.85);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
.ant-btn-text > a:only-child {
  color: currentcolor;
}
.ant-btn-text > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-text:hover,
.ant-btn-text:focus {
  color: #b36afc;
  border-color: #b36afc;
  background: transparent;
}
.ant-btn-text:hover > a:only-child,
.ant-btn-text:focus > a:only-child {
  color: currentcolor;
}
.ant-btn-text:hover > a:only-child::after,
.ant-btn-text:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-text:active {
  color: #6f2ac9;
  border-color: #6f2ac9;
  background: transparent;
}
.ant-btn-text:active > a:only-child {
  color: currentcolor;
}
.ant-btn-text:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-text[disabled],
.ant-btn-text[disabled]:hover,
.ant-btn-text[disabled]:focus,
.ant-btn-text[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: #f5f5f5;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-text[disabled] > a:only-child,
.ant-btn-text[disabled]:hover > a:only-child,
.ant-btn-text[disabled]:focus > a:only-child,
.ant-btn-text[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn-text[disabled] > a:only-child::after,
.ant-btn-text[disabled]:hover > a:only-child::after,
.ant-btn-text[disabled]:focus > a:only-child::after,
.ant-btn-text[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-text:hover,
.ant-btn-text:focus {
  color: rgba(0, 0, 0, 0.85);
  background: rgba(0, 0, 0, 0.018);
  border-color: transparent;
}
.ant-btn-text:active {
  color: rgba(0, 0, 0, 0.85);
  background: rgba(0, 0, 0, 0.028);
  border-color: transparent;
}
.ant-btn-text[disabled],
.ant-btn-text[disabled]:hover,
.ant-btn-text[disabled]:focus,
.ant-btn-text[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: transparent;
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-text[disabled] > a:only-child,
.ant-btn-text[disabled]:hover > a:only-child,
.ant-btn-text[disabled]:focus > a:only-child,
.ant-btn-text[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn-text[disabled] > a:only-child::after,
.ant-btn-text[disabled]:hover > a:only-child::after,
.ant-btn-text[disabled]:focus > a:only-child::after,
.ant-btn-text[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous {
  color: #E54963;
  border-color: #E54963;
  background: #fff;
}
.ant-btn-dangerous > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous:hover,
.ant-btn-dangerous:focus {
  color: #f27485;
  border-color: #f27485;
  background: #fff;
}
.ant-btn-dangerous:hover > a:only-child,
.ant-btn-dangerous:focus > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous:hover > a:only-child::after,
.ant-btn-dangerous:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous:active {
  color: #bf3450;
  border-color: #bf3450;
  background: #fff;
}
.ant-btn-dangerous:active > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous[disabled],
.ant-btn-dangerous[disabled]:hover,
.ant-btn-dangerous[disabled]:focus,
.ant-btn-dangerous[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: #f5f5f5;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-dangerous[disabled] > a:only-child,
.ant-btn-dangerous[disabled]:hover > a:only-child,
.ant-btn-dangerous[disabled]:focus > a:only-child,
.ant-btn-dangerous[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous[disabled] > a:only-child::after,
.ant-btn-dangerous[disabled]:hover > a:only-child::after,
.ant-btn-dangerous[disabled]:focus > a:only-child::after,
.ant-btn-dangerous[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous.ant-btn-primary {
  border-color: #E54963;
  background: #E54963;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
  background-color: var(--theme-danger, '#E54963');
  border-color: var(--theme-danger, '#E54963');
  color: #fff;
}
.ant-btn-dangerous.ant-btn-primary > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous.ant-btn-primary > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous.ant-btn-primary:hover,
.ant-btn-dangerous.ant-btn-primary:focus {
  color: #fff;
  border-color: #f27485;
  background: #f27485;
}
.ant-btn-dangerous.ant-btn-primary:hover > a:only-child,
.ant-btn-dangerous.ant-btn-primary:focus > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous.ant-btn-primary:hover > a:only-child::after,
.ant-btn-dangerous.ant-btn-primary:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous.ant-btn-primary:active {
  color: #fff;
  border-color: #bf3450;
  background: #bf3450;
}
.ant-btn-dangerous.ant-btn-primary:active > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous.ant-btn-primary:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous.ant-btn-primary[disabled],
.ant-btn-dangerous.ant-btn-primary[disabled]:hover,
.ant-btn-dangerous.ant-btn-primary[disabled]:focus,
.ant-btn-dangerous.ant-btn-primary[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: #f5f5f5;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-dangerous.ant-btn-primary[disabled] > a:only-child,
.ant-btn-dangerous.ant-btn-primary[disabled]:hover > a:only-child,
.ant-btn-dangerous.ant-btn-primary[disabled]:focus > a:only-child,
.ant-btn-dangerous.ant-btn-primary[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous.ant-btn-primary[disabled] > a:only-child::after,
.ant-btn-dangerous.ant-btn-primary[disabled]:hover > a:only-child::after,
.ant-btn-dangerous.ant-btn-primary[disabled]:focus > a:only-child::after,
.ant-btn-dangerous.ant-btn-primary[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous.ant-btn-link {
  color: #E54963;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
.ant-btn-dangerous.ant-btn-link > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous.ant-btn-link > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous.ant-btn-link:hover,
.ant-btn-dangerous.ant-btn-link:focus {
  color: #b36afc;
  border-color: #b36afc;
  background: transparent;
}
.ant-btn-dangerous.ant-btn-link:hover > a:only-child,
.ant-btn-dangerous.ant-btn-link:focus > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
.ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous.ant-btn-link:active {
  color: #6f2ac9;
  border-color: #6f2ac9;
  background: transparent;
}
.ant-btn-dangerous.ant-btn-link:active > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous.ant-btn-link[disabled],
.ant-btn-dangerous.ant-btn-link[disabled]:hover,
.ant-btn-dangerous.ant-btn-link[disabled]:focus,
.ant-btn-dangerous.ant-btn-link[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: #f5f5f5;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child,
.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after,
.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous.ant-btn-link:hover,
.ant-btn-dangerous.ant-btn-link:focus {
  color: #f27485;
  border-color: transparent;
  background: transparent;
}
.ant-btn-dangerous.ant-btn-link:hover > a:only-child,
.ant-btn-dangerous.ant-btn-link:focus > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
.ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous.ant-btn-link:active {
  color: #bf3450;
  border-color: transparent;
  background: transparent;
}
.ant-btn-dangerous.ant-btn-link:active > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous.ant-btn-link[disabled],
.ant-btn-dangerous.ant-btn-link[disabled]:hover,
.ant-btn-dangerous.ant-btn-link[disabled]:focus,
.ant-btn-dangerous.ant-btn-link[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: transparent;
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child,
.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after,
.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous.ant-btn-text {
  color: #E54963;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
.ant-btn-dangerous.ant-btn-text > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous.ant-btn-text > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous.ant-btn-text:hover,
.ant-btn-dangerous.ant-btn-text:focus {
  color: #b36afc;
  border-color: #b36afc;
  background: transparent;
}
.ant-btn-dangerous.ant-btn-text:hover > a:only-child,
.ant-btn-dangerous.ant-btn-text:focus > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous.ant-btn-text:hover > a:only-child::after,
.ant-btn-dangerous.ant-btn-text:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous.ant-btn-text:active {
  color: #6f2ac9;
  border-color: #6f2ac9;
  background: transparent;
}
.ant-btn-dangerous.ant-btn-text:active > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous.ant-btn-text:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous.ant-btn-text[disabled],
.ant-btn-dangerous.ant-btn-text[disabled]:hover,
.ant-btn-dangerous.ant-btn-text[disabled]:focus,
.ant-btn-dangerous.ant-btn-text[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: #f5f5f5;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-dangerous.ant-btn-text[disabled] > a:only-child,
.ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child,
.ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child,
.ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous.ant-btn-text[disabled] > a:only-child::after,
.ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child::after,
.ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child::after,
.ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous.ant-btn-text:hover,
.ant-btn-dangerous.ant-btn-text:focus {
  color: #f27485;
  border-color: transparent;
  background: rgba(0, 0, 0, 0.018);
}
.ant-btn-dangerous.ant-btn-text:hover > a:only-child,
.ant-btn-dangerous.ant-btn-text:focus > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous.ant-btn-text:hover > a:only-child::after,
.ant-btn-dangerous.ant-btn-text:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous.ant-btn-text:active {
  color: #bf3450;
  border-color: transparent;
  background: rgba(0, 0, 0, 0.028);
}
.ant-btn-dangerous.ant-btn-text:active > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous.ant-btn-text:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-dangerous.ant-btn-text[disabled],
.ant-btn-dangerous.ant-btn-text[disabled]:hover,
.ant-btn-dangerous.ant-btn-text[disabled]:focus,
.ant-btn-dangerous.ant-btn-text[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: transparent;
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-dangerous.ant-btn-text[disabled] > a:only-child,
.ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child,
.ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child,
.ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn-dangerous.ant-btn-text[disabled] > a:only-child::after,
.ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child::after,
.ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child::after,
.ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-icon-only {
  width: 32px;
  height: 32px;
  padding: 2.2px 0;
  font-size: 16px;
  border-radius: 2px;
  vertical-align: -3px;
}
.ant-btn-icon-only > * {
  font-size: 16px;
}
.ant-btn-icon-only.ant-btn-lg {
  width: 40px;
  height: 40px;
  padding: 4.6px 0;
  font-size: 18px;
  border-radius: 2px;
}
.ant-btn-icon-only.ant-btn-lg > * {
  font-size: 18px;
}
.ant-btn-icon-only.ant-btn-sm {
  width: 24px;
  height: 24px;
  padding: 0 0;
  font-size: 14px;
  border-radius: 2px;
}
.ant-btn-icon-only.ant-btn-sm > * {
  font-size: 14px;
}
.ant-btn-icon-only > .anticon {
  display: flex;
  justify-content: center;
}
.ant-btn-icon-only .anticon-loading {
  padding: 0 !important;
}
a.ant-btn-icon-only {
  vertical-align: -1px;
}
a.ant-btn-icon-only > .anticon {
  display: inline;
}
.ant-btn-round {
  height: 32px;
  padding: 3.8px 16px;
  font-size: 14px;
  border-radius: 32px;
}
.ant-btn-round.ant-btn-lg {
  height: 40px;
  padding: 6.2px 20px;
  font-size: 16px;
  border-radius: 40px;
}
.ant-btn-round.ant-btn-sm {
  height: 24px;
  padding: 0 12px;
  font-size: 14px;
  border-radius: 24px;
}
.ant-btn-round.ant-btn-icon-only {
  width: auto;
}
.ant-btn-circle {
  min-width: 32px;
  padding-right: 0;
  padding-left: 0;
  text-align: center;
  border-radius: 50%;
}
.ant-btn-circle.ant-btn-lg {
  min-width: 40px;
  border-radius: 50%;
}
.ant-btn-circle.ant-btn-sm {
  min-width: 24px;
  border-radius: 50%;
}
.ant-btn::before {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: 1;
  display: none;
  background: #fff;
  border-radius: inherit;
  opacity: 0.35;
  transition: opacity 0.2s;
  content: '';
  pointer-events: none;
}
.ant-btn .anticon {
  transition: margin-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-btn .anticon.anticon-plus > svg,
.ant-btn .anticon.anticon-minus > svg {
  shape-rendering: optimizespeed;
}
.ant-btn.ant-btn-loading {
  position: relative;
  cursor: default;
}
.ant-btn.ant-btn-loading::before {
  display: block;
}
.ant-btn > .ant-btn-loading-icon {
  transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-btn > .ant-btn-loading-icon .anticon {
  padding-right: 8px;
  animation: none;
}
.ant-btn > .ant-btn-loading-icon .anticon svg {
  animation: loadingCircle 1s infinite linear;
}
.ant-btn-group {
  position: relative;
  display: inline-flex;
}
.ant-btn-group > .ant-btn,
.ant-btn-group > span > .ant-btn {
  position: relative;
}
.ant-btn-group > .ant-btn:hover,
.ant-btn-group > span > .ant-btn:hover,
.ant-btn-group > .ant-btn:focus,
.ant-btn-group > span > .ant-btn:focus,
.ant-btn-group > .ant-btn:active,
.ant-btn-group > span > .ant-btn:active {
  z-index: 2;
}
.ant-btn-group > .ant-btn[disabled],
.ant-btn-group > span > .ant-btn[disabled] {
  z-index: 0;
}
.ant-btn-group .ant-btn-icon-only {
  font-size: 14px;
}
.ant-btn-group .ant-btn + .ant-btn,
.ant-btn + .ant-btn-group,
.ant-btn-group span + .ant-btn,
.ant-btn-group .ant-btn + span,
.ant-btn-group > span + span,
.ant-btn-group + .ant-btn,
.ant-btn-group + .ant-btn-group {
  margin-left: -1px;
}
.ant-btn-group .ant-btn-primary + .ant-btn:not(.ant-btn-primary):not([disabled]) {
  border-left-color: transparent;
}
.ant-btn-group .ant-btn {
  border-radius: 0;
}
.ant-btn-group > .ant-btn:first-child,
.ant-btn-group > span:first-child > .ant-btn {
  margin-left: 0;
}
.ant-btn-group > .ant-btn:only-child {
  border-radius: 2px;
}
.ant-btn-group > span:only-child > .ant-btn {
  border-radius: 2px;
}
.ant-btn-group > .ant-btn:first-child:not(:last-child),
.ant-btn-group > span:first-child:not(:last-child) > .ant-btn {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.ant-btn-group > .ant-btn:last-child:not(:first-child),
.ant-btn-group > span:last-child:not(:first-child) > .ant-btn {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.ant-btn-group-sm > .ant-btn:only-child {
  border-radius: 2px;
}
.ant-btn-group-sm > span:only-child > .ant-btn {
  border-radius: 2px;
}
.ant-btn-group-sm > .ant-btn:first-child:not(:last-child),
.ant-btn-group-sm > span:first-child:not(:last-child) > .ant-btn {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.ant-btn-group-sm > .ant-btn:last-child:not(:first-child),
.ant-btn-group-sm > span:last-child:not(:first-child) > .ant-btn {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.ant-btn-group > .ant-btn-group {
  float: left;
}
.ant-btn-group > .ant-btn-group:not(:first-child):not(:last-child) > .ant-btn {
  border-radius: 0;
}
.ant-btn-group > .ant-btn-group:first-child:not(:last-child) > .ant-btn:last-child {
  padding-right: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-btn-group > .ant-btn-group:last-child:not(:first-child) > .ant-btn:first-child {
  padding-left: 8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-btn-rtl.ant-btn-group .ant-btn + .ant-btn,
.ant-btn-rtl.ant-btn + .ant-btn-group,
.ant-btn-rtl.ant-btn-group span + .ant-btn,
.ant-btn-rtl.ant-btn-group .ant-btn + span,
.ant-btn-rtl.ant-btn-group > span + span,
.ant-btn-rtl.ant-btn-group + .ant-btn,
.ant-btn-rtl.ant-btn-group + .ant-btn-group,
.ant-btn-group-rtl.ant-btn-group .ant-btn + .ant-btn,
.ant-btn-group-rtl.ant-btn + .ant-btn-group,
.ant-btn-group-rtl.ant-btn-group span + .ant-btn,
.ant-btn-group-rtl.ant-btn-group .ant-btn + span,
.ant-btn-group-rtl.ant-btn-group > span + span,
.ant-btn-group-rtl.ant-btn-group + .ant-btn,
.ant-btn-group-rtl.ant-btn-group + .ant-btn-group {
  margin-right: -1px;
  margin-left: auto;
}
.ant-btn-group.ant-btn-group-rtl {
  direction: rtl;
}
.ant-btn-group-rtl.ant-btn-group > .ant-btn:first-child:not(:last-child),
.ant-btn-group-rtl.ant-btn-group > span:first-child:not(:last-child) > .ant-btn {
  border-radius: 0 2px 2px 0;
}
.ant-btn-group-rtl.ant-btn-group > .ant-btn:last-child:not(:first-child),
.ant-btn-group-rtl.ant-btn-group > span:last-child:not(:first-child) > .ant-btn {
  border-radius: 2px 0 0 2px;
}
.ant-btn-group-rtl.ant-btn-group-sm > .ant-btn:first-child:not(:last-child),
.ant-btn-group-rtl.ant-btn-group-sm > span:first-child:not(:last-child) > .ant-btn {
  border-radius: 0 2px 2px 0;
}
.ant-btn-group-rtl.ant-btn-group-sm > .ant-btn:last-child:not(:first-child),
.ant-btn-group-rtl.ant-btn-group-sm > span:last-child:not(:first-child) > .ant-btn {
  border-radius: 2px 0 0 2px;
}
.ant-btn:focus > span,
.ant-btn:active > span {
  position: relative;
}
.ant-btn > .anticon + span,
.ant-btn > span + .anticon {
  margin-left: 8px;
}
.ant-btn.ant-btn-background-ghost {
  color: #fff;
  border-color: #fff;
}
.ant-btn.ant-btn-background-ghost,
.ant-btn.ant-btn-background-ghost:hover,
.ant-btn.ant-btn-background-ghost:active,
.ant-btn.ant-btn-background-ghost:focus {
  background: transparent;
}
.ant-btn.ant-btn-background-ghost:hover,
.ant-btn.ant-btn-background-ghost:focus {
  color: #b36afc;
  border-color: #b36afc;
}
.ant-btn.ant-btn-background-ghost:active {
  color: #6f2ac9;
  border-color: #6f2ac9;
}
.ant-btn.ant-btn-background-ghost[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background: transparent;
  border-color: #d9d9d9;
}
.ant-btn-background-ghost.ant-btn-primary {
  color: #913ef0;
  border-color: #913ef0;
  text-shadow: none;
}
.ant-btn-background-ghost.ant-btn-primary > a:only-child {
  color: currentcolor;
}
.ant-btn-background-ghost.ant-btn-primary > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-primary:hover,
.ant-btn-background-ghost.ant-btn-primary:focus {
  color: #b36afc;
  border-color: #b36afc;
}
.ant-btn-background-ghost.ant-btn-primary:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-primary:focus > a:only-child {
  color: currentcolor;
}
.ant-btn-background-ghost.ant-btn-primary:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-primary:active {
  color: #6f2ac9;
  border-color: #6f2ac9;
}
.ant-btn-background-ghost.ant-btn-primary:active > a:only-child {
  color: currentcolor;
}
.ant-btn-background-ghost.ant-btn-primary:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-primary[disabled],
.ant-btn-background-ghost.ant-btn-primary[disabled]:hover,
.ant-btn-background-ghost.ant-btn-primary[disabled]:focus,
.ant-btn-background-ghost.ant-btn-primary[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: #f5f5f5;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child,
.ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child,
.ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child::after,
.ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-danger {
  color: #E54963;
  border-color: #E54963;
  text-shadow: none;
}
.ant-btn-background-ghost.ant-btn-danger > a:only-child {
  color: currentcolor;
}
.ant-btn-background-ghost.ant-btn-danger > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-danger:hover,
.ant-btn-background-ghost.ant-btn-danger:focus {
  color: #f27485;
  border-color: #f27485;
}
.ant-btn-background-ghost.ant-btn-danger:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-danger:focus > a:only-child {
  color: currentcolor;
}
.ant-btn-background-ghost.ant-btn-danger:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-danger:active {
  color: #bf3450;
  border-color: #bf3450;
}
.ant-btn-background-ghost.ant-btn-danger:active > a:only-child {
  color: currentcolor;
}
.ant-btn-background-ghost.ant-btn-danger:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-danger[disabled],
.ant-btn-background-ghost.ant-btn-danger[disabled]:hover,
.ant-btn-background-ghost.ant-btn-danger[disabled]:focus,
.ant-btn-background-ghost.ant-btn-danger[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: #f5f5f5;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child,
.ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child,
.ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child::after,
.ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-dangerous {
  color: #E54963;
  border-color: #E54963;
  text-shadow: none;
}
.ant-btn-background-ghost.ant-btn-dangerous > a:only-child {
  color: currentcolor;
}
.ant-btn-background-ghost.ant-btn-dangerous > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-dangerous:hover,
.ant-btn-background-ghost.ant-btn-dangerous:focus {
  color: #f27485;
  border-color: #f27485;
}
.ant-btn-background-ghost.ant-btn-dangerous:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-dangerous:focus > a:only-child {
  color: currentcolor;
}
.ant-btn-background-ghost.ant-btn-dangerous:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-dangerous:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-dangerous:active {
  color: #bf3450;
  border-color: #bf3450;
}
.ant-btn-background-ghost.ant-btn-dangerous:active > a:only-child {
  color: currentcolor;
}
.ant-btn-background-ghost.ant-btn-dangerous:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-dangerous[disabled],
.ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover,
.ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus,
.ant-btn-background-ghost.ant-btn-dangerous[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: #f5f5f5;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-background-ghost.ant-btn-dangerous[disabled] > a:only-child,
.ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus > a:only-child,
.ant-btn-background-ghost.ant-btn-dangerous[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn-background-ghost.ant-btn-dangerous[disabled] > a:only-child::after,
.ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus > a:only-child::after,
.ant-btn-background-ghost.ant-btn-dangerous[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link {
  color: #E54963;
  border-color: transparent;
  text-shadow: none;
}
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link > a:only-child {
  color: currentcolor;
}
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover,
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus {
  color: #f27485;
  border-color: transparent;
}
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus > a:only-child {
  color: currentcolor;
}
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active {
  color: #bf3450;
  border-color: transparent;
}
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active > a:only-child {
  color: currentcolor;
}
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled],
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover,
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus,
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: #f5f5f5;
  text-shadow: none;
  box-shadow: none;
}
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child,
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
  color: currentcolor;
}
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after,
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-btn-two-chinese-chars::first-letter {
  letter-spacing: 0.34em;
}
.ant-btn-two-chinese-chars > *:not(.anticon) {
  margin-right: -0.34em;
  letter-spacing: 0.34em;
}
.ant-btn.ant-btn-block {
  width: 100%;
}
.ant-btn:empty {
  display: inline-block;
  width: 0;
  visibility: hidden;
  content: '\a0';
}
a.ant-btn {
  padding-top: 0.01px !important;
  line-height: 30px;
}
a.ant-btn-disabled {
  cursor: not-allowed;
}
a.ant-btn-disabled > * {
  pointer-events: none;
}
a.ant-btn-disabled,
a.ant-btn-disabled:hover,
a.ant-btn-disabled:focus,
a.ant-btn-disabled:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: transparent;
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}
a.ant-btn-disabled > a:only-child,
a.ant-btn-disabled:hover > a:only-child,
a.ant-btn-disabled:focus > a:only-child,
a.ant-btn-disabled:active > a:only-child {
  color: currentcolor;
}
a.ant-btn-disabled > a:only-child::after,
a.ant-btn-disabled:hover > a:only-child::after,
a.ant-btn-disabled:focus > a:only-child::after,
a.ant-btn-disabled:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
a.ant-btn-lg {
  line-height: 38px;
}
a.ant-btn-sm {
  line-height: 22px;
}
.ant-btn-compact-item:not(.ant-btn-compact-last-item):not(.ant-btn-compact-item-rtl) {
  margin-right: -1px;
}
.ant-btn-compact-item:not(.ant-btn-compact-last-item).ant-btn-compact-item-rtl {
  margin-left: -1px;
}
.ant-btn-compact-item:hover,
.ant-btn-compact-item:focus,
.ant-btn-compact-item:active {
  z-index: 2;
}
.ant-btn-compact-item[disabled] {
  z-index: 0;
}
.ant-btn-compact-item:not(.ant-btn-compact-first-item):not(.ant-btn-compact-last-item).ant-btn {
  border-radius: 0;
}
.ant-btn-compact-item.ant-btn.ant-btn-compact-first-item:not(.ant-btn-compact-last-item):not(.ant-btn-compact-item-rtl) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-btn-compact-item.ant-btn.ant-btn-compact-last-item:not(.ant-btn-compact-first-item):not(.ant-btn-compact-item-rtl) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-btn-compact-item.ant-btn.ant-btn-compact-item-rtl.ant-btn-compact-first-item:not(.ant-btn-compact-last-item) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-btn-compact-item.ant-btn.ant-btn-compact-item-rtl.ant-btn-compact-last-item:not(.ant-btn-compact-first-item) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-btn-icon-only.ant-btn-compact-item {
  flex: none;
}
.ant-btn-compact-item.ant-btn-primary:not([disabled]) + .ant-btn-compact-item.ant-btn-primary:not([disabled]) {
  position: relative;
}
.ant-btn-compact-item.ant-btn-primary:not([disabled]) + .ant-btn-compact-item.ant-btn-primary:not([disabled])::after {
  position: absolute;
  top: -1px;
  left: -1px;
  display: inline-block;
  width: 1px;
  height: calc(100% + 1px * 2);
  background-color: #b36afc;
  content: ' ';
}
.ant-btn-compact-item-rtl.ant-btn-compact-first-item.ant-btn-compact-item-rtl:not(.ant-btn-compact-last-item) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-btn-compact-item-rtl.ant-btn-compact-last-item.ant-btn-compact-item-rtl:not(.ant-btn-compact-first-item) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-btn-compact-item-rtl.ant-btn-sm.ant-btn-compact-first-item.ant-btn-compact-item-rtl.ant-btn-sm:not(.ant-btn-compact-last-item) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-btn-compact-item-rtl.ant-btn-sm.ant-btn-compact-last-item.ant-btn-compact-item-rtl.ant-btn-sm:not(.ant-btn-compact-first-item) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-btn-compact-item-rtl.ant-btn-primary:not([disabled]) + .ant-btn-compact-item-rtl.ant-btn-primary:not([disabled])::after {
  right: -1px;
}
.ant-btn-compact-vertical-item:not(.ant-btn-compact-vertical-last-item) {
  margin-bottom: -1px;
}
.ant-btn-compact-vertical-item:hover,
.ant-btn-compact-vertical-item:focus,
.ant-btn-compact-vertical-item:active {
  z-index: 2;
}
.ant-btn-compact-vertical-item[disabled] {
  z-index: 0;
}
.ant-btn-compact-vertical-item:not(.ant-btn-compact-vertical-first-item):not(.ant-btn-compact-vertical-last-item) {
  border-radius: 0;
}
.ant-btn-compact-vertical-item.ant-btn-compact-vertical-first-item:not(.ant-btn-compact-vertical-last-item) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-btn-compact-vertical-item.ant-btn-compact-vertical-last-item:not(.ant-btn-compact-vertical-first-item) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.ant-btn-compact-vertical-item.ant-btn-primary:not([disabled]) + .ant-btn-compact-vertical-item.ant-btn-primary:not([disabled]) {
  position: relative;
}
.ant-btn-compact-vertical-item.ant-btn-primary:not([disabled]) + .ant-btn-compact-vertical-item.ant-btn-primary:not([disabled])::after {
  position: absolute;
  top: -1px;
  left: -1px;
  display: inline-block;
  width: calc(100% + 1px * 2);
  height: 1px;
  background-color: #b36afc;
  content: ' ';
}
.ant-btn-rtl {
  direction: rtl;
}
.ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child),
.ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary {
  border-right-color: #b36afc;
  border-left-color: #d9d9d9;
}
.ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
.ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] {
  border-right-color: #d9d9d9;
  border-left-color: #b36afc;
}
.ant-btn-rtl.ant-btn > .ant-btn-loading-icon .anticon {
  padding-right: 0;
  padding-left: 8px;
}
.ant-btn-rtl.ant-btn > .anticon + span,
.ant-btn-rtl.ant-btn > span + .anticon {
  margin-right: 8px;
  margin-left: 0;
}
.ant-picker-calendar {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  background: #fff;
}
.ant-picker-calendar-header {
  display: flex;
  justify-content: flex-end;
  padding: 12px 0;
}
.ant-picker-calendar-header .ant-picker-calendar-year-select {
  min-width: 80px;
}
.ant-picker-calendar-header .ant-picker-calendar-month-select {
  min-width: 70px;
  margin-left: 8px;
}
.ant-picker-calendar-header .ant-picker-calendar-mode-switch {
  margin-left: 8px;
}
.ant-picker-calendar .ant-picker-panel {
  background: #fff;
  border: 0;
  border-top: 1px solid #f0f0f0;
  border-radius: 0;
}
.ant-picker-calendar .ant-picker-panel .ant-picker-month-panel,
.ant-picker-calendar .ant-picker-panel .ant-picker-date-panel {
  width: auto;
}
.ant-picker-calendar .ant-picker-panel .ant-picker-body {
  padding: 8px 0;
}
.ant-picker-calendar .ant-picker-panel .ant-picker-content {
  width: 100%;
}
.ant-picker-calendar-mini {
  border-radius: 2px;
}
.ant-picker-calendar-mini .ant-picker-calendar-header {
  padding-right: 8px;
  padding-left: 8px;
}
.ant-picker-calendar-mini .ant-picker-panel {
  border-radius: 0 0 2px 2px;
}
.ant-picker-calendar-mini .ant-picker-content {
  height: 256px;
}
.ant-picker-calendar-mini .ant-picker-content th {
  height: auto;
  padding: 0;
  line-height: 18px;
}
.ant-picker-calendar-mini .ant-picker-cell::before {
  pointer-events: none;
}
.ant-picker-calendar-full .ant-picker-panel {
  display: block;
  width: 100%;
  text-align: right;
  background: #fff;
  border: 0;
}
.ant-picker-calendar-full .ant-picker-panel .ant-picker-body th,
.ant-picker-calendar-full .ant-picker-panel .ant-picker-body td {
  padding: 0;
}
.ant-picker-calendar-full .ant-picker-panel .ant-picker-body th {
  height: auto;
  padding: 0 12px 5px 0;
  line-height: 18px;
}
.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell::before {
  display: none;
}
.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell:hover .ant-picker-calendar-date {
  background: #f5f5f5;
}
.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell .ant-picker-calendar-date-today::before {
  display: none;
}
.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected .ant-picker-calendar-date,
.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected:hover .ant-picker-calendar-date,
.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected .ant-picker-calendar-date-today,
.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected:hover .ant-picker-calendar-date-today {
  background: #f9f0ff;
}
.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected .ant-picker-calendar-date .ant-picker-calendar-date-value,
.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected:hover .ant-picker-calendar-date .ant-picker-calendar-date-value,
.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected .ant-picker-calendar-date-today .ant-picker-calendar-date-value,
.ant-picker-calendar-full .ant-picker-panel .ant-picker-cell-selected:hover .ant-picker-calendar-date-today .ant-picker-calendar-date-value {
  color: #913ef0;
}
.ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date {
  display: block;
  width: auto;
  height: auto;
  margin: 0 4px;
  padding: 4px 8px 0;
  border: 0;
  border-top: 2px solid #f0f0f0;
  border-radius: 0;
  transition: background 0.3s;
}
.ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date-value {
  line-height: 24px;
  transition: color 0.3s;
}
.ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date-content {
  position: static;
  width: auto;
  height: 86px;
  overflow-y: auto;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.6;
  text-align: left;
}
.ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date-today {
  border-color: #913ef0;
}
.ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date-today .ant-picker-calendar-date-value {
  color: rgba(0, 0, 0, 0.85);
}
@media only screen and (max-width: 480px) {
  .ant-picker-calendar-header {
    display: block;
  }
  .ant-picker-calendar-header .ant-picker-calendar-year-select {
    width: 50%;
  }
  .ant-picker-calendar-header .ant-picker-calendar-month-select {
    width: calc(50% - 8px);
  }
  .ant-picker-calendar-header .ant-picker-calendar-mode-switch {
    width: 100%;
    margin-top: 8px;
    margin-left: 0;
  }
  .ant-picker-calendar-header .ant-picker-calendar-mode-switch > label {
    width: 50%;
    text-align: center;
  }
}
.ant-picker-calendar-rtl {
  direction: rtl;
}
.ant-picker-calendar-rtl .ant-picker-calendar-header .ant-picker-calendar-month-select {
  margin-right: 8px;
  margin-left: 0;
}
.ant-picker-calendar-rtl .ant-picker-calendar-header .ant-picker-calendar-mode-switch {
  margin-right: 8px;
  margin-left: 0;
}
.ant-picker-calendar-rtl.ant-picker-calendar-full .ant-picker-panel {
  text-align: left;
}
.ant-picker-calendar-rtl.ant-picker-calendar-full .ant-picker-panel .ant-picker-body th {
  padding: 0 0 5px 12px;
}
.ant-picker-calendar-rtl.ant-picker-calendar-full .ant-picker-panel .ant-picker-calendar-date-content {
  text-align: right;
}
.ant-card {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  background: #fff;
  border-radius: 2px;
}
.ant-card-rtl {
  direction: rtl;
}
.ant-card-hoverable {
  cursor: pointer;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.ant-card-hoverable:hover {
  border-color: transparent;
  box-shadow: 0 1px 2px -2px rgba(0, 0, 0, 0.16), 0 3px 6px 0 rgba(0, 0, 0, 0.12), 0 5px 12px 4px rgba(0, 0, 0, 0.09);
}
.ant-card-bordered {
  border: 1px solid #f0f0f0;
}
.ant-card-head {
  min-height: 48px;
  margin-bottom: -1px;
  padding: 0 24px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  background: transparent;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 2px 2px 0 0;
}
.ant-card-head::before {
  display: table;
  content: '';
}
.ant-card-head::after {
  display: table;
  clear: both;
  content: '';
}
.ant-card-head::before {
  display: table;
  content: '';
}
.ant-card-head::after {
  display: table;
  clear: both;
  content: '';
}
.ant-card-head-wrapper {
  display: flex;
  align-items: center;
}
.ant-card-head-title {
  display: inline-block;
  flex: 1;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-card-head-title > .ant-typography,
.ant-card-head-title > .ant-typography-edit-content {
  left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.ant-card-head .ant-tabs-top {
  clear: both;
  margin-bottom: -17px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: normal;
  font-size: 14px;
}
.ant-card-head .ant-tabs-top-bar {
  border-bottom: 1px solid #f0f0f0;
}
.ant-card-extra {
  margin-left: auto;
  padding: 16px 0;
  color: rgba(0, 0, 0, 0.85);
  font-weight: normal;
  font-size: 14px;
}
.ant-card-rtl .ant-card-extra {
  margin-right: auto;
  margin-left: 0;
}
.ant-card-body {
  padding: 24px;
}
.ant-card-body::before {
  display: table;
  content: '';
}
.ant-card-body::after {
  display: table;
  clear: both;
  content: '';
}
.ant-card-body::before {
  display: table;
  content: '';
}
.ant-card-body::after {
  display: table;
  clear: both;
  content: '';
}
.ant-card-contain-grid .ant-card-body {
  display: flex;
  flex-wrap: wrap;
}
.ant-card-contain-grid:not(.ant-card-loading) .ant-card-body {
  margin: -1px 0 0 -1px;
  padding: 0;
}
.ant-card-grid {
  width: 33.33%;
  padding: 24px;
  border: 0;
  border-radius: 0;
  box-shadow: 1px 0 0 0 #f0f0f0, 0 1px 0 0 #f0f0f0, 1px 1px 0 0 #f0f0f0, 1px 0 0 0 #f0f0f0 inset, 0 1px 0 0 #f0f0f0 inset;
  transition: all 0.3s;
}
.ant-card-grid-hoverable:hover {
  position: relative;
  z-index: 1;
  box-shadow: 0 1px 2px -2px rgba(0, 0, 0, 0.16), 0 3px 6px 0 rgba(0, 0, 0, 0.12), 0 5px 12px 4px rgba(0, 0, 0, 0.09);
}
.ant-card-contain-tabs > .ant-card-head .ant-card-head-title {
  min-height: 32px;
  padding-bottom: 0;
}
.ant-card-contain-tabs > .ant-card-head .ant-card-extra {
  padding-bottom: 0;
}
.ant-card-bordered .ant-card-cover {
  margin-top: -1px;
  margin-right: -1px;
  margin-left: -1px;
}
.ant-card-cover > * {
  display: block;
  width: 100%;
}
.ant-card-cover img {
  border-radius: 2px 2px 0 0;
}
.ant-card-actions {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}
.ant-card-actions::before {
  display: table;
  content: '';
}
.ant-card-actions::after {
  display: table;
  clear: both;
  content: '';
}
.ant-card-actions::before {
  display: table;
  content: '';
}
.ant-card-actions::after {
  display: table;
  clear: both;
  content: '';
}
.ant-card-actions > li {
  margin: 12px 0;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
}
.ant-card-actions > li > span {
  position: relative;
  display: block;
  min-width: 32px;
  font-size: 14px;
  line-height: 1.6;
  cursor: pointer;
}
.ant-card-actions > li > span:hover {
  color: #913ef0;
  transition: color 0.3s;
}
.ant-card-actions > li > span a:not(.ant-btn),
.ant-card-actions > li > span > .anticon {
  display: inline-block;
  width: 100%;
  color: rgba(0, 0, 0, 0.45);
  line-height: 22px;
  transition: color 0.3s;
}
.ant-card-actions > li > span a:not(.ant-btn):hover,
.ant-card-actions > li > span > .anticon:hover {
  color: #913ef0;
}
.ant-card-actions > li > span > .anticon {
  font-size: 16px;
  line-height: 22px;
}
.ant-card-actions > li:not(:last-child) {
  border-right: 1px solid #f0f0f0;
}
.ant-card-rtl .ant-card-actions > li:not(:last-child) {
  border-right: none;
  border-left: 1px solid #f0f0f0;
}
.ant-card-type-inner .ant-card-head {
  padding: 0 24px;
  background: #fafafa;
}
.ant-card-type-inner .ant-card-head-title {
  padding: 12px 0;
  font-size: 14px;
}
.ant-card-type-inner .ant-card-body {
  padding: 16px 24px;
}
.ant-card-type-inner .ant-card-extra {
  padding: 13.5px 0;
}
.ant-card-meta {
  display: flex;
  margin: -4px 0;
}
.ant-card-meta::before {
  display: table;
  content: '';
}
.ant-card-meta::after {
  display: table;
  clear: both;
  content: '';
}
.ant-card-meta::before {
  display: table;
  content: '';
}
.ant-card-meta::after {
  display: table;
  clear: both;
  content: '';
}
.ant-card-meta-avatar {
  padding-right: 16px;
}
.ant-card-rtl .ant-card-meta-avatar {
  padding-right: 0;
  padding-left: 16px;
}
.ant-card-meta-detail {
  flex: 1;
  overflow: hidden;
}
.ant-card-meta-detail > div:not(:last-child) {
  margin-bottom: 8px;
}
.ant-card-meta-title {
  overflow: hidden;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-card-meta-description {
  color: rgba(0, 0, 0, 0.45);
}
.ant-card-loading {
  overflow: hidden;
}
.ant-card-loading .ant-card-body {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-card-small > .ant-card-head {
  min-height: 36px;
  padding: 0 12px;
  font-size: 14px;
}
.ant-card-small > .ant-card-head > .ant-card-head-wrapper > .ant-card-head-title {
  padding: 8px 0;
}
.ant-card-small > .ant-card-head > .ant-card-head-wrapper > .ant-card-extra {
  padding: 8px 0;
  font-size: 14px;
}
.ant-card-small > .ant-card-body {
  padding: 12px;
}
.ant-carousel {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.6;
  list-style: none;
  font-feature-settings: 'tnum';
}
.ant-carousel .slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  touch-action: pan-y;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.ant-carousel .slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.ant-carousel .slick-list:focus {
  outline: none;
}
.ant-carousel .slick-list.dragging {
  cursor: pointer;
}
.ant-carousel .slick-list .slick-slide {
  pointer-events: none;
}
.ant-carousel .slick-list .slick-slide input.ant-radio-input,
.ant-carousel .slick-list .slick-slide input.ant-checkbox-input {
  visibility: hidden;
}
.ant-carousel .slick-list .slick-slide.slick-active {
  pointer-events: auto;
}
.ant-carousel .slick-list .slick-slide.slick-active input.ant-radio-input,
.ant-carousel .slick-list .slick-slide.slick-active input.ant-checkbox-input {
  visibility: visible;
}
.ant-carousel .slick-list .slick-slide > div > div {
  vertical-align: bottom;
}
.ant-carousel .slick-slider .slick-track,
.ant-carousel .slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
  touch-action: pan-y;
}
.ant-carousel .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.ant-carousel .slick-track::before,
.ant-carousel .slick-track::after {
  display: table;
  content: '';
}
.ant-carousel .slick-track::after {
  clear: both;
}
.slick-loading .ant-carousel .slick-track {
  visibility: hidden;
}
.ant-carousel .slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.ant-carousel .slick-slide img {
  display: block;
}
.ant-carousel .slick-slide.slick-loading img {
  display: none;
}
.ant-carousel .slick-slide.dragging img {
  pointer-events: none;
}
.ant-carousel .slick-initialized .slick-slide {
  display: block;
}
.ant-carousel .slick-loading .slick-slide {
  visibility: hidden;
}
.ant-carousel .slick-vertical .slick-slide {
  display: block;
  height: auto;
}
.ant-carousel .slick-arrow.slick-hidden {
  display: none;
}
.ant-carousel .slick-prev,
.ant-carousel .slick-next {
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  padding: 0;
  color: transparent;
  font-size: 0;
  line-height: 0;
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}
.ant-carousel .slick-prev:hover,
.ant-carousel .slick-next:hover,
.ant-carousel .slick-prev:focus,
.ant-carousel .slick-next:focus {
  color: transparent;
  background: transparent;
  outline: none;
}
.ant-carousel .slick-prev:hover::before,
.ant-carousel .slick-next:hover::before,
.ant-carousel .slick-prev:focus::before,
.ant-carousel .slick-next:focus::before {
  opacity: 1;
}
.ant-carousel .slick-prev.slick-disabled::before,
.ant-carousel .slick-next.slick-disabled::before {
  opacity: 0.25;
}
.ant-carousel .slick-prev {
  left: -25px;
}
.ant-carousel .slick-prev::before {
  content: '←';
}
.ant-carousel .slick-next {
  right: -25px;
}
.ant-carousel .slick-next::before {
  content: '→';
}
.ant-carousel .slick-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex !important;
  justify-content: center;
  margin-right: 15%;
  margin-bottom: 0;
  margin-left: 15%;
  padding-left: 0;
  list-style: none;
}
.ant-carousel .slick-dots-bottom {
  bottom: 12px;
}
.ant-carousel .slick-dots-top {
  top: 12px;
  bottom: auto;
}
.ant-carousel .slick-dots li {
  position: relative;
  display: inline-block;
  flex: 0 1 auto;
  box-sizing: content-box;
  width: 16px;
  height: 3px;
  margin: 0 4px;
  padding: 0;
  text-align: center;
  text-indent: -999px;
  vertical-align: top;
  transition: all 0.5s;
}
.ant-carousel .slick-dots li button {
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
  padding: 0;
  color: transparent;
  font-size: 0;
  background: #fff;
  border: 0;
  border-radius: 1px;
  outline: none;
  cursor: pointer;
  opacity: 0.3;
  transition: all 0.5s;
}
.ant-carousel .slick-dots li button:hover,
.ant-carousel .slick-dots li button:focus {
  opacity: 0.75;
}
.ant-carousel .slick-dots li button::after {
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  content: '';
}
.ant-carousel .slick-dots li.slick-active {
  width: 24px;
}
.ant-carousel .slick-dots li.slick-active button {
  background: #fff;
  opacity: 1;
}
.ant-carousel .slick-dots li.slick-active:hover,
.ant-carousel .slick-dots li.slick-active:focus {
  opacity: 1;
}
.ant-carousel-vertical .slick-dots {
  top: 50%;
  bottom: auto;
  flex-direction: column;
  width: 3px;
  height: auto;
  margin: 0;
  transform: translateY(-50%);
}
.ant-carousel-vertical .slick-dots-left {
  right: auto;
  left: 12px;
}
.ant-carousel-vertical .slick-dots-right {
  right: 12px;
  left: auto;
}
.ant-carousel-vertical .slick-dots li {
  width: 3px;
  height: 16px;
  margin: 4px 0;
  vertical-align: baseline;
}
.ant-carousel-vertical .slick-dots li button {
  width: 3px;
  height: 16px;
}
.ant-carousel-vertical .slick-dots li.slick-active {
  width: 3px;
  height: 24px;
}
.ant-carousel-vertical .slick-dots li.slick-active button {
  width: 3px;
  height: 24px;
}
.ant-carousel-rtl {
  direction: rtl;
}
.ant-carousel-rtl .ant-carousel .slick-track {
  right: 0;
  left: auto;
}
.ant-carousel-rtl .ant-carousel .slick-prev {
  right: -25px;
  left: auto;
}
.ant-carousel-rtl .ant-carousel .slick-prev::before {
  content: '→';
}
.ant-carousel-rtl .ant-carousel .slick-next {
  right: auto;
  left: -25px;
}
.ant-carousel-rtl .ant-carousel .slick-next::before {
  content: '←';
}
.ant-carousel-rtl.ant-carousel .slick-dots {
  flex-direction: row-reverse;
}
.ant-carousel-rtl.ant-carousel-vertical .slick-dots {
  flex-direction: column;
}
@keyframes antCheckboxEffect {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.ant-cascader-checkbox {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  top: 0.2em;
  line-height: 1;
  white-space: nowrap;
  outline: none;
  cursor: pointer;
}
.ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox-inner,
.ant-cascader-checkbox:hover .ant-cascader-checkbox-inner,
.ant-cascader-checkbox-input:focus + .ant-cascader-checkbox-inner {
  border-color: #913ef0;
}
.ant-cascader-checkbox-checked::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #913ef0;
  border-radius: 2px;
  visibility: hidden;
  animation: antCheckboxEffect 0.36s ease-in-out;
  animation-fill-mode: backwards;
  content: '';
}
.ant-cascader-checkbox:hover::after,
.ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox::after {
  visibility: visible;
}
.ant-cascader-checkbox-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  direction: ltr;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  border-collapse: separate;
  transition: all 0.3s;
}
.ant-cascader-checkbox-inner::after {
  position: absolute;
  top: 50%;
  left: 21.5%;
  display: table;
  width: 5.71428571px;
  height: 9.14285714px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(0) translate(-50%, -50%);
  opacity: 0;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  content: ' ';
}
.ant-cascader-checkbox-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.ant-cascader-checkbox-checked .ant-cascader-checkbox-inner::after {
  position: absolute;
  display: table;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(1) translate(-50%, -50%);
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  content: ' ';
}
.ant-cascader-checkbox-checked .ant-cascader-checkbox-inner {
  background-color: #913ef0;
  border-color: #913ef0;
}
.ant-cascader-checkbox-disabled {
  cursor: not-allowed;
}
.ant-cascader-checkbox-disabled.ant-cascader-checkbox-checked .ant-cascader-checkbox-inner::after {
  border-color: rgba(0, 0, 0, 0.25);
  animation-name: none;
}
.ant-cascader-checkbox-disabled .ant-cascader-checkbox-input {
  cursor: not-allowed;
  pointer-events: none;
}
.ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner {
  background-color: #f5f5f5;
  border-color: #d9d9d9 !important;
}
.ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner::after {
  border-color: #f5f5f5;
  border-collapse: separate;
  animation-name: none;
}
.ant-cascader-checkbox-disabled + span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-cascader-checkbox-disabled:hover::after,
.ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox-disabled::after {
  visibility: hidden;
}
.ant-cascader-checkbox-wrapper {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-flex;
  align-items: baseline;
  line-height: unset;
  cursor: pointer;
}
.ant-cascader-checkbox-wrapper::after {
  display: inline-block;
  width: 0;
  overflow: hidden;
  content: '\a0';
}
.ant-cascader-checkbox-wrapper.ant-cascader-checkbox-wrapper-disabled {
  cursor: not-allowed;
}
.ant-cascader-checkbox-wrapper + .ant-cascader-checkbox-wrapper {
  margin-left: 8px;
}
.ant-cascader-checkbox-wrapper.ant-cascader-checkbox-wrapper-in-form-item input[type='checkbox'] {
  width: 14px;
  height: 14px;
}
.ant-cascader-checkbox + span {
  padding-right: 8px;
  padding-left: 8px;
}
.ant-cascader-checkbox-group {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
}
.ant-cascader-checkbox-group-item {
  margin-right: 8px;
}
.ant-cascader-checkbox-group-item:last-child {
  margin-right: 0;
}
.ant-cascader-checkbox-group-item + .ant-cascader-checkbox-group-item {
  margin-left: 0;
}
.ant-cascader-checkbox-indeterminate .ant-cascader-checkbox-inner {
  background-color: #fff;
  border-color: #d9d9d9;
}
.ant-cascader-checkbox-indeterminate .ant-cascader-checkbox-inner::after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #913ef0;
  border: 0;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  content: ' ';
}
.ant-cascader-checkbox-indeterminate.ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner::after {
  background-color: rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.25);
}
.ant-cascader-checkbox-rtl {
  direction: rtl;
}
.ant-cascader-checkbox-group-rtl .ant-cascader-checkbox-group-item {
  margin-right: 0;
  margin-left: 8px;
}
.ant-cascader-checkbox-group-rtl .ant-cascader-checkbox-group-item:last-child {
  margin-left: 0 !important;
}
.ant-cascader-checkbox-group-rtl .ant-cascader-checkbox-group-item + .ant-cascader-checkbox-group-item {
  margin-left: 8px;
}
.ant-cascader {
  width: 184px;
}
.ant-cascader-checkbox {
  top: 0;
  margin-right: 8px;
}
.ant-cascader-menus {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.ant-cascader-menus.ant-cascader-menu-empty .ant-cascader-menu {
  width: 100%;
  height: auto;
}
.ant-cascader-menu {
  flex-grow: 1;
  min-width: 111px;
  height: 180px;
  margin: 0;
  margin: -4px 0;
  padding: 4px 0;
  overflow: auto;
  vertical-align: top;
  list-style: none;
  border-right: 1px solid #f0f0f0;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.ant-cascader-menu-item {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 5px 12px;
  overflow: hidden;
  line-height: 22px;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-cascader-menu-item:hover {
  background: #f5f5f5;
}
.ant-cascader-menu-item-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-cascader-menu-item-disabled:hover {
  background: transparent;
}
.ant-cascader-menu-empty .ant-cascader-menu-item {
  color: rgba(0, 0, 0, 0.25);
  cursor: default;
  pointer-events: none;
}
.ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled),
.ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled):hover {
  font-weight: 600;
  background-color: #f9f0ff;
}
.ant-cascader-menu-item-content {
  flex: auto;
}
.ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon,
.ant-cascader-menu-item-loading-icon {
  margin-left: 4px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 10px;
}
.ant-cascader-menu-item-disabled.ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon,
.ant-cascader-menu-item-disabled.ant-cascader-menu-item-loading-icon {
  color: rgba(0, 0, 0, 0.25);
}
.ant-cascader-menu-item-keyword {
  color: #E54963;
}
.ant-cascader-compact-item:not(.ant-cascader-compact-last-item):not(.ant-cascader-compact-item-rtl) {
  margin-right: -1px;
}
.ant-cascader-compact-item:not(.ant-cascader-compact-last-item).ant-cascader-compact-item-rtl {
  margin-left: -1px;
}
.ant-cascader-compact-item:hover,
.ant-cascader-compact-item:focus,
.ant-cascader-compact-item:active {
  z-index: 2;
}
.ant-cascader-compact-item[disabled] {
  z-index: 0;
}
.ant-cascader-compact-item:not(.ant-cascader-compact-first-item):not(.ant-cascader-compact-last-item).ant-cascader {
  border-radius: 0;
}
.ant-cascader-compact-item.ant-cascader.ant-cascader-compact-first-item:not(.ant-cascader-compact-last-item):not(.ant-cascader-compact-item-rtl) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-cascader-compact-item.ant-cascader.ant-cascader-compact-last-item:not(.ant-cascader-compact-first-item):not(.ant-cascader-compact-item-rtl) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-cascader-compact-item.ant-cascader.ant-cascader-compact-item-rtl.ant-cascader-compact-first-item:not(.ant-cascader-compact-last-item) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-cascader-compact-item.ant-cascader.ant-cascader-compact-item-rtl.ant-cascader-compact-last-item:not(.ant-cascader-compact-first-item) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-cascader-rtl .ant-cascader-menu-item-expand-icon,
.ant-cascader-rtl .ant-cascader-menu-item-loading-icon {
  margin-right: 4px;
  margin-left: 0;
}
.ant-cascader-rtl .ant-cascader-checkbox {
  top: 0;
  margin-right: 0;
  margin-left: 8px;
}
.ant-checkbox {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  top: 0.2em;
  line-height: 1;
  white-space: nowrap;
  outline: none;
  cursor: pointer;
}
.ant-checkbox-wrapper:hover .ant-checkbox-inner,
.ant-checkbox:hover .ant-checkbox-inner,
.ant-checkbox-input:focus + .ant-checkbox-inner {
  border-color: #913ef0;
}
.ant-checkbox-checked::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #913ef0;
  border-radius: 2px;
  visibility: hidden;
  animation: antCheckboxEffect 0.36s ease-in-out;
  animation-fill-mode: backwards;
  content: '';
}
.ant-checkbox:hover::after,
.ant-checkbox-wrapper:hover .ant-checkbox::after {
  visibility: visible;
}
.ant-checkbox-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  direction: ltr;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  border-collapse: separate;
  transition: all 0.3s;
}
.ant-checkbox-inner::after {
  position: absolute;
  top: 50%;
  left: 21.5%;
  display: table;
  width: 5.71428571px;
  height: 9.14285714px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(0) translate(-50%, -50%);
  opacity: 0;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  content: ' ';
}
.ant-checkbox-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.ant-checkbox-checked .ant-checkbox-inner::after {
  position: absolute;
  display: table;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(1) translate(-50%, -50%);
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  content: ' ';
}
.ant-checkbox-checked .ant-checkbox-inner {
  background-color: #913ef0;
  border-color: #913ef0;
}
.ant-checkbox-disabled {
  cursor: not-allowed;
}
.ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner::after {
  border-color: rgba(0, 0, 0, 0.25);
  animation-name: none;
}
.ant-checkbox-disabled .ant-checkbox-input {
  cursor: not-allowed;
  pointer-events: none;
}
.ant-checkbox-disabled .ant-checkbox-inner {
  background-color: #f5f5f5;
  border-color: #d9d9d9 !important;
}
.ant-checkbox-disabled .ant-checkbox-inner::after {
  border-color: #f5f5f5;
  border-collapse: separate;
  animation-name: none;
}
.ant-checkbox-disabled + span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-checkbox-disabled:hover::after,
.ant-checkbox-wrapper:hover .ant-checkbox-disabled::after {
  visibility: hidden;
}
.ant-checkbox-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.6;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-flex;
  align-items: baseline;
  line-height: unset;
  cursor: pointer;
}
.ant-checkbox-wrapper::after {
  display: inline-block;
  width: 0;
  overflow: hidden;
  content: '\a0';
}
.ant-checkbox-wrapper.ant-checkbox-wrapper-disabled {
  cursor: not-allowed;
}
.ant-checkbox-wrapper + .ant-checkbox-wrapper {
  margin-left: 8px;
}
.ant-checkbox-wrapper.ant-checkbox-wrapper-in-form-item input[type='checkbox'] {
  width: 14px;
  height: 14px;
}
.ant-checkbox + span {
  padding-right: 8px;
  padding-left: 8px;
}
.ant-checkbox-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.6;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
}
.ant-checkbox-group-item {
  margin-right: 8px;
}
.ant-checkbox-group-item:last-child {
  margin-right: 0;
}
.ant-checkbox-group-item + .ant-checkbox-group-item {
  margin-left: 0;
}
.ant-checkbox-indeterminate .ant-checkbox-inner {
  background-color: #fff;
  border-color: #d9d9d9;
}
.ant-checkbox-indeterminate .ant-checkbox-inner::after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #913ef0;
  border: 0;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  content: ' ';
}
.ant-checkbox-indeterminate.ant-checkbox-disabled .ant-checkbox-inner::after {
  background-color: rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.25);
}
.ant-checkbox-rtl {
  direction: rtl;
}
.ant-checkbox-group-rtl .ant-checkbox-group-item {
  margin-right: 0;
  margin-left: 8px;
}
.ant-checkbox-group-rtl .ant-checkbox-group-item:last-child {
  margin-left: 0 !important;
}
.ant-checkbox-group-rtl .ant-checkbox-group-item + .ant-checkbox-group-item {
  margin-left: 8px;
}
.ant-collapse {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  background-color: #fafafa;
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 2px;
}
.ant-collapse > .ant-collapse-item {
  border-bottom: 1px solid #d9d9d9;
}
.ant-collapse > .ant-collapse-item:last-child,
.ant-collapse > .ant-collapse-item:last-child > .ant-collapse-header {
  border-radius: 0 0 2px 2px;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  padding: 12px 16px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.6;
  cursor: pointer;
  transition: all 0.3s, visibility 0s;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
  display: inline-block;
  margin-right: 12px;
  font-size: 11px;
  vertical-align: -1px;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow svg {
  transition: transform 0.24s;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-header-text {
  flex: auto;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-extra {
  margin-left: auto;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header:focus {
  outline: none;
}
.ant-collapse > .ant-collapse-item .ant-collapse-header-collapsible-only {
  cursor: default;
}
.ant-collapse > .ant-collapse-item .ant-collapse-header-collapsible-only .ant-collapse-header-text {
  flex: none;
  cursor: pointer;
}
.ant-collapse > .ant-collapse-item .ant-collapse-icon-collapsible-only {
  cursor: default;
}
.ant-collapse > .ant-collapse-item .ant-collapse-icon-collapsible-only .ant-collapse-expand-icon {
  cursor: pointer;
}
.ant-collapse > .ant-collapse-item.ant-collapse-no-arrow > .ant-collapse-header {
  padding-left: 12px;
}
.ant-collapse-icon-position-end > .ant-collapse-item > .ant-collapse-header {
  position: relative;
  padding: 12px 16px;
  padding-right: 40px;
}
.ant-collapse-icon-position-end > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  left: auto;
  margin: 0;
  transform: translateY(-50%);
}
.ant-collapse-content {
  color: rgba(0, 0, 0, 0.85);
  background-color: #fff;
  border-top: 1px solid #d9d9d9;
}
.ant-collapse-content > .ant-collapse-content-box {
  padding: 16px;
}
.ant-collapse-content-hidden {
  display: none;
}
.ant-collapse-item:last-child > .ant-collapse-content {
  border-radius: 0 0 2px 2px;
}
.ant-collapse-borderless {
  background-color: #fafafa;
  border: 0;
}
.ant-collapse-borderless > .ant-collapse-item {
  border-bottom: 1px solid #d9d9d9;
}
.ant-collapse-borderless > .ant-collapse-item:last-child,
.ant-collapse-borderless > .ant-collapse-item:last-child .ant-collapse-header {
  border-radius: 0;
}
.ant-collapse-borderless > .ant-collapse-item:last-child {
  border-bottom: 0;
}
.ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content {
  background-color: transparent;
  border-top: 0;
}
.ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box {
  padding-top: 4px;
}
.ant-collapse-ghost {
  background-color: transparent;
  border: 0;
}
.ant-collapse-ghost > .ant-collapse-item {
  border-bottom: 0;
}
.ant-collapse-ghost > .ant-collapse-item > .ant-collapse-content {
  background-color: transparent;
  border-top: 0;
}
.ant-collapse-ghost > .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box {
  padding-top: 12px;
  padding-bottom: 12px;
}
.ant-collapse .ant-collapse-item-disabled > .ant-collapse-header,
.ant-collapse .ant-collapse-item-disabled > .ant-collapse-header > .arrow {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-collapse-rtl {
  direction: rtl;
}
.ant-collapse-rtl.ant-collapse.ant-collapse-icon-position-end > .ant-collapse-item > .ant-collapse-header {
  position: relative;
  padding: 12px 16px;
  padding-left: 40px;
}
.ant-collapse-rtl.ant-collapse.ant-collapse-icon-position-end > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
  position: absolute;
  top: 50%;
  right: auto;
  left: 16px;
  margin: 0;
  transform: translateY(-50%);
}
.ant-collapse-rtl .ant-collapse > .ant-collapse-item > .ant-collapse-header {
  padding: 12px 16px;
  padding-right: 40px;
}
.ant-collapse-rtl.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
  margin-right: 0;
  margin-left: 12px;
}
.ant-collapse-rtl.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow svg {
  transform: rotate(180deg);
}
.ant-collapse-rtl.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-extra {
  margin-right: auto;
  margin-left: 0;
}
.ant-collapse-rtl.ant-collapse > .ant-collapse-item.ant-collapse-no-arrow > .ant-collapse-header {
  padding-right: 12px;
  padding-left: 0;
}
.ant-comment {
  position: relative;
  background-color: inherit;
}
.ant-comment-inner {
  display: flex;
  padding: 16px 0;
}
.ant-comment-avatar {
  position: relative;
  flex-shrink: 0;
  margin-right: 12px;
  cursor: pointer;
}
.ant-comment-avatar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.ant-comment-content {
  position: relative;
  flex: 1 1 auto;
  min-width: 1px;
  font-size: 14px;
  word-wrap: break-word;
}
.ant-comment-content-author {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 4px;
  font-size: 14px;
}
.ant-comment-content-author > a,
.ant-comment-content-author > span {
  padding-right: 8px;
  font-size: 11px;
  line-height: 18px;
}
.ant-comment-content-author-name {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  transition: color 0.3s;
}
.ant-comment-content-author-name > * {
  color: rgba(0, 0, 0, 0.45);
}
.ant-comment-content-author-name > *:hover {
  color: rgba(0, 0, 0, 0.45);
}
.ant-comment-content-author-time {
  color: #ccc;
  white-space: nowrap;
  cursor: auto;
}
.ant-comment-content-detail p {
  margin-bottom: inherit;
  white-space: pre-wrap;
}
.ant-comment-actions {
  margin-top: 12px;
  margin-bottom: inherit;
  padding-left: 0;
}
.ant-comment-actions > li {
  display: inline-block;
  color: rgba(0, 0, 0, 0.45);
}
.ant-comment-actions > li > span {
  margin-right: 10px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 11px;
  cursor: pointer;
  transition: color 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-comment-actions > li > span:hover {
  color: #595959;
}
.ant-comment-nested {
  margin-left: 44px;
}
.ant-comment-rtl {
  direction: rtl;
}
.ant-comment-rtl .ant-comment-avatar {
  margin-right: 0;
  margin-left: 12px;
}
.ant-comment-rtl .ant-comment-content-author > a,
.ant-comment-rtl .ant-comment-content-author > span {
  padding-right: 0;
  padding-left: 8px;
}
.ant-comment-rtl .ant-comment-actions {
  padding-right: 0;
}
.ant-comment-rtl .ant-comment-actions > li > span {
  margin-right: 0;
  margin-left: 10px;
}
.ant-comment-rtl .ant-comment-nested {
  margin-right: 44px;
  margin-left: 0;
}
.ant-picker-status-error.ant-picker,
.ant-picker-status-error.ant-picker:not([disabled]):hover {
  background-color: #fff;
  border-color: #E54963;
}
.ant-picker-status-error.ant-picker-focused,
.ant-picker-status-error.ant-picker:focus {
  border-color: #f27485;
  box-shadow: 0 0 0 2px rgba(229, 73, 99, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-picker-status-error.ant-picker .ant-picker-active-bar {
  background: #f27485;
}
.ant-picker-status-warning.ant-picker,
.ant-picker-status-warning.ant-picker:not([disabled]):hover {
  background-color: #fff;
  border-color: #FFB946;
}
.ant-picker-status-warning.ant-picker-focused,
.ant-picker-status-warning.ant-picker:focus {
  border-color: #ffcc6e;
  box-shadow: 0 0 0 2px rgba(255, 185, 70, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-picker-status-warning.ant-picker .ant-picker-active-bar {
  background: #ffcc6e;
}
.ant-picker {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  padding: 4px 11px 4px;
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: border 0.3s, box-shadow 0.3s;
}
.ant-picker:hover,
.ant-picker-focused {
  border-color: #b36afc;
  border-right-width: 1px;
}
.ant-input-rtl .ant-picker:hover,
.ant-input-rtl .ant-picker-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-picker-focused {
  border-color: #b36afc;
  box-shadow: 0 0 0 2px rgba(145, 62, 240, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-rtl .ant-picker-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.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;
  padding: 3.8px 11px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 1.6;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: all 0.3s;
  flex: auto;
  min-width: 1px;
  height: auto;
  padding: 0;
  background: transparent;
  border: 0;
}
.ant-picker-input > input::-moz-placeholder {
  color: #bfbfbf;
  -moz-user-select: none;
       user-select: none;
}
.ant-picker-input > input::placeholder {
  color: #bfbfbf;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-picker-input > input:-moz-placeholder-shown {
  text-overflow: ellipsis;
}
.ant-picker-input > input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-picker-input > input:hover {
  border-color: #b36afc;
  border-right-width: 1px;
}
.ant-input-rtl .ant-picker-input > input:hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-picker-input > input:focus,
.ant-picker-input > input-focused {
  border-color: #b36afc;
  box-shadow: 0 0 0 2px rgba(145, 62, 240, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-rtl .ant-picker-input > input:focus,
.ant-input-rtl .ant-picker-input > input-focused {
  border-right-width: 0;
  border-left-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;
}
.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;
}
.ant-picker-input > input-borderless,
.ant-picker-input > input-borderless:hover,
.ant-picker-input > input-borderless:focus,
.ant-picker-input > input-borderless-focused,
.ant-picker-input > input-borderless-disabled,
.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.6;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}
.ant-picker-input > input-lg {
  padding: 6.2px 11px;
  font-size: 16px;
}
.ant-picker-input > input-sm {
  padding: 0 7px;
}
.ant-picker-input > input-rtl {
  direction: rtl;
}
.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 6.5px;
}
.ant-picker-large .ant-picker-input > input {
  font-size: 16px;
}
.ant-picker-small {
  padding: 0px 7px 0px;
}
.ant-picker-suffix {
  display: flex;
  flex: none;
  align-self: center;
  margin-left: 4px;
  color: rgba(0, 0, 0, 0.25);
  line-height: 1;
  pointer-events: none;
}
.ant-picker-suffix > * {
  vertical-align: top;
}
.ant-picker-suffix > *:not(:last-child) {
  margin-right: 8px;
}
.ant-picker-clear {
  position: absolute;
  top: 50%;
  right: 0;
  color: rgba(0, 0, 0, 0.25);
  line-height: 1;
  background: #fff;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, color 0.3s;
}
.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: #913ef0;
  opacity: 0;
  transition: all 0.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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
}
.ant-picker-dropdown-hidden {
  display: none;
}
.ant-picker-dropdown-placement-bottomLeft .ant-picker-range-arrow {
  top: 2.58561808px;
  display: block;
  transform: rotate(-135deg) translateY(1px);
}
.ant-picker-dropdown-placement-topLeft .ant-picker-range-arrow {
  bottom: 2.58561808px;
  display: block;
  transform: rotate(45deg);
}
.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,
.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 {
  animation-name: antSlideDownIn;
}
.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,
.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 {
  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 {
  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 {
  animation-name: antSlideUpOut;
}
.ant-picker-dropdown-range {
  padding: 7.54247233px 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: #913ef0;
  background: #f9f0ff;
  border-color: #e2bdff;
  cursor: pointer;
}
.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;
  width: 11.3137085px;
  height: 11.3137085px;
  margin-left: 16.5px;
  box-shadow: 2px 2px 6px -2px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease-out;
  border-radius: 0 0 2px;
  pointer-events: none;
}
.ant-picker-range-arrow::before {
  position: absolute;
  top: -11.3137085px;
  left: -11.3137085px;
  width: 33.9411255px;
  height: 33.9411255px;
  background: #fff;
  background-repeat: no-repeat;
  background-position: -10px -10px;
  content: '';
  -webkit-clip-path: inset(33% 33%);
          clip-path: inset(33% 33%);
  -webkit-clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
          clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
}
.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);
  transition: margin 0.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 0;
  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-compact-item:not(.ant-picker-compact-last-item):not(.ant-picker-compact-item-rtl) {
  margin-right: -1px;
}
.ant-picker-compact-item:not(.ant-picker-compact-last-item).ant-picker-compact-item-rtl {
  margin-left: -1px;
}
.ant-picker-compact-item:hover,
.ant-picker-compact-item:focus,
.ant-picker-compact-item:active {
  z-index: 2;
}
.ant-picker-compact-item.ant-picker-focused {
  z-index: 2;
}
.ant-picker-compact-item[disabled] {
  z-index: 0;
}
.ant-picker-compact-item:not(.ant-picker-compact-first-item):not(.ant-picker-compact-last-item).ant-picker {
  border-radius: 0;
}
.ant-picker-compact-item.ant-picker.ant-picker-compact-first-item:not(.ant-picker-compact-last-item):not(.ant-picker-compact-item-rtl) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-picker-compact-item.ant-picker.ant-picker-compact-last-item:not(.ant-picker-compact-first-item):not(.ant-picker-compact-item-rtl) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-picker-compact-item.ant-picker.ant-picker-compact-item-rtl.ant-picker-compact-first-item:not(.ant-picker-compact-last-item) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-picker-compact-item.ant-picker.ant-picker-compact-item-rtl.ant-picker-compact-last-item:not(.ant-picker-compact-first-item) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.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: #913ef0;
}
.ant-picker-decade-panel,
.ant-picker-year-panel,
.ant-picker-quarter-panel,
.ant-picker-month-panel,
.ant-picker-week-panel,
.ant-picker-date-panel,
.ant-picker-time-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;
  transition: color 0.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: #913ef0;
}
.ant-picker-prev-icon,
.ant-picker-next-icon,
.ant-picker-super-prev-icon,
.ant-picker-super-next-icon {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
}
.ant-picker-prev-icon::before,
.ant-picker-next-icon::before,
.ant-picker-super-prev-icon::before,
.ant-picker-super-next-icon::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 0 solid currentcolor;
  border-width: 1.5px 0 0 1.5px;
  content: '';
}
.ant-picker-super-prev-icon::after,
.ant-picker-super-next-icon::after {
  position: absolute;
  top: 4px;
  left: 4px;
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 0 solid currentcolor;
  border-width: 1.5px 0 0 1.5px;
  content: '';
}
.ant-picker-prev-icon,
.ant-picker-super-prev-icon {
  transform: rotate(-45deg);
}
.ant-picker-next-icon,
.ant-picker-super-next-icon {
  transform: rotate(135deg);
}
.ant-picker-content {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.ant-picker-content th,
.ant-picker-content td {
  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;
  transform: translateY(-50%);
  transition: all 0.3s;
  content: '';
}
.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;
  transition: background 0.3s, border 0.3s;
}
.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 #913ef0;
  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: #f9f0ff;
}
.ant-picker-cell-in-view.ant-picker-cell-selected .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-range-end .ant-picker-cell-inner {
  color: #fff;
  background: #913ef0;
}
.ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-range-start-single)::before,
.ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-range-end-single)::before {
  background: #f9f0ff;
}
.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-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-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-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.ant-picker-cell-range-end-single::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 #c79df7;
  border-bottom: 1px dashed #c79df7;
  transform: translateY(-50%);
  transition: all 0.3s;
  content: '';
}
.ant-picker-cell-range-hover-start::after,
.ant-picker-cell-range-hover-end::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-start.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-start:not(.ant-picker-cell-range-start-single).ant-picker-cell-range-hover-start::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-panel > :not(.ant-picker-date-panel) .ant-picker-cell-in-view.ant-picker-cell-in-range.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 {
  background: #efe4fd;
}
.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-start .ant-picker-cell-inner::after,
.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 {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: #efe4fd;
  transition: all 0.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%;
}
tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover:first-child::after,
tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-end:first-child::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,
.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 {
  left: 6px;
  border-left: 1px dashed #c79df7;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover:last-child::after,
tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::after,
.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 {
  right: 6px;
  border-right: 1px dashed #c79df7;
  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-year-panel .ant-picker-content,
.ant-picker-quarter-panel .ant-picker-content,
.ant-picker-month-panel .ant-picker-content {
  height: 264px;
}
.ant-picker-decade-panel .ant-picker-cell-inner,
.ant-picker-year-panel .ant-picker-cell-inner,
.ant-picker-quarter-panel .ant-picker-cell-inner,
.ant-picker-month-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: 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: black;
}
.ant-picker-today-btn:hover {
  color: #0d0d0d;
}
.ant-picker-today-btn:active {
  color: #000000;
}
.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-year-panel .ant-picker-body,
.ant-picker-quarter-panel .ant-picker-body,
.ant-picker-month-panel .ant-picker-body {
  padding: 0 8px;
}
.ant-picker-year-panel .ant-picker-cell-inner,
.ant-picker-quarter-panel .ant-picker-cell-inner,
.ant-picker-month-panel .ant-picker-cell-inner {
  width: 60px;
}
.ant-picker-year-panel .ant-picker-cell-range-hover-start::after,
.ant-picker-quarter-panel .ant-picker-cell-range-hover-start::after,
.ant-picker-month-panel .ant-picker-cell-range-hover-start::after {
  left: 14px;
  border-left: 1px dashed #c79df7;
  border-radius: 2px 0 0 2px;
}
.ant-picker-panel-rtl .ant-picker-year-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-month-panel .ant-picker-cell-range-hover-start::after {
  right: 14px;
  border-right: 1px dashed #c79df7;
  border-radius: 0 2px 2px 0;
}
.ant-picker-year-panel .ant-picker-cell-range-hover-end::after,
.ant-picker-quarter-panel .ant-picker-cell-range-hover-end::after,
.ant-picker-month-panel .ant-picker-cell-range-hover-end::after {
  right: 14px;
  border-right: 1px dashed #c79df7;
  border-radius: 0 2px 2px 0;
}
.ant-picker-panel-rtl .ant-picker-year-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-month-panel .ant-picker-cell-range-hover-end::after {
  left: 14px;
  border-left: 1px dashed #c79df7;
  border-radius: 2px 0 0 2px;
}
.ant-picker-week-panel .ant-picker-body {
  padding: 8px 12px;
}
.ant-picker-week-panel .ant-picker-cell:hover .ant-picker-cell-inner,
.ant-picker-week-panel .ant-picker-cell-selected .ant-picker-cell-inner,
.ant-picker-week-panel .ant-picker-cell .ant-picker-cell-inner {
  background: transparent !important;
}
.ant-picker-week-panel-row td {
  transition: background 0.3s;
}
.ant-picker-week-panel-row:hover td {
  background: #f5f5f5;
}
.ant-picker-week-panel-row-selected td,
.ant-picker-week-panel-row-selected:hover td {
  background: #913ef0;
}
.ant-picker-week-panel-row-selected td.ant-picker-cell-week,
.ant-picker-week-panel-row-selected:hover td.ant-picker-cell-week {
  color: rgba(255, 255, 255, 0.5);
}
.ant-picker-week-panel-row-selected td.ant-picker-cell-today .ant-picker-cell-inner::before,
.ant-picker-week-panel-row-selected:hover td.ant-picker-cell-today .ant-picker-cell-inner::before {
  border-color: #fff;
}
.ant-picker-week-panel-row-selected td .ant-picker-cell-inner,
.ant-picker-week-panel-row-selected:hover 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 {
  transition: opacity 0.3s;
}
.ant-picker-datetime-panel-active .ant-picker-date-panel,
.ant-picker-datetime-panel-active .ant-picker-time-panel {
  opacity: 0.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;
  transition: background 0.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(249, 240, 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;
  transition: background 0.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: #f9f0ff;
}
.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;
}
/* stylelint-disable selector-type-no-unknown,selector-no-vendor-prefix */
_:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-month-panel .ant-picker-cell,
:root .ant-picker-range-wrapper .ant-picker-month-panel .ant-picker-cell,
_:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-cell,
:root .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 {
  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 {
  transform: rotate(135deg);
}
.ant-picker-panel-rtl .ant-picker-next-icon,
.ant-picker-panel-rtl .ant-picker-super-next-icon {
  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;
  transition: background 0.3s, border 0.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 tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover:not(.ant-picker-cell-selected):first-child::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 .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 {
  right: 6px;
  left: 0;
  border-right: 1px dashed #c79df7;
  border-left: none;
  border-radius: 0 2px 2px 0;
}
.ant-picker-panel-rtl tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover:not(.ant-picker-cell-selected):last-child::after,
.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 {
  right: 0;
  left: 6px;
  border-right: none;
  border-left: 1px dashed #c79df7;
  border-radius: 2px 0 0 2px;
}
.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-range-hover-end:first-child::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 .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 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,
.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 {
  right: 6px;
  left: 6px;
  border-right: 1px dashed #c79df7;
  border-left: 1px dashed #c79df7;
  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-descriptions-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.ant-descriptions-title {
  flex: auto;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.85);
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-descriptions-extra {
  margin-left: auto;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
}
.ant-descriptions-view {
  width: 100%;
  border-radius: 2px;
}
.ant-descriptions-view table {
  width: 100%;
  table-layout: fixed;
}
.ant-descriptions-row > th,
.ant-descriptions-row > td {
  padding-bottom: 16px;
}
.ant-descriptions-row:last-child {
  border-bottom: none;
}
.ant-descriptions-item-label {
  color: rgba(0, 0, 0, 0.85);
  font-weight: normal;
  font-size: 14px;
  line-height: 1.6;
  text-align: start;
}
.ant-descriptions-item-label::after {
  content: ':';
  position: relative;
  top: -0.5px;
  margin: 0 8px 0 2px;
}
.ant-descriptions-item-label.ant-descriptions-item-no-colon::after {
  content: ' ';
}
.ant-descriptions-item-no-label::after {
  margin: 0;
  content: '';
}
.ant-descriptions-item-content {
  display: table-cell;
  flex: 1;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: break-word;
}
.ant-descriptions-item {
  padding-bottom: 0;
  vertical-align: top;
}
.ant-descriptions-item-container {
  display: flex;
}
.ant-descriptions-item-container .ant-descriptions-item-label,
.ant-descriptions-item-container .ant-descriptions-item-content {
  display: inline-flex;
  align-items: baseline;
}
.ant-descriptions-middle .ant-descriptions-row > th,
.ant-descriptions-middle .ant-descriptions-row > td {
  padding-bottom: 12px;
}
.ant-descriptions-small .ant-descriptions-row > th,
.ant-descriptions-small .ant-descriptions-row > td {
  padding-bottom: 8px;
}
.ant-descriptions-bordered .ant-descriptions-view {
  border: 1px solid #f0f0f0;
}
.ant-descriptions-bordered .ant-descriptions-view > table {
  table-layout: auto;
  border-collapse: collapse;
}
.ant-descriptions-bordered .ant-descriptions-item-label,
.ant-descriptions-bordered .ant-descriptions-item-content {
  padding: 16px 24px;
  border-right: 1px solid #f0f0f0;
}
.ant-descriptions-bordered .ant-descriptions-item-label:last-child,
.ant-descriptions-bordered .ant-descriptions-item-content:last-child {
  border-right: none;
}
.ant-descriptions-bordered .ant-descriptions-item-label {
  background-color: #fafafa;
}
.ant-descriptions-bordered .ant-descriptions-item-label::after {
  display: none;
}
.ant-descriptions-bordered .ant-descriptions-row {
  border-bottom: 1px solid #f0f0f0;
}
.ant-descriptions-bordered .ant-descriptions-row:last-child {
  border-bottom: none;
}
.ant-descriptions-bordered.ant-descriptions-middle .ant-descriptions-item-label,
.ant-descriptions-bordered.ant-descriptions-middle .ant-descriptions-item-content {
  padding: 12px 24px;
}
.ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label,
.ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-content {
  padding: 8px 16px;
}
.ant-descriptions-rtl {
  direction: rtl;
}
.ant-descriptions-rtl .ant-descriptions-item-label::after {
  margin: 0 2px 0 8px;
}
.ant-descriptions-rtl.ant-descriptions-bordered .ant-descriptions-item-label,
.ant-descriptions-rtl.ant-descriptions-bordered .ant-descriptions-item-content {
  border-right: none;
  border-left: 1px solid #f0f0f0;
}
.ant-descriptions-rtl.ant-descriptions-bordered .ant-descriptions-item-label:last-child,
.ant-descriptions-rtl.ant-descriptions-bordered .ant-descriptions-item-content:last-child {
  border-left: none;
}
.ant-divider {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.ant-divider-vertical {
  position: relative;
  top: -0.06em;
  display: inline-block;
  height: 0.9em;
  margin: 0 8px;
  vertical-align: middle;
  border-top: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}
.ant-divider-horizontal {
  display: flex;
  clear: both;
  width: 100%;
  min-width: 100%;
  margin: 24px 0;
}
.ant-divider-horizontal.ant-divider-with-text {
  display: flex;
  align-items: center;
  margin: 16px 0;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  text-align: center;
  border-top: 0;
  border-top-color: rgba(0, 0, 0, 0.06);
}
.ant-divider-horizontal.ant-divider-with-text::before,
.ant-divider-horizontal.ant-divider-with-text::after {
  position: relative;
  width: 50%;
  border-top: 1px solid transparent;
  border-top-color: inherit;
  border-bottom: 0;
  transform: translateY(50%);
  content: '';
}
.ant-divider-horizontal.ant-divider-with-text-left::before {
  width: 5%;
}
.ant-divider-horizontal.ant-divider-with-text-left::after {
  width: 95%;
}
.ant-divider-horizontal.ant-divider-with-text-right::before {
  width: 95%;
}
.ant-divider-horizontal.ant-divider-with-text-right::after {
  width: 5%;
}
.ant-divider-inner-text {
  display: inline-block;
  padding: 0 1em;
}
.ant-divider-dashed {
  background: none;
  border-color: rgba(0, 0, 0, 0.06);
  border-style: dashed;
  border-width: 1px 0 0;
}
.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::before,
.ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::after {
  border-style: dashed none none;
}
.ant-divider-vertical.ant-divider-dashed {
  border-width: 0 0 0 1px;
}
.ant-divider-plain.ant-divider-with-text {
  color: rgba(0, 0, 0, 0.85);
  font-weight: normal;
  font-size: 14px;
}
.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::before {
  width: 0;
}
.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::after {
  width: 100%;
}
.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left .ant-divider-inner-text {
  padding-left: 0;
}
.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::before {
  width: 100%;
}
.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::after {
  width: 0;
}
.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right .ant-divider-inner-text {
  padding-right: 0;
}
.ant-divider-rtl {
  direction: rtl;
}
.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::before {
  width: 95%;
}
.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::after {
  width: 5%;
}
.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::before {
  width: 5%;
}
.ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::after {
  width: 95%;
}
.ant-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  pointer-events: none;
}
.ant-drawer-inline {
  position: absolute;
}
.ant-drawer-mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: auto;
}
.ant-drawer-content-wrapper {
  position: absolute;
  z-index: 1000;
  transition: all 0.3s;
}
.ant-drawer-content-wrapper-hidden {
  display: none;
}
.ant-drawer-left > .ant-drawer-content-wrapper {
  top: 0;
  bottom: 0;
  left: 0;
  box-shadow: 6px 0 16px -8px rgba(0, 0, 0, 0.08), 9px 0 28px 0 rgba(0, 0, 0, 0.05), 12px 0 48px 16px rgba(0, 0, 0, 0.03);
}
.ant-drawer-right > .ant-drawer-content-wrapper {
  top: 0;
  right: 0;
  bottom: 0;
  box-shadow: -6px 0 16px -8px rgba(0, 0, 0, 0.08), -9px 0 28px 0 rgba(0, 0, 0, 0.05), -12px 0 48px 16px rgba(0, 0, 0, 0.03);
}
.ant-drawer-top > .ant-drawer-content-wrapper {
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05), 0 12px 48px 16px rgba(0, 0, 0, 0.03);
}
.ant-drawer-bottom > .ant-drawer-content-wrapper {
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: 0 -6px 16px -8px rgba(0, 0, 0, 0.08), 0 -9px 28px 0 rgba(0, 0, 0, 0.05), 0 -12px 48px 16px rgba(0, 0, 0, 0.03);
}
.ant-drawer-content {
  width: 100%;
  height: 100%;
  overflow: auto;
  background: #fff;
  pointer-events: auto;
}
.ant-drawer-wrapper-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.ant-drawer-header {
  display: flex;
  flex: 0;
  align-items: center;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 22px;
  border-bottom: 1px solid #f0f0f0;
}
.ant-drawer-header-title {
  display: flex;
  flex: 1;
  align-items: center;
  min-width: 0;
  min-height: 0;
}
.ant-drawer-extra {
  flex: none;
}
.ant-drawer-close {
  display: inline-block;
  margin-right: 12px;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 700;
  font-size: 16px;
  font-style: normal;
  line-height: 1;
  text-align: center;
  text-transform: none;
  text-decoration: none;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  transition: color 0.3s;
  text-rendering: auto;
}
.ant-drawer-close:focus,
.ant-drawer-close:hover {
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
}
.ant-drawer-title {
  flex: 1;
  margin: 0;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}
.ant-drawer-body {
  flex: 1;
  min-width: 0;
  min-height: 0;
  padding: 24px;
  overflow: auto;
}
.ant-drawer-footer {
  flex-shrink: 0;
  padding: 10px 16px;
  border-top: 1px solid #f0f0f0;
}
.panel-motion-enter-start,
.panel-motion-appear-start,
.panel-motion-leave-start {
  transition: none;
}
.panel-motion-enter-active,
.panel-motion-appear-active,
.panel-motion-leave-active {
  transition: all 0.3s;
}
.ant-drawer-mask-motion-enter-active,
.ant-drawer-mask-motion-appear-active,
.ant-drawer-mask-motion-leave-active {
  transition: all 0.3s;
}
.ant-drawer-mask-motion-enter,
.ant-drawer-mask-motion-appear {
  opacity: 0;
}
.ant-drawer-mask-motion-enter-active,
.ant-drawer-mask-motion-appear-active {
  opacity: 1;
}
.ant-drawer-mask-motion-leave {
  opacity: 1;
}
.ant-drawer-mask-motion-leave-active {
  opacity: 0;
}
.ant-drawer-panel-motion-left-enter-start,
.ant-drawer-panel-motion-left-appear-start,
.ant-drawer-panel-motion-left-leave-start {
  transition: none;
}
.ant-drawer-panel-motion-left-enter-active,
.ant-drawer-panel-motion-left-appear-active,
.ant-drawer-panel-motion-left-leave-active {
  transition: all 0.3s;
}
.ant-drawer-panel-motion-left-enter-start,
.ant-drawer-panel-motion-left-appear-start {
  transform: translateX(-100%) !important;
}
.ant-drawer-panel-motion-left-enter-active,
.ant-drawer-panel-motion-left-appear-active {
  transform: translateX(0);
}
.ant-drawer-panel-motion-left-leave {
  transform: translateX(0);
}
.ant-drawer-panel-motion-left-leave-active {
  transform: translateX(-100%);
}
.ant-drawer-panel-motion-right-enter-start,
.ant-drawer-panel-motion-right-appear-start,
.ant-drawer-panel-motion-right-leave-start {
  transition: none;
}
.ant-drawer-panel-motion-right-enter-active,
.ant-drawer-panel-motion-right-appear-active,
.ant-drawer-panel-motion-right-leave-active {
  transition: all 0.3s;
}
.ant-drawer-panel-motion-right-enter-start,
.ant-drawer-panel-motion-right-appear-start {
  transform: translateX(100%) !important;
}
.ant-drawer-panel-motion-right-enter-active,
.ant-drawer-panel-motion-right-appear-active {
  transform: translateX(0);
}
.ant-drawer-panel-motion-right-leave {
  transform: translateX(0);
}
.ant-drawer-panel-motion-right-leave-active {
  transform: translateX(100%);
}
.ant-drawer-panel-motion-top-enter-start,
.ant-drawer-panel-motion-top-appear-start,
.ant-drawer-panel-motion-top-leave-start {
  transition: none;
}
.ant-drawer-panel-motion-top-enter-active,
.ant-drawer-panel-motion-top-appear-active,
.ant-drawer-panel-motion-top-leave-active {
  transition: all 0.3s;
}
.ant-drawer-panel-motion-top-enter-start,
.ant-drawer-panel-motion-top-appear-start {
  transform: translateY(-100%) !important;
}
.ant-drawer-panel-motion-top-enter-active,
.ant-drawer-panel-motion-top-appear-active {
  transform: translateY(0);
}
.ant-drawer-panel-motion-top-leave {
  transform: translateY(0);
}
.ant-drawer-panel-motion-top-leave-active {
  transform: translateY(-100%);
}
.ant-drawer-panel-motion-bottom-enter-start,
.ant-drawer-panel-motion-bottom-appear-start,
.ant-drawer-panel-motion-bottom-leave-start {
  transition: none;
}
.ant-drawer-panel-motion-bottom-enter-active,
.ant-drawer-panel-motion-bottom-appear-active,
.ant-drawer-panel-motion-bottom-leave-active {
  transition: all 0.3s;
}
.ant-drawer-panel-motion-bottom-enter-start,
.ant-drawer-panel-motion-bottom-appear-start {
  transform: translateY(100%) !important;
}
.ant-drawer-panel-motion-bottom-enter-active,
.ant-drawer-panel-motion-bottom-appear-active {
  transform: translateY(0);
}
.ant-drawer-panel-motion-bottom-leave {
  transform: translateY(0);
}
.ant-drawer-panel-motion-bottom-leave-active {
  transform: translateY(100%);
}
.ant-drawer-rtl {
  direction: rtl;
}
.ant-drawer-rtl .ant-drawer-close {
  margin-right: 0;
  margin-left: 12px;
}
.ant-dropdown-menu-item.ant-dropdown-menu-item-danger {
  color: #E54963;
}
.ant-dropdown-menu-item.ant-dropdown-menu-item-danger:hover {
  color: #fff;
  background-color: #E54963;
}
.ant-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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
  display: block;
}
.ant-dropdown::before {
  position: absolute;
  top: -4px;
  right: 0;
  bottom: -4px;
  left: -7px;
  z-index: -9999;
  opacity: 0.0001;
  content: ' ';
}
.ant-dropdown-wrap {
  position: relative;
}
.ant-dropdown-wrap .ant-btn > .anticon-down {
  font-size: 10px;
}
.ant-dropdown-wrap .anticon-down::before {
  transition: transform 0.2s;
}
.ant-dropdown-wrap-open .anticon-down::before {
  transform: rotate(180deg);
}
.ant-dropdown-hidden,
.ant-dropdown-menu-hidden,
.ant-dropdown-menu-submenu-hidden {
  display: none;
}
.ant-dropdown-show-arrow.ant-dropdown-placement-topLeft,
.ant-dropdown-show-arrow.ant-dropdown-placement-top,
.ant-dropdown-show-arrow.ant-dropdown-placement-topRight {
  padding-bottom: 15.3137085px;
}
.ant-dropdown-show-arrow.ant-dropdown-placement-bottomLeft,
.ant-dropdown-show-arrow.ant-dropdown-placement-bottom,
.ant-dropdown-show-arrow.ant-dropdown-placement-bottomRight {
  padding-top: 15.3137085px;
}
.ant-dropdown-arrow {
  position: absolute;
  z-index: 1;
  display: block;
  width: 11.3137085px;
  height: 11.3137085px;
  border-radius: 0 0 2px;
  pointer-events: none;
}
.ant-dropdown-arrow::before {
  position: absolute;
  top: -11.3137085px;
  left: -11.3137085px;
  width: 33.9411255px;
  height: 33.9411255px;
  background: #fff;
  background-repeat: no-repeat;
  background-position: -10px -10px;
  content: '';
  -webkit-clip-path: inset(33% 33%);
          clip-path: inset(33% 33%);
  -webkit-clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
          clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
}
.ant-dropdown-placement-top > .ant-dropdown-arrow,
.ant-dropdown-placement-topLeft > .ant-dropdown-arrow,
.ant-dropdown-placement-topRight > .ant-dropdown-arrow {
  bottom: 10px;
  box-shadow: 3px 3px 7px -3px rgba(0, 0, 0, 0.1);
  transform: rotate(45deg);
}
.ant-dropdown-placement-top > .ant-dropdown-arrow {
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.ant-dropdown-placement-topLeft > .ant-dropdown-arrow {
  left: 16px;
}
.ant-dropdown-placement-topRight > .ant-dropdown-arrow {
  right: 16px;
}
.ant-dropdown-placement-bottom > .ant-dropdown-arrow,
.ant-dropdown-placement-bottomLeft > .ant-dropdown-arrow,
.ant-dropdown-placement-bottomRight > .ant-dropdown-arrow {
  top: 9.41421356px;
  box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.1);
  transform: rotate(-135deg) translateY(-0.5px);
}
.ant-dropdown-placement-bottom > .ant-dropdown-arrow {
  left: 50%;
  transform: translateX(-50%) rotate(-135deg) translateY(-0.5px);
}
.ant-dropdown-placement-bottomLeft > .ant-dropdown-arrow {
  left: 16px;
}
.ant-dropdown-placement-bottomRight > .ant-dropdown-arrow {
  right: 16px;
}
.ant-dropdown-menu {
  position: relative;
  margin: 0;
  padding: 4px 0;
  text-align: left;
  list-style-type: none;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 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-dropdown-menu-item-group-title {
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.45);
  transition: all 0.3s;
}
.ant-dropdown-menu-submenu-popup {
  position: absolute;
  z-index: 1050;
  background: transparent;
  box-shadow: none;
  transform-origin: 0 0;
}
.ant-dropdown-menu-submenu-popup ul,
.ant-dropdown-menu-submenu-popup li {
  list-style: none;
}
.ant-dropdown-menu-submenu-popup ul {
  margin-right: 0.3em;
  margin-left: 0.3em;
}
.ant-dropdown-menu-item {
  position: relative;
  display: flex;
  align-items: center;
}
.ant-dropdown-menu-item-icon {
  min-width: 12px;
  margin-right: 8px;
  font-size: 11px;
}
.ant-dropdown-menu-title-content {
  flex: auto;
}
.ant-dropdown-menu-title-content > a {
  color: inherit;
  transition: all 0.3s;
}
.ant-dropdown-menu-title-content > a:hover {
  color: inherit;
}
.ant-dropdown-menu-title-content > a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}
.ant-dropdown-menu-item,
.ant-dropdown-menu-submenu-title {
  clear: both;
  margin: 0;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-dropdown-menu-item-selected,
.ant-dropdown-menu-submenu-title-selected {
  color: #913ef0;
  background-color: #f9f0ff;
}
.ant-dropdown-menu-item:hover,
.ant-dropdown-menu-submenu-title:hover,
.ant-dropdown-menu-item.ant-dropdown-menu-item-active,
.ant-dropdown-menu-item.ant-dropdown-menu-submenu-title-active,
.ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-active,
.ant-dropdown-menu-submenu-title.ant-dropdown-menu-submenu-title-active {
  background-color: #f5f5f5;
}
.ant-dropdown-menu-item.ant-dropdown-menu-item-disabled,
.ant-dropdown-menu-item.ant-dropdown-menu-submenu-title-disabled,
.ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled,
.ant-dropdown-menu-submenu-title.ant-dropdown-menu-submenu-title-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-dropdown-menu-item.ant-dropdown-menu-item-disabled:hover,
.ant-dropdown-menu-item.ant-dropdown-menu-submenu-title-disabled:hover,
.ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled:hover,
.ant-dropdown-menu-submenu-title.ant-dropdown-menu-submenu-title-disabled:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #fff;
  cursor: not-allowed;
}
.ant-dropdown-menu-item.ant-dropdown-menu-item-disabled a,
.ant-dropdown-menu-item.ant-dropdown-menu-submenu-title-disabled a,
.ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled a,
.ant-dropdown-menu-submenu-title.ant-dropdown-menu-submenu-title-disabled a {
  pointer-events: none;
}
.ant-dropdown-menu-item-divider,
.ant-dropdown-menu-submenu-title-divider {
  height: 1px;
  margin: 4px 0;
  overflow: hidden;
  line-height: 0;
  background-color: #f0f0f0;
}
.ant-dropdown-menu-item .ant-dropdown-menu-submenu-expand-icon,
.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-expand-icon {
  position: absolute;
  right: 8px;
}
.ant-dropdown-menu-item .ant-dropdown-menu-submenu-expand-icon .ant-dropdown-menu-submenu-arrow-icon,
.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-expand-icon .ant-dropdown-menu-submenu-arrow-icon {
  margin-right: 0 !important;
  color: rgba(0, 0, 0, 0.45);
  font-size: 10px;
  font-style: normal;
}
.ant-dropdown-menu-item-group-list {
  margin: 0 8px;
  padding: 0;
  list-style: none;
}
.ant-dropdown-menu-submenu-title {
  padding-right: 23px;
}
.ant-dropdown-menu-submenu-vertical {
  position: relative;
}
.ant-dropdown-menu-submenu-vertical > .ant-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 100%;
  margin-left: 4px;
  transform-origin: 0 0;
}
.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title,
.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {
  color: rgba(0, 0, 0, 0.25);
  background-color: #fff;
  cursor: not-allowed;
}
.ant-dropdown-menu-submenu-selected .ant-dropdown-menu-submenu-title {
  color: #913ef0;
}
.ant-dropdown.ant-slide-down-enter.ant-slide-down-enter-active.ant-dropdown-placement-bottomLeft,
.ant-dropdown.ant-slide-down-appear.ant-slide-down-appear-active.ant-dropdown-placement-bottomLeft,
.ant-dropdown.ant-slide-down-enter.ant-slide-down-enter-active.ant-dropdown-placement-bottom,
.ant-dropdown.ant-slide-down-appear.ant-slide-down-appear-active.ant-dropdown-placement-bottom,
.ant-dropdown.ant-slide-down-enter.ant-slide-down-enter-active.ant-dropdown-placement-bottomRight,
.ant-dropdown.ant-slide-down-appear.ant-slide-down-appear-active.ant-dropdown-placement-bottomRight {
  animation-name: antSlideUpIn;
}
.ant-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-dropdown-placement-topLeft,
.ant-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-dropdown-placement-topLeft,
.ant-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-dropdown-placement-top,
.ant-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-dropdown-placement-top,
.ant-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-dropdown-placement-topRight,
.ant-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-dropdown-placement-topRight {
  animation-name: antSlideDownIn;
}
.ant-dropdown.ant-slide-down-leave.ant-slide-down-leave-active.ant-dropdown-placement-bottomLeft,
.ant-dropdown.ant-slide-down-leave.ant-slide-down-leave-active.ant-dropdown-placement-bottom,
.ant-dropdown.ant-slide-down-leave.ant-slide-down-leave-active.ant-dropdown-placement-bottomRight {
  animation-name: antSlideUpOut;
}
.ant-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-dropdown-placement-topLeft,
.ant-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-dropdown-placement-top,
.ant-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-dropdown-placement-topRight {
  animation-name: antSlideDownOut;
}
.ant-dropdown-trigger > .anticon.anticon-down,
.ant-dropdown-link > .anticon.anticon-down,
.ant-dropdown-button > .anticon.anticon-down {
  font-size: 10px;
  vertical-align: baseline;
}
.ant-dropdown-button {
  white-space: nowrap;
}
.ant-dropdown-button.ant-btn-group > .ant-btn-loading,
.ant-dropdown-button.ant-btn-group > .ant-btn-loading + .ant-btn {
  cursor: default;
  pointer-events: none;
}
.ant-dropdown-button.ant-btn-group > .ant-btn-loading + .ant-btn::before {
  display: block;
}
.ant-dropdown-button.ant-btn-group > .ant-btn:last-child:not(:first-child):not(.ant-btn-icon-only) {
  padding-right: 8px;
  padding-left: 8px;
}
.ant-dropdown-menu-dark,
.ant-dropdown-menu-dark .ant-dropdown-menu {
  background: #001529;
}
.ant-dropdown-menu-dark .ant-dropdown-menu-item,
.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > a,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > .anticon + span > a {
  color: rgba(255, 255, 255, 0.65);
}
.ant-dropdown-menu-dark .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow::after,
.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow::after,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > a .ant-dropdown-menu-submenu-arrow::after,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > .anticon + span > a .ant-dropdown-menu-submenu-arrow::after {
  color: rgba(255, 255, 255, 0.65);
}
.ant-dropdown-menu-dark .ant-dropdown-menu-item:hover,
.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title:hover,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > a:hover,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > .anticon + span > a:hover {
  color: #fff;
  background: transparent;
}
.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected,
.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected:hover,
.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected > a {
  color: #fff;
  background: #913ef0;
}
.ant-dropdown-rtl {
  direction: rtl;
}
.ant-dropdown-rtl.ant-dropdown::before {
  right: -7px;
  left: 0;
}
.ant-dropdown-menu.ant-dropdown-menu-rtl {
  direction: rtl;
  text-align: right;
}
.ant-dropdown-rtl .ant-dropdown-menu-item-group-title,
.ant-dropdown-menu-submenu-rtl .ant-dropdown-menu-item-group-title {
  direction: rtl;
  text-align: right;
}
.ant-dropdown-menu-submenu-popup.ant-dropdown-menu-submenu-rtl {
  transform-origin: 100% 0;
}
.ant-dropdown-rtl .ant-dropdown-menu-submenu-popup ul,
.ant-dropdown-rtl .ant-dropdown-menu-submenu-popup li {
  text-align: right;
}
.ant-dropdown-rtl .ant-dropdown-menu-item,
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title {
  text-align: right;
}
.ant-dropdown-rtl .ant-dropdown-menu-item > .anticon:first-child,
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title > .anticon:first-child,
.ant-dropdown-rtl .ant-dropdown-menu-item > span > .anticon:first-child,
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title > span > .anticon:first-child {
  margin-right: 0;
  margin-left: 8px;
}
.ant-dropdown-rtl .ant-dropdown-menu-item .ant-dropdown-menu-submenu-expand-icon,
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-expand-icon {
  right: auto;
  left: 8px;
}
.ant-dropdown-rtl .ant-dropdown-menu-item .ant-dropdown-menu-submenu-expand-icon .ant-dropdown-menu-submenu-arrow-icon,
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-expand-icon .ant-dropdown-menu-submenu-arrow-icon {
  margin-left: 0 !important;
  transform: scaleX(-1);
}
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title {
  padding-right: 12px;
  padding-left: 23px;
}
.ant-dropdown-rtl .ant-dropdown-menu-submenu-vertical > .ant-dropdown-menu {
  right: 100%;
  left: 0;
  margin-right: 4px;
  margin-left: 0;
}
.ant-empty {
  margin: 0 8px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
.ant-empty-image {
  height: 100px;
  margin-bottom: 8px;
}
.ant-empty-image img {
  height: 100%;
}
.ant-empty-image svg {
  height: 100%;
  margin: auto;
}
.ant-empty-footer {
  margin-top: 16px;
}
.ant-empty-normal {
  margin: 32px 0;
  color: rgba(0, 0, 0, 0.25);
}
.ant-empty-normal .ant-empty-image {
  height: 40px;
}
.ant-empty-small {
  margin: 8px 0;
  color: rgba(0, 0, 0, 0.25);
}
.ant-empty-small .ant-empty-image {
  height: 35px;
}
.ant-empty-img-default-ellipse {
  fill: #f5f5f5;
  fill-opacity: 0.8;
}
.ant-empty-img-default-path-1 {
  fill: #aeb8c2;
}
.ant-empty-img-default-path-2 {
  fill: url('#linearGradient-1');
}
.ant-empty-img-default-path-3 {
  fill: #f5f5f7;
}
.ant-empty-img-default-path-4 {
  fill: #dce0e6;
}
.ant-empty-img-default-path-5 {
  fill: #dce0e6;
}
.ant-empty-img-default-g {
  fill: #fff;
}
.ant-empty-img-simple-ellipse {
  fill: #f5f5f5;
}
.ant-empty-img-simple-g {
  stroke: #d9d9d9;
}
.ant-empty-img-simple-path {
  fill: #fafafa;
}
.ant-empty-rtl {
  direction: rtl;
}
.ant-form-item .ant-input-number + .ant-form-text {
  margin-left: 8px;
}
.ant-form-inline {
  display: flex;
  flex-wrap: wrap;
}
.ant-form-inline .ant-form-item {
  flex: none;
  flex-wrap: nowrap;
  margin-right: 16px;
  margin-bottom: 0;
}
.ant-form-inline .ant-form-item-with-help {
  margin-bottom: 24px;
}
.ant-form-inline .ant-form-item > .ant-form-item-label,
.ant-form-inline .ant-form-item > .ant-form-item-control {
  display: inline-block;
  vertical-align: top;
}
.ant-form-inline .ant-form-item > .ant-form-item-label {
  flex: none;
}
.ant-form-inline .ant-form-item .ant-form-text {
  display: inline-block;
}
.ant-form-inline .ant-form-item .ant-form-item-has-feedback {
  display: inline-block;
}
.ant-form-horizontal .ant-form-item-label {
  flex-grow: 0;
}
.ant-form-horizontal .ant-form-item-control {
  flex: 1 1 0;
  min-width: 0;
}
.ant-form-horizontal .ant-form-item-label[class$='-24'] + .ant-form-item-control,
.ant-form-horizontal .ant-form-item-label[class*='-24 '] + .ant-form-item-control {
  min-width: unset;
}
.ant-form-vertical .ant-form-item-row {
  flex-direction: column;
}
.ant-form-vertical .ant-form-item-label > label {
  height: auto;
}
.ant-form-vertical .ant-form-item .ant-form-item-control {
  width: 100%;
}
.ant-form-vertical .ant-form-item-label,
.ant-col-24.ant-form-item-label,
.ant-col-xl-24.ant-form-item-label {
  padding: 0 0 8px;
  line-height: 1.6;
  white-space: initial;
  text-align: left;
}
.ant-form-vertical .ant-form-item-label > label,
.ant-col-24.ant-form-item-label > label,
.ant-col-xl-24.ant-form-item-label > label {
  margin: 0;
}
.ant-form-vertical .ant-form-item-label > label::after,
.ant-col-24.ant-form-item-label > label::after,
.ant-col-xl-24.ant-form-item-label > label::after {
  display: none;
}
.ant-form-rtl.ant-form-vertical .ant-form-item-label,
.ant-form-rtl.ant-col-24.ant-form-item-label,
.ant-form-rtl.ant-col-xl-24.ant-form-item-label {
  text-align: right;
}
@media (max-width: 575px) {
  .ant-form-item .ant-form-item-label {
    padding: 0 0 8px;
    line-height: 1.6;
    white-space: initial;
    text-align: left;
  }
  .ant-form-item .ant-form-item-label > label {
    margin: 0;
  }
  .ant-form-item .ant-form-item-label > label::after {
    display: none;
  }
  .ant-form-rtl.ant-form-item .ant-form-item-label {
    text-align: right;
  }
  .ant-form .ant-form-item {
    flex-wrap: wrap;
  }
  .ant-form .ant-form-item .ant-form-item-label,
  .ant-form .ant-form-item .ant-form-item-control {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ant-col-xs-24.ant-form-item-label {
    padding: 0 0 8px;
    line-height: 1.6;
    white-space: initial;
    text-align: left;
  }
  .ant-col-xs-24.ant-form-item-label > label {
    margin: 0;
  }
  .ant-col-xs-24.ant-form-item-label > label::after {
    display: none;
  }
  .ant-form-rtl.ant-col-xs-24.ant-form-item-label {
    text-align: right;
  }
}
@media (max-width: 767px) {
  .ant-col-sm-24.ant-form-item-label {
    padding: 0 0 8px;
    line-height: 1.6;
    white-space: initial;
    text-align: left;
  }
  .ant-col-sm-24.ant-form-item-label > label {
    margin: 0;
  }
  .ant-col-sm-24.ant-form-item-label > label::after {
    display: none;
  }
  .ant-form-rtl.ant-col-sm-24.ant-form-item-label {
    text-align: right;
  }
}
@media (max-width: 991px) {
  .ant-col-md-24.ant-form-item-label {
    padding: 0 0 8px;
    line-height: 1.6;
    white-space: initial;
    text-align: left;
  }
  .ant-col-md-24.ant-form-item-label > label {
    margin: 0;
  }
  .ant-col-md-24.ant-form-item-label > label::after {
    display: none;
  }
  .ant-form-rtl.ant-col-md-24.ant-form-item-label {
    text-align: right;
  }
}
@media (max-width: 1199px) {
  .ant-col-lg-24.ant-form-item-label {
    padding: 0 0 8px;
    line-height: 1.6;
    white-space: initial;
    text-align: left;
  }
  .ant-col-lg-24.ant-form-item-label > label {
    margin: 0;
  }
  .ant-col-lg-24.ant-form-item-label > label::after {
    display: none;
  }
  .ant-form-rtl.ant-col-lg-24.ant-form-item-label {
    text-align: right;
  }
}
@media (max-width: 1599px) {
  .ant-col-xl-24.ant-form-item-label {
    padding: 0 0 8px;
    line-height: 1.6;
    white-space: initial;
    text-align: left;
  }
  .ant-col-xl-24.ant-form-item-label > label {
    margin: 0;
  }
  .ant-col-xl-24.ant-form-item-label > label::after {
    display: none;
  }
  .ant-form-rtl.ant-col-xl-24.ant-form-item-label {
    text-align: right;
  }
}
.ant-form-item {
  /* Some non-status related component style is in `components.less` */
  /* To support leave along ErrorList. We add additional className to handle explain style */
}
.ant-form-item-explain-error {
  color: #E54963;
}
.ant-form-item-explain-warning {
  color: #FFB946;
}
.ant-form-item-has-feedback .ant-switch {
  margin: 2px 0 4px;
}
.ant-form-item-has-warning .ant-form-item-split {
  color: #FFB946;
}
.ant-form-item-has-error .ant-form-item-split {
  color: #E54963;
}
.ant-form {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
}
.ant-form legend {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  color: rgba(0, 0, 0, 0.45);
  font-size: 16px;
  line-height: inherit;
  border: 0;
  border-bottom: 1px solid #d9d9d9;
}
.ant-form label {
  font-size: 14px;
}
.ant-form input[type='search'] {
  box-sizing: border-box;
}
.ant-form input[type='radio'],
.ant-form input[type='checkbox'] {
  line-height: normal;
}
.ant-form input[type='file'] {
  display: block;
}
.ant-form input[type='range'] {
  display: block;
  width: 100%;
}
.ant-form select[multiple],
.ant-form select[size] {
  height: auto;
}
.ant-form input[type='file']:focus,
.ant-form input[type='radio']:focus,
.ant-form input[type='checkbox']:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.ant-form output {
  display: block;
  padding-top: 15px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 1.6;
}
.ant-form .ant-form-text {
  display: inline-block;
  padding-right: 8px;
}
.ant-form-small .ant-form-item-label > label {
  height: 24px;
}
.ant-form-small .ant-form-item-control-input {
  min-height: 24px;
}
.ant-form-large .ant-form-item-label > label {
  height: 40px;
}
.ant-form-large .ant-form-item-control-input {
  min-height: 40px;
}
.ant-form-item {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  margin-bottom: 24px;
  vertical-align: top;
}
.ant-form-item-with-help {
  transition: none;
}
.ant-form-item-hidden,
.ant-form-item-hidden.ant-row {
  display: none;
}
.ant-form-item-label {
  display: inline-block;
  flex-grow: 0;
  overflow: hidden;
  white-space: nowrap;
  text-align: right;
  vertical-align: middle;
}
.ant-form-item-label-left {
  text-align: left;
}
.ant-form-item-label-wrap {
  overflow: unset;
  line-height: 1.35em;
  white-space: unset;
}
.ant-form-item-label > label {
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  height: 32px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
}
.ant-form-item-label > label > .anticon {
  font-size: 14px;
  vertical-align: top;
}
.ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before {
  display: inline-block;
  margin-right: 4px;
  color: #E54963;
  font-size: 14px;
  font-family: SimSun, sans-serif;
  line-height: 1;
  content: '*';
}
.ant-form-hide-required-mark .ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before {
  display: none;
}
.ant-form-item-label > label .ant-form-item-optional {
  display: inline-block;
  margin-left: 4px;
  color: rgba(0, 0, 0, 0.45);
}
.ant-form-hide-required-mark .ant-form-item-label > label .ant-form-item-optional {
  display: none;
}
.ant-form-item-label > label .ant-form-item-tooltip {
  color: rgba(0, 0, 0, 0.45);
  cursor: help;
  writing-mode: horizontal-tb;
  margin-inline-start: 4px;
}
.ant-form-item-label > label::after {
  content: ':';
  position: relative;
  top: -0.5px;
  margin: 0 8px 0 2px;
}
.ant-form-item-label > label.ant-form-item-no-colon::after {
  content: ' ';
}
.ant-form-item-control {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.ant-form-item-control:first-child:not([class^='ant-col-']):not([class*=' ant-col-']) {
  width: 100%;
}
.ant-form-item-control-input {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 32px;
}
.ant-form-item-control-input-content {
  flex: auto;
  max-width: 100%;
}
.ant-form-item-explain,
.ant-form-item-extra {
  clear: both;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ant-form-item-explain-connected {
  width: 100%;
}
.ant-form-item-extra {
  min-height: 24px;
}
.ant-form-item-with-help .ant-form-item-explain {
  height: auto;
  opacity: 1;
}
.ant-form-item-feedback-icon {
  font-size: 14px;
  text-align: center;
  visibility: visible;
  animation: zoomIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  pointer-events: none;
}
.ant-form-item-feedback-icon-success {
  color: #5ae399;
}
.ant-form-item-feedback-icon-error {
  color: #E54963;
}
.ant-form-item-feedback-icon-warning {
  color: #FFB946;
}
.ant-form-item-feedback-icon-validating {
  color: #913ef0;
}
.ant-show-help {
  transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-show-help-appear,
.ant-show-help-enter {
  opacity: 0;
}
.ant-show-help-appear-active,
.ant-show-help-enter-active {
  opacity: 1;
}
.ant-show-help-leave {
  opacity: 1;
}
.ant-show-help-leave-active {
  opacity: 0;
}
.ant-show-help-item {
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}
.ant-show-help-item-appear,
.ant-show-help-item-enter {
  transform: translateY(-5px);
  opacity: 0;
}
.ant-show-help-item-appear-active,
.ant-show-help-item-enter-active {
  transform: translateY(0);
  opacity: 1;
}
.ant-show-help-item-leave {
  transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}
.ant-show-help-item-leave-active {
  transform: translateY(-5px);
}
@keyframes diffZoomIn1 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes diffZoomIn2 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes diffZoomIn3 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.ant-form-rtl {
  direction: rtl;
}
.ant-form-rtl .ant-form-item-label {
  text-align: left;
}
.ant-form-rtl .ant-form-item-label > label.ant-form-item-required::before {
  margin-right: 0;
  margin-left: 4px;
}
.ant-form-rtl .ant-form-item-label > label::after {
  margin: 0 2px 0 8px;
}
.ant-form-rtl .ant-form-item-label > label .ant-form-item-optional {
  margin-right: 4px;
  margin-left: 0;
}
.ant-col-rtl .ant-form-item-control:first-child {
  width: 100%;
}
.ant-form-rtl .ant-form-item-has-feedback .ant-input {
  padding-right: 11px;
  padding-left: 24px;
}
.ant-form-rtl .ant-form-item-has-feedback .ant-input-affix-wrapper .ant-input-suffix {
  padding-right: 11px;
  padding-left: 18px;
}
.ant-form-rtl .ant-form-item-has-feedback .ant-input-affix-wrapper .ant-input {
  padding: 0;
}
.ant-form-rtl .ant-form-item-has-feedback .ant-input-number-affix-wrapper .ant-input-number {
  padding: 0;
}
.ant-form-rtl .ant-form-item-has-feedback .ant-input-search:not(.ant-input-search-enter-button) .ant-input-suffix {
  right: auto;
  left: 28px;
}
.ant-form-rtl .ant-form-item-has-feedback .ant-input-number {
  padding-left: 18px;
}
.ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-arrow,
.ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-clear,
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-arrow,
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-clear,
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-arrow,
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-clear {
  right: auto;
  left: 32px;
}
.ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-selection-selected-value,
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection-selected-value,
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-selection-selected-value {
  padding-right: 0;
  padding-left: 42px;
}
.ant-form-rtl .ant-form-item-has-feedback .ant-cascader-picker-arrow {
  margin-right: 0;
  margin-left: 19px;
}
.ant-form-rtl .ant-form-item-has-feedback .ant-cascader-picker-clear {
  right: auto;
  left: 32px;
}
.ant-form-rtl .ant-form-item-has-feedback .ant-picker {
  padding-right: 11px;
  padding-left: 29.2px;
}
.ant-form-rtl .ant-form-item-has-feedback .ant-picker-large {
  padding-right: 11px;
  padding-left: 29.2px;
}
.ant-form-rtl .ant-form-item-has-feedback .ant-picker-small {
  padding-right: 7px;
  padding-left: 25.2px;
}
.ant-form-rtl .ant-form-item-has-feedback.ant-form-item-has-success .ant-form-item-children-icon,
.ant-form-rtl .ant-form-item-has-feedback.ant-form-item-has-warning .ant-form-item-children-icon,
.ant-form-rtl .ant-form-item-has-feedback.ant-form-item-has-error .ant-form-item-children-icon,
.ant-form-rtl .ant-form-item-has-feedback.ant-form-item-is-validating .ant-form-item-children-icon {
  right: auto;
  left: 0;
}
.ant-form-rtl.ant-form-inline .ant-form-item {
  margin-right: 0;
  margin-left: 16px;
}
.ant-row {
  display: flex;
  flex-flow: row wrap;
  min-width: 0;
}
.ant-row::before,
.ant-row::after {
  display: flex;
}
.ant-row-no-wrap {
  flex-wrap: nowrap;
}
.ant-row-start {
  justify-content: flex-start;
}
.ant-row-center {
  justify-content: center;
}
.ant-row-end {
  justify-content: flex-end;
}
.ant-row-space-between {
  justify-content: space-between;
}
.ant-row-space-around {
  justify-content: space-around;
}
.ant-row-space-evenly {
  justify-content: space-evenly;
}
.ant-row-top {
  align-items: flex-start;
}
.ant-row-middle {
  align-items: center;
}
.ant-row-bottom {
  align-items: flex-end;
}
.ant-col {
  position: relative;
  max-width: 100%;
  min-height: 1px;
}
.ant-col-24 {
  display: block;
  flex: 0 0 100%;
  max-width: 100%;
}
.ant-col-push-24 {
  left: 100%;
}
.ant-col-pull-24 {
  right: 100%;
}
.ant-col-offset-24 {
  margin-left: 100%;
}
.ant-col-order-24 {
  order: 24;
}
.ant-col-23 {
  display: block;
  flex: 0 0 95.83333333%;
  max-width: 95.83333333%;
}
.ant-col-push-23 {
  left: 95.83333333%;
}
.ant-col-pull-23 {
  right: 95.83333333%;
}
.ant-col-offset-23 {
  margin-left: 95.83333333%;
}
.ant-col-order-23 {
  order: 23;
}
.ant-col-22 {
  display: block;
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}
.ant-col-push-22 {
  left: 91.66666667%;
}
.ant-col-pull-22 {
  right: 91.66666667%;
}
.ant-col-offset-22 {
  margin-left: 91.66666667%;
}
.ant-col-order-22 {
  order: 22;
}
.ant-col-21 {
  display: block;
  flex: 0 0 87.5%;
  max-width: 87.5%;
}
.ant-col-push-21 {
  left: 87.5%;
}
.ant-col-pull-21 {
  right: 87.5%;
}
.ant-col-offset-21 {
  margin-left: 87.5%;
}
.ant-col-order-21 {
  order: 21;
}
.ant-col-20 {
  display: block;
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}
.ant-col-push-20 {
  left: 83.33333333%;
}
.ant-col-pull-20 {
  right: 83.33333333%;
}
.ant-col-offset-20 {
  margin-left: 83.33333333%;
}
.ant-col-order-20 {
  order: 20;
}
.ant-col-19 {
  display: block;
  flex: 0 0 79.16666667%;
  max-width: 79.16666667%;
}
.ant-col-push-19 {
  left: 79.16666667%;
}
.ant-col-pull-19 {
  right: 79.16666667%;
}
.ant-col-offset-19 {
  margin-left: 79.16666667%;
}
.ant-col-order-19 {
  order: 19;
}
.ant-col-18 {
  display: block;
  flex: 0 0 75%;
  max-width: 75%;
}
.ant-col-push-18 {
  left: 75%;
}
.ant-col-pull-18 {
  right: 75%;
}
.ant-col-offset-18 {
  margin-left: 75%;
}
.ant-col-order-18 {
  order: 18;
}
.ant-col-17 {
  display: block;
  flex: 0 0 70.83333333%;
  max-width: 70.83333333%;
}
.ant-col-push-17 {
  left: 70.83333333%;
}
.ant-col-pull-17 {
  right: 70.83333333%;
}
.ant-col-offset-17 {
  margin-left: 70.83333333%;
}
.ant-col-order-17 {
  order: 17;
}
.ant-col-16 {
  display: block;
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}
.ant-col-push-16 {
  left: 66.66666667%;
}
.ant-col-pull-16 {
  right: 66.66666667%;
}
.ant-col-offset-16 {
  margin-left: 66.66666667%;
}
.ant-col-order-16 {
  order: 16;
}
.ant-col-15 {
  display: block;
  flex: 0 0 62.5%;
  max-width: 62.5%;
}
.ant-col-push-15 {
  left: 62.5%;
}
.ant-col-pull-15 {
  right: 62.5%;
}
.ant-col-offset-15 {
  margin-left: 62.5%;
}
.ant-col-order-15 {
  order: 15;
}
.ant-col-14 {
  display: block;
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}
.ant-col-push-14 {
  left: 58.33333333%;
}
.ant-col-pull-14 {
  right: 58.33333333%;
}
.ant-col-offset-14 {
  margin-left: 58.33333333%;
}
.ant-col-order-14 {
  order: 14;
}
.ant-col-13 {
  display: block;
  flex: 0 0 54.16666667%;
  max-width: 54.16666667%;
}
.ant-col-push-13 {
  left: 54.16666667%;
}
.ant-col-pull-13 {
  right: 54.16666667%;
}
.ant-col-offset-13 {
  margin-left: 54.16666667%;
}
.ant-col-order-13 {
  order: 13;
}
.ant-col-12 {
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
}
.ant-col-push-12 {
  left: 50%;
}
.ant-col-pull-12 {
  right: 50%;
}
.ant-col-offset-12 {
  margin-left: 50%;
}
.ant-col-order-12 {
  order: 12;
}
.ant-col-11 {
  display: block;
  flex: 0 0 45.83333333%;
  max-width: 45.83333333%;
}
.ant-col-push-11 {
  left: 45.83333333%;
}
.ant-col-pull-11 {
  right: 45.83333333%;
}
.ant-col-offset-11 {
  margin-left: 45.83333333%;
}
.ant-col-order-11 {
  order: 11;
}
.ant-col-10 {
  display: block;
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}
.ant-col-push-10 {
  left: 41.66666667%;
}
.ant-col-pull-10 {
  right: 41.66666667%;
}
.ant-col-offset-10 {
  margin-left: 41.66666667%;
}
.ant-col-order-10 {
  order: 10;
}
.ant-col-9 {
  display: block;
  flex: 0 0 37.5%;
  max-width: 37.5%;
}
.ant-col-push-9 {
  left: 37.5%;
}
.ant-col-pull-9 {
  right: 37.5%;
}
.ant-col-offset-9 {
  margin-left: 37.5%;
}
.ant-col-order-9 {
  order: 9;
}
.ant-col-8 {
  display: block;
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}
.ant-col-push-8 {
  left: 33.33333333%;
}
.ant-col-pull-8 {
  right: 33.33333333%;
}
.ant-col-offset-8 {
  margin-left: 33.33333333%;
}
.ant-col-order-8 {
  order: 8;
}
.ant-col-7 {
  display: block;
  flex: 0 0 29.16666667%;
  max-width: 29.16666667%;
}
.ant-col-push-7 {
  left: 29.16666667%;
}
.ant-col-pull-7 {
  right: 29.16666667%;
}
.ant-col-offset-7 {
  margin-left: 29.16666667%;
}
.ant-col-order-7 {
  order: 7;
}
.ant-col-6 {
  display: block;
  flex: 0 0 25%;
  max-width: 25%;
}
.ant-col-push-6 {
  left: 25%;
}
.ant-col-pull-6 {
  right: 25%;
}
.ant-col-offset-6 {
  margin-left: 25%;
}
.ant-col-order-6 {
  order: 6;
}
.ant-col-5 {
  display: block;
  flex: 0 0 20.83333333%;
  max-width: 20.83333333%;
}
.ant-col-push-5 {
  left: 20.83333333%;
}
.ant-col-pull-5 {
  right: 20.83333333%;
}
.ant-col-offset-5 {
  margin-left: 20.83333333%;
}
.ant-col-order-5 {
  order: 5;
}
.ant-col-4 {
  display: block;
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}
.ant-col-push-4 {
  left: 16.66666667%;
}
.ant-col-pull-4 {
  right: 16.66666667%;
}
.ant-col-offset-4 {
  margin-left: 16.66666667%;
}
.ant-col-order-4 {
  order: 4;
}
.ant-col-3 {
  display: block;
  flex: 0 0 12.5%;
  max-width: 12.5%;
}
.ant-col-push-3 {
  left: 12.5%;
}
.ant-col-pull-3 {
  right: 12.5%;
}
.ant-col-offset-3 {
  margin-left: 12.5%;
}
.ant-col-order-3 {
  order: 3;
}
.ant-col-2 {
  display: block;
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}
.ant-col-push-2 {
  left: 8.33333333%;
}
.ant-col-pull-2 {
  right: 8.33333333%;
}
.ant-col-offset-2 {
  margin-left: 8.33333333%;
}
.ant-col-order-2 {
  order: 2;
}
.ant-col-1 {
  display: block;
  flex: 0 0 4.16666667%;
  max-width: 4.16666667%;
}
.ant-col-push-1 {
  left: 4.16666667%;
}
.ant-col-pull-1 {
  right: 4.16666667%;
}
.ant-col-offset-1 {
  margin-left: 4.16666667%;
}
.ant-col-order-1 {
  order: 1;
}
.ant-col-0 {
  display: none;
}
.ant-col-push-0 {
  left: auto;
}
.ant-col-pull-0 {
  right: auto;
}
.ant-col-push-0 {
  left: auto;
}
.ant-col-pull-0 {
  right: auto;
}
.ant-col-offset-0 {
  margin-left: 0;
}
.ant-col-order-0 {
  order: 0;
}
.ant-col-push-0.ant-col-rtl {
  right: auto;
}
.ant-col-pull-0.ant-col-rtl {
  left: auto;
}
.ant-col-push-0.ant-col-rtl {
  right: auto;
}
.ant-col-pull-0.ant-col-rtl {
  left: auto;
}
.ant-col-offset-0.ant-col-rtl {
  margin-right: 0;
}
.ant-col-push-1.ant-col-rtl {
  right: 4.16666667%;
  left: auto;
}
.ant-col-pull-1.ant-col-rtl {
  right: auto;
  left: 4.16666667%;
}
.ant-col-offset-1.ant-col-rtl {
  margin-right: 4.16666667%;
  margin-left: 0;
}
.ant-col-push-2.ant-col-rtl {
  right: 8.33333333%;
  left: auto;
}
.ant-col-pull-2.ant-col-rtl {
  right: auto;
  left: 8.33333333%;
}
.ant-col-offset-2.ant-col-rtl {
  margin-right: 8.33333333%;
  margin-left: 0;
}
.ant-col-push-3.ant-col-rtl {
  right: 12.5%;
  left: auto;
}
.ant-col-pull-3.ant-col-rtl {
  right: auto;
  left: 12.5%;
}
.ant-col-offset-3.ant-col-rtl {
  margin-right: 12.5%;
  margin-left: 0;
}
.ant-col-push-4.ant-col-rtl {
  right: 16.66666667%;
  left: auto;
}
.ant-col-pull-4.ant-col-rtl {
  right: auto;
  left: 16.66666667%;
}
.ant-col-offset-4.ant-col-rtl {
  margin-right: 16.66666667%;
  margin-left: 0;
}
.ant-col-push-5.ant-col-rtl {
  right: 20.83333333%;
  left: auto;
}
.ant-col-pull-5.ant-col-rtl {
  right: auto;
  left: 20.83333333%;
}
.ant-col-offset-5.ant-col-rtl {
  margin-right: 20.83333333%;
  margin-left: 0;
}
.ant-col-push-6.ant-col-rtl {
  right: 25%;
  left: auto;
}
.ant-col-pull-6.ant-col-rtl {
  right: auto;
  left: 25%;
}
.ant-col-offset-6.ant-col-rtl {
  margin-right: 25%;
  margin-left: 0;
}
.ant-col-push-7.ant-col-rtl {
  right: 29.16666667%;
  left: auto;
}
.ant-col-pull-7.ant-col-rtl {
  right: auto;
  left: 29.16666667%;
}
.ant-col-offset-7.ant-col-rtl {
  margin-right: 29.16666667%;
  margin-left: 0;
}
.ant-col-push-8.ant-col-rtl {
  right: 33.33333333%;
  left: auto;
}
.ant-col-pull-8.ant-col-rtl {
  right: auto;
  left: 33.33333333%;
}
.ant-col-offset-8.ant-col-rtl {
  margin-right: 33.33333333%;
  margin-left: 0;
}
.ant-col-push-9.ant-col-rtl {
  right: 37.5%;
  left: auto;
}
.ant-col-pull-9.ant-col-rtl {
  right: auto;
  left: 37.5%;
}
.ant-col-offset-9.ant-col-rtl {
  margin-right: 37.5%;
  margin-left: 0;
}
.ant-col-push-10.ant-col-rtl {
  right: 41.66666667%;
  left: auto;
}
.ant-col-pull-10.ant-col-rtl {
  right: auto;
  left: 41.66666667%;
}
.ant-col-offset-10.ant-col-rtl {
  margin-right: 41.66666667%;
  margin-left: 0;
}
.ant-col-push-11.ant-col-rtl {
  right: 45.83333333%;
  left: auto;
}
.ant-col-pull-11.ant-col-rtl {
  right: auto;
  left: 45.83333333%;
}
.ant-col-offset-11.ant-col-rtl {
  margin-right: 45.83333333%;
  margin-left: 0;
}
.ant-col-push-12.ant-col-rtl {
  right: 50%;
  left: auto;
}
.ant-col-pull-12.ant-col-rtl {
  right: auto;
  left: 50%;
}
.ant-col-offset-12.ant-col-rtl {
  margin-right: 50%;
  margin-left: 0;
}
.ant-col-push-13.ant-col-rtl {
  right: 54.16666667%;
  left: auto;
}
.ant-col-pull-13.ant-col-rtl {
  right: auto;
  left: 54.16666667%;
}
.ant-col-offset-13.ant-col-rtl {
  margin-right: 54.16666667%;
  margin-left: 0;
}
.ant-col-push-14.ant-col-rtl {
  right: 58.33333333%;
  left: auto;
}
.ant-col-pull-14.ant-col-rtl {
  right: auto;
  left: 58.33333333%;
}
.ant-col-offset-14.ant-col-rtl {
  margin-right: 58.33333333%;
  margin-left: 0;
}
.ant-col-push-15.ant-col-rtl {
  right: 62.5%;
  left: auto;
}
.ant-col-pull-15.ant-col-rtl {
  right: auto;
  left: 62.5%;
}
.ant-col-offset-15.ant-col-rtl {
  margin-right: 62.5%;
  margin-left: 0;
}
.ant-col-push-16.ant-col-rtl {
  right: 66.66666667%;
  left: auto;
}
.ant-col-pull-16.ant-col-rtl {
  right: auto;
  left: 66.66666667%;
}
.ant-col-offset-16.ant-col-rtl {
  margin-right: 66.66666667%;
  margin-left: 0;
}
.ant-col-push-17.ant-col-rtl {
  right: 70.83333333%;
  left: auto;
}
.ant-col-pull-17.ant-col-rtl {
  right: auto;
  left: 70.83333333%;
}
.ant-col-offset-17.ant-col-rtl {
  margin-right: 70.83333333%;
  margin-left: 0;
}
.ant-col-push-18.ant-col-rtl {
  right: 75%;
  left: auto;
}
.ant-col-pull-18.ant-col-rtl {
  right: auto;
  left: 75%;
}
.ant-col-offset-18.ant-col-rtl {
  margin-right: 75%;
  margin-left: 0;
}
.ant-col-push-19.ant-col-rtl {
  right: 79.16666667%;
  left: auto;
}
.ant-col-pull-19.ant-col-rtl {
  right: auto;
  left: 79.16666667%;
}
.ant-col-offset-19.ant-col-rtl {
  margin-right: 79.16666667%;
  margin-left: 0;
}
.ant-col-push-20.ant-col-rtl {
  right: 83.33333333%;
  left: auto;
}
.ant-col-pull-20.ant-col-rtl {
  right: auto;
  left: 83.33333333%;
}
.ant-col-offset-20.ant-col-rtl {
  margin-right: 83.33333333%;
  margin-left: 0;
}
.ant-col-push-21.ant-col-rtl {
  right: 87.5%;
  left: auto;
}
.ant-col-pull-21.ant-col-rtl {
  right: auto;
  left: 87.5%;
}
.ant-col-offset-21.ant-col-rtl {
  margin-right: 87.5%;
  margin-left: 0;
}
.ant-col-push-22.ant-col-rtl {
  right: 91.66666667%;
  left: auto;
}
.ant-col-pull-22.ant-col-rtl {
  right: auto;
  left: 91.66666667%;
}
.ant-col-offset-22.ant-col-rtl {
  margin-right: 91.66666667%;
  margin-left: 0;
}
.ant-col-push-23.ant-col-rtl {
  right: 95.83333333%;
  left: auto;
}
.ant-col-pull-23.ant-col-rtl {
  right: auto;
  left: 95.83333333%;
}
.ant-col-offset-23.ant-col-rtl {
  margin-right: 95.83333333%;
  margin-left: 0;
}
.ant-col-push-24.ant-col-rtl {
  right: 100%;
  left: auto;
}
.ant-col-pull-24.ant-col-rtl {
  right: auto;
  left: 100%;
}
.ant-col-offset-24.ant-col-rtl {
  margin-right: 100%;
  margin-left: 0;
}
.ant-col-xs-24 {
  display: block;
  flex: 0 0 100%;
  max-width: 100%;
}
.ant-col-xs-push-24 {
  left: 100%;
}
.ant-col-xs-pull-24 {
  right: 100%;
}
.ant-col-xs-offset-24 {
  margin-left: 100%;
}
.ant-col-xs-order-24 {
  order: 24;
}
.ant-col-xs-23 {
  display: block;
  flex: 0 0 95.83333333%;
  max-width: 95.83333333%;
}
.ant-col-xs-push-23 {
  left: 95.83333333%;
}
.ant-col-xs-pull-23 {
  right: 95.83333333%;
}
.ant-col-xs-offset-23 {
  margin-left: 95.83333333%;
}
.ant-col-xs-order-23 {
  order: 23;
}
.ant-col-xs-22 {
  display: block;
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}
.ant-col-xs-push-22 {
  left: 91.66666667%;
}
.ant-col-xs-pull-22 {
  right: 91.66666667%;
}
.ant-col-xs-offset-22 {
  margin-left: 91.66666667%;
}
.ant-col-xs-order-22 {
  order: 22;
}
.ant-col-xs-21 {
  display: block;
  flex: 0 0 87.5%;
  max-width: 87.5%;
}
.ant-col-xs-push-21 {
  left: 87.5%;
}
.ant-col-xs-pull-21 {
  right: 87.5%;
}
.ant-col-xs-offset-21 {
  margin-left: 87.5%;
}
.ant-col-xs-order-21 {
  order: 21;
}
.ant-col-xs-20 {
  display: block;
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}
.ant-col-xs-push-20 {
  left: 83.33333333%;
}
.ant-col-xs-pull-20 {
  right: 83.33333333%;
}
.ant-col-xs-offset-20 {
  margin-left: 83.33333333%;
}
.ant-col-xs-order-20 {
  order: 20;
}
.ant-col-xs-19 {
  display: block;
  flex: 0 0 79.16666667%;
  max-width: 79.16666667%;
}
.ant-col-xs-push-19 {
  left: 79.16666667%;
}
.ant-col-xs-pull-19 {
  right: 79.16666667%;
}
.ant-col-xs-offset-19 {
  margin-left: 79.16666667%;
}
.ant-col-xs-order-19 {
  order: 19;
}
.ant-col-xs-18 {
  display: block;
  flex: 0 0 75%;
  max-width: 75%;
}
.ant-col-xs-push-18 {
  left: 75%;
}
.ant-col-xs-pull-18 {
  right: 75%;
}
.ant-col-xs-offset-18 {
  margin-left: 75%;
}
.ant-col-xs-order-18 {
  order: 18;
}
.ant-col-xs-17 {
  display: block;
  flex: 0 0 70.83333333%;
  max-width: 70.83333333%;
}
.ant-col-xs-push-17 {
  left: 70.83333333%;
}
.ant-col-xs-pull-17 {
  right: 70.83333333%;
}
.ant-col-xs-offset-17 {
  margin-left: 70.83333333%;
}
.ant-col-xs-order-17 {
  order: 17;
}
.ant-col-xs-16 {
  display: block;
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}
.ant-col-xs-push-16 {
  left: 66.66666667%;
}
.ant-col-xs-pull-16 {
  right: 66.66666667%;
}
.ant-col-xs-offset-16 {
  margin-left: 66.66666667%;
}
.ant-col-xs-order-16 {
  order: 16;
}
.ant-col-xs-15 {
  display: block;
  flex: 0 0 62.5%;
  max-width: 62.5%;
}
.ant-col-xs-push-15 {
  left: 62.5%;
}
.ant-col-xs-pull-15 {
  right: 62.5%;
}
.ant-col-xs-offset-15 {
  margin-left: 62.5%;
}
.ant-col-xs-order-15 {
  order: 15;
}
.ant-col-xs-14 {
  display: block;
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}
.ant-col-xs-push-14 {
  left: 58.33333333%;
}
.ant-col-xs-pull-14 {
  right: 58.33333333%;
}
.ant-col-xs-offset-14 {
  margin-left: 58.33333333%;
}
.ant-col-xs-order-14 {
  order: 14;
}
.ant-col-xs-13 {
  display: block;
  flex: 0 0 54.16666667%;
  max-width: 54.16666667%;
}
.ant-col-xs-push-13 {
  left: 54.16666667%;
}
.ant-col-xs-pull-13 {
  right: 54.16666667%;
}
.ant-col-xs-offset-13 {
  margin-left: 54.16666667%;
}
.ant-col-xs-order-13 {
  order: 13;
}
.ant-col-xs-12 {
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
}
.ant-col-xs-push-12 {
  left: 50%;
}
.ant-col-xs-pull-12 {
  right: 50%;
}
.ant-col-xs-offset-12 {
  margin-left: 50%;
}
.ant-col-xs-order-12 {
  order: 12;
}
.ant-col-xs-11 {
  display: block;
  flex: 0 0 45.83333333%;
  max-width: 45.83333333%;
}
.ant-col-xs-push-11 {
  left: 45.83333333%;
}
.ant-col-xs-pull-11 {
  right: 45.83333333%;
}
.ant-col-xs-offset-11 {
  margin-left: 45.83333333%;
}
.ant-col-xs-order-11 {
  order: 11;
}
.ant-col-xs-10 {
  display: block;
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}
.ant-col-xs-push-10 {
  left: 41.66666667%;
}
.ant-col-xs-pull-10 {
  right: 41.66666667%;
}
.ant-col-xs-offset-10 {
  margin-left: 41.66666667%;
}
.ant-col-xs-order-10 {
  order: 10;
}
.ant-col-xs-9 {
  display: block;
  flex: 0 0 37.5%;
  max-width: 37.5%;
}
.ant-col-xs-push-9 {
  left: 37.5%;
}
.ant-col-xs-pull-9 {
  right: 37.5%;
}
.ant-col-xs-offset-9 {
  margin-left: 37.5%;
}
.ant-col-xs-order-9 {
  order: 9;
}
.ant-col-xs-8 {
  display: block;
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}
.ant-col-xs-push-8 {
  left: 33.33333333%;
}
.ant-col-xs-pull-8 {
  right: 33.33333333%;
}
.ant-col-xs-offset-8 {
  margin-left: 33.33333333%;
}
.ant-col-xs-order-8 {
  order: 8;
}
.ant-col-xs-7 {
  display: block;
  flex: 0 0 29.16666667%;
  max-width: 29.16666667%;
}
.ant-col-xs-push-7 {
  left: 29.16666667%;
}
.ant-col-xs-pull-7 {
  right: 29.16666667%;
}
.ant-col-xs-offset-7 {
  margin-left: 29.16666667%;
}
.ant-col-xs-order-7 {
  order: 7;
}
.ant-col-xs-6 {
  display: block;
  flex: 0 0 25%;
  max-width: 25%;
}
.ant-col-xs-push-6 {
  left: 25%;
}
.ant-col-xs-pull-6 {
  right: 25%;
}
.ant-col-xs-offset-6 {
  margin-left: 25%;
}
.ant-col-xs-order-6 {
  order: 6;
}
.ant-col-xs-5 {
  display: block;
  flex: 0 0 20.83333333%;
  max-width: 20.83333333%;
}
.ant-col-xs-push-5 {
  left: 20.83333333%;
}
.ant-col-xs-pull-5 {
  right: 20.83333333%;
}
.ant-col-xs-offset-5 {
  margin-left: 20.83333333%;
}
.ant-col-xs-order-5 {
  order: 5;
}
.ant-col-xs-4 {
  display: block;
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}
.ant-col-xs-push-4 {
  left: 16.66666667%;
}
.ant-col-xs-pull-4 {
  right: 16.66666667%;
}
.ant-col-xs-offset-4 {
  margin-left: 16.66666667%;
}
.ant-col-xs-order-4 {
  order: 4;
}
.ant-col-xs-3 {
  display: block;
  flex: 0 0 12.5%;
  max-width: 12.5%;
}
.ant-col-xs-push-3 {
  left: 12.5%;
}
.ant-col-xs-pull-3 {
  right: 12.5%;
}
.ant-col-xs-offset-3 {
  margin-left: 12.5%;
}
.ant-col-xs-order-3 {
  order: 3;
}
.ant-col-xs-2 {
  display: block;
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}
.ant-col-xs-push-2 {
  left: 8.33333333%;
}
.ant-col-xs-pull-2 {
  right: 8.33333333%;
}
.ant-col-xs-offset-2 {
  margin-left: 8.33333333%;
}
.ant-col-xs-order-2 {
  order: 2;
}
.ant-col-xs-1 {
  display: block;
  flex: 0 0 4.16666667%;
  max-width: 4.16666667%;
}
.ant-col-xs-push-1 {
  left: 4.16666667%;
}
.ant-col-xs-pull-1 {
  right: 4.16666667%;
}
.ant-col-xs-offset-1 {
  margin-left: 4.16666667%;
}
.ant-col-xs-order-1 {
  order: 1;
}
.ant-col-xs-0 {
  display: none;
}
.ant-col-push-0 {
  left: auto;
}
.ant-col-pull-0 {
  right: auto;
}
.ant-col-xs-push-0 {
  left: auto;
}
.ant-col-xs-pull-0 {
  right: auto;
}
.ant-col-xs-offset-0 {
  margin-left: 0;
}
.ant-col-xs-order-0 {
  order: 0;
}
.ant-col-push-0.ant-col-rtl {
  right: auto;
}
.ant-col-pull-0.ant-col-rtl {
  left: auto;
}
.ant-col-xs-push-0.ant-col-rtl {
  right: auto;
}
.ant-col-xs-pull-0.ant-col-rtl {
  left: auto;
}
.ant-col-xs-offset-0.ant-col-rtl {
  margin-right: 0;
}
.ant-col-xs-push-1.ant-col-rtl {
  right: 4.16666667%;
  left: auto;
}
.ant-col-xs-pull-1.ant-col-rtl {
  right: auto;
  left: 4.16666667%;
}
.ant-col-xs-offset-1.ant-col-rtl {
  margin-right: 4.16666667%;
  margin-left: 0;
}
.ant-col-xs-push-2.ant-col-rtl {
  right: 8.33333333%;
  left: auto;
}
.ant-col-xs-pull-2.ant-col-rtl {
  right: auto;
  left: 8.33333333%;
}
.ant-col-xs-offset-2.ant-col-rtl {
  margin-right: 8.33333333%;
  margin-left: 0;
}
.ant-col-xs-push-3.ant-col-rtl {
  right: 12.5%;
  left: auto;
}
.ant-col-xs-pull-3.ant-col-rtl {
  right: auto;
  left: 12.5%;
}
.ant-col-xs-offset-3.ant-col-rtl {
  margin-right: 12.5%;
  margin-left: 0;
}
.ant-col-xs-push-4.ant-col-rtl {
  right: 16.66666667%;
  left: auto;
}
.ant-col-xs-pull-4.ant-col-rtl {
  right: auto;
  left: 16.66666667%;
}
.ant-col-xs-offset-4.ant-col-rtl {
  margin-right: 16.66666667%;
  margin-left: 0;
}
.ant-col-xs-push-5.ant-col-rtl {
  right: 20.83333333%;
  left: auto;
}
.ant-col-xs-pull-5.ant-col-rtl {
  right: auto;
  left: 20.83333333%;
}
.ant-col-xs-offset-5.ant-col-rtl {
  margin-right: 20.83333333%;
  margin-left: 0;
}
.ant-col-xs-push-6.ant-col-rtl {
  right: 25%;
  left: auto;
}
.ant-col-xs-pull-6.ant-col-rtl {
  right: auto;
  left: 25%;
}
.ant-col-xs-offset-6.ant-col-rtl {
  margin-right: 25%;
  margin-left: 0;
}
.ant-col-xs-push-7.ant-col-rtl {
  right: 29.16666667%;
  left: auto;
}
.ant-col-xs-pull-7.ant-col-rtl {
  right: auto;
  left: 29.16666667%;
}
.ant-col-xs-offset-7.ant-col-rtl {
  margin-right: 29.16666667%;
  margin-left: 0;
}
.ant-col-xs-push-8.ant-col-rtl {
  right: 33.33333333%;
  left: auto;
}
.ant-col-xs-pull-8.ant-col-rtl {
  right: auto;
  left: 33.33333333%;
}
.ant-col-xs-offset-8.ant-col-rtl {
  margin-right: 33.33333333%;
  margin-left: 0;
}
.ant-col-xs-push-9.ant-col-rtl {
  right: 37.5%;
  left: auto;
}
.ant-col-xs-pull-9.ant-col-rtl {
  right: auto;
  left: 37.5%;
}
.ant-col-xs-offset-9.ant-col-rtl {
  margin-right: 37.5%;
  margin-left: 0;
}
.ant-col-xs-push-10.ant-col-rtl {
  right: 41.66666667%;
  left: auto;
}
.ant-col-xs-pull-10.ant-col-rtl {
  right: auto;
  left: 41.66666667%;
}
.ant-col-xs-offset-10.ant-col-rtl {
  margin-right: 41.66666667%;
  margin-left: 0;
}
.ant-col-xs-push-11.ant-col-rtl {
  right: 45.83333333%;
  left: auto;
}
.ant-col-xs-pull-11.ant-col-rtl {
  right: auto;
  left: 45.83333333%;
}
.ant-col-xs-offset-11.ant-col-rtl {
  margin-right: 45.83333333%;
  margin-left: 0;
}
.ant-col-xs-push-12.ant-col-rtl {
  right: 50%;
  left: auto;
}
.ant-col-xs-pull-12.ant-col-rtl {
  right: auto;
  left: 50%;
}
.ant-col-xs-offset-12.ant-col-rtl {
  margin-right: 50%;
  margin-left: 0;
}
.ant-col-xs-push-13.ant-col-rtl {
  right: 54.16666667%;
  left: auto;
}
.ant-col-xs-pull-13.ant-col-rtl {
  right: auto;
  left: 54.16666667%;
}
.ant-col-xs-offset-13.ant-col-rtl {
  margin-right: 54.16666667%;
  margin-left: 0;
}
.ant-col-xs-push-14.ant-col-rtl {
  right: 58.33333333%;
  left: auto;
}
.ant-col-xs-pull-14.ant-col-rtl {
  right: auto;
  left: 58.33333333%;
}
.ant-col-xs-offset-14.ant-col-rtl {
  margin-right: 58.33333333%;
  margin-left: 0;
}
.ant-col-xs-push-15.ant-col-rtl {
  right: 62.5%;
  left: auto;
}
.ant-col-xs-pull-15.ant-col-rtl {
  right: auto;
  left: 62.5%;
}
.ant-col-xs-offset-15.ant-col-rtl {
  margin-right: 62.5%;
  margin-left: 0;
}
.ant-col-xs-push-16.ant-col-rtl {
  right: 66.66666667%;
  left: auto;
}
.ant-col-xs-pull-16.ant-col-rtl {
  right: auto;
  left: 66.66666667%;
}
.ant-col-xs-offset-16.ant-col-rtl {
  margin-right: 66.66666667%;
  margin-left: 0;
}
.ant-col-xs-push-17.ant-col-rtl {
  right: 70.83333333%;
  left: auto;
}
.ant-col-xs-pull-17.ant-col-rtl {
  right: auto;
  left: 70.83333333%;
}
.ant-col-xs-offset-17.ant-col-rtl {
  margin-right: 70.83333333%;
  margin-left: 0;
}
.ant-col-xs-push-18.ant-col-rtl {
  right: 75%;
  left: auto;
}
.ant-col-xs-pull-18.ant-col-rtl {
  right: auto;
  left: 75%;
}
.ant-col-xs-offset-18.ant-col-rtl {
  margin-right: 75%;
  margin-left: 0;
}
.ant-col-xs-push-19.ant-col-rtl {
  right: 79.16666667%;
  left: auto;
}
.ant-col-xs-pull-19.ant-col-rtl {
  right: auto;
  left: 79.16666667%;
}
.ant-col-xs-offset-19.ant-col-rtl {
  margin-right: 79.16666667%;
  margin-left: 0;
}
.ant-col-xs-push-20.ant-col-rtl {
  right: 83.33333333%;
  left: auto;
}
.ant-col-xs-pull-20.ant-col-rtl {
  right: auto;
  left: 83.33333333%;
}
.ant-col-xs-offset-20.ant-col-rtl {
  margin-right: 83.33333333%;
  margin-left: 0;
}
.ant-col-xs-push-21.ant-col-rtl {
  right: 87.5%;
  left: auto;
}
.ant-col-xs-pull-21.ant-col-rtl {
  right: auto;
  left: 87.5%;
}
.ant-col-xs-offset-21.ant-col-rtl {
  margin-right: 87.5%;
  margin-left: 0;
}
.ant-col-xs-push-22.ant-col-rtl {
  right: 91.66666667%;
  left: auto;
}
.ant-col-xs-pull-22.ant-col-rtl {
  right: auto;
  left: 91.66666667%;
}
.ant-col-xs-offset-22.ant-col-rtl {
  margin-right: 91.66666667%;
  margin-left: 0;
}
.ant-col-xs-push-23.ant-col-rtl {
  right: 95.83333333%;
  left: auto;
}
.ant-col-xs-pull-23.ant-col-rtl {
  right: auto;
  left: 95.83333333%;
}
.ant-col-xs-offset-23.ant-col-rtl {
  margin-right: 95.83333333%;
  margin-left: 0;
}
.ant-col-xs-push-24.ant-col-rtl {
  right: 100%;
  left: auto;
}
.ant-col-xs-pull-24.ant-col-rtl {
  right: auto;
  left: 100%;
}
.ant-col-xs-offset-24.ant-col-rtl {
  margin-right: 100%;
  margin-left: 0;
}
@media (min-width: 576px) {
  .ant-col-sm-24 {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ant-col-sm-push-24 {
    left: 100%;
  }
  .ant-col-sm-pull-24 {
    right: 100%;
  }
  .ant-col-sm-offset-24 {
    margin-left: 100%;
  }
  .ant-col-sm-order-24 {
    order: 24;
  }
  .ant-col-sm-23 {
    display: block;
    flex: 0 0 95.83333333%;
    max-width: 95.83333333%;
  }
  .ant-col-sm-push-23 {
    left: 95.83333333%;
  }
  .ant-col-sm-pull-23 {
    right: 95.83333333%;
  }
  .ant-col-sm-offset-23 {
    margin-left: 95.83333333%;
  }
  .ant-col-sm-order-23 {
    order: 23;
  }
  .ant-col-sm-22 {
    display: block;
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .ant-col-sm-push-22 {
    left: 91.66666667%;
  }
  .ant-col-sm-pull-22 {
    right: 91.66666667%;
  }
  .ant-col-sm-offset-22 {
    margin-left: 91.66666667%;
  }
  .ant-col-sm-order-22 {
    order: 22;
  }
  .ant-col-sm-21 {
    display: block;
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .ant-col-sm-push-21 {
    left: 87.5%;
  }
  .ant-col-sm-pull-21 {
    right: 87.5%;
  }
  .ant-col-sm-offset-21 {
    margin-left: 87.5%;
  }
  .ant-col-sm-order-21 {
    order: 21;
  }
  .ant-col-sm-20 {
    display: block;
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .ant-col-sm-push-20 {
    left: 83.33333333%;
  }
  .ant-col-sm-pull-20 {
    right: 83.33333333%;
  }
  .ant-col-sm-offset-20 {
    margin-left: 83.33333333%;
  }
  .ant-col-sm-order-20 {
    order: 20;
  }
  .ant-col-sm-19 {
    display: block;
    flex: 0 0 79.16666667%;
    max-width: 79.16666667%;
  }
  .ant-col-sm-push-19 {
    left: 79.16666667%;
  }
  .ant-col-sm-pull-19 {
    right: 79.16666667%;
  }
  .ant-col-sm-offset-19 {
    margin-left: 79.16666667%;
  }
  .ant-col-sm-order-19 {
    order: 19;
  }
  .ant-col-sm-18 {
    display: block;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ant-col-sm-push-18 {
    left: 75%;
  }
  .ant-col-sm-pull-18 {
    right: 75%;
  }
  .ant-col-sm-offset-18 {
    margin-left: 75%;
  }
  .ant-col-sm-order-18 {
    order: 18;
  }
  .ant-col-sm-17 {
    display: block;
    flex: 0 0 70.83333333%;
    max-width: 70.83333333%;
  }
  .ant-col-sm-push-17 {
    left: 70.83333333%;
  }
  .ant-col-sm-pull-17 {
    right: 70.83333333%;
  }
  .ant-col-sm-offset-17 {
    margin-left: 70.83333333%;
  }
  .ant-col-sm-order-17 {
    order: 17;
  }
  .ant-col-sm-16 {
    display: block;
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .ant-col-sm-push-16 {
    left: 66.66666667%;
  }
  .ant-col-sm-pull-16 {
    right: 66.66666667%;
  }
  .ant-col-sm-offset-16 {
    margin-left: 66.66666667%;
  }
  .ant-col-sm-order-16 {
    order: 16;
  }
  .ant-col-sm-15 {
    display: block;
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .ant-col-sm-push-15 {
    left: 62.5%;
  }
  .ant-col-sm-pull-15 {
    right: 62.5%;
  }
  .ant-col-sm-offset-15 {
    margin-left: 62.5%;
  }
  .ant-col-sm-order-15 {
    order: 15;
  }
  .ant-col-sm-14 {
    display: block;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .ant-col-sm-push-14 {
    left: 58.33333333%;
  }
  .ant-col-sm-pull-14 {
    right: 58.33333333%;
  }
  .ant-col-sm-offset-14 {
    margin-left: 58.33333333%;
  }
  .ant-col-sm-order-14 {
    order: 14;
  }
  .ant-col-sm-13 {
    display: block;
    flex: 0 0 54.16666667%;
    max-width: 54.16666667%;
  }
  .ant-col-sm-push-13 {
    left: 54.16666667%;
  }
  .ant-col-sm-pull-13 {
    right: 54.16666667%;
  }
  .ant-col-sm-offset-13 {
    margin-left: 54.16666667%;
  }
  .ant-col-sm-order-13 {
    order: 13;
  }
  .ant-col-sm-12 {
    display: block;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ant-col-sm-push-12 {
    left: 50%;
  }
  .ant-col-sm-pull-12 {
    right: 50%;
  }
  .ant-col-sm-offset-12 {
    margin-left: 50%;
  }
  .ant-col-sm-order-12 {
    order: 12;
  }
  .ant-col-sm-11 {
    display: block;
    flex: 0 0 45.83333333%;
    max-width: 45.83333333%;
  }
  .ant-col-sm-push-11 {
    left: 45.83333333%;
  }
  .ant-col-sm-pull-11 {
    right: 45.83333333%;
  }
  .ant-col-sm-offset-11 {
    margin-left: 45.83333333%;
  }
  .ant-col-sm-order-11 {
    order: 11;
  }
  .ant-col-sm-10 {
    display: block;
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .ant-col-sm-push-10 {
    left: 41.66666667%;
  }
  .ant-col-sm-pull-10 {
    right: 41.66666667%;
  }
  .ant-col-sm-offset-10 {
    margin-left: 41.66666667%;
  }
  .ant-col-sm-order-10 {
    order: 10;
  }
  .ant-col-sm-9 {
    display: block;
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .ant-col-sm-push-9 {
    left: 37.5%;
  }
  .ant-col-sm-pull-9 {
    right: 37.5%;
  }
  .ant-col-sm-offset-9 {
    margin-left: 37.5%;
  }
  .ant-col-sm-order-9 {
    order: 9;
  }
  .ant-col-sm-8 {
    display: block;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .ant-col-sm-push-8 {
    left: 33.33333333%;
  }
  .ant-col-sm-pull-8 {
    right: 33.33333333%;
  }
  .ant-col-sm-offset-8 {
    margin-left: 33.33333333%;
  }
  .ant-col-sm-order-8 {
    order: 8;
  }
  .ant-col-sm-7 {
    display: block;
    flex: 0 0 29.16666667%;
    max-width: 29.16666667%;
  }
  .ant-col-sm-push-7 {
    left: 29.16666667%;
  }
  .ant-col-sm-pull-7 {
    right: 29.16666667%;
  }
  .ant-col-sm-offset-7 {
    margin-left: 29.16666667%;
  }
  .ant-col-sm-order-7 {
    order: 7;
  }
  .ant-col-sm-6 {
    display: block;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ant-col-sm-push-6 {
    left: 25%;
  }
  .ant-col-sm-pull-6 {
    right: 25%;
  }
  .ant-col-sm-offset-6 {
    margin-left: 25%;
  }
  .ant-col-sm-order-6 {
    order: 6;
  }
  .ant-col-sm-5 {
    display: block;
    flex: 0 0 20.83333333%;
    max-width: 20.83333333%;
  }
  .ant-col-sm-push-5 {
    left: 20.83333333%;
  }
  .ant-col-sm-pull-5 {
    right: 20.83333333%;
  }
  .ant-col-sm-offset-5 {
    margin-left: 20.83333333%;
  }
  .ant-col-sm-order-5 {
    order: 5;
  }
  .ant-col-sm-4 {
    display: block;
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .ant-col-sm-push-4 {
    left: 16.66666667%;
  }
  .ant-col-sm-pull-4 {
    right: 16.66666667%;
  }
  .ant-col-sm-offset-4 {
    margin-left: 16.66666667%;
  }
  .ant-col-sm-order-4 {
    order: 4;
  }
  .ant-col-sm-3 {
    display: block;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .ant-col-sm-push-3 {
    left: 12.5%;
  }
  .ant-col-sm-pull-3 {
    right: 12.5%;
  }
  .ant-col-sm-offset-3 {
    margin-left: 12.5%;
  }
  .ant-col-sm-order-3 {
    order: 3;
  }
  .ant-col-sm-2 {
    display: block;
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .ant-col-sm-push-2 {
    left: 8.33333333%;
  }
  .ant-col-sm-pull-2 {
    right: 8.33333333%;
  }
  .ant-col-sm-offset-2 {
    margin-left: 8.33333333%;
  }
  .ant-col-sm-order-2 {
    order: 2;
  }
  .ant-col-sm-1 {
    display: block;
    flex: 0 0 4.16666667%;
    max-width: 4.16666667%;
  }
  .ant-col-sm-push-1 {
    left: 4.16666667%;
  }
  .ant-col-sm-pull-1 {
    right: 4.16666667%;
  }
  .ant-col-sm-offset-1 {
    margin-left: 4.16666667%;
  }
  .ant-col-sm-order-1 {
    order: 1;
  }
  .ant-col-sm-0 {
    display: none;
  }
  .ant-col-push-0 {
    left: auto;
  }
  .ant-col-pull-0 {
    right: auto;
  }
  .ant-col-sm-push-0 {
    left: auto;
  }
  .ant-col-sm-pull-0 {
    right: auto;
  }
  .ant-col-sm-offset-0 {
    margin-left: 0;
  }
  .ant-col-sm-order-0 {
    order: 0;
  }
  .ant-col-push-0.ant-col-rtl {
    right: auto;
  }
  .ant-col-pull-0.ant-col-rtl {
    left: auto;
  }
  .ant-col-sm-push-0.ant-col-rtl {
    right: auto;
  }
  .ant-col-sm-pull-0.ant-col-rtl {
    left: auto;
  }
  .ant-col-sm-offset-0.ant-col-rtl {
    margin-right: 0;
  }
  .ant-col-sm-push-1.ant-col-rtl {
    right: 4.16666667%;
    left: auto;
  }
  .ant-col-sm-pull-1.ant-col-rtl {
    right: auto;
    left: 4.16666667%;
  }
  .ant-col-sm-offset-1.ant-col-rtl {
    margin-right: 4.16666667%;
    margin-left: 0;
  }
  .ant-col-sm-push-2.ant-col-rtl {
    right: 8.33333333%;
    left: auto;
  }
  .ant-col-sm-pull-2.ant-col-rtl {
    right: auto;
    left: 8.33333333%;
  }
  .ant-col-sm-offset-2.ant-col-rtl {
    margin-right: 8.33333333%;
    margin-left: 0;
  }
  .ant-col-sm-push-3.ant-col-rtl {
    right: 12.5%;
    left: auto;
  }
  .ant-col-sm-pull-3.ant-col-rtl {
    right: auto;
    left: 12.5%;
  }
  .ant-col-sm-offset-3.ant-col-rtl {
    margin-right: 12.5%;
    margin-left: 0;
  }
  .ant-col-sm-push-4.ant-col-rtl {
    right: 16.66666667%;
    left: auto;
  }
  .ant-col-sm-pull-4.ant-col-rtl {
    right: auto;
    left: 16.66666667%;
  }
  .ant-col-sm-offset-4.ant-col-rtl {
    margin-right: 16.66666667%;
    margin-left: 0;
  }
  .ant-col-sm-push-5.ant-col-rtl {
    right: 20.83333333%;
    left: auto;
  }
  .ant-col-sm-pull-5.ant-col-rtl {
    right: auto;
    left: 20.83333333%;
  }
  .ant-col-sm-offset-5.ant-col-rtl {
    margin-right: 20.83333333%;
    margin-left: 0;
  }
  .ant-col-sm-push-6.ant-col-rtl {
    right: 25%;
    left: auto;
  }
  .ant-col-sm-pull-6.ant-col-rtl {
    right: auto;
    left: 25%;
  }
  .ant-col-sm-offset-6.ant-col-rtl {
    margin-right: 25%;
    margin-left: 0;
  }
  .ant-col-sm-push-7.ant-col-rtl {
    right: 29.16666667%;
    left: auto;
  }
  .ant-col-sm-pull-7.ant-col-rtl {
    right: auto;
    left: 29.16666667%;
  }
  .ant-col-sm-offset-7.ant-col-rtl {
    margin-right: 29.16666667%;
    margin-left: 0;
  }
  .ant-col-sm-push-8.ant-col-rtl {
    right: 33.33333333%;
    left: auto;
  }
  .ant-col-sm-pull-8.ant-col-rtl {
    right: auto;
    left: 33.33333333%;
  }
  .ant-col-sm-offset-8.ant-col-rtl {
    margin-right: 33.33333333%;
    margin-left: 0;
  }
  .ant-col-sm-push-9.ant-col-rtl {
    right: 37.5%;
    left: auto;
  }
  .ant-col-sm-pull-9.ant-col-rtl {
    right: auto;
    left: 37.5%;
  }
  .ant-col-sm-offset-9.ant-col-rtl {
    margin-right: 37.5%;
    margin-left: 0;
  }
  .ant-col-sm-push-10.ant-col-rtl {
    right: 41.66666667%;
    left: auto;
  }
  .ant-col-sm-pull-10.ant-col-rtl {
    right: auto;
    left: 41.66666667%;
  }
  .ant-col-sm-offset-10.ant-col-rtl {
    margin-right: 41.66666667%;
    margin-left: 0;
  }
  .ant-col-sm-push-11.ant-col-rtl {
    right: 45.83333333%;
    left: auto;
  }
  .ant-col-sm-pull-11.ant-col-rtl {
    right: auto;
    left: 45.83333333%;
  }
  .ant-col-sm-offset-11.ant-col-rtl {
    margin-right: 45.83333333%;
    margin-left: 0;
  }
  .ant-col-sm-push-12.ant-col-rtl {
    right: 50%;
    left: auto;
  }
  .ant-col-sm-pull-12.ant-col-rtl {
    right: auto;
    left: 50%;
  }
  .ant-col-sm-offset-12.ant-col-rtl {
    margin-right: 50%;
    margin-left: 0;
  }
  .ant-col-sm-push-13.ant-col-rtl {
    right: 54.16666667%;
    left: auto;
  }
  .ant-col-sm-pull-13.ant-col-rtl {
    right: auto;
    left: 54.16666667%;
  }
  .ant-col-sm-offset-13.ant-col-rtl {
    margin-right: 54.16666667%;
    margin-left: 0;
  }
  .ant-col-sm-push-14.ant-col-rtl {
    right: 58.33333333%;
    left: auto;
  }
  .ant-col-sm-pull-14.ant-col-rtl {
    right: auto;
    left: 58.33333333%;
  }
  .ant-col-sm-offset-14.ant-col-rtl {
    margin-right: 58.33333333%;
    margin-left: 0;
  }
  .ant-col-sm-push-15.ant-col-rtl {
    right: 62.5%;
    left: auto;
  }
  .ant-col-sm-pull-15.ant-col-rtl {
    right: auto;
    left: 62.5%;
  }
  .ant-col-sm-offset-15.ant-col-rtl {
    margin-right: 62.5%;
    margin-left: 0;
  }
  .ant-col-sm-push-16.ant-col-rtl {
    right: 66.66666667%;
    left: auto;
  }
  .ant-col-sm-pull-16.ant-col-rtl {
    right: auto;
    left: 66.66666667%;
  }
  .ant-col-sm-offset-16.ant-col-rtl {
    margin-right: 66.66666667%;
    margin-left: 0;
  }
  .ant-col-sm-push-17.ant-col-rtl {
    right: 70.83333333%;
    left: auto;
  }
  .ant-col-sm-pull-17.ant-col-rtl {
    right: auto;
    left: 70.83333333%;
  }
  .ant-col-sm-offset-17.ant-col-rtl {
    margin-right: 70.83333333%;
    margin-left: 0;
  }
  .ant-col-sm-push-18.ant-col-rtl {
    right: 75%;
    left: auto;
  }
  .ant-col-sm-pull-18.ant-col-rtl {
    right: auto;
    left: 75%;
  }
  .ant-col-sm-offset-18.ant-col-rtl {
    margin-right: 75%;
    margin-left: 0;
  }
  .ant-col-sm-push-19.ant-col-rtl {
    right: 79.16666667%;
    left: auto;
  }
  .ant-col-sm-pull-19.ant-col-rtl {
    right: auto;
    left: 79.16666667%;
  }
  .ant-col-sm-offset-19.ant-col-rtl {
    margin-right: 79.16666667%;
    margin-left: 0;
  }
  .ant-col-sm-push-20.ant-col-rtl {
    right: 83.33333333%;
    left: auto;
  }
  .ant-col-sm-pull-20.ant-col-rtl {
    right: auto;
    left: 83.33333333%;
  }
  .ant-col-sm-offset-20.ant-col-rtl {
    margin-right: 83.33333333%;
    margin-left: 0;
  }
  .ant-col-sm-push-21.ant-col-rtl {
    right: 87.5%;
    left: auto;
  }
  .ant-col-sm-pull-21.ant-col-rtl {
    right: auto;
    left: 87.5%;
  }
  .ant-col-sm-offset-21.ant-col-rtl {
    margin-right: 87.5%;
    margin-left: 0;
  }
  .ant-col-sm-push-22.ant-col-rtl {
    right: 91.66666667%;
    left: auto;
  }
  .ant-col-sm-pull-22.ant-col-rtl {
    right: auto;
    left: 91.66666667%;
  }
  .ant-col-sm-offset-22.ant-col-rtl {
    margin-right: 91.66666667%;
    margin-left: 0;
  }
  .ant-col-sm-push-23.ant-col-rtl {
    right: 95.83333333%;
    left: auto;
  }
  .ant-col-sm-pull-23.ant-col-rtl {
    right: auto;
    left: 95.83333333%;
  }
  .ant-col-sm-offset-23.ant-col-rtl {
    margin-right: 95.83333333%;
    margin-left: 0;
  }
  .ant-col-sm-push-24.ant-col-rtl {
    right: 100%;
    left: auto;
  }
  .ant-col-sm-pull-24.ant-col-rtl {
    right: auto;
    left: 100%;
  }
  .ant-col-sm-offset-24.ant-col-rtl {
    margin-right: 100%;
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .ant-col-md-24 {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ant-col-md-push-24 {
    left: 100%;
  }
  .ant-col-md-pull-24 {
    right: 100%;
  }
  .ant-col-md-offset-24 {
    margin-left: 100%;
  }
  .ant-col-md-order-24 {
    order: 24;
  }
  .ant-col-md-23 {
    display: block;
    flex: 0 0 95.83333333%;
    max-width: 95.83333333%;
  }
  .ant-col-md-push-23 {
    left: 95.83333333%;
  }
  .ant-col-md-pull-23 {
    right: 95.83333333%;
  }
  .ant-col-md-offset-23 {
    margin-left: 95.83333333%;
  }
  .ant-col-md-order-23 {
    order: 23;
  }
  .ant-col-md-22 {
    display: block;
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .ant-col-md-push-22 {
    left: 91.66666667%;
  }
  .ant-col-md-pull-22 {
    right: 91.66666667%;
  }
  .ant-col-md-offset-22 {
    margin-left: 91.66666667%;
  }
  .ant-col-md-order-22 {
    order: 22;
  }
  .ant-col-md-21 {
    display: block;
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .ant-col-md-push-21 {
    left: 87.5%;
  }
  .ant-col-md-pull-21 {
    right: 87.5%;
  }
  .ant-col-md-offset-21 {
    margin-left: 87.5%;
  }
  .ant-col-md-order-21 {
    order: 21;
  }
  .ant-col-md-20 {
    display: block;
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .ant-col-md-push-20 {
    left: 83.33333333%;
  }
  .ant-col-md-pull-20 {
    right: 83.33333333%;
  }
  .ant-col-md-offset-20 {
    margin-left: 83.33333333%;
  }
  .ant-col-md-order-20 {
    order: 20;
  }
  .ant-col-md-19 {
    display: block;
    flex: 0 0 79.16666667%;
    max-width: 79.16666667%;
  }
  .ant-col-md-push-19 {
    left: 79.16666667%;
  }
  .ant-col-md-pull-19 {
    right: 79.16666667%;
  }
  .ant-col-md-offset-19 {
    margin-left: 79.16666667%;
  }
  .ant-col-md-order-19 {
    order: 19;
  }
  .ant-col-md-18 {
    display: block;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ant-col-md-push-18 {
    left: 75%;
  }
  .ant-col-md-pull-18 {
    right: 75%;
  }
  .ant-col-md-offset-18 {
    margin-left: 75%;
  }
  .ant-col-md-order-18 {
    order: 18;
  }
  .ant-col-md-17 {
    display: block;
    flex: 0 0 70.83333333%;
    max-width: 70.83333333%;
  }
  .ant-col-md-push-17 {
    left: 70.83333333%;
  }
  .ant-col-md-pull-17 {
    right: 70.83333333%;
  }
  .ant-col-md-offset-17 {
    margin-left: 70.83333333%;
  }
  .ant-col-md-order-17 {
    order: 17;
  }
  .ant-col-md-16 {
    display: block;
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .ant-col-md-push-16 {
    left: 66.66666667%;
  }
  .ant-col-md-pull-16 {
    right: 66.66666667%;
  }
  .ant-col-md-offset-16 {
    margin-left: 66.66666667%;
  }
  .ant-col-md-order-16 {
    order: 16;
  }
  .ant-col-md-15 {
    display: block;
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .ant-col-md-push-15 {
    left: 62.5%;
  }
  .ant-col-md-pull-15 {
    right: 62.5%;
  }
  .ant-col-md-offset-15 {
    margin-left: 62.5%;
  }
  .ant-col-md-order-15 {
    order: 15;
  }
  .ant-col-md-14 {
    display: block;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .ant-col-md-push-14 {
    left: 58.33333333%;
  }
  .ant-col-md-pull-14 {
    right: 58.33333333%;
  }
  .ant-col-md-offset-14 {
    margin-left: 58.33333333%;
  }
  .ant-col-md-order-14 {
    order: 14;
  }
  .ant-col-md-13 {
    display: block;
    flex: 0 0 54.16666667%;
    max-width: 54.16666667%;
  }
  .ant-col-md-push-13 {
    left: 54.16666667%;
  }
  .ant-col-md-pull-13 {
    right: 54.16666667%;
  }
  .ant-col-md-offset-13 {
    margin-left: 54.16666667%;
  }
  .ant-col-md-order-13 {
    order: 13;
  }
  .ant-col-md-12 {
    display: block;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ant-col-md-push-12 {
    left: 50%;
  }
  .ant-col-md-pull-12 {
    right: 50%;
  }
  .ant-col-md-offset-12 {
    margin-left: 50%;
  }
  .ant-col-md-order-12 {
    order: 12;
  }
  .ant-col-md-11 {
    display: block;
    flex: 0 0 45.83333333%;
    max-width: 45.83333333%;
  }
  .ant-col-md-push-11 {
    left: 45.83333333%;
  }
  .ant-col-md-pull-11 {
    right: 45.83333333%;
  }
  .ant-col-md-offset-11 {
    margin-left: 45.83333333%;
  }
  .ant-col-md-order-11 {
    order: 11;
  }
  .ant-col-md-10 {
    display: block;
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .ant-col-md-push-10 {
    left: 41.66666667%;
  }
  .ant-col-md-pull-10 {
    right: 41.66666667%;
  }
  .ant-col-md-offset-10 {
    margin-left: 41.66666667%;
  }
  .ant-col-md-order-10 {
    order: 10;
  }
  .ant-col-md-9 {
    display: block;
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .ant-col-md-push-9 {
    left: 37.5%;
  }
  .ant-col-md-pull-9 {
    right: 37.5%;
  }
  .ant-col-md-offset-9 {
    margin-left: 37.5%;
  }
  .ant-col-md-order-9 {
    order: 9;
  }
  .ant-col-md-8 {
    display: block;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .ant-col-md-push-8 {
    left: 33.33333333%;
  }
  .ant-col-md-pull-8 {
    right: 33.33333333%;
  }
  .ant-col-md-offset-8 {
    margin-left: 33.33333333%;
  }
  .ant-col-md-order-8 {
    order: 8;
  }
  .ant-col-md-7 {
    display: block;
    flex: 0 0 29.16666667%;
    max-width: 29.16666667%;
  }
  .ant-col-md-push-7 {
    left: 29.16666667%;
  }
  .ant-col-md-pull-7 {
    right: 29.16666667%;
  }
  .ant-col-md-offset-7 {
    margin-left: 29.16666667%;
  }
  .ant-col-md-order-7 {
    order: 7;
  }
  .ant-col-md-6 {
    display: block;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ant-col-md-push-6 {
    left: 25%;
  }
  .ant-col-md-pull-6 {
    right: 25%;
  }
  .ant-col-md-offset-6 {
    margin-left: 25%;
  }
  .ant-col-md-order-6 {
    order: 6;
  }
  .ant-col-md-5 {
    display: block;
    flex: 0 0 20.83333333%;
    max-width: 20.83333333%;
  }
  .ant-col-md-push-5 {
    left: 20.83333333%;
  }
  .ant-col-md-pull-5 {
    right: 20.83333333%;
  }
  .ant-col-md-offset-5 {
    margin-left: 20.83333333%;
  }
  .ant-col-md-order-5 {
    order: 5;
  }
  .ant-col-md-4 {
    display: block;
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .ant-col-md-push-4 {
    left: 16.66666667%;
  }
  .ant-col-md-pull-4 {
    right: 16.66666667%;
  }
  .ant-col-md-offset-4 {
    margin-left: 16.66666667%;
  }
  .ant-col-md-order-4 {
    order: 4;
  }
  .ant-col-md-3 {
    display: block;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .ant-col-md-push-3 {
    left: 12.5%;
  }
  .ant-col-md-pull-3 {
    right: 12.5%;
  }
  .ant-col-md-offset-3 {
    margin-left: 12.5%;
  }
  .ant-col-md-order-3 {
    order: 3;
  }
  .ant-col-md-2 {
    display: block;
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .ant-col-md-push-2 {
    left: 8.33333333%;
  }
  .ant-col-md-pull-2 {
    right: 8.33333333%;
  }
  .ant-col-md-offset-2 {
    margin-left: 8.33333333%;
  }
  .ant-col-md-order-2 {
    order: 2;
  }
  .ant-col-md-1 {
    display: block;
    flex: 0 0 4.16666667%;
    max-width: 4.16666667%;
  }
  .ant-col-md-push-1 {
    left: 4.16666667%;
  }
  .ant-col-md-pull-1 {
    right: 4.16666667%;
  }
  .ant-col-md-offset-1 {
    margin-left: 4.16666667%;
  }
  .ant-col-md-order-1 {
    order: 1;
  }
  .ant-col-md-0 {
    display: none;
  }
  .ant-col-push-0 {
    left: auto;
  }
  .ant-col-pull-0 {
    right: auto;
  }
  .ant-col-md-push-0 {
    left: auto;
  }
  .ant-col-md-pull-0 {
    right: auto;
  }
  .ant-col-md-offset-0 {
    margin-left: 0;
  }
  .ant-col-md-order-0 {
    order: 0;
  }
  .ant-col-push-0.ant-col-rtl {
    right: auto;
  }
  .ant-col-pull-0.ant-col-rtl {
    left: auto;
  }
  .ant-col-md-push-0.ant-col-rtl {
    right: auto;
  }
  .ant-col-md-pull-0.ant-col-rtl {
    left: auto;
  }
  .ant-col-md-offset-0.ant-col-rtl {
    margin-right: 0;
  }
  .ant-col-md-push-1.ant-col-rtl {
    right: 4.16666667%;
    left: auto;
  }
  .ant-col-md-pull-1.ant-col-rtl {
    right: auto;
    left: 4.16666667%;
  }
  .ant-col-md-offset-1.ant-col-rtl {
    margin-right: 4.16666667%;
    margin-left: 0;
  }
  .ant-col-md-push-2.ant-col-rtl {
    right: 8.33333333%;
    left: auto;
  }
  .ant-col-md-pull-2.ant-col-rtl {
    right: auto;
    left: 8.33333333%;
  }
  .ant-col-md-offset-2.ant-col-rtl {
    margin-right: 8.33333333%;
    margin-left: 0;
  }
  .ant-col-md-push-3.ant-col-rtl {
    right: 12.5%;
    left: auto;
  }
  .ant-col-md-pull-3.ant-col-rtl {
    right: auto;
    left: 12.5%;
  }
  .ant-col-md-offset-3.ant-col-rtl {
    margin-right: 12.5%;
    margin-left: 0;
  }
  .ant-col-md-push-4.ant-col-rtl {
    right: 16.66666667%;
    left: auto;
  }
  .ant-col-md-pull-4.ant-col-rtl {
    right: auto;
    left: 16.66666667%;
  }
  .ant-col-md-offset-4.ant-col-rtl {
    margin-right: 16.66666667%;
    margin-left: 0;
  }
  .ant-col-md-push-5.ant-col-rtl {
    right: 20.83333333%;
    left: auto;
  }
  .ant-col-md-pull-5.ant-col-rtl {
    right: auto;
    left: 20.83333333%;
  }
  .ant-col-md-offset-5.ant-col-rtl {
    margin-right: 20.83333333%;
    margin-left: 0;
  }
  .ant-col-md-push-6.ant-col-rtl {
    right: 25%;
    left: auto;
  }
  .ant-col-md-pull-6.ant-col-rtl {
    right: auto;
    left: 25%;
  }
  .ant-col-md-offset-6.ant-col-rtl {
    margin-right: 25%;
    margin-left: 0;
  }
  .ant-col-md-push-7.ant-col-rtl {
    right: 29.16666667%;
    left: auto;
  }
  .ant-col-md-pull-7.ant-col-rtl {
    right: auto;
    left: 29.16666667%;
  }
  .ant-col-md-offset-7.ant-col-rtl {
    margin-right: 29.16666667%;
    margin-left: 0;
  }
  .ant-col-md-push-8.ant-col-rtl {
    right: 33.33333333%;
    left: auto;
  }
  .ant-col-md-pull-8.ant-col-rtl {
    right: auto;
    left: 33.33333333%;
  }
  .ant-col-md-offset-8.ant-col-rtl {
    margin-right: 33.33333333%;
    margin-left: 0;
  }
  .ant-col-md-push-9.ant-col-rtl {
    right: 37.5%;
    left: auto;
  }
  .ant-col-md-pull-9.ant-col-rtl {
    right: auto;
    left: 37.5%;
  }
  .ant-col-md-offset-9.ant-col-rtl {
    margin-right: 37.5%;
    margin-left: 0;
  }
  .ant-col-md-push-10.ant-col-rtl {
    right: 41.66666667%;
    left: auto;
  }
  .ant-col-md-pull-10.ant-col-rtl {
    right: auto;
    left: 41.66666667%;
  }
  .ant-col-md-offset-10.ant-col-rtl {
    margin-right: 41.66666667%;
    margin-left: 0;
  }
  .ant-col-md-push-11.ant-col-rtl {
    right: 45.83333333%;
    left: auto;
  }
  .ant-col-md-pull-11.ant-col-rtl {
    right: auto;
    left: 45.83333333%;
  }
  .ant-col-md-offset-11.ant-col-rtl {
    margin-right: 45.83333333%;
    margin-left: 0;
  }
  .ant-col-md-push-12.ant-col-rtl {
    right: 50%;
    left: auto;
  }
  .ant-col-md-pull-12.ant-col-rtl {
    right: auto;
    left: 50%;
  }
  .ant-col-md-offset-12.ant-col-rtl {
    margin-right: 50%;
    margin-left: 0;
  }
  .ant-col-md-push-13.ant-col-rtl {
    right: 54.16666667%;
    left: auto;
  }
  .ant-col-md-pull-13.ant-col-rtl {
    right: auto;
    left: 54.16666667%;
  }
  .ant-col-md-offset-13.ant-col-rtl {
    margin-right: 54.16666667%;
    margin-left: 0;
  }
  .ant-col-md-push-14.ant-col-rtl {
    right: 58.33333333%;
    left: auto;
  }
  .ant-col-md-pull-14.ant-col-rtl {
    right: auto;
    left: 58.33333333%;
  }
  .ant-col-md-offset-14.ant-col-rtl {
    margin-right: 58.33333333%;
    margin-left: 0;
  }
  .ant-col-md-push-15.ant-col-rtl {
    right: 62.5%;
    left: auto;
  }
  .ant-col-md-pull-15.ant-col-rtl {
    right: auto;
    left: 62.5%;
  }
  .ant-col-md-offset-15.ant-col-rtl {
    margin-right: 62.5%;
    margin-left: 0;
  }
  .ant-col-md-push-16.ant-col-rtl {
    right: 66.66666667%;
    left: auto;
  }
  .ant-col-md-pull-16.ant-col-rtl {
    right: auto;
    left: 66.66666667%;
  }
  .ant-col-md-offset-16.ant-col-rtl {
    margin-right: 66.66666667%;
    margin-left: 0;
  }
  .ant-col-md-push-17.ant-col-rtl {
    right: 70.83333333%;
    left: auto;
  }
  .ant-col-md-pull-17.ant-col-rtl {
    right: auto;
    left: 70.83333333%;
  }
  .ant-col-md-offset-17.ant-col-rtl {
    margin-right: 70.83333333%;
    margin-left: 0;
  }
  .ant-col-md-push-18.ant-col-rtl {
    right: 75%;
    left: auto;
  }
  .ant-col-md-pull-18.ant-col-rtl {
    right: auto;
    left: 75%;
  }
  .ant-col-md-offset-18.ant-col-rtl {
    margin-right: 75%;
    margin-left: 0;
  }
  .ant-col-md-push-19.ant-col-rtl {
    right: 79.16666667%;
    left: auto;
  }
  .ant-col-md-pull-19.ant-col-rtl {
    right: auto;
    left: 79.16666667%;
  }
  .ant-col-md-offset-19.ant-col-rtl {
    margin-right: 79.16666667%;
    margin-left: 0;
  }
  .ant-col-md-push-20.ant-col-rtl {
    right: 83.33333333%;
    left: auto;
  }
  .ant-col-md-pull-20.ant-col-rtl {
    right: auto;
    left: 83.33333333%;
  }
  .ant-col-md-offset-20.ant-col-rtl {
    margin-right: 83.33333333%;
    margin-left: 0;
  }
  .ant-col-md-push-21.ant-col-rtl {
    right: 87.5%;
    left: auto;
  }
  .ant-col-md-pull-21.ant-col-rtl {
    right: auto;
    left: 87.5%;
  }
  .ant-col-md-offset-21.ant-col-rtl {
    margin-right: 87.5%;
    margin-left: 0;
  }
  .ant-col-md-push-22.ant-col-rtl {
    right: 91.66666667%;
    left: auto;
  }
  .ant-col-md-pull-22.ant-col-rtl {
    right: auto;
    left: 91.66666667%;
  }
  .ant-col-md-offset-22.ant-col-rtl {
    margin-right: 91.66666667%;
    margin-left: 0;
  }
  .ant-col-md-push-23.ant-col-rtl {
    right: 95.83333333%;
    left: auto;
  }
  .ant-col-md-pull-23.ant-col-rtl {
    right: auto;
    left: 95.83333333%;
  }
  .ant-col-md-offset-23.ant-col-rtl {
    margin-right: 95.83333333%;
    margin-left: 0;
  }
  .ant-col-md-push-24.ant-col-rtl {
    right: 100%;
    left: auto;
  }
  .ant-col-md-pull-24.ant-col-rtl {
    right: auto;
    left: 100%;
  }
  .ant-col-md-offset-24.ant-col-rtl {
    margin-right: 100%;
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .ant-col-lg-24 {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ant-col-lg-push-24 {
    left: 100%;
  }
  .ant-col-lg-pull-24 {
    right: 100%;
  }
  .ant-col-lg-offset-24 {
    margin-left: 100%;
  }
  .ant-col-lg-order-24 {
    order: 24;
  }
  .ant-col-lg-23 {
    display: block;
    flex: 0 0 95.83333333%;
    max-width: 95.83333333%;
  }
  .ant-col-lg-push-23 {
    left: 95.83333333%;
  }
  .ant-col-lg-pull-23 {
    right: 95.83333333%;
  }
  .ant-col-lg-offset-23 {
    margin-left: 95.83333333%;
  }
  .ant-col-lg-order-23 {
    order: 23;
  }
  .ant-col-lg-22 {
    display: block;
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .ant-col-lg-push-22 {
    left: 91.66666667%;
  }
  .ant-col-lg-pull-22 {
    right: 91.66666667%;
  }
  .ant-col-lg-offset-22 {
    margin-left: 91.66666667%;
  }
  .ant-col-lg-order-22 {
    order: 22;
  }
  .ant-col-lg-21 {
    display: block;
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .ant-col-lg-push-21 {
    left: 87.5%;
  }
  .ant-col-lg-pull-21 {
    right: 87.5%;
  }
  .ant-col-lg-offset-21 {
    margin-left: 87.5%;
  }
  .ant-col-lg-order-21 {
    order: 21;
  }
  .ant-col-lg-20 {
    display: block;
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .ant-col-lg-push-20 {
    left: 83.33333333%;
  }
  .ant-col-lg-pull-20 {
    right: 83.33333333%;
  }
  .ant-col-lg-offset-20 {
    margin-left: 83.33333333%;
  }
  .ant-col-lg-order-20 {
    order: 20;
  }
  .ant-col-lg-19 {
    display: block;
    flex: 0 0 79.16666667%;
    max-width: 79.16666667%;
  }
  .ant-col-lg-push-19 {
    left: 79.16666667%;
  }
  .ant-col-lg-pull-19 {
    right: 79.16666667%;
  }
  .ant-col-lg-offset-19 {
    margin-left: 79.16666667%;
  }
  .ant-col-lg-order-19 {
    order: 19;
  }
  .ant-col-lg-18 {
    display: block;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ant-col-lg-push-18 {
    left: 75%;
  }
  .ant-col-lg-pull-18 {
    right: 75%;
  }
  .ant-col-lg-offset-18 {
    margin-left: 75%;
  }
  .ant-col-lg-order-18 {
    order: 18;
  }
  .ant-col-lg-17 {
    display: block;
    flex: 0 0 70.83333333%;
    max-width: 70.83333333%;
  }
  .ant-col-lg-push-17 {
    left: 70.83333333%;
  }
  .ant-col-lg-pull-17 {
    right: 70.83333333%;
  }
  .ant-col-lg-offset-17 {
    margin-left: 70.83333333%;
  }
  .ant-col-lg-order-17 {
    order: 17;
  }
  .ant-col-lg-16 {
    display: block;
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .ant-col-lg-push-16 {
    left: 66.66666667%;
  }
  .ant-col-lg-pull-16 {
    right: 66.66666667%;
  }
  .ant-col-lg-offset-16 {
    margin-left: 66.66666667%;
  }
  .ant-col-lg-order-16 {
    order: 16;
  }
  .ant-col-lg-15 {
    display: block;
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .ant-col-lg-push-15 {
    left: 62.5%;
  }
  .ant-col-lg-pull-15 {
    right: 62.5%;
  }
  .ant-col-lg-offset-15 {
    margin-left: 62.5%;
  }
  .ant-col-lg-order-15 {
    order: 15;
  }
  .ant-col-lg-14 {
    display: block;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .ant-col-lg-push-14 {
    left: 58.33333333%;
  }
  .ant-col-lg-pull-14 {
    right: 58.33333333%;
  }
  .ant-col-lg-offset-14 {
    margin-left: 58.33333333%;
  }
  .ant-col-lg-order-14 {
    order: 14;
  }
  .ant-col-lg-13 {
    display: block;
    flex: 0 0 54.16666667%;
    max-width: 54.16666667%;
  }
  .ant-col-lg-push-13 {
    left: 54.16666667%;
  }
  .ant-col-lg-pull-13 {
    right: 54.16666667%;
  }
  .ant-col-lg-offset-13 {
    margin-left: 54.16666667%;
  }
  .ant-col-lg-order-13 {
    order: 13;
  }
  .ant-col-lg-12 {
    display: block;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ant-col-lg-push-12 {
    left: 50%;
  }
  .ant-col-lg-pull-12 {
    right: 50%;
  }
  .ant-col-lg-offset-12 {
    margin-left: 50%;
  }
  .ant-col-lg-order-12 {
    order: 12;
  }
  .ant-col-lg-11 {
    display: block;
    flex: 0 0 45.83333333%;
    max-width: 45.83333333%;
  }
  .ant-col-lg-push-11 {
    left: 45.83333333%;
  }
  .ant-col-lg-pull-11 {
    right: 45.83333333%;
  }
  .ant-col-lg-offset-11 {
    margin-left: 45.83333333%;
  }
  .ant-col-lg-order-11 {
    order: 11;
  }
  .ant-col-lg-10 {
    display: block;
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .ant-col-lg-push-10 {
    left: 41.66666667%;
  }
  .ant-col-lg-pull-10 {
    right: 41.66666667%;
  }
  .ant-col-lg-offset-10 {
    margin-left: 41.66666667%;
  }
  .ant-col-lg-order-10 {
    order: 10;
  }
  .ant-col-lg-9 {
    display: block;
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .ant-col-lg-push-9 {
    left: 37.5%;
  }
  .ant-col-lg-pull-9 {
    right: 37.5%;
  }
  .ant-col-lg-offset-9 {
    margin-left: 37.5%;
  }
  .ant-col-lg-order-9 {
    order: 9;
  }
  .ant-col-lg-8 {
    display: block;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .ant-col-lg-push-8 {
    left: 33.33333333%;
  }
  .ant-col-lg-pull-8 {
    right: 33.33333333%;
  }
  .ant-col-lg-offset-8 {
    margin-left: 33.33333333%;
  }
  .ant-col-lg-order-8 {
    order: 8;
  }
  .ant-col-lg-7 {
    display: block;
    flex: 0 0 29.16666667%;
    max-width: 29.16666667%;
  }
  .ant-col-lg-push-7 {
    left: 29.16666667%;
  }
  .ant-col-lg-pull-7 {
    right: 29.16666667%;
  }
  .ant-col-lg-offset-7 {
    margin-left: 29.16666667%;
  }
  .ant-col-lg-order-7 {
    order: 7;
  }
  .ant-col-lg-6 {
    display: block;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ant-col-lg-push-6 {
    left: 25%;
  }
  .ant-col-lg-pull-6 {
    right: 25%;
  }
  .ant-col-lg-offset-6 {
    margin-left: 25%;
  }
  .ant-col-lg-order-6 {
    order: 6;
  }
  .ant-col-lg-5 {
    display: block;
    flex: 0 0 20.83333333%;
    max-width: 20.83333333%;
  }
  .ant-col-lg-push-5 {
    left: 20.83333333%;
  }
  .ant-col-lg-pull-5 {
    right: 20.83333333%;
  }
  .ant-col-lg-offset-5 {
    margin-left: 20.83333333%;
  }
  .ant-col-lg-order-5 {
    order: 5;
  }
  .ant-col-lg-4 {
    display: block;
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .ant-col-lg-push-4 {
    left: 16.66666667%;
  }
  .ant-col-lg-pull-4 {
    right: 16.66666667%;
  }
  .ant-col-lg-offset-4 {
    margin-left: 16.66666667%;
  }
  .ant-col-lg-order-4 {
    order: 4;
  }
  .ant-col-lg-3 {
    display: block;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .ant-col-lg-push-3 {
    left: 12.5%;
  }
  .ant-col-lg-pull-3 {
    right: 12.5%;
  }
  .ant-col-lg-offset-3 {
    margin-left: 12.5%;
  }
  .ant-col-lg-order-3 {
    order: 3;
  }
  .ant-col-lg-2 {
    display: block;
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .ant-col-lg-push-2 {
    left: 8.33333333%;
  }
  .ant-col-lg-pull-2 {
    right: 8.33333333%;
  }
  .ant-col-lg-offset-2 {
    margin-left: 8.33333333%;
  }
  .ant-col-lg-order-2 {
    order: 2;
  }
  .ant-col-lg-1 {
    display: block;
    flex: 0 0 4.16666667%;
    max-width: 4.16666667%;
  }
  .ant-col-lg-push-1 {
    left: 4.16666667%;
  }
  .ant-col-lg-pull-1 {
    right: 4.16666667%;
  }
  .ant-col-lg-offset-1 {
    margin-left: 4.16666667%;
  }
  .ant-col-lg-order-1 {
    order: 1;
  }
  .ant-col-lg-0 {
    display: none;
  }
  .ant-col-push-0 {
    left: auto;
  }
  .ant-col-pull-0 {
    right: auto;
  }
  .ant-col-lg-push-0 {
    left: auto;
  }
  .ant-col-lg-pull-0 {
    right: auto;
  }
  .ant-col-lg-offset-0 {
    margin-left: 0;
  }
  .ant-col-lg-order-0 {
    order: 0;
  }
  .ant-col-push-0.ant-col-rtl {
    right: auto;
  }
  .ant-col-pull-0.ant-col-rtl {
    left: auto;
  }
  .ant-col-lg-push-0.ant-col-rtl {
    right: auto;
  }
  .ant-col-lg-pull-0.ant-col-rtl {
    left: auto;
  }
  .ant-col-lg-offset-0.ant-col-rtl {
    margin-right: 0;
  }
  .ant-col-lg-push-1.ant-col-rtl {
    right: 4.16666667%;
    left: auto;
  }
  .ant-col-lg-pull-1.ant-col-rtl {
    right: auto;
    left: 4.16666667%;
  }
  .ant-col-lg-offset-1.ant-col-rtl {
    margin-right: 4.16666667%;
    margin-left: 0;
  }
  .ant-col-lg-push-2.ant-col-rtl {
    right: 8.33333333%;
    left: auto;
  }
  .ant-col-lg-pull-2.ant-col-rtl {
    right: auto;
    left: 8.33333333%;
  }
  .ant-col-lg-offset-2.ant-col-rtl {
    margin-right: 8.33333333%;
    margin-left: 0;
  }
  .ant-col-lg-push-3.ant-col-rtl {
    right: 12.5%;
    left: auto;
  }
  .ant-col-lg-pull-3.ant-col-rtl {
    right: auto;
    left: 12.5%;
  }
  .ant-col-lg-offset-3.ant-col-rtl {
    margin-right: 12.5%;
    margin-left: 0;
  }
  .ant-col-lg-push-4.ant-col-rtl {
    right: 16.66666667%;
    left: auto;
  }
  .ant-col-lg-pull-4.ant-col-rtl {
    right: auto;
    left: 16.66666667%;
  }
  .ant-col-lg-offset-4.ant-col-rtl {
    margin-right: 16.66666667%;
    margin-left: 0;
  }
  .ant-col-lg-push-5.ant-col-rtl {
    right: 20.83333333%;
    left: auto;
  }
  .ant-col-lg-pull-5.ant-col-rtl {
    right: auto;
    left: 20.83333333%;
  }
  .ant-col-lg-offset-5.ant-col-rtl {
    margin-right: 20.83333333%;
    margin-left: 0;
  }
  .ant-col-lg-push-6.ant-col-rtl {
    right: 25%;
    left: auto;
  }
  .ant-col-lg-pull-6.ant-col-rtl {
    right: auto;
    left: 25%;
  }
  .ant-col-lg-offset-6.ant-col-rtl {
    margin-right: 25%;
    margin-left: 0;
  }
  .ant-col-lg-push-7.ant-col-rtl {
    right: 29.16666667%;
    left: auto;
  }
  .ant-col-lg-pull-7.ant-col-rtl {
    right: auto;
    left: 29.16666667%;
  }
  .ant-col-lg-offset-7.ant-col-rtl {
    margin-right: 29.16666667%;
    margin-left: 0;
  }
  .ant-col-lg-push-8.ant-col-rtl {
    right: 33.33333333%;
    left: auto;
  }
  .ant-col-lg-pull-8.ant-col-rtl {
    right: auto;
    left: 33.33333333%;
  }
  .ant-col-lg-offset-8.ant-col-rtl {
    margin-right: 33.33333333%;
    margin-left: 0;
  }
  .ant-col-lg-push-9.ant-col-rtl {
    right: 37.5%;
    left: auto;
  }
  .ant-col-lg-pull-9.ant-col-rtl {
    right: auto;
    left: 37.5%;
  }
  .ant-col-lg-offset-9.ant-col-rtl {
    margin-right: 37.5%;
    margin-left: 0;
  }
  .ant-col-lg-push-10.ant-col-rtl {
    right: 41.66666667%;
    left: auto;
  }
  .ant-col-lg-pull-10.ant-col-rtl {
    right: auto;
    left: 41.66666667%;
  }
  .ant-col-lg-offset-10.ant-col-rtl {
    margin-right: 41.66666667%;
    margin-left: 0;
  }
  .ant-col-lg-push-11.ant-col-rtl {
    right: 45.83333333%;
    left: auto;
  }
  .ant-col-lg-pull-11.ant-col-rtl {
    right: auto;
    left: 45.83333333%;
  }
  .ant-col-lg-offset-11.ant-col-rtl {
    margin-right: 45.83333333%;
    margin-left: 0;
  }
  .ant-col-lg-push-12.ant-col-rtl {
    right: 50%;
    left: auto;
  }
  .ant-col-lg-pull-12.ant-col-rtl {
    right: auto;
    left: 50%;
  }
  .ant-col-lg-offset-12.ant-col-rtl {
    margin-right: 50%;
    margin-left: 0;
  }
  .ant-col-lg-push-13.ant-col-rtl {
    right: 54.16666667%;
    left: auto;
  }
  .ant-col-lg-pull-13.ant-col-rtl {
    right: auto;
    left: 54.16666667%;
  }
  .ant-col-lg-offset-13.ant-col-rtl {
    margin-right: 54.16666667%;
    margin-left: 0;
  }
  .ant-col-lg-push-14.ant-col-rtl {
    right: 58.33333333%;
    left: auto;
  }
  .ant-col-lg-pull-14.ant-col-rtl {
    right: auto;
    left: 58.33333333%;
  }
  .ant-col-lg-offset-14.ant-col-rtl {
    margin-right: 58.33333333%;
    margin-left: 0;
  }
  .ant-col-lg-push-15.ant-col-rtl {
    right: 62.5%;
    left: auto;
  }
  .ant-col-lg-pull-15.ant-col-rtl {
    right: auto;
    left: 62.5%;
  }
  .ant-col-lg-offset-15.ant-col-rtl {
    margin-right: 62.5%;
    margin-left: 0;
  }
  .ant-col-lg-push-16.ant-col-rtl {
    right: 66.66666667%;
    left: auto;
  }
  .ant-col-lg-pull-16.ant-col-rtl {
    right: auto;
    left: 66.66666667%;
  }
  .ant-col-lg-offset-16.ant-col-rtl {
    margin-right: 66.66666667%;
    margin-left: 0;
  }
  .ant-col-lg-push-17.ant-col-rtl {
    right: 70.83333333%;
    left: auto;
  }
  .ant-col-lg-pull-17.ant-col-rtl {
    right: auto;
    left: 70.83333333%;
  }
  .ant-col-lg-offset-17.ant-col-rtl {
    margin-right: 70.83333333%;
    margin-left: 0;
  }
  .ant-col-lg-push-18.ant-col-rtl {
    right: 75%;
    left: auto;
  }
  .ant-col-lg-pull-18.ant-col-rtl {
    right: auto;
    left: 75%;
  }
  .ant-col-lg-offset-18.ant-col-rtl {
    margin-right: 75%;
    margin-left: 0;
  }
  .ant-col-lg-push-19.ant-col-rtl {
    right: 79.16666667%;
    left: auto;
  }
  .ant-col-lg-pull-19.ant-col-rtl {
    right: auto;
    left: 79.16666667%;
  }
  .ant-col-lg-offset-19.ant-col-rtl {
    margin-right: 79.16666667%;
    margin-left: 0;
  }
  .ant-col-lg-push-20.ant-col-rtl {
    right: 83.33333333%;
    left: auto;
  }
  .ant-col-lg-pull-20.ant-col-rtl {
    right: auto;
    left: 83.33333333%;
  }
  .ant-col-lg-offset-20.ant-col-rtl {
    margin-right: 83.33333333%;
    margin-left: 0;
  }
  .ant-col-lg-push-21.ant-col-rtl {
    right: 87.5%;
    left: auto;
  }
  .ant-col-lg-pull-21.ant-col-rtl {
    right: auto;
    left: 87.5%;
  }
  .ant-col-lg-offset-21.ant-col-rtl {
    margin-right: 87.5%;
    margin-left: 0;
  }
  .ant-col-lg-push-22.ant-col-rtl {
    right: 91.66666667%;
    left: auto;
  }
  .ant-col-lg-pull-22.ant-col-rtl {
    right: auto;
    left: 91.66666667%;
  }
  .ant-col-lg-offset-22.ant-col-rtl {
    margin-right: 91.66666667%;
    margin-left: 0;
  }
  .ant-col-lg-push-23.ant-col-rtl {
    right: 95.83333333%;
    left: auto;
  }
  .ant-col-lg-pull-23.ant-col-rtl {
    right: auto;
    left: 95.83333333%;
  }
  .ant-col-lg-offset-23.ant-col-rtl {
    margin-right: 95.83333333%;
    margin-left: 0;
  }
  .ant-col-lg-push-24.ant-col-rtl {
    right: 100%;
    left: auto;
  }
  .ant-col-lg-pull-24.ant-col-rtl {
    right: auto;
    left: 100%;
  }
  .ant-col-lg-offset-24.ant-col-rtl {
    margin-right: 100%;
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .ant-col-xl-24 {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ant-col-xl-push-24 {
    left: 100%;
  }
  .ant-col-xl-pull-24 {
    right: 100%;
  }
  .ant-col-xl-offset-24 {
    margin-left: 100%;
  }
  .ant-col-xl-order-24 {
    order: 24;
  }
  .ant-col-xl-23 {
    display: block;
    flex: 0 0 95.83333333%;
    max-width: 95.83333333%;
  }
  .ant-col-xl-push-23 {
    left: 95.83333333%;
  }
  .ant-col-xl-pull-23 {
    right: 95.83333333%;
  }
  .ant-col-xl-offset-23 {
    margin-left: 95.83333333%;
  }
  .ant-col-xl-order-23 {
    order: 23;
  }
  .ant-col-xl-22 {
    display: block;
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .ant-col-xl-push-22 {
    left: 91.66666667%;
  }
  .ant-col-xl-pull-22 {
    right: 91.66666667%;
  }
  .ant-col-xl-offset-22 {
    margin-left: 91.66666667%;
  }
  .ant-col-xl-order-22 {
    order: 22;
  }
  .ant-col-xl-21 {
    display: block;
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .ant-col-xl-push-21 {
    left: 87.5%;
  }
  .ant-col-xl-pull-21 {
    right: 87.5%;
  }
  .ant-col-xl-offset-21 {
    margin-left: 87.5%;
  }
  .ant-col-xl-order-21 {
    order: 21;
  }
  .ant-col-xl-20 {
    display: block;
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .ant-col-xl-push-20 {
    left: 83.33333333%;
  }
  .ant-col-xl-pull-20 {
    right: 83.33333333%;
  }
  .ant-col-xl-offset-20 {
    margin-left: 83.33333333%;
  }
  .ant-col-xl-order-20 {
    order: 20;
  }
  .ant-col-xl-19 {
    display: block;
    flex: 0 0 79.16666667%;
    max-width: 79.16666667%;
  }
  .ant-col-xl-push-19 {
    left: 79.16666667%;
  }
  .ant-col-xl-pull-19 {
    right: 79.16666667%;
  }
  .ant-col-xl-offset-19 {
    margin-left: 79.16666667%;
  }
  .ant-col-xl-order-19 {
    order: 19;
  }
  .ant-col-xl-18 {
    display: block;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ant-col-xl-push-18 {
    left: 75%;
  }
  .ant-col-xl-pull-18 {
    right: 75%;
  }
  .ant-col-xl-offset-18 {
    margin-left: 75%;
  }
  .ant-col-xl-order-18 {
    order: 18;
  }
  .ant-col-xl-17 {
    display: block;
    flex: 0 0 70.83333333%;
    max-width: 70.83333333%;
  }
  .ant-col-xl-push-17 {
    left: 70.83333333%;
  }
  .ant-col-xl-pull-17 {
    right: 70.83333333%;
  }
  .ant-col-xl-offset-17 {
    margin-left: 70.83333333%;
  }
  .ant-col-xl-order-17 {
    order: 17;
  }
  .ant-col-xl-16 {
    display: block;
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .ant-col-xl-push-16 {
    left: 66.66666667%;
  }
  .ant-col-xl-pull-16 {
    right: 66.66666667%;
  }
  .ant-col-xl-offset-16 {
    margin-left: 66.66666667%;
  }
  .ant-col-xl-order-16 {
    order: 16;
  }
  .ant-col-xl-15 {
    display: block;
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .ant-col-xl-push-15 {
    left: 62.5%;
  }
  .ant-col-xl-pull-15 {
    right: 62.5%;
  }
  .ant-col-xl-offset-15 {
    margin-left: 62.5%;
  }
  .ant-col-xl-order-15 {
    order: 15;
  }
  .ant-col-xl-14 {
    display: block;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .ant-col-xl-push-14 {
    left: 58.33333333%;
  }
  .ant-col-xl-pull-14 {
    right: 58.33333333%;
  }
  .ant-col-xl-offset-14 {
    margin-left: 58.33333333%;
  }
  .ant-col-xl-order-14 {
    order: 14;
  }
  .ant-col-xl-13 {
    display: block;
    flex: 0 0 54.16666667%;
    max-width: 54.16666667%;
  }
  .ant-col-xl-push-13 {
    left: 54.16666667%;
  }
  .ant-col-xl-pull-13 {
    right: 54.16666667%;
  }
  .ant-col-xl-offset-13 {
    margin-left: 54.16666667%;
  }
  .ant-col-xl-order-13 {
    order: 13;
  }
  .ant-col-xl-12 {
    display: block;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ant-col-xl-push-12 {
    left: 50%;
  }
  .ant-col-xl-pull-12 {
    right: 50%;
  }
  .ant-col-xl-offset-12 {
    margin-left: 50%;
  }
  .ant-col-xl-order-12 {
    order: 12;
  }
  .ant-col-xl-11 {
    display: block;
    flex: 0 0 45.83333333%;
    max-width: 45.83333333%;
  }
  .ant-col-xl-push-11 {
    left: 45.83333333%;
  }
  .ant-col-xl-pull-11 {
    right: 45.83333333%;
  }
  .ant-col-xl-offset-11 {
    margin-left: 45.83333333%;
  }
  .ant-col-xl-order-11 {
    order: 11;
  }
  .ant-col-xl-10 {
    display: block;
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .ant-col-xl-push-10 {
    left: 41.66666667%;
  }
  .ant-col-xl-pull-10 {
    right: 41.66666667%;
  }
  .ant-col-xl-offset-10 {
    margin-left: 41.66666667%;
  }
  .ant-col-xl-order-10 {
    order: 10;
  }
  .ant-col-xl-9 {
    display: block;
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .ant-col-xl-push-9 {
    left: 37.5%;
  }
  .ant-col-xl-pull-9 {
    right: 37.5%;
  }
  .ant-col-xl-offset-9 {
    margin-left: 37.5%;
  }
  .ant-col-xl-order-9 {
    order: 9;
  }
  .ant-col-xl-8 {
    display: block;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .ant-col-xl-push-8 {
    left: 33.33333333%;
  }
  .ant-col-xl-pull-8 {
    right: 33.33333333%;
  }
  .ant-col-xl-offset-8 {
    margin-left: 33.33333333%;
  }
  .ant-col-xl-order-8 {
    order: 8;
  }
  .ant-col-xl-7 {
    display: block;
    flex: 0 0 29.16666667%;
    max-width: 29.16666667%;
  }
  .ant-col-xl-push-7 {
    left: 29.16666667%;
  }
  .ant-col-xl-pull-7 {
    right: 29.16666667%;
  }
  .ant-col-xl-offset-7 {
    margin-left: 29.16666667%;
  }
  .ant-col-xl-order-7 {
    order: 7;
  }
  .ant-col-xl-6 {
    display: block;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ant-col-xl-push-6 {
    left: 25%;
  }
  .ant-col-xl-pull-6 {
    right: 25%;
  }
  .ant-col-xl-offset-6 {
    margin-left: 25%;
  }
  .ant-col-xl-order-6 {
    order: 6;
  }
  .ant-col-xl-5 {
    display: block;
    flex: 0 0 20.83333333%;
    max-width: 20.83333333%;
  }
  .ant-col-xl-push-5 {
    left: 20.83333333%;
  }
  .ant-col-xl-pull-5 {
    right: 20.83333333%;
  }
  .ant-col-xl-offset-5 {
    margin-left: 20.83333333%;
  }
  .ant-col-xl-order-5 {
    order: 5;
  }
  .ant-col-xl-4 {
    display: block;
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .ant-col-xl-push-4 {
    left: 16.66666667%;
  }
  .ant-col-xl-pull-4 {
    right: 16.66666667%;
  }
  .ant-col-xl-offset-4 {
    margin-left: 16.66666667%;
  }
  .ant-col-xl-order-4 {
    order: 4;
  }
  .ant-col-xl-3 {
    display: block;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .ant-col-xl-push-3 {
    left: 12.5%;
  }
  .ant-col-xl-pull-3 {
    right: 12.5%;
  }
  .ant-col-xl-offset-3 {
    margin-left: 12.5%;
  }
  .ant-col-xl-order-3 {
    order: 3;
  }
  .ant-col-xl-2 {
    display: block;
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .ant-col-xl-push-2 {
    left: 8.33333333%;
  }
  .ant-col-xl-pull-2 {
    right: 8.33333333%;
  }
  .ant-col-xl-offset-2 {
    margin-left: 8.33333333%;
  }
  .ant-col-xl-order-2 {
    order: 2;
  }
  .ant-col-xl-1 {
    display: block;
    flex: 0 0 4.16666667%;
    max-width: 4.16666667%;
  }
  .ant-col-xl-push-1 {
    left: 4.16666667%;
  }
  .ant-col-xl-pull-1 {
    right: 4.16666667%;
  }
  .ant-col-xl-offset-1 {
    margin-left: 4.16666667%;
  }
  .ant-col-xl-order-1 {
    order: 1;
  }
  .ant-col-xl-0 {
    display: none;
  }
  .ant-col-push-0 {
    left: auto;
  }
  .ant-col-pull-0 {
    right: auto;
  }
  .ant-col-xl-push-0 {
    left: auto;
  }
  .ant-col-xl-pull-0 {
    right: auto;
  }
  .ant-col-xl-offset-0 {
    margin-left: 0;
  }
  .ant-col-xl-order-0 {
    order: 0;
  }
  .ant-col-push-0.ant-col-rtl {
    right: auto;
  }
  .ant-col-pull-0.ant-col-rtl {
    left: auto;
  }
  .ant-col-xl-push-0.ant-col-rtl {
    right: auto;
  }
  .ant-col-xl-pull-0.ant-col-rtl {
    left: auto;
  }
  .ant-col-xl-offset-0.ant-col-rtl {
    margin-right: 0;
  }
  .ant-col-xl-push-1.ant-col-rtl {
    right: 4.16666667%;
    left: auto;
  }
  .ant-col-xl-pull-1.ant-col-rtl {
    right: auto;
    left: 4.16666667%;
  }
  .ant-col-xl-offset-1.ant-col-rtl {
    margin-right: 4.16666667%;
    margin-left: 0;
  }
  .ant-col-xl-push-2.ant-col-rtl {
    right: 8.33333333%;
    left: auto;
  }
  .ant-col-xl-pull-2.ant-col-rtl {
    right: auto;
    left: 8.33333333%;
  }
  .ant-col-xl-offset-2.ant-col-rtl {
    margin-right: 8.33333333%;
    margin-left: 0;
  }
  .ant-col-xl-push-3.ant-col-rtl {
    right: 12.5%;
    left: auto;
  }
  .ant-col-xl-pull-3.ant-col-rtl {
    right: auto;
    left: 12.5%;
  }
  .ant-col-xl-offset-3.ant-col-rtl {
    margin-right: 12.5%;
    margin-left: 0;
  }
  .ant-col-xl-push-4.ant-col-rtl {
    right: 16.66666667%;
    left: auto;
  }
  .ant-col-xl-pull-4.ant-col-rtl {
    right: auto;
    left: 16.66666667%;
  }
  .ant-col-xl-offset-4.ant-col-rtl {
    margin-right: 16.66666667%;
    margin-left: 0;
  }
  .ant-col-xl-push-5.ant-col-rtl {
    right: 20.83333333%;
    left: auto;
  }
  .ant-col-xl-pull-5.ant-col-rtl {
    right: auto;
    left: 20.83333333%;
  }
  .ant-col-xl-offset-5.ant-col-rtl {
    margin-right: 20.83333333%;
    margin-left: 0;
  }
  .ant-col-xl-push-6.ant-col-rtl {
    right: 25%;
    left: auto;
  }
  .ant-col-xl-pull-6.ant-col-rtl {
    right: auto;
    left: 25%;
  }
  .ant-col-xl-offset-6.ant-col-rtl {
    margin-right: 25%;
    margin-left: 0;
  }
  .ant-col-xl-push-7.ant-col-rtl {
    right: 29.16666667%;
    left: auto;
  }
  .ant-col-xl-pull-7.ant-col-rtl {
    right: auto;
    left: 29.16666667%;
  }
  .ant-col-xl-offset-7.ant-col-rtl {
    margin-right: 29.16666667%;
    margin-left: 0;
  }
  .ant-col-xl-push-8.ant-col-rtl {
    right: 33.33333333%;
    left: auto;
  }
  .ant-col-xl-pull-8.ant-col-rtl {
    right: auto;
    left: 33.33333333%;
  }
  .ant-col-xl-offset-8.ant-col-rtl {
    margin-right: 33.33333333%;
    margin-left: 0;
  }
  .ant-col-xl-push-9.ant-col-rtl {
    right: 37.5%;
    left: auto;
  }
  .ant-col-xl-pull-9.ant-col-rtl {
    right: auto;
    left: 37.5%;
  }
  .ant-col-xl-offset-9.ant-col-rtl {
    margin-right: 37.5%;
    margin-left: 0;
  }
  .ant-col-xl-push-10.ant-col-rtl {
    right: 41.66666667%;
    left: auto;
  }
  .ant-col-xl-pull-10.ant-col-rtl {
    right: auto;
    left: 41.66666667%;
  }
  .ant-col-xl-offset-10.ant-col-rtl {
    margin-right: 41.66666667%;
    margin-left: 0;
  }
  .ant-col-xl-push-11.ant-col-rtl {
    right: 45.83333333%;
    left: auto;
  }
  .ant-col-xl-pull-11.ant-col-rtl {
    right: auto;
    left: 45.83333333%;
  }
  .ant-col-xl-offset-11.ant-col-rtl {
    margin-right: 45.83333333%;
    margin-left: 0;
  }
  .ant-col-xl-push-12.ant-col-rtl {
    right: 50%;
    left: auto;
  }
  .ant-col-xl-pull-12.ant-col-rtl {
    right: auto;
    left: 50%;
  }
  .ant-col-xl-offset-12.ant-col-rtl {
    margin-right: 50%;
    margin-left: 0;
  }
  .ant-col-xl-push-13.ant-col-rtl {
    right: 54.16666667%;
    left: auto;
  }
  .ant-col-xl-pull-13.ant-col-rtl {
    right: auto;
    left: 54.16666667%;
  }
  .ant-col-xl-offset-13.ant-col-rtl {
    margin-right: 54.16666667%;
    margin-left: 0;
  }
  .ant-col-xl-push-14.ant-col-rtl {
    right: 58.33333333%;
    left: auto;
  }
  .ant-col-xl-pull-14.ant-col-rtl {
    right: auto;
    left: 58.33333333%;
  }
  .ant-col-xl-offset-14.ant-col-rtl {
    margin-right: 58.33333333%;
    margin-left: 0;
  }
  .ant-col-xl-push-15.ant-col-rtl {
    right: 62.5%;
    left: auto;
  }
  .ant-col-xl-pull-15.ant-col-rtl {
    right: auto;
    left: 62.5%;
  }
  .ant-col-xl-offset-15.ant-col-rtl {
    margin-right: 62.5%;
    margin-left: 0;
  }
  .ant-col-xl-push-16.ant-col-rtl {
    right: 66.66666667%;
    left: auto;
  }
  .ant-col-xl-pull-16.ant-col-rtl {
    right: auto;
    left: 66.66666667%;
  }
  .ant-col-xl-offset-16.ant-col-rtl {
    margin-right: 66.66666667%;
    margin-left: 0;
  }
  .ant-col-xl-push-17.ant-col-rtl {
    right: 70.83333333%;
    left: auto;
  }
  .ant-col-xl-pull-17.ant-col-rtl {
    right: auto;
    left: 70.83333333%;
  }
  .ant-col-xl-offset-17.ant-col-rtl {
    margin-right: 70.83333333%;
    margin-left: 0;
  }
  .ant-col-xl-push-18.ant-col-rtl {
    right: 75%;
    left: auto;
  }
  .ant-col-xl-pull-18.ant-col-rtl {
    right: auto;
    left: 75%;
  }
  .ant-col-xl-offset-18.ant-col-rtl {
    margin-right: 75%;
    margin-left: 0;
  }
  .ant-col-xl-push-19.ant-col-rtl {
    right: 79.16666667%;
    left: auto;
  }
  .ant-col-xl-pull-19.ant-col-rtl {
    right: auto;
    left: 79.16666667%;
  }
  .ant-col-xl-offset-19.ant-col-rtl {
    margin-right: 79.16666667%;
    margin-left: 0;
  }
  .ant-col-xl-push-20.ant-col-rtl {
    right: 83.33333333%;
    left: auto;
  }
  .ant-col-xl-pull-20.ant-col-rtl {
    right: auto;
    left: 83.33333333%;
  }
  .ant-col-xl-offset-20.ant-col-rtl {
    margin-right: 83.33333333%;
    margin-left: 0;
  }
  .ant-col-xl-push-21.ant-col-rtl {
    right: 87.5%;
    left: auto;
  }
  .ant-col-xl-pull-21.ant-col-rtl {
    right: auto;
    left: 87.5%;
  }
  .ant-col-xl-offset-21.ant-col-rtl {
    margin-right: 87.5%;
    margin-left: 0;
  }
  .ant-col-xl-push-22.ant-col-rtl {
    right: 91.66666667%;
    left: auto;
  }
  .ant-col-xl-pull-22.ant-col-rtl {
    right: auto;
    left: 91.66666667%;
  }
  .ant-col-xl-offset-22.ant-col-rtl {
    margin-right: 91.66666667%;
    margin-left: 0;
  }
  .ant-col-xl-push-23.ant-col-rtl {
    right: 95.83333333%;
    left: auto;
  }
  .ant-col-xl-pull-23.ant-col-rtl {
    right: auto;
    left: 95.83333333%;
  }
  .ant-col-xl-offset-23.ant-col-rtl {
    margin-right: 95.83333333%;
    margin-left: 0;
  }
  .ant-col-xl-push-24.ant-col-rtl {
    right: 100%;
    left: auto;
  }
  .ant-col-xl-pull-24.ant-col-rtl {
    right: auto;
    left: 100%;
  }
  .ant-col-xl-offset-24.ant-col-rtl {
    margin-right: 100%;
    margin-left: 0;
  }
}
@media (min-width: 1600px) {
  .ant-col-xxl-24 {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ant-col-xxl-push-24 {
    left: 100%;
  }
  .ant-col-xxl-pull-24 {
    right: 100%;
  }
  .ant-col-xxl-offset-24 {
    margin-left: 100%;
  }
  .ant-col-xxl-order-24 {
    order: 24;
  }
  .ant-col-xxl-23 {
    display: block;
    flex: 0 0 95.83333333%;
    max-width: 95.83333333%;
  }
  .ant-col-xxl-push-23 {
    left: 95.83333333%;
  }
  .ant-col-xxl-pull-23 {
    right: 95.83333333%;
  }
  .ant-col-xxl-offset-23 {
    margin-left: 95.83333333%;
  }
  .ant-col-xxl-order-23 {
    order: 23;
  }
  .ant-col-xxl-22 {
    display: block;
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .ant-col-xxl-push-22 {
    left: 91.66666667%;
  }
  .ant-col-xxl-pull-22 {
    right: 91.66666667%;
  }
  .ant-col-xxl-offset-22 {
    margin-left: 91.66666667%;
  }
  .ant-col-xxl-order-22 {
    order: 22;
  }
  .ant-col-xxl-21 {
    display: block;
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .ant-col-xxl-push-21 {
    left: 87.5%;
  }
  .ant-col-xxl-pull-21 {
    right: 87.5%;
  }
  .ant-col-xxl-offset-21 {
    margin-left: 87.5%;
  }
  .ant-col-xxl-order-21 {
    order: 21;
  }
  .ant-col-xxl-20 {
    display: block;
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .ant-col-xxl-push-20 {
    left: 83.33333333%;
  }
  .ant-col-xxl-pull-20 {
    right: 83.33333333%;
  }
  .ant-col-xxl-offset-20 {
    margin-left: 83.33333333%;
  }
  .ant-col-xxl-order-20 {
    order: 20;
  }
  .ant-col-xxl-19 {
    display: block;
    flex: 0 0 79.16666667%;
    max-width: 79.16666667%;
  }
  .ant-col-xxl-push-19 {
    left: 79.16666667%;
  }
  .ant-col-xxl-pull-19 {
    right: 79.16666667%;
  }
  .ant-col-xxl-offset-19 {
    margin-left: 79.16666667%;
  }
  .ant-col-xxl-order-19 {
    order: 19;
  }
  .ant-col-xxl-18 {
    display: block;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ant-col-xxl-push-18 {
    left: 75%;
  }
  .ant-col-xxl-pull-18 {
    right: 75%;
  }
  .ant-col-xxl-offset-18 {
    margin-left: 75%;
  }
  .ant-col-xxl-order-18 {
    order: 18;
  }
  .ant-col-xxl-17 {
    display: block;
    flex: 0 0 70.83333333%;
    max-width: 70.83333333%;
  }
  .ant-col-xxl-push-17 {
    left: 70.83333333%;
  }
  .ant-col-xxl-pull-17 {
    right: 70.83333333%;
  }
  .ant-col-xxl-offset-17 {
    margin-left: 70.83333333%;
  }
  .ant-col-xxl-order-17 {
    order: 17;
  }
  .ant-col-xxl-16 {
    display: block;
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .ant-col-xxl-push-16 {
    left: 66.66666667%;
  }
  .ant-col-xxl-pull-16 {
    right: 66.66666667%;
  }
  .ant-col-xxl-offset-16 {
    margin-left: 66.66666667%;
  }
  .ant-col-xxl-order-16 {
    order: 16;
  }
  .ant-col-xxl-15 {
    display: block;
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .ant-col-xxl-push-15 {
    left: 62.5%;
  }
  .ant-col-xxl-pull-15 {
    right: 62.5%;
  }
  .ant-col-xxl-offset-15 {
    margin-left: 62.5%;
  }
  .ant-col-xxl-order-15 {
    order: 15;
  }
  .ant-col-xxl-14 {
    display: block;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .ant-col-xxl-push-14 {
    left: 58.33333333%;
  }
  .ant-col-xxl-pull-14 {
    right: 58.33333333%;
  }
  .ant-col-xxl-offset-14 {
    margin-left: 58.33333333%;
  }
  .ant-col-xxl-order-14 {
    order: 14;
  }
  .ant-col-xxl-13 {
    display: block;
    flex: 0 0 54.16666667%;
    max-width: 54.16666667%;
  }
  .ant-col-xxl-push-13 {
    left: 54.16666667%;
  }
  .ant-col-xxl-pull-13 {
    right: 54.16666667%;
  }
  .ant-col-xxl-offset-13 {
    margin-left: 54.16666667%;
  }
  .ant-col-xxl-order-13 {
    order: 13;
  }
  .ant-col-xxl-12 {
    display: block;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ant-col-xxl-push-12 {
    left: 50%;
  }
  .ant-col-xxl-pull-12 {
    right: 50%;
  }
  .ant-col-xxl-offset-12 {
    margin-left: 50%;
  }
  .ant-col-xxl-order-12 {
    order: 12;
  }
  .ant-col-xxl-11 {
    display: block;
    flex: 0 0 45.83333333%;
    max-width: 45.83333333%;
  }
  .ant-col-xxl-push-11 {
    left: 45.83333333%;
  }
  .ant-col-xxl-pull-11 {
    right: 45.83333333%;
  }
  .ant-col-xxl-offset-11 {
    margin-left: 45.83333333%;
  }
  .ant-col-xxl-order-11 {
    order: 11;
  }
  .ant-col-xxl-10 {
    display: block;
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .ant-col-xxl-push-10 {
    left: 41.66666667%;
  }
  .ant-col-xxl-pull-10 {
    right: 41.66666667%;
  }
  .ant-col-xxl-offset-10 {
    margin-left: 41.66666667%;
  }
  .ant-col-xxl-order-10 {
    order: 10;
  }
  .ant-col-xxl-9 {
    display: block;
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .ant-col-xxl-push-9 {
    left: 37.5%;
  }
  .ant-col-xxl-pull-9 {
    right: 37.5%;
  }
  .ant-col-xxl-offset-9 {
    margin-left: 37.5%;
  }
  .ant-col-xxl-order-9 {
    order: 9;
  }
  .ant-col-xxl-8 {
    display: block;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .ant-col-xxl-push-8 {
    left: 33.33333333%;
  }
  .ant-col-xxl-pull-8 {
    right: 33.33333333%;
  }
  .ant-col-xxl-offset-8 {
    margin-left: 33.33333333%;
  }
  .ant-col-xxl-order-8 {
    order: 8;
  }
  .ant-col-xxl-7 {
    display: block;
    flex: 0 0 29.16666667%;
    max-width: 29.16666667%;
  }
  .ant-col-xxl-push-7 {
    left: 29.16666667%;
  }
  .ant-col-xxl-pull-7 {
    right: 29.16666667%;
  }
  .ant-col-xxl-offset-7 {
    margin-left: 29.16666667%;
  }
  .ant-col-xxl-order-7 {
    order: 7;
  }
  .ant-col-xxl-6 {
    display: block;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ant-col-xxl-push-6 {
    left: 25%;
  }
  .ant-col-xxl-pull-6 {
    right: 25%;
  }
  .ant-col-xxl-offset-6 {
    margin-left: 25%;
  }
  .ant-col-xxl-order-6 {
    order: 6;
  }
  .ant-col-xxl-5 {
    display: block;
    flex: 0 0 20.83333333%;
    max-width: 20.83333333%;
  }
  .ant-col-xxl-push-5 {
    left: 20.83333333%;
  }
  .ant-col-xxl-pull-5 {
    right: 20.83333333%;
  }
  .ant-col-xxl-offset-5 {
    margin-left: 20.83333333%;
  }
  .ant-col-xxl-order-5 {
    order: 5;
  }
  .ant-col-xxl-4 {
    display: block;
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .ant-col-xxl-push-4 {
    left: 16.66666667%;
  }
  .ant-col-xxl-pull-4 {
    right: 16.66666667%;
  }
  .ant-col-xxl-offset-4 {
    margin-left: 16.66666667%;
  }
  .ant-col-xxl-order-4 {
    order: 4;
  }
  .ant-col-xxl-3 {
    display: block;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .ant-col-xxl-push-3 {
    left: 12.5%;
  }
  .ant-col-xxl-pull-3 {
    right: 12.5%;
  }
  .ant-col-xxl-offset-3 {
    margin-left: 12.5%;
  }
  .ant-col-xxl-order-3 {
    order: 3;
  }
  .ant-col-xxl-2 {
    display: block;
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .ant-col-xxl-push-2 {
    left: 8.33333333%;
  }
  .ant-col-xxl-pull-2 {
    right: 8.33333333%;
  }
  .ant-col-xxl-offset-2 {
    margin-left: 8.33333333%;
  }
  .ant-col-xxl-order-2 {
    order: 2;
  }
  .ant-col-xxl-1 {
    display: block;
    flex: 0 0 4.16666667%;
    max-width: 4.16666667%;
  }
  .ant-col-xxl-push-1 {
    left: 4.16666667%;
  }
  .ant-col-xxl-pull-1 {
    right: 4.16666667%;
  }
  .ant-col-xxl-offset-1 {
    margin-left: 4.16666667%;
  }
  .ant-col-xxl-order-1 {
    order: 1;
  }
  .ant-col-xxl-0 {
    display: none;
  }
  .ant-col-push-0 {
    left: auto;
  }
  .ant-col-pull-0 {
    right: auto;
  }
  .ant-col-xxl-push-0 {
    left: auto;
  }
  .ant-col-xxl-pull-0 {
    right: auto;
  }
  .ant-col-xxl-offset-0 {
    margin-left: 0;
  }
  .ant-col-xxl-order-0 {
    order: 0;
  }
  .ant-col-push-0.ant-col-rtl {
    right: auto;
  }
  .ant-col-pull-0.ant-col-rtl {
    left: auto;
  }
  .ant-col-xxl-push-0.ant-col-rtl {
    right: auto;
  }
  .ant-col-xxl-pull-0.ant-col-rtl {
    left: auto;
  }
  .ant-col-xxl-offset-0.ant-col-rtl {
    margin-right: 0;
  }
  .ant-col-xxl-push-1.ant-col-rtl {
    right: 4.16666667%;
    left: auto;
  }
  .ant-col-xxl-pull-1.ant-col-rtl {
    right: auto;
    left: 4.16666667%;
  }
  .ant-col-xxl-offset-1.ant-col-rtl {
    margin-right: 4.16666667%;
    margin-left: 0;
  }
  .ant-col-xxl-push-2.ant-col-rtl {
    right: 8.33333333%;
    left: auto;
  }
  .ant-col-xxl-pull-2.ant-col-rtl {
    right: auto;
    left: 8.33333333%;
  }
  .ant-col-xxl-offset-2.ant-col-rtl {
    margin-right: 8.33333333%;
    margin-left: 0;
  }
  .ant-col-xxl-push-3.ant-col-rtl {
    right: 12.5%;
    left: auto;
  }
  .ant-col-xxl-pull-3.ant-col-rtl {
    right: auto;
    left: 12.5%;
  }
  .ant-col-xxl-offset-3.ant-col-rtl {
    margin-right: 12.5%;
    margin-left: 0;
  }
  .ant-col-xxl-push-4.ant-col-rtl {
    right: 16.66666667%;
    left: auto;
  }
  .ant-col-xxl-pull-4.ant-col-rtl {
    right: auto;
    left: 16.66666667%;
  }
  .ant-col-xxl-offset-4.ant-col-rtl {
    margin-right: 16.66666667%;
    margin-left: 0;
  }
  .ant-col-xxl-push-5.ant-col-rtl {
    right: 20.83333333%;
    left: auto;
  }
  .ant-col-xxl-pull-5.ant-col-rtl {
    right: auto;
    left: 20.83333333%;
  }
  .ant-col-xxl-offset-5.ant-col-rtl {
    margin-right: 20.83333333%;
    margin-left: 0;
  }
  .ant-col-xxl-push-6.ant-col-rtl {
    right: 25%;
    left: auto;
  }
  .ant-col-xxl-pull-6.ant-col-rtl {
    right: auto;
    left: 25%;
  }
  .ant-col-xxl-offset-6.ant-col-rtl {
    margin-right: 25%;
    margin-left: 0;
  }
  .ant-col-xxl-push-7.ant-col-rtl {
    right: 29.16666667%;
    left: auto;
  }
  .ant-col-xxl-pull-7.ant-col-rtl {
    right: auto;
    left: 29.16666667%;
  }
  .ant-col-xxl-offset-7.ant-col-rtl {
    margin-right: 29.16666667%;
    margin-left: 0;
  }
  .ant-col-xxl-push-8.ant-col-rtl {
    right: 33.33333333%;
    left: auto;
  }
  .ant-col-xxl-pull-8.ant-col-rtl {
    right: auto;
    left: 33.33333333%;
  }
  .ant-col-xxl-offset-8.ant-col-rtl {
    margin-right: 33.33333333%;
    margin-left: 0;
  }
  .ant-col-xxl-push-9.ant-col-rtl {
    right: 37.5%;
    left: auto;
  }
  .ant-col-xxl-pull-9.ant-col-rtl {
    right: auto;
    left: 37.5%;
  }
  .ant-col-xxl-offset-9.ant-col-rtl {
    margin-right: 37.5%;
    margin-left: 0;
  }
  .ant-col-xxl-push-10.ant-col-rtl {
    right: 41.66666667%;
    left: auto;
  }
  .ant-col-xxl-pull-10.ant-col-rtl {
    right: auto;
    left: 41.66666667%;
  }
  .ant-col-xxl-offset-10.ant-col-rtl {
    margin-right: 41.66666667%;
    margin-left: 0;
  }
  .ant-col-xxl-push-11.ant-col-rtl {
    right: 45.83333333%;
    left: auto;
  }
  .ant-col-xxl-pull-11.ant-col-rtl {
    right: auto;
    left: 45.83333333%;
  }
  .ant-col-xxl-offset-11.ant-col-rtl {
    margin-right: 45.83333333%;
    margin-left: 0;
  }
  .ant-col-xxl-push-12.ant-col-rtl {
    right: 50%;
    left: auto;
  }
  .ant-col-xxl-pull-12.ant-col-rtl {
    right: auto;
    left: 50%;
  }
  .ant-col-xxl-offset-12.ant-col-rtl {
    margin-right: 50%;
    margin-left: 0;
  }
  .ant-col-xxl-push-13.ant-col-rtl {
    right: 54.16666667%;
    left: auto;
  }
  .ant-col-xxl-pull-13.ant-col-rtl {
    right: auto;
    left: 54.16666667%;
  }
  .ant-col-xxl-offset-13.ant-col-rtl {
    margin-right: 54.16666667%;
    margin-left: 0;
  }
  .ant-col-xxl-push-14.ant-col-rtl {
    right: 58.33333333%;
    left: auto;
  }
  .ant-col-xxl-pull-14.ant-col-rtl {
    right: auto;
    left: 58.33333333%;
  }
  .ant-col-xxl-offset-14.ant-col-rtl {
    margin-right: 58.33333333%;
    margin-left: 0;
  }
  .ant-col-xxl-push-15.ant-col-rtl {
    right: 62.5%;
    left: auto;
  }
  .ant-col-xxl-pull-15.ant-col-rtl {
    right: auto;
    left: 62.5%;
  }
  .ant-col-xxl-offset-15.ant-col-rtl {
    margin-right: 62.5%;
    margin-left: 0;
  }
  .ant-col-xxl-push-16.ant-col-rtl {
    right: 66.66666667%;
    left: auto;
  }
  .ant-col-xxl-pull-16.ant-col-rtl {
    right: auto;
    left: 66.66666667%;
  }
  .ant-col-xxl-offset-16.ant-col-rtl {
    margin-right: 66.66666667%;
    margin-left: 0;
  }
  .ant-col-xxl-push-17.ant-col-rtl {
    right: 70.83333333%;
    left: auto;
  }
  .ant-col-xxl-pull-17.ant-col-rtl {
    right: auto;
    left: 70.83333333%;
  }
  .ant-col-xxl-offset-17.ant-col-rtl {
    margin-right: 70.83333333%;
    margin-left: 0;
  }
  .ant-col-xxl-push-18.ant-col-rtl {
    right: 75%;
    left: auto;
  }
  .ant-col-xxl-pull-18.ant-col-rtl {
    right: auto;
    left: 75%;
  }
  .ant-col-xxl-offset-18.ant-col-rtl {
    margin-right: 75%;
    margin-left: 0;
  }
  .ant-col-xxl-push-19.ant-col-rtl {
    right: 79.16666667%;
    left: auto;
  }
  .ant-col-xxl-pull-19.ant-col-rtl {
    right: auto;
    left: 79.16666667%;
  }
  .ant-col-xxl-offset-19.ant-col-rtl {
    margin-right: 79.16666667%;
    margin-left: 0;
  }
  .ant-col-xxl-push-20.ant-col-rtl {
    right: 83.33333333%;
    left: auto;
  }
  .ant-col-xxl-pull-20.ant-col-rtl {
    right: auto;
    left: 83.33333333%;
  }
  .ant-col-xxl-offset-20.ant-col-rtl {
    margin-right: 83.33333333%;
    margin-left: 0;
  }
  .ant-col-xxl-push-21.ant-col-rtl {
    right: 87.5%;
    left: auto;
  }
  .ant-col-xxl-pull-21.ant-col-rtl {
    right: auto;
    left: 87.5%;
  }
  .ant-col-xxl-offset-21.ant-col-rtl {
    margin-right: 87.5%;
    margin-left: 0;
  }
  .ant-col-xxl-push-22.ant-col-rtl {
    right: 91.66666667%;
    left: auto;
  }
  .ant-col-xxl-pull-22.ant-col-rtl {
    right: auto;
    left: 91.66666667%;
  }
  .ant-col-xxl-offset-22.ant-col-rtl {
    margin-right: 91.66666667%;
    margin-left: 0;
  }
  .ant-col-xxl-push-23.ant-col-rtl {
    right: 95.83333333%;
    left: auto;
  }
  .ant-col-xxl-pull-23.ant-col-rtl {
    right: auto;
    left: 95.83333333%;
  }
  .ant-col-xxl-offset-23.ant-col-rtl {
    margin-right: 95.83333333%;
    margin-left: 0;
  }
  .ant-col-xxl-push-24.ant-col-rtl {
    right: 100%;
    left: auto;
  }
  .ant-col-xxl-pull-24.ant-col-rtl {
    right: auto;
    left: 100%;
  }
  .ant-col-xxl-offset-24.ant-col-rtl {
    margin-right: 100%;
    margin-left: 0;
  }
}
.ant-row-rtl {
  direction: rtl;
}
.ant-image {
  position: relative;
  display: inline-block;
}
.ant-image-img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.ant-image-img-placeholder {
  background-color: #f5f5f5;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTQuNSAyLjVoLTEzQS41LjUgMCAwIDAgMSAzdjEwYS41LjUgMCAwIDAgLjUuNWgxM2EuNS41IDAgMCAwIC41LS41VjNhLjUuNSAwIDAgMC0uNS0uNXpNNS4yODEgNC43NWExIDEgMCAwIDEgMCAyIDEgMSAwIDAgMSAwLTJ6bTguMDMgNi44M2EuMTI3LjEyNyAwIDAgMS0uMDgxLjAzSDIuNzY5YS4xMjUuMTI1IDAgMCAxLS4wOTYtLjIwN2wyLjY2MS0zLjE1NmEuMTI2LjEyNiAwIDAgMSAuMTc3LS4wMTZsLjAxNi4wMTZMNy4wOCAxMC4wOWwyLjQ3LTIuOTNhLjEyNi4xMjYgMCAwIDEgLjE3Ny0uMDE2bC4wMTUuMDE2IDMuNTg4IDQuMjQ0YS4xMjcuMTI3IDAgMCAxLS4wMi4xNzV6IiBmaWxsPSIjOEM4QzhDIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30%;
}
.ant-image-mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}
.ant-image-mask-info {
  padding: 0 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-image-mask-info .anticon {
  margin-inline-end: 4px;
}
.ant-image-mask:hover {
  opacity: 1;
}
.ant-image-placeholder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.ant-image-preview {
  pointer-events: none;
  height: 100%;
  text-align: center;
}
.ant-image-preview.ant-zoom-enter,
.ant-image-preview.ant-zoom-appear {
  transform: none;
  opacity: 0;
  animation-duration: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-image-preview-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
.ant-image-preview-mask-hidden {
  display: none;
}
.ant-image-preview-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  outline: 0;
}
.ant-image-preview-body {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.ant-image-preview-img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
  transform: scale3d(1, 1, 1);
  cursor: grab;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: auto;
}
.ant-image-preview-img-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.ant-image-preview-img-wrapper::before {
  display: inline-block;
  width: 1px;
  height: 50%;
  margin-right: -1px;
  content: '';
}
.ant-image-preview-moving .ant-image-preview-img {
  cursor: grabbing;
}
.ant-image-preview-moving .ant-image-preview-img-wrapper {
  transition-duration: 0s;
}
.ant-image-preview-wrap {
  z-index: 1080;
}
.ant-image-preview-operations-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1081;
  width: 100%;
}
.ant-image-preview-operations {
  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.6;
  font-feature-settings: 'tnum';
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  list-style: none;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: auto;
}
.ant-image-preview-operations-operation {
  margin-left: 12px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-image-preview-operations-operation:hover {
  background: rgba(0, 0, 0, 0.2);
}
.ant-image-preview-operations-operation-disabled {
  color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}
.ant-image-preview-operations-operation:last-of-type {
  margin-left: 0;
}
.ant-image-preview-operations-progress {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.ant-image-preview-operations-icon {
  font-size: 18px;
}
.ant-image-preview-switch-left,
.ant-image-preview-switch-right {
  position: fixed;
  top: 50%;
  right: 8px;
  z-index: 1081;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.3s;
  pointer-events: auto;
}
.ant-image-preview-switch-left:hover,
.ant-image-preview-switch-right:hover {
  background: rgba(0, 0, 0, 0.2);
}
.ant-image-preview-switch-left-disabled,
.ant-image-preview-switch-right-disabled,
.ant-image-preview-switch-left-disabled:hover,
.ant-image-preview-switch-right-disabled:hover {
  color: rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.1);
  cursor: not-allowed;
}
.ant-image-preview-switch-left-disabled > .anticon,
.ant-image-preview-switch-right-disabled > .anticon,
.ant-image-preview-switch-left-disabled:hover > .anticon,
.ant-image-preview-switch-right-disabled:hover > .anticon {
  cursor: not-allowed;
}
.ant-image-preview-switch-left > .anticon,
.ant-image-preview-switch-right > .anticon {
  font-size: 18px;
}
.ant-image-preview-switch-left {
  left: 8px;
}
.ant-image-preview-switch-right {
  right: 8px;
}
.ant-input-affix-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  min-width: 0;
  padding: 3.8px 11px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 1.6;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: all 0.3s;
  display: inline-flex;
}
.ant-input-affix-wrapper::-moz-placeholder {
  color: #bfbfbf;
  -moz-user-select: none;
       user-select: none;
}
.ant-input-affix-wrapper::placeholder {
  color: #bfbfbf;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-input-affix-wrapper:-moz-placeholder-shown {
  text-overflow: ellipsis;
}
.ant-input-affix-wrapper:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-input-affix-wrapper:hover {
  border-color: #b36afc;
  border-right-width: 1px;
}
.ant-input-rtl .ant-input-affix-wrapper:hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-input-affix-wrapper:focus,
.ant-input-affix-wrapper-focused {
  border-color: #b36afc;
  box-shadow: 0 0 0 2px rgba(145, 62, 240, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-rtl .ant-input-affix-wrapper:focus,
.ant-input-rtl .ant-input-affix-wrapper-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-input-affix-wrapper-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input-affix-wrapper-disabled:hover {
  border-color: #d9d9d9;
  border-right-width: 1px;
}
.ant-input-affix-wrapper[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input-affix-wrapper[disabled]:hover {
  border-color: #d9d9d9;
  border-right-width: 1px;
}
.ant-input-affix-wrapper-borderless,
.ant-input-affix-wrapper-borderless:hover,
.ant-input-affix-wrapper-borderless:focus,
.ant-input-affix-wrapper-borderless-focused,
.ant-input-affix-wrapper-borderless-disabled,
.ant-input-affix-wrapper-borderless[disabled] {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
textarea.ant-input-affix-wrapper {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.6;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}
.ant-input-affix-wrapper-lg {
  padding: 6.2px 11px;
  font-size: 16px;
}
.ant-input-affix-wrapper-sm {
  padding: 0 7px;
}
.ant-input-affix-wrapper-rtl {
  direction: rtl;
}
.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover {
  border-color: #b36afc;
  border-right-width: 1px;
  z-index: 1;
}
.ant-input-rtl .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-input-search-with-button .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover {
  z-index: 0;
}
.ant-input-affix-wrapper-focused,
.ant-input-affix-wrapper:focus {
  z-index: 1;
}
.ant-input-affix-wrapper-disabled .ant-input[disabled] {
  background: rgba(255, 255, 255, 0);
}
.ant-input-affix-wrapper > .ant-input {
  font-size: inherit;
  border: none;
  outline: none;
}
.ant-input-affix-wrapper > .ant-input:focus {
  box-shadow: none !important;
}
.ant-input-affix-wrapper > .ant-input:not(textarea) {
  padding: 0;
}
.ant-input-affix-wrapper::before {
  display: inline-block;
  width: 0;
  visibility: hidden;
  content: '\a0';
}
.ant-input-prefix,
.ant-input-suffix {
  display: flex;
  flex: none;
  align-items: center;
}
.ant-input-prefix > *:not(:last-child),
.ant-input-suffix > *:not(:last-child) {
  margin-right: 8px;
}
.ant-input-show-count-suffix {
  color: rgba(0, 0, 0, 0.45);
}
.ant-input-show-count-has-suffix {
  margin-right: 2px;
}
.ant-input-prefix {
  margin-right: 4px;
}
.ant-input-suffix {
  margin-left: 4px;
}
.anticon.ant-input-clear-icon,
.ant-input-clear-icon {
  margin: 0;
  color: rgba(0, 0, 0, 0.25);
  font-size: 11px;
  vertical-align: -1px;
  cursor: pointer;
  transition: color 0.3s;
}
.anticon.ant-input-clear-icon:hover,
.ant-input-clear-icon:hover {
  color: rgba(0, 0, 0, 0.45);
}
.anticon.ant-input-clear-icon:active,
.ant-input-clear-icon:active {
  color: rgba(0, 0, 0, 0.85);
}
.anticon.ant-input-clear-icon-hidden,
.ant-input-clear-icon-hidden {
  visibility: hidden;
}
.anticon.ant-input-clear-icon-has-suffix,
.ant-input-clear-icon-has-suffix {
  margin: 0 4px;
}
.ant-input-affix-wrapper.ant-input-affix-wrapper-textarea-with-clear-btn {
  padding: 0;
}
.ant-input-affix-wrapper.ant-input-affix-wrapper-textarea-with-clear-btn .ant-input-clear-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
}
.ant-input-status-error:not(.ant-input-disabled):not(.ant-input-borderless).ant-input,
.ant-input-status-error:not(.ant-input-disabled):not(.ant-input-borderless).ant-input:hover {
  background: #fff;
  border-color: #E54963;
}
.ant-input-status-error:not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus,
.ant-input-status-error:not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused {
  border-color: #f27485;
  box-shadow: 0 0 0 2px rgba(229, 73, 99, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-status-error .ant-input-prefix {
  color: #E54963;
}
.ant-input-status-warning:not(.ant-input-disabled):not(.ant-input-borderless).ant-input,
.ant-input-status-warning:not(.ant-input-disabled):not(.ant-input-borderless).ant-input:hover {
  background: #fff;
  border-color: #FFB946;
}
.ant-input-status-warning:not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus,
.ant-input-status-warning:not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused {
  border-color: #ffcc6e;
  box-shadow: 0 0 0 2px rgba(255, 185, 70, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-status-warning .ant-input-prefix {
  color: #FFB946;
}
.ant-input-affix-wrapper-status-error:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper,
.ant-input-affix-wrapper-status-error:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover {
  background: #fff;
  border-color: #E54963;
}
.ant-input-affix-wrapper-status-error:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:focus,
.ant-input-affix-wrapper-status-error:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused {
  border-color: #f27485;
  box-shadow: 0 0 0 2px rgba(229, 73, 99, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-affix-wrapper-status-error .ant-input-prefix {
  color: #E54963;
}
.ant-input-affix-wrapper-status-warning:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper,
.ant-input-affix-wrapper-status-warning:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover {
  background: #fff;
  border-color: #FFB946;
}
.ant-input-affix-wrapper-status-warning:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:focus,
.ant-input-affix-wrapper-status-warning:not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused {
  border-color: #ffcc6e;
  box-shadow: 0 0 0 2px rgba(255, 185, 70, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-affix-wrapper-status-warning .ant-input-prefix {
  color: #FFB946;
}
.ant-input-textarea-status-error.ant-input-textarea-has-feedback .ant-input,
.ant-input-textarea-status-warning.ant-input-textarea-has-feedback .ant-input,
.ant-input-textarea-status-success.ant-input-textarea-has-feedback .ant-input,
.ant-input-textarea-status-validating.ant-input-textarea-has-feedback .ant-input {
  padding-right: 24px;
}
.ant-input-group-wrapper-status-error .ant-input-group-addon {
  color: #E54963;
  border-color: #E54963;
}
.ant-input-group-wrapper-status-warning .ant-input-group-addon {
  color: #FFB946;
  border-color: #FFB946;
}
.ant-input {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  width: 100%;
  min-width: 0;
  padding: 3.8px 11px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 1.6;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: all 0.3s;
}
.ant-input::-moz-placeholder {
  color: #bfbfbf;
  -moz-user-select: none;
       user-select: none;
}
.ant-input::placeholder {
  color: #bfbfbf;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-input:-moz-placeholder-shown {
  text-overflow: ellipsis;
}
.ant-input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-input:hover {
  border-color: #b36afc;
  border-right-width: 1px;
}
.ant-input-rtl .ant-input:hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-input:focus,
.ant-input-focused {
  border-color: #b36afc;
  box-shadow: 0 0 0 2px rgba(145, 62, 240, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-rtl .ant-input:focus,
.ant-input-rtl .ant-input-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-input-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input-disabled:hover {
  border-color: #d9d9d9;
  border-right-width: 1px;
}
.ant-input[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input[disabled]:hover {
  border-color: #d9d9d9;
  border-right-width: 1px;
}
.ant-input-borderless,
.ant-input-borderless:hover,
.ant-input-borderless:focus,
.ant-input-borderless-focused,
.ant-input-borderless-disabled,
.ant-input-borderless[disabled] {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
textarea.ant-input {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.6;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}
.ant-input-lg {
  padding: 6.2px 11px;
  font-size: 16px;
}
.ant-input-sm {
  padding: 0 7px;
}
.ant-input-rtl {
  direction: rtl;
}
.ant-input-group {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.ant-input-group[class*='col-'] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.ant-input-group > [class*='col-'] {
  padding-right: 8px;
}
.ant-input-group > [class*='col-']:last-child {
  padding-right: 0;
}
.ant-input-group-addon,
.ant-input-group-wrap,
.ant-input-group > .ant-input {
  display: table-cell;
}
.ant-input-group-addon:not(:first-child):not(:last-child),
.ant-input-group-wrap:not(:first-child):not(:last-child),
.ant-input-group > .ant-input:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.ant-input-group-addon,
.ant-input-group-wrap {
  width: 1px;
  white-space: nowrap;
  vertical-align: middle;
}
.ant-input-group-wrap > * {
  display: block !important;
}
.ant-input-group .ant-input {
  float: left;
  width: 100%;
  margin-bottom: 0;
  text-align: inherit;
}
.ant-input-group .ant-input:focus {
  z-index: 1;
  border-right-width: 1px;
}
.ant-input-group .ant-input:hover {
  z-index: 1;
  border-right-width: 1px;
}
.ant-input-search-with-button .ant-input-group .ant-input:hover {
  z-index: 0;
}
.ant-input-group-addon {
  position: relative;
  padding: 0 11px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: normal;
  font-size: 14px;
  text-align: center;
  background-color: #fafafa;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: all 0.3s;
}
.ant-input-group-addon .ant-select {
  margin: -4.8px -11px;
}
.ant-input-group-addon .ant-select.ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
  background-color: inherit;
  border: 1px solid transparent;
  box-shadow: none;
}
.ant-input-group-addon .ant-select-open .ant-select-selector,
.ant-input-group-addon .ant-select-focused .ant-select-selector {
  color: #913ef0;
}
.ant-input-group-addon .ant-cascader-picker {
  margin: -9px -12px;
  background-color: transparent;
}
.ant-input-group-addon .ant-cascader-picker .ant-cascader-input {
  text-align: left;
  border: 0;
  box-shadow: none;
}
.ant-input-group > .ant-input:first-child,
.ant-input-group-addon:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-input-group > .ant-input:first-child .ant-select .ant-select-selector,
.ant-input-group-addon:first-child .ant-select .ant-select-selector {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-input-group > .ant-input-affix-wrapper:not(:first-child) .ant-input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-input-group > .ant-input-affix-wrapper:not(:last-child) .ant-input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-input-group-addon:first-child {
  border-right: 0;
}
.ant-input-group-addon:last-child {
  border-left: 0;
}
.ant-input-group > .ant-input:last-child,
.ant-input-group-addon:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-input-group > .ant-input:last-child .ant-select .ant-select-selector,
.ant-input-group-addon:last-child .ant-select .ant-select-selector {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-input-group-lg .ant-input,
.ant-input-group-lg > .ant-input-group-addon {
  padding: 6.2px 11px;
  font-size: 16px;
}
.ant-input-group-sm .ant-input,
.ant-input-group-sm > .ant-input-group-addon {
  padding: 0 7px;
}
.ant-input-group-lg .ant-select-single .ant-select-selector {
  height: 40px;
}
.ant-input-group-sm .ant-select-single .ant-select-selector {
  height: 24px;
}
.ant-input-group .ant-input-affix-wrapper:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-input-search .ant-input-group .ant-input-affix-wrapper:not(:last-child) {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.ant-input-group .ant-input-affix-wrapper:not(:first-child),
.ant-input-search .ant-input-group .ant-input-affix-wrapper:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-input-group.ant-input-group-compact {
  display: block;
}
.ant-input-group.ant-input-group-compact::before {
  display: table;
  content: '';
}
.ant-input-group.ant-input-group-compact::after {
  display: table;
  clear: both;
  content: '';
}
.ant-input-group.ant-input-group-compact::before {
  display: table;
  content: '';
}
.ant-input-group.ant-input-group-compact::after {
  display: table;
  clear: both;
  content: '';
}
.ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child),
.ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child),
.ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child) {
  border-right-width: 1px;
}
.ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child):hover,
.ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child):hover,
.ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child):hover {
  z-index: 1;
}
.ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child):focus,
.ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child):focus,
.ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child):focus {
  z-index: 1;
}
.ant-input-group.ant-input-group-compact > * {
  display: inline-block;
  float: none;
  vertical-align: top;
  border-radius: 0;
}
.ant-input-group.ant-input-group-compact > .ant-input-affix-wrapper,
.ant-input-group.ant-input-group-compact > .ant-input-number-affix-wrapper,
.ant-input-group.ant-input-group-compact > .ant-picker-range {
  display: inline-flex;
}
.ant-input-group.ant-input-group-compact > *:not(:last-child) {
  margin-right: -1px;
  border-right-width: 1px;
}
.ant-input-group.ant-input-group-compact .ant-input {
  float: none;
}
.ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selector,
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker .ant-input,
.ant-input-group.ant-input-group-compact > .ant-input-group-wrapper .ant-input {
  border-right-width: 1px;
  border-radius: 0;
}
.ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selector:hover,
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input:hover,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker .ant-input:hover,
.ant-input-group.ant-input-group-compact > .ant-input-group-wrapper .ant-input:hover {
  z-index: 1;
}
.ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selector:focus,
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input:focus,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker .ant-input:focus,
.ant-input-group.ant-input-group-compact > .ant-input-group-wrapper .ant-input:focus {
  z-index: 1;
}
.ant-input-group.ant-input-group-compact > .ant-select-focused {
  z-index: 1;
}
.ant-input-group.ant-input-group-compact > .ant-select > .ant-select-arrow {
  z-index: 1;
}
.ant-input-group.ant-input-group-compact > *:first-child,
.ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selector,
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:first-child .ant-input,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker:first-child .ant-input {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.ant-input-group.ant-input-group-compact > *:last-child,
.ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selector,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker:last-child .ant-input,
.ant-input-group.ant-input-group-compact > .ant-cascader-picker-focused:last-child .ant-input {
  border-right-width: 1px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input {
  vertical-align: top;
}
.ant-input-group.ant-input-group-compact .ant-input-group-wrapper + .ant-input-group-wrapper {
  margin-left: -1px;
}
.ant-input-group.ant-input-group-compact .ant-input-group-wrapper + .ant-input-group-wrapper .ant-input-affix-wrapper {
  border-radius: 0;
}
.ant-input-group.ant-input-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search > .ant-input-group > .ant-input-group-addon > .ant-input-search-button {
  border-radius: 0;
}
.ant-input-group.ant-input-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search > .ant-input-group > .ant-input {
  border-radius: 2px 0 0 2px;
}
.ant-input-group > .ant-input-rtl:first-child,
.ant-input-group-rtl .ant-input-group-addon:first-child {
  border-radius: 0 2px 2px 0;
}
.ant-input-group-rtl .ant-input-group-addon:first-child {
  border-right: 1px solid #d9d9d9;
  border-left: 0;
}
.ant-input-group-rtl .ant-input-group-addon:last-child {
  border-right: 0;
  border-left: 1px solid #d9d9d9;
  border-radius: 2px 0 0 2px;
}
.ant-input-group-rtl.ant-input-group > .ant-input:last-child,
.ant-input-group-rtl.ant-input-group-addon:last-child {
  border-radius: 2px 0 0 2px;
}
.ant-input-group-rtl.ant-input-group .ant-input-affix-wrapper:not(:first-child) {
  border-radius: 2px 0 0 2px;
}
.ant-input-group-rtl.ant-input-group .ant-input-affix-wrapper:not(:last-child) {
  border-radius: 0 2px 2px 0;
}
.ant-input-group-rtl.ant-input-group.ant-input-group-compact > *:not(:last-child) {
  margin-right: 0;
  margin-left: -1px;
  border-left-width: 1px;
}
.ant-input-group-rtl.ant-input-group.ant-input-group-compact > *:first-child,
.ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selector,
.ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:first-child .ant-input,
.ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-cascader-picker:first-child .ant-input {
  border-radius: 0 2px 2px 0;
}
.ant-input-group-rtl.ant-input-group.ant-input-group-compact > *:last-child,
.ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selector,
.ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:last-child .ant-input,
.ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-cascader-picker:last-child .ant-input,
.ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-cascader-picker-focused:last-child .ant-input {
  border-left-width: 1px;
  border-radius: 2px 0 0 2px;
}
.ant-input-group.ant-input-group-compact .ant-input-group-wrapper-rtl + .ant-input-group-wrapper-rtl {
  margin-right: -1px;
  margin-left: 0;
}
.ant-input-group.ant-input-group-compact .ant-input-group-wrapper-rtl:not(:last-child).ant-input-search > .ant-input-group > .ant-input {
  border-radius: 0 2px 2px 0;
}
.ant-input-group > .ant-input-rtl:first-child {
  border-radius: 0 2px 2px 0;
}
.ant-input-group > .ant-input-rtl:last-child {
  border-radius: 2px 0 0 2px;
}
.ant-input-group-rtl .ant-input-group-addon:first-child {
  border-right: 1px solid #d9d9d9;
  border-left: 0;
  border-radius: 0 2px 2px 0;
}
.ant-input-group-rtl .ant-input-group-addon:last-child {
  border-right: 0;
  border-left: 1px solid #d9d9d9;
  border-radius: 2px 0 0 2px;
}
.ant-input-group-wrapper {
  display: inline-block;
  width: 100%;
  text-align: start;
  vertical-align: top;
}
.ant-input-password-icon.anticon {
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: all 0.3s;
}
.ant-input-password-icon.anticon:hover {
  color: rgba(0, 0, 0, 0.85);
}
.ant-input[type='color'] {
  height: 32px;
}
.ant-input[type='color'].ant-input-lg {
  height: 40px;
}
.ant-input[type='color'].ant-input-sm {
  height: 24px;
  padding-top: 3px;
  padding-bottom: 3px;
}
.ant-input-textarea-show-count > .ant-input {
  height: 100%;
}
.ant-input-textarea-show-count::after {
  float: right;
  color: rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  content: attr(data-count);
  pointer-events: none;
}
.ant-input-textarea-show-count.ant-input-textarea-in-form-item::after {
  margin-bottom: -22px;
}
.ant-input-textarea-suffix {
  position: absolute;
  top: 0;
  right: 11px;
  bottom: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin: auto;
}
.ant-input-compact-item:not(.ant-input-compact-last-item):not(.ant-input-compact-item-rtl) {
  margin-right: -1px;
}
.ant-input-compact-item:not(.ant-input-compact-last-item).ant-input-compact-item-rtl {
  margin-left: -1px;
}
.ant-input-compact-item:hover,
.ant-input-compact-item:focus,
.ant-input-compact-item:active {
  z-index: 2;
}
.ant-input-compact-item[disabled] {
  z-index: 0;
}
.ant-input-compact-item:not(.ant-input-compact-first-item):not(.ant-input-compact-last-item).ant-input {
  border-radius: 0;
}
.ant-input-compact-item.ant-input.ant-input-compact-first-item:not(.ant-input-compact-last-item):not(.ant-input-compact-item-rtl) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-input-compact-item.ant-input.ant-input-compact-last-item:not(.ant-input-compact-first-item):not(.ant-input-compact-item-rtl) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-input-compact-item.ant-input.ant-input-compact-item-rtl.ant-input-compact-first-item:not(.ant-input-compact-last-item) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-input-compact-item.ant-input.ant-input-compact-item-rtl.ant-input-compact-last-item:not(.ant-input-compact-first-item) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-input-search .ant-input:hover,
.ant-input-search .ant-input:focus {
  border-color: #b36afc;
}
.ant-input-search .ant-input:hover + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary),
.ant-input-search .ant-input:focus + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary) {
  border-left-color: #b36afc;
}
.ant-input-search .ant-input-affix-wrapper {
  border-radius: 0;
}
.ant-input-search .ant-input-lg {
  line-height: 1.5998;
}
.ant-input-search > .ant-input-group > .ant-input-group-addon:last-child {
  left: -1px;
  padding: 0;
  border: 0;
}
.ant-input-search > .ant-input-group > .ant-input-group-addon:last-child .ant-input-search-button {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0 2px 2px 0;
}
.ant-input-search > .ant-input-group > .ant-input-group-addon:last-child .ant-input-search-button:not(.ant-btn-primary) {
  color: rgba(0, 0, 0, 0.45);
}
.ant-input-search > .ant-input-group > .ant-input-group-addon:last-child .ant-input-search-button:not(.ant-btn-primary).ant-btn-loading::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.ant-input-search-button {
  height: 32px;
}
.ant-input-search-button:hover,
.ant-input-search-button:focus {
  z-index: 1;
}
.ant-input-search-large .ant-input-search-button {
  height: 40px;
}
.ant-input-search-small .ant-input-search-button {
  height: 24px;
}
.ant-input-search.ant-input-compact-item:not(.ant-input-compact-item-rtl):not(.ant-input-compact-last-item) .ant-input-group-addon .ant-input-search-button {
  margin-right: -1px;
  border-radius: 0;
}
.ant-input-search.ant-input-compact-item:not(.ant-input-compact-first-item) .ant-input,
.ant-input-search.ant-input-compact-item:not(.ant-input-compact-first-item) .ant-input-affix-wrapper {
  border-radius: 0;
}
.ant-input-search.ant-input-compact-item > .ant-input-group-addon .ant-input-search-button:hover,
.ant-input-search.ant-input-compact-item > .ant-input:hover,
.ant-input-search.ant-input-compact-item .ant-input-affix-wrapper:hover,
.ant-input-search.ant-input-compact-item > .ant-input-group-addon .ant-input-search-button:focus,
.ant-input-search.ant-input-compact-item > .ant-input:focus,
.ant-input-search.ant-input-compact-item .ant-input-affix-wrapper:focus,
.ant-input-search.ant-input-compact-item > .ant-input-group-addon .ant-input-search-button:active,
.ant-input-search.ant-input-compact-item > .ant-input:active,
.ant-input-search.ant-input-compact-item .ant-input-affix-wrapper:active {
  z-index: 2;
}
.ant-input-search.ant-input-compact-item > .ant-input-affix-wrapper-focused {
  z-index: 2;
}
.ant-input-search.ant-input-compact-item-rtl:not(.ant-input-compact-last-item) .ant-input-group-addon:last-child .ant-input-search-button {
  margin-left: -1px;
  border-radius: 0;
}
.ant-input-group-wrapper-rtl {
  direction: rtl;
}
.ant-input-group-rtl {
  direction: rtl;
}
.ant-input-affix-wrapper.ant-input-affix-wrapper-rtl > input.ant-input {
  border: none;
  outline: none;
}
.ant-input-affix-wrapper-rtl .ant-input-prefix {
  margin: 0 0 0 4px;
}
.ant-input-affix-wrapper-rtl .ant-input-suffix {
  margin: 0 4px 0 0;
}
.ant-input-textarea-rtl {
  direction: rtl;
}
.ant-input-textarea-rtl.ant-input-textarea-show-count::after {
  text-align: left;
}
.ant-input-affix-wrapper-rtl .ant-input-clear-icon-has-suffix {
  margin-right: 0;
  margin-left: 4px;
}
.ant-input-affix-wrapper-rtl .ant-input-clear-icon {
  right: auto;
  left: 8px;
}
.ant-input-search-rtl {
  direction: rtl;
}
.ant-input-search-rtl .ant-input:hover + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary),
.ant-input-search-rtl .ant-input:focus + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary) {
  border-left-color: #d9d9d9;
}
.ant-input-search-rtl .ant-input:hover + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary):hover,
.ant-input-search-rtl .ant-input:focus + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary):hover {
  border-left-color: #b36afc;
}
.ant-input-search-rtl > .ant-input-group > .ant-input-affix-wrapper:hover,
.ant-input-search-rtl > .ant-input-group > .ant-input-affix-wrapper-focused {
  border-right-color: #b36afc;
}
.ant-input-search-rtl > .ant-input-group > .ant-input-group-addon:last-child {
  right: -1px;
  left: auto;
}
.ant-input-search-rtl > .ant-input-group > .ant-input-group-addon:last-child .ant-input-search-button {
  border-radius: 2px 0 0 2px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ant-input {
    height: 32px;
  }
  .ant-input-lg {
    height: 40px;
  }
  .ant-input-sm {
    height: 24px;
  }
  .ant-input-affix-wrapper > input.ant-input {
    height: auto;
  }
}
.ant-input-number-affix-wrapper {
  display: inline-block;
  width: 100%;
  min-width: 0;
  padding: 3.8px 11px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 1.6;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: all 0.3s;
  position: relative;
  display: inline-flex;
  width: 90px;
  padding: 0;
  padding-inline-start: 11px;
}
.ant-input-number-affix-wrapper::-moz-placeholder {
  color: #bfbfbf;
  -moz-user-select: none;
       user-select: none;
}
.ant-input-number-affix-wrapper::placeholder {
  color: #bfbfbf;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-input-number-affix-wrapper:-moz-placeholder-shown {
  text-overflow: ellipsis;
}
.ant-input-number-affix-wrapper:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-input-number-affix-wrapper:hover {
  border-color: #b36afc;
  border-right-width: 1px;
}
.ant-input-rtl .ant-input-number-affix-wrapper:hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-input-number-affix-wrapper:focus,
.ant-input-number-affix-wrapper-focused {
  border-color: #b36afc;
  box-shadow: 0 0 0 2px rgba(145, 62, 240, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-rtl .ant-input-number-affix-wrapper:focus,
.ant-input-rtl .ant-input-number-affix-wrapper-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-input-number-affix-wrapper-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input-number-affix-wrapper-disabled:hover {
  border-color: #d9d9d9;
  border-right-width: 1px;
}
.ant-input-number-affix-wrapper[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input-number-affix-wrapper[disabled]:hover {
  border-color: #d9d9d9;
  border-right-width: 1px;
}
.ant-input-number-affix-wrapper-borderless,
.ant-input-number-affix-wrapper-borderless:hover,
.ant-input-number-affix-wrapper-borderless:focus,
.ant-input-number-affix-wrapper-borderless-focused,
.ant-input-number-affix-wrapper-borderless-disabled,
.ant-input-number-affix-wrapper-borderless[disabled] {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
textarea.ant-input-number-affix-wrapper {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.6;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}
.ant-input-number-affix-wrapper-lg {
  padding: 6.2px 11px;
  font-size: 16px;
}
.ant-input-number-affix-wrapper-sm {
  padding: 0 7px;
}
.ant-input-number-affix-wrapper-rtl {
  direction: rtl;
}
.ant-input-number-affix-wrapper:not(.ant-input-number-affix-wrapper-disabled):hover {
  border-color: #b36afc;
  border-right-width: 1px;
  z-index: 1;
}
.ant-input-rtl .ant-input-number-affix-wrapper:not(.ant-input-number-affix-wrapper-disabled):hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-input-number-affix-wrapper-focused,
.ant-input-number-affix-wrapper:focus {
  z-index: 1;
}
.ant-input-number-affix-wrapper-disabled .ant-input-number[disabled] {
  background: transparent;
}
.ant-input-number-affix-wrapper > div.ant-input-number {
  width: 100%;
  border: none;
  outline: none;
}
.ant-input-number-affix-wrapper > div.ant-input-number.ant-input-number-focused {
  box-shadow: none !important;
}
.ant-input-number-affix-wrapper input.ant-input-number-input {
  padding: 0;
}
.ant-input-number-affix-wrapper::before {
  display: inline-block;
  width: 0;
  visibility: hidden;
  content: '\a0';
}
.ant-input-number-affix-wrapper .ant-input-number-handler-wrap {
  z-index: 2;
}
.ant-input-number-prefix,
.ant-input-number-suffix {
  display: flex;
  flex: none;
  align-items: center;
  pointer-events: none;
}
.ant-input-number-prefix {
  margin-inline-end: 4px;
}
.ant-input-number-suffix {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  height: 100%;
  margin-right: 11px;
  margin-left: 4px;
}
.ant-input-number-group-wrapper .ant-input-number-affix-wrapper {
  width: 100%;
}
.ant-input-number-status-error:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number,
.ant-input-number-status-error:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number:hover {
  background: #fff;
  border-color: #E54963;
}
.ant-input-number-status-error:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number:focus,
.ant-input-number-status-error:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number-focused {
  border-color: #f27485;
  box-shadow: 0 0 0 2px rgba(229, 73, 99, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-number-status-error .ant-input-number-prefix {
  color: #E54963;
}
.ant-input-number-status-warning:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number,
.ant-input-number-status-warning:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number:hover {
  background: #fff;
  border-color: #FFB946;
}
.ant-input-number-status-warning:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number:focus,
.ant-input-number-status-warning:not(.ant-input-number-disabled):not(.ant-input-number-borderless).ant-input-number-focused {
  border-color: #ffcc6e;
  box-shadow: 0 0 0 2px rgba(255, 185, 70, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-number-status-warning .ant-input-number-prefix {
  color: #FFB946;
}
.ant-input-number-affix-wrapper-status-error:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper,
.ant-input-number-affix-wrapper-status-error:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:hover {
  background: #fff;
  border-color: #E54963;
}
.ant-input-number-affix-wrapper-status-error:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:focus,
.ant-input-number-affix-wrapper-status-error:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper-focused {
  border-color: #f27485;
  box-shadow: 0 0 0 2px rgba(229, 73, 99, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-number-affix-wrapper-status-error .ant-input-number-prefix {
  color: #E54963;
}
.ant-input-number-affix-wrapper-status-warning:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper,
.ant-input-number-affix-wrapper-status-warning:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:hover {
  background: #fff;
  border-color: #FFB946;
}
.ant-input-number-affix-wrapper-status-warning:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper:focus,
.ant-input-number-affix-wrapper-status-warning:not(.ant-input-number-affix-wrapper-disabled):not(.ant-input-number-affix-wrapper-borderless).ant-input-number-affix-wrapper-focused {
  border-color: #ffcc6e;
  box-shadow: 0 0 0 2px rgba(255, 185, 70, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-number-affix-wrapper-status-warning .ant-input-number-prefix {
  color: #FFB946;
}
.ant-input-number-group-wrapper-status-error .ant-input-number-group-addon {
  color: #E54963;
  border-color: #E54963;
}
.ant-input-number-group-wrapper-status-warning .ant-input-number-group-addon {
  color: #FFB946;
  border-color: #FFB946;
}
.ant-input-number {
  box-sizing: border-box;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 3.8px 11px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 1.6;
  background-color: #fff;
  background-image: none;
  transition: all 0.3s;
  display: inline-block;
  width: 90px;
  margin: 0;
  padding: 0;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
}
.ant-input-number::-moz-placeholder {
  color: #bfbfbf;
  -moz-user-select: none;
       user-select: none;
}
.ant-input-number::placeholder {
  color: #bfbfbf;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-input-number:-moz-placeholder-shown {
  text-overflow: ellipsis;
}
.ant-input-number:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-input-number:hover {
  border-color: #b36afc;
  border-right-width: 1px;
}
.ant-input-rtl .ant-input-number:hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-input-number:focus,
.ant-input-number-focused {
  border-color: #b36afc;
  box-shadow: 0 0 0 2px rgba(145, 62, 240, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-rtl .ant-input-number:focus,
.ant-input-rtl .ant-input-number-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-input-number-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input-number-disabled:hover {
  border-color: #d9d9d9;
  border-right-width: 1px;
}
.ant-input-number[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input-number[disabled]:hover {
  border-color: #d9d9d9;
  border-right-width: 1px;
}
.ant-input-number-borderless,
.ant-input-number-borderless:hover,
.ant-input-number-borderless:focus,
.ant-input-number-borderless-focused,
.ant-input-number-borderless-disabled,
.ant-input-number-borderless[disabled] {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
textarea.ant-input-number {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.6;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}
.ant-input-number-lg {
  padding: 6.2px 11px;
  font-size: 16px;
}
.ant-input-number-sm {
  padding: 0 7px;
}
.ant-input-number-rtl {
  direction: rtl;
}
.ant-input-number-group {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.ant-input-number-group[class*='col-'] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.ant-input-number-group > [class*='col-'] {
  padding-right: 8px;
}
.ant-input-number-group > [class*='col-']:last-child {
  padding-right: 0;
}
.ant-input-number-group-addon,
.ant-input-number-group-wrap,
.ant-input-number-group > .ant-input-number {
  display: table-cell;
}
.ant-input-number-group-addon:not(:first-child):not(:last-child),
.ant-input-number-group-wrap:not(:first-child):not(:last-child),
.ant-input-number-group > .ant-input-number:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.ant-input-number-group-addon,
.ant-input-number-group-wrap {
  width: 1px;
  white-space: nowrap;
  vertical-align: middle;
}
.ant-input-number-group-wrap > * {
  display: block !important;
}
.ant-input-number-group .ant-input-number {
  float: left;
  width: 100%;
  margin-bottom: 0;
  text-align: inherit;
}
.ant-input-number-group .ant-input-number:focus {
  z-index: 1;
  border-right-width: 1px;
}
.ant-input-number-group .ant-input-number:hover {
  z-index: 1;
  border-right-width: 1px;
}
.ant-input-search-with-button .ant-input-number-group .ant-input-number:hover {
  z-index: 0;
}
.ant-input-number-group-addon {
  position: relative;
  padding: 0 11px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: normal;
  font-size: 14px;
  text-align: center;
  background-color: #fafafa;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: all 0.3s;
}
.ant-input-number-group-addon .ant-select {
  margin: -4.8px -11px;
}
.ant-input-number-group-addon .ant-select.ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
  background-color: inherit;
  border: 1px solid transparent;
  box-shadow: none;
}
.ant-input-number-group-addon .ant-select-open .ant-select-selector,
.ant-input-number-group-addon .ant-select-focused .ant-select-selector {
  color: #913ef0;
}
.ant-input-number-group-addon .ant-cascader-picker {
  margin: -9px -12px;
  background-color: transparent;
}
.ant-input-number-group-addon .ant-cascader-picker .ant-cascader-input {
  text-align: left;
  border: 0;
  box-shadow: none;
}
.ant-input-number-group > .ant-input-number:first-child,
.ant-input-number-group-addon:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-input-number-group > .ant-input-number:first-child .ant-select .ant-select-selector,
.ant-input-number-group-addon:first-child .ant-select .ant-select-selector {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-input-number-group > .ant-input-number-affix-wrapper:not(:first-child) .ant-input-number {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-input-number-group > .ant-input-number-affix-wrapper:not(:last-child) .ant-input-number {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-input-number-group-addon:first-child {
  border-right: 0;
}
.ant-input-number-group-addon:last-child {
  border-left: 0;
}
.ant-input-number-group > .ant-input-number:last-child,
.ant-input-number-group-addon:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-input-number-group > .ant-input-number:last-child .ant-select .ant-select-selector,
.ant-input-number-group-addon:last-child .ant-select .ant-select-selector {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-input-number-group-lg .ant-input-number,
.ant-input-number-group-lg > .ant-input-number-group-addon {
  padding: 6.2px 11px;
  font-size: 16px;
}
.ant-input-number-group-sm .ant-input-number,
.ant-input-number-group-sm > .ant-input-number-group-addon {
  padding: 0 7px;
}
.ant-input-number-group-lg .ant-select-single .ant-select-selector {
  height: 40px;
}
.ant-input-number-group-sm .ant-select-single .ant-select-selector {
  height: 24px;
}
.ant-input-number-group .ant-input-number-affix-wrapper:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-input-search .ant-input-number-group .ant-input-number-affix-wrapper:not(:last-child) {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.ant-input-number-group .ant-input-number-affix-wrapper:not(:first-child),
.ant-input-search .ant-input-number-group .ant-input-number-affix-wrapper:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-input-number-group.ant-input-number-group-compact {
  display: block;
}
.ant-input-number-group.ant-input-number-group-compact::before {
  display: table;
  content: '';
}
.ant-input-number-group.ant-input-number-group-compact::after {
  display: table;
  clear: both;
  content: '';
}
.ant-input-number-group.ant-input-number-group-compact::before {
  display: table;
  content: '';
}
.ant-input-number-group.ant-input-number-group-compact::after {
  display: table;
  clear: both;
  content: '';
}
.ant-input-number-group.ant-input-number-group-compact-addon:not(:first-child):not(:last-child),
.ant-input-number-group.ant-input-number-group-compact-wrap:not(:first-child):not(:last-child),
.ant-input-number-group.ant-input-number-group-compact > .ant-input-number:not(:first-child):not(:last-child) {
  border-right-width: 1px;
}
.ant-input-number-group.ant-input-number-group-compact-addon:not(:first-child):not(:last-child):hover,
.ant-input-number-group.ant-input-number-group-compact-wrap:not(:first-child):not(:last-child):hover,
.ant-input-number-group.ant-input-number-group-compact > .ant-input-number:not(:first-child):not(:last-child):hover {
  z-index: 1;
}
.ant-input-number-group.ant-input-number-group-compact-addon:not(:first-child):not(:last-child):focus,
.ant-input-number-group.ant-input-number-group-compact-wrap:not(:first-child):not(:last-child):focus,
.ant-input-number-group.ant-input-number-group-compact > .ant-input-number:not(:first-child):not(:last-child):focus {
  z-index: 1;
}
.ant-input-number-group.ant-input-number-group-compact > * {
  display: inline-block;
  float: none;
  vertical-align: top;
  border-radius: 0;
}
.ant-input-number-group.ant-input-number-group-compact > .ant-input-number-affix-wrapper,
.ant-input-number-group.ant-input-number-group-compact > .ant-input-number-number-affix-wrapper,
.ant-input-number-group.ant-input-number-group-compact > .ant-picker-range {
  display: inline-flex;
}
.ant-input-number-group.ant-input-number-group-compact > *:not(:last-child) {
  margin-right: -1px;
  border-right-width: 1px;
}
.ant-input-number-group.ant-input-number-group-compact .ant-input-number {
  float: none;
}
.ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-selector,
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input,
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker .ant-input,
.ant-input-number-group.ant-input-number-group-compact > .ant-input-group-wrapper .ant-input {
  border-right-width: 1px;
  border-radius: 0;
}
.ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-selector:hover,
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input:hover,
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker .ant-input:hover,
.ant-input-number-group.ant-input-number-group-compact > .ant-input-group-wrapper .ant-input:hover {
  z-index: 1;
}
.ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-selector:focus,
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input:focus,
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker .ant-input:focus,
.ant-input-number-group.ant-input-number-group-compact > .ant-input-group-wrapper .ant-input:focus {
  z-index: 1;
}
.ant-input-number-group.ant-input-number-group-compact > .ant-select-focused {
  z-index: 1;
}
.ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-arrow {
  z-index: 1;
}
.ant-input-number-group.ant-input-number-group-compact > *:first-child,
.ant-input-number-group.ant-input-number-group-compact > .ant-select:first-child > .ant-select-selector,
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete:first-child .ant-input,
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:first-child .ant-input {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.ant-input-number-group.ant-input-number-group-compact > *:last-child,
.ant-input-number-group.ant-input-number-group-compact > .ant-select:last-child > .ant-select-selector,
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:last-child .ant-input,
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker-focused:last-child .ant-input {
  border-right-width: 1px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input {
  vertical-align: top;
}
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper + .ant-input-group-wrapper {
  margin-left: -1px;
}
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper + .ant-input-group-wrapper .ant-input-affix-wrapper {
  border-radius: 0;
}
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search > .ant-input-group > .ant-input-group-addon > .ant-input-search-button {
  border-radius: 0;
}
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search > .ant-input-group > .ant-input {
  border-radius: 2px 0 0 2px;
}
.ant-input-number-group > .ant-input-number-rtl:first-child,
.ant-input-number-group-rtl .ant-input-number-group-addon:first-child {
  border-radius: 0 2px 2px 0;
}
.ant-input-number-group-rtl .ant-input-number-group-addon:first-child {
  border-right: 1px solid #d9d9d9;
  border-left: 0;
}
.ant-input-number-group-rtl .ant-input-number-group-addon:last-child {
  border-right: 0;
  border-left: 1px solid #d9d9d9;
  border-radius: 2px 0 0 2px;
}
.ant-input-number-group-rtl.ant-input-number-group > .ant-input-number:last-child,
.ant-input-number-group-rtl.ant-input-number-group-addon:last-child {
  border-radius: 2px 0 0 2px;
}
.ant-input-number-group-rtl.ant-input-number-group .ant-input-number-affix-wrapper:not(:first-child) {
  border-radius: 2px 0 0 2px;
}
.ant-input-number-group-rtl.ant-input-number-group .ant-input-number-affix-wrapper:not(:last-child) {
  border-radius: 0 2px 2px 0;
}
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > *:not(:last-child) {
  margin-right: 0;
  margin-left: -1px;
  border-left-width: 1px;
}
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > *:first-child,
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select:first-child > .ant-select-selector,
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete:first-child .ant-input,
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:first-child .ant-input {
  border-radius: 0 2px 2px 0;
}
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > *:last-child,
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select:last-child > .ant-select-selector,
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete:last-child .ant-input,
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:last-child .ant-input,
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker-focused:last-child .ant-input {
  border-left-width: 1px;
  border-radius: 2px 0 0 2px;
}
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper-rtl + .ant-input-group-wrapper-rtl {
  margin-right: -1px;
  margin-left: 0;
}
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper-rtl:not(:last-child).ant-input-search > .ant-input-group > .ant-input {
  border-radius: 0 2px 2px 0;
}
.ant-input-number-group > .ant-input-number-rtl:first-child {
  border-radius: 0 2px 2px 0;
}
.ant-input-number-group > .ant-input-number-rtl:last-child {
  border-radius: 2px 0 0 2px;
}
.ant-input-number-group-rtl .ant-input-number-group-addon:first-child {
  border-right: 1px solid #d9d9d9;
  border-left: 0;
  border-radius: 0 2px 2px 0;
}
.ant-input-number-group-rtl .ant-input-number-group-addon:last-child {
  border-right: 0;
  border-left: 1px solid #d9d9d9;
  border-radius: 2px 0 0 2px;
}
.ant-input-number-group-wrapper {
  display: inline-block;
  text-align: start;
  vertical-align: top;
}
.ant-input-number-handler {
  position: relative;
  display: block;
  width: 100%;
  height: 50%;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.45);
  font-weight: bold;
  line-height: 0;
  text-align: center;
  border-left: 1px solid #d9d9d9;
  transition: all 0.1s linear;
}
.ant-input-number-handler:active {
  background: #f4f4f4;
}
.ant-input-number-handler:hover .ant-input-number-handler-up-inner,
.ant-input-number-handler:hover .ant-input-number-handler-down-inner {
  color: #b36afc;
}
.ant-input-number-handler-up-inner,
.ant-input-number-handler-down-inner {
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 4px;
  width: 12px;
  height: 12px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 12px;
  transition: all 0.1s linear;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-input-number-handler-up-inner > *,
.ant-input-number-handler-down-inner > * {
  line-height: 1;
}
.ant-input-number-handler-up-inner svg,
.ant-input-number-handler-down-inner svg {
  display: inline-block;
}
.ant-input-number-handler-up-inner::before,
.ant-input-number-handler-down-inner::before {
  display: none;
}
.ant-input-number-handler-up-inner .ant-input-number-handler-up-inner-icon,
.ant-input-number-handler-up-inner .ant-input-number-handler-down-inner-icon,
.ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon,
.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon {
  display: block;
}
.ant-input-number:hover {
  border-color: #b36afc;
  border-right-width: 1px;
}
.ant-input-number:hover + .ant-form-item-children-icon {
  opacity: 0;
  transition: opacity 0.24s linear 0.24s;
}
.ant-input-number-focused {
  border-color: #b36afc;
  box-shadow: 0 0 0 2px rgba(145, 62, 240, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-rtl .ant-input-number-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-input-number-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input-number-disabled:hover {
  border-color: #d9d9d9;
  border-right-width: 1px;
}
.ant-input-number-disabled .ant-input-number-input {
  cursor: not-allowed;
}
.ant-input-number-disabled .ant-input-number-handler-wrap {
  display: none;
}
.ant-input-number-readonly .ant-input-number-handler-wrap {
  display: none;
}
.ant-input-number-input {
  width: 100%;
  height: 30px;
  padding: 0 11px;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 2px;
  outline: 0;
  transition: all 0.3s linear;
  -webkit-appearance: textfield !important;
     -moz-appearance: textfield !important;
          appearance: textfield !important;
}
.ant-input-number-input::-moz-placeholder {
  color: #bfbfbf;
  -moz-user-select: none;
       user-select: none;
}
.ant-input-number-input::placeholder {
  color: #bfbfbf;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-input-number-input:-moz-placeholder-shown {
  text-overflow: ellipsis;
}
.ant-input-number-input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-input-number-input[type='number']::-webkit-inner-spin-button,
.ant-input-number-input[type='number']::-webkit-outer-spin-button {
  margin: 0;
  /* stylelint-disable-next-line property-no-vendor-prefix */
  -webkit-appearance: none;
  appearance: none;
}
.ant-input-number-lg {
  padding: 0;
  font-size: 16px;
}
.ant-input-number-lg input {
  height: 38px;
}
.ant-input-number-sm {
  padding: 0;
}
.ant-input-number-sm input {
  height: 22px;
  padding: 0 7px;
}
.ant-input-number-handler-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 100%;
  background: #fff;
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.24s linear 0.1s;
}
.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner,
.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  margin-right: 0;
  font-size: 7px;
}
.ant-input-number-borderless .ant-input-number-handler-wrap {
  border-left-width: 0;
}
.ant-input-number-handler-wrap:hover .ant-input-number-handler {
  height: 40%;
}
.ant-input-number:hover .ant-input-number-handler-wrap,
.ant-input-number-focused .ant-input-number-handler-wrap {
  opacity: 1;
}
.ant-input-number-handler-up {
  border-top-right-radius: 2px;
  cursor: pointer;
}
.ant-input-number-handler-up-inner {
  top: 50%;
  margin-top: -5px;
  text-align: center;
}
.ant-input-number-handler-up:hover {
  height: 60% !important;
}
.ant-input-number-handler-down {
  top: 0;
  border-top: 1px solid #d9d9d9;
  border-bottom-right-radius: 2px;
  cursor: pointer;
}
.ant-input-number-handler-down-inner {
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
}
.ant-input-number-handler-down:hover {
  height: 60% !important;
}
.ant-input-number-borderless .ant-input-number-handler-down {
  border-top-width: 0;
}
.ant-input-number:hover:not(.ant-input-number-borderless) .ant-input-number-handler-down,
.ant-input-number-focused:not(.ant-input-number-borderless) .ant-input-number-handler-down {
  border-top: 1px solid #d9d9d9;
}
.ant-input-number-handler-up-disabled,
.ant-input-number-handler-down-disabled {
  cursor: not-allowed;
}
.ant-input-number-handler-up-disabled:hover .ant-input-number-handler-up-inner,
.ant-input-number-handler-down-disabled:hover .ant-input-number-handler-down-inner {
  color: rgba(0, 0, 0, 0.25);
}
.ant-input-number-borderless {
  box-shadow: none;
}
.ant-input-number-out-of-range input {
  color: #E54963;
}
.ant-input-number-compact-item:not(.ant-input-number-compact-last-item):not(.ant-input-number-compact-item-rtl) {
  margin-right: -1px;
}
.ant-input-number-compact-item:not(.ant-input-number-compact-last-item).ant-input-number-compact-item-rtl {
  margin-left: -1px;
}
.ant-input-number-compact-item:hover,
.ant-input-number-compact-item:focus,
.ant-input-number-compact-item:active {
  z-index: 2;
}
.ant-input-number-compact-item.ant-input-number-focused {
  z-index: 2;
}
.ant-input-number-compact-item[disabled] {
  z-index: 0;
}
.ant-input-number-compact-item:not(.ant-input-number-compact-first-item):not(.ant-input-number-compact-last-item).ant-input-number {
  border-radius: 0;
}
.ant-input-number-compact-item.ant-input-number.ant-input-number-compact-first-item:not(.ant-input-number-compact-last-item):not(.ant-input-number-compact-item-rtl) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-input-number-compact-item.ant-input-number.ant-input-number-compact-last-item:not(.ant-input-number-compact-first-item):not(.ant-input-number-compact-item-rtl) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-input-number-compact-item.ant-input-number.ant-input-number-compact-item-rtl.ant-input-number-compact-first-item:not(.ant-input-number-compact-last-item) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-input-number-compact-item.ant-input-number.ant-input-number-compact-item-rtl.ant-input-number-compact-last-item:not(.ant-input-number-compact-first-item) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-input-number-rtl {
  direction: rtl;
}
.ant-input-number-rtl .ant-input-number-handler {
  border-right: 1px solid #d9d9d9;
  border-left: 0;
}
.ant-input-number-rtl .ant-input-number-handler-wrap {
  right: auto;
  left: 0;
}
.ant-input-number-rtl.ant-input-number-borderless .ant-input-number-handler-wrap {
  border-right-width: 0;
}
.ant-input-number-rtl .ant-input-number-handler-up {
  border-top-right-radius: 0;
}
.ant-input-number-rtl .ant-input-number-handler-down {
  border-bottom-right-radius: 0;
}
.ant-input-number-rtl .ant-input-number-input {
  direction: ltr;
  text-align: right;
}
.ant-layout {
  display: flex;
  flex: auto;
  flex-direction: column;
  /* fix firefox can't set height smaller than content on flex item */
  min-height: 0;
  background: #f0f2f5;
}
.ant-layout,
.ant-layout * {
  box-sizing: border-box;
}
.ant-layout.ant-layout-has-sider {
  flex-direction: row;
}
.ant-layout.ant-layout-has-sider > .ant-layout,
.ant-layout.ant-layout-has-sider > .ant-layout-content {
  width: 0;
}
.ant-layout-header,
.ant-layout-footer {
  flex: 0 0 auto;
}
.ant-layout-header {
  height: 64px;
  padding: 0 50px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 64px;
  background: #001529;
}
.ant-layout-footer {
  padding: 24px 50px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  background: #f0f2f5;
}
.ant-layout-content {
  flex: auto;
  /* fix firefox can't set height smaller than content on flex item */
  min-height: 0;
}
.ant-layout-sider {
  position: relative;
  /* fix firefox can't set width smaller than content on flex item */
  min-width: 0;
  background: #001529;
  transition: all 0.2s;
}
.ant-layout-sider-children {
  height: 100%;
  margin-top: -0.1px;
  padding-top: 0.1px;
}
.ant-layout-sider-children .ant-menu.ant-menu-inline-collapsed {
  width: auto;
}
.ant-layout-sider-has-trigger {
  padding-bottom: 48px;
}
.ant-layout-sider-right {
  order: 1;
}
.ant-layout-sider-trigger {
  position: fixed;
  bottom: 0;
  z-index: 1;
  height: 48px;
  color: #fff;
  line-height: 48px;
  text-align: center;
  background: #002140;
  cursor: pointer;
  transition: all 0.2s;
}
.ant-layout-sider-zero-width > * {
  overflow: hidden;
}
.ant-layout-sider-zero-width-trigger {
  position: absolute;
  top: 64px;
  right: -36px;
  z-index: 1;
  width: 36px;
  height: 42px;
  color: #fff;
  font-size: 18px;
  line-height: 42px;
  text-align: center;
  background: #001529;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}
.ant-layout-sider-zero-width-trigger::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  transition: all 0.3s;
  content: '';
}
.ant-layout-sider-zero-width-trigger:hover::after {
  background: rgba(255, 255, 255, 0.1);
}
.ant-layout-sider-zero-width-trigger-right {
  left: -36px;
  border-radius: 2px 0 0 2px;
}
.ant-layout-sider-light {
  background: #fff;
}
.ant-layout-sider-light .ant-layout-sider-trigger {
  color: rgba(0, 0, 0, 0.85);
  background: #fff;
}
.ant-layout-sider-light .ant-layout-sider-zero-width-trigger {
  color: rgba(0, 0, 0, 0.85);
  background: #fff;
}
.ant-layout-rtl {
  direction: rtl;
}
.ant-list {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
}
.ant-list * {
  outline: none;
}
.ant-list-pagination {
  margin-top: 24px;
  text-align: right;
}
.ant-list-pagination .ant-pagination-options {
  text-align: left;
}
.ant-list-more {
  margin-top: 12px;
  text-align: center;
}
.ant-list-more button {
  padding-right: 32px;
  padding-left: 32px;
}
.ant-list-spin {
  min-height: 40px;
  text-align: center;
}
.ant-list-empty-text {
  padding: 16px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 14px;
  text-align: center;
}
.ant-list-items {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: rgba(0, 0, 0, 0.85);
}
.ant-list-item-meta {
  display: flex;
  flex: 1;
  align-items: flex-start;
  max-width: 100%;
}
.ant-list-item-meta-avatar {
  margin-right: 16px;
}
.ant-list-item-meta-content {
  flex: 1 0;
  width: 0;
  color: rgba(0, 0, 0, 0.85);
}
.ant-list-item-meta-title {
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 1.6;
}
.ant-list-item-meta-title > a {
  color: rgba(0, 0, 0, 0.85);
  transition: all 0.3s;
}
.ant-list-item-meta-title > a:hover {
  color: #913ef0;
}
.ant-list-item-meta-description {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 1.6;
}
.ant-list-item-action {
  flex: 0 0 auto;
  margin-left: 48px;
  padding: 0;
  font-size: 0;
  list-style: none;
}
.ant-list-item-action > li {
  position: relative;
  display: inline-block;
  padding: 0 8px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
.ant-list-item-action > li:first-child {
  padding-left: 0;
}
.ant-list-item-action-split {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 14px;
  margin-top: -7px;
  background-color: #f0f0f0;
}
.ant-list-header {
  background: transparent;
}
.ant-list-footer {
  background: transparent;
}
.ant-list-header,
.ant-list-footer {
  padding-top: 12px;
  padding-bottom: 12px;
}
.ant-list-empty {
  padding: 16px 0;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  text-align: center;
}
.ant-list-split .ant-list-item {
  border-bottom: 1px solid #f0f0f0;
}
.ant-list-split .ant-list-item:last-child {
  border-bottom: none;
}
.ant-list-split .ant-list-header {
  border-bottom: 1px solid #f0f0f0;
}
.ant-list-split.ant-list-empty .ant-list-footer {
  border-top: 1px solid #f0f0f0;
}
.ant-list-loading .ant-list-spin-nested-loading {
  min-height: 32px;
}
.ant-list-split.ant-list-something-after-last-item .ant-spin-container > .ant-list-items > .ant-list-item:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.ant-list-lg .ant-list-item {
  padding: 16px 24px;
}
.ant-list-sm .ant-list-item {
  padding: 8px 16px;
}
.ant-list-vertical .ant-list-item {
  align-items: initial;
}
.ant-list-vertical .ant-list-item-main {
  display: block;
  flex: 1;
}
.ant-list-vertical .ant-list-item-extra {
  margin-left: 40px;
}
.ant-list-vertical .ant-list-item-meta {
  margin-bottom: 16px;
}
.ant-list-vertical .ant-list-item-meta-title {
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
  line-height: 24px;
}
.ant-list-vertical .ant-list-item-action {
  margin-top: 16px;
  margin-left: auto;
}
.ant-list-vertical .ant-list-item-action > li {
  padding: 0 16px;
}
.ant-list-vertical .ant-list-item-action > li:first-child {
  padding-left: 0;
}
.ant-list-grid .ant-col > .ant-list-item {
  display: block;
  max-width: 100%;
  margin-bottom: 16px;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.ant-list-item-no-flex {
  display: block;
}
.ant-list:not(.ant-list-vertical) .ant-list-item-no-flex .ant-list-item-action {
  float: right;
}
.ant-list-bordered {
  border: 1px solid #d9d9d9;
  border-radius: 2px;
}
.ant-list-bordered .ant-list-header {
  padding-right: 24px;
  padding-left: 24px;
}
.ant-list-bordered .ant-list-footer {
  padding-right: 24px;
  padding-left: 24px;
}
.ant-list-bordered .ant-list-item {
  padding-right: 24px;
  padding-left: 24px;
}
.ant-list-bordered .ant-list-pagination {
  margin: 16px 24px;
}
.ant-list-bordered.ant-list-sm .ant-list-item {
  padding: 8px 16px;
}
.ant-list-bordered.ant-list-sm .ant-list-header,
.ant-list-bordered.ant-list-sm .ant-list-footer {
  padding: 8px 16px;
}
.ant-list-bordered.ant-list-lg .ant-list-item {
  padding: 16px 24px;
}
.ant-list-bordered.ant-list-lg .ant-list-header,
.ant-list-bordered.ant-list-lg .ant-list-footer {
  padding: 16px 24px;
}
@media screen and (max-width: 768px) {
  .ant-list-item-action {
    margin-left: 24px;
  }
  .ant-list-vertical .ant-list-item-extra {
    margin-left: 24px;
  }
}
@media screen and (max-width: 576px) {
  .ant-list-item {
    flex-wrap: wrap;
  }
  .ant-list-item-action {
    margin-left: 12px;
  }
  .ant-list-vertical .ant-list-item {
    flex-wrap: wrap-reverse;
  }
  .ant-list-vertical .ant-list-item-main {
    min-width: 220px;
  }
  .ant-list-vertical .ant-list-item-extra {
    margin: auto auto 16px;
  }
}
.ant-list-rtl {
  direction: rtl;
  text-align: right;
}
.ant-list-rtl .ReactVirtualized__List .ant-list-item {
  direction: rtl;
}
.ant-list-rtl .ant-list-pagination {
  text-align: left;
}
.ant-list-rtl .ant-list-item-meta-avatar {
  margin-right: 0;
  margin-left: 16px;
}
.ant-list-rtl .ant-list-item-action {
  margin-right: 48px;
  margin-left: 0;
}
.ant-list.ant-list-rtl .ant-list-item-action > li:first-child {
  padding-right: 0;
  padding-left: 16px;
}
.ant-list-rtl .ant-list-item-action-split {
  right: auto;
  left: 0;
}
.ant-list-rtl.ant-list-vertical .ant-list-item-extra {
  margin-right: 40px;
  margin-left: 0;
}
.ant-list-rtl.ant-list-vertical .ant-list-item-action {
  margin-right: auto;
}
.ant-list-rtl .ant-list-vertical .ant-list-item-action > li:first-child {
  padding-right: 0;
  padding-left: 16px;
}
.ant-list-rtl .ant-list:not(.ant-list-vertical) .ant-list-item-no-flex .ant-list-item-action {
  float: left;
}
@media screen and (max-width: 768px) {
  .ant-list-rtl .ant-list-item-action {
    margin-right: 24px;
    margin-left: 0;
  }
  .ant-list-rtl .ant-list-vertical .ant-list-item-extra {
    margin-right: 24px;
    margin-left: 0;
  }
}
@media screen and (max-width: 576px) {
  .ant-list-rtl .ant-list-item-action {
    margin-right: 22px;
    margin-left: 0;
  }
  .ant-list-rtl.ant-list-vertical .ant-list-item-extra {
    margin: auto auto 16px;
  }
}
.ant-mentions-status-error:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions,
.ant-mentions-status-error:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions:hover {
  background: #fff;
  border-color: #E54963;
}
.ant-mentions-status-error:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions:focus,
.ant-mentions-status-error:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions-focused {
  border-color: #f27485;
  box-shadow: 0 0 0 2px rgba(229, 73, 99, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-mentions-status-error .ant-input-prefix {
  color: #E54963;
}
.ant-mentions-status-warning:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions,
.ant-mentions-status-warning:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions:hover {
  background: #fff;
  border-color: #FFB946;
}
.ant-mentions-status-warning:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions:focus,
.ant-mentions-status-warning:not(.ant-mentions-disabled):not(.ant-mentions-borderless).ant-mentions-focused {
  border-color: #ffcc6e;
  box-shadow: 0 0 0 2px rgba(255, 185, 70, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-mentions-status-warning .ant-input-prefix {
  color: #FFB946;
}
.ant-mentions {
  box-sizing: border-box;
  margin: 0;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: 'tnum';
  width: 100%;
  min-width: 0;
  padding: 3.8px 11px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: all 0.3s;
  position: relative;
  display: inline-block;
  height: auto;
  padding: 0;
  overflow: hidden;
  line-height: 1.6;
  white-space: pre-wrap;
  vertical-align: bottom;
}
.ant-mentions::-moz-placeholder {
  color: #bfbfbf;
  -moz-user-select: none;
       user-select: none;
}
.ant-mentions::placeholder {
  color: #bfbfbf;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-mentions:-moz-placeholder-shown {
  text-overflow: ellipsis;
}
.ant-mentions:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-mentions:hover {
  border-color: #b36afc;
  border-right-width: 1px;
}
.ant-input-rtl .ant-mentions:hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-mentions:focus,
.ant-mentions-focused {
  border-color: #b36afc;
  box-shadow: 0 0 0 2px rgba(145, 62, 240, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-rtl .ant-mentions:focus,
.ant-input-rtl .ant-mentions-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-mentions-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}
.ant-mentions-disabled:hover {
  border-color: #d9d9d9;
  border-right-width: 1px;
}
.ant-mentions[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}
.ant-mentions[disabled]:hover {
  border-color: #d9d9d9;
  border-right-width: 1px;
}
.ant-mentions-borderless,
.ant-mentions-borderless:hover,
.ant-mentions-borderless:focus,
.ant-mentions-borderless-focused,
.ant-mentions-borderless-disabled,
.ant-mentions-borderless[disabled] {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
textarea.ant-mentions {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.6;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}
.ant-mentions-lg {
  padding: 6.2px 11px;
  font-size: 16px;
}
.ant-mentions-sm {
  padding: 0 7px;
}
.ant-mentions-rtl {
  direction: rtl;
}
.ant-mentions-disabled > textarea {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}
.ant-mentions-disabled > textarea:hover {
  border-color: #d9d9d9;
  border-right-width: 1px;
}
.ant-mentions-focused {
  border-color: #b36afc;
  box-shadow: 0 0 0 2px rgba(145, 62, 240, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-rtl .ant-mentions-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-mentions > textarea,
.ant-mentions-measure {
  min-height: 30px;
  margin: 0;
  padding: 3.8px 11px;
  overflow: inherit;
  overflow-x: hidden;
  overflow-y: auto;
  /* stylelint-disable declaration-block-no-redundant-longhand-properties */
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  font-style: inherit;
  font-variant: inherit;
  font-size-adjust: inherit;
  font-stretch: inherit;
  line-height: inherit;
  /* stylelint-enable declaration-block-no-redundant-longhand-properties */
  direction: inherit;
  letter-spacing: inherit;
  white-space: inherit;
  text-align: inherit;
  vertical-align: top;
  word-wrap: break-word;
  word-break: inherit;
  -moz-tab-size: inherit;
    -o-tab-size: inherit;
       tab-size: inherit;
}
.ant-mentions > textarea {
  width: 100%;
  border: none;
  outline: none;
  resize: none;
}
.ant-mentions > textarea::-moz-placeholder {
  color: #bfbfbf;
  -moz-user-select: none;
       user-select: none;
}
.ant-mentions > textarea::placeholder {
  color: #bfbfbf;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-mentions > textarea:-moz-placeholder-shown {
  text-overflow: ellipsis;
}
.ant-mentions > textarea:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-mentions-measure {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  color: transparent;
  pointer-events: none;
}
.ant-mentions-measure > span {
  display: inline-block;
  min-height: 1em;
}
.ant-mentions-dropdown {
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-variant: tabular-nums;
  line-height: 1.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
  box-sizing: border-box;
  font-size: 14px;
  font-variant: initial;
  background-color: #fff;
  border-radius: 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-mentions-dropdown-hidden {
  display: none;
}
.ant-mentions-dropdown-menu {
  max-height: 250px;
  margin-bottom: 0;
  padding-left: 0;
  overflow: auto;
  list-style: none;
  outline: none;
}
.ant-mentions-dropdown-menu-item {
  position: relative;
  display: block;
  min-width: 100px;
  padding: 5px 12px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.85);
  font-weight: normal;
  line-height: 1.6;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: background 0.3s ease;
}
.ant-mentions-dropdown-menu-item:hover {
  background-color: #f5f5f5;
}
.ant-mentions-dropdown-menu-item:first-child {
  border-radius: 2px 2px 0 0;
}
.ant-mentions-dropdown-menu-item:last-child {
  border-radius: 0 0 2px 2px;
}
.ant-mentions-dropdown-menu-item-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-mentions-dropdown-menu-item-disabled:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #fff;
  cursor: not-allowed;
}
.ant-mentions-dropdown-menu-item-selected {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
  background-color: #fafafa;
}
.ant-mentions-dropdown-menu-item-active {
  background-color: #f5f5f5;
}
.ant-mentions-suffix {
  position: absolute;
  top: 0;
  right: 11px;
  bottom: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin: auto;
}
.ant-mentions-rtl {
  direction: rtl;
}
.ant-menu-item-danger.ant-menu-item {
  color: #E54963;
}
.ant-menu-item-danger.ant-menu-item:hover,
.ant-menu-item-danger.ant-menu-item-active {
  color: #E54963;
}
.ant-menu-item-danger.ant-menu-item:active {
  background: #fff0f0;
}
.ant-menu-item-danger.ant-menu-item-selected {
  color: #E54963;
}
.ant-menu-item-danger.ant-menu-item-selected > a,
.ant-menu-item-danger.ant-menu-item-selected > a:hover {
  color: #E54963;
}
.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-danger.ant-menu-item-selected {
  background-color: #fff0f0;
}
.ant-menu-inline .ant-menu-item-danger.ant-menu-item::after {
  border-right-color: #E54963;
}
.ant-menu-dark .ant-menu-item-danger.ant-menu-item,
.ant-menu-dark .ant-menu-item-danger.ant-menu-item:hover,
.ant-menu-dark .ant-menu-item-danger.ant-menu-item > a {
  color: #E54963;
}
.ant-menu-dark.ant-menu-dark:not(.ant-menu-horizontal) .ant-menu-item-danger.ant-menu-item-selected {
  color: #fff;
  background-color: #E54963;
}
.ant-menu {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-variant: tabular-nums;
  font-feature-settings: 'tnum';
  margin-bottom: 0;
  padding-left: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 0;
  text-align: left;
  list-style: none;
  background: #fff;
  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);
  transition: background 0.3s, width 0.3s cubic-bezier(0.2, 0, 0, 1) 0s;
}
.ant-menu::before {
  display: table;
  content: '';
}
.ant-menu::after {
  display: table;
  clear: both;
  content: '';
}
.ant-menu::before {
  display: table;
  content: '';
}
.ant-menu::after {
  display: table;
  clear: both;
  content: '';
}
.ant-menu.ant-menu-root:focus-visible {
  box-shadow: 0 0 0 2px #f5e6ff;
}
.ant-menu ul,
.ant-menu ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-menu-overflow {
  display: flex;
}
.ant-menu-overflow-item {
  flex: none;
}
.ant-menu-hidden,
.ant-menu-submenu-hidden {
  display: none;
}
.ant-menu-item-group-title {
  height: 1.6;
  padding: 8px 16px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 1.6;
  transition: all 0.3s;
}
.ant-menu-horizontal .ant-menu-submenu {
  transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-submenu,
.ant-menu-submenu-inline {
  transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-submenu-selected {
  color: #913ef0;
}
.ant-menu-item:active,
.ant-menu-submenu-title:active {
  background: #f9f0ff;
}
.ant-menu-submenu .ant-menu-sub {
  cursor: initial;
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-title-content {
  transition: color 0.3s;
}
.ant-menu-item a {
  color: rgba(0, 0, 0, 0.85);
}
.ant-menu-item a:hover {
  color: #913ef0;
}
.ant-menu-item a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  content: '';
}
.ant-menu-item > .ant-badge a {
  color: rgba(0, 0, 0, 0.85);
}
.ant-menu-item > .ant-badge a:hover {
  color: #913ef0;
}
.ant-menu-item-divider {
  overflow: hidden;
  line-height: 0;
  border-color: #f0f0f0;
  border-style: solid;
  border-width: 1px 0 0;
}
.ant-menu-item-divider-dashed {
  border-style: dashed;
}
.ant-menu-horizontal .ant-menu-item,
.ant-menu-horizontal .ant-menu-submenu {
  margin-top: -1px;
}
.ant-menu-horizontal > .ant-menu-item:hover,
.ant-menu-horizontal > .ant-menu-item-active,
.ant-menu-horizontal > .ant-menu-submenu .ant-menu-submenu-title:hover {
  background-color: transparent;
}
.ant-menu-item-selected {
  color: #913ef0;
}
.ant-menu-item-selected a,
.ant-menu-item-selected a:hover {
  color: #913ef0;
}
.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected {
  background-color: #f9f0ff;
}
.ant-menu-inline,
.ant-menu-vertical,
.ant-menu-vertical-left {
  border-right: 1px solid #f0f0f0;
}
.ant-menu-vertical-right {
  border-left: 1px solid #f0f0f0;
}
.ant-menu-vertical.ant-menu-sub,
.ant-menu-vertical-left.ant-menu-sub,
.ant-menu-vertical-right.ant-menu-sub {
  min-width: 160px;
  max-height: calc(100vh - 100px);
  padding: 0;
  overflow: hidden;
  border-right: 0;
}
.ant-menu-vertical.ant-menu-sub:not([class*='-active']),
.ant-menu-vertical-left.ant-menu-sub:not([class*='-active']),
.ant-menu-vertical-right.ant-menu-sub:not([class*='-active']) {
  overflow-x: hidden;
  overflow-y: auto;
}
.ant-menu-vertical.ant-menu-sub .ant-menu-item,
.ant-menu-vertical-left.ant-menu-sub .ant-menu-item,
.ant-menu-vertical-right.ant-menu-sub .ant-menu-item {
  left: 0;
  margin-left: 0;
  border-right: 0;
}
.ant-menu-vertical.ant-menu-sub .ant-menu-item::after,
.ant-menu-vertical-left.ant-menu-sub .ant-menu-item::after,
.ant-menu-vertical-right.ant-menu-sub .ant-menu-item::after {
  border-right: 0;
}
.ant-menu-vertical.ant-menu-sub > .ant-menu-item,
.ant-menu-vertical-left.ant-menu-sub > .ant-menu-item,
.ant-menu-vertical-right.ant-menu-sub > .ant-menu-item,
.ant-menu-vertical.ant-menu-sub > .ant-menu-submenu,
.ant-menu-vertical-left.ant-menu-sub > .ant-menu-submenu,
.ant-menu-vertical-right.ant-menu-sub > .ant-menu-submenu {
  transform-origin: 0 0;
}
.ant-menu-horizontal.ant-menu-sub {
  min-width: 114px;
}
.ant-menu-horizontal .ant-menu-item,
.ant-menu-horizontal .ant-menu-submenu-title {
  transition: border-color 0.3s, background 0.3s;
}
.ant-menu-item,
.ant-menu-submenu-title {
  position: relative;
  display: block;
  margin: 0;
  padding: 0 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-item .ant-menu-item-icon,
.ant-menu-submenu-title .ant-menu-item-icon,
.ant-menu-item .anticon,
.ant-menu-submenu-title .anticon {
  min-width: 14px;
  font-size: 14px;
  transition: font-size 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.3s;
}
.ant-menu-item .ant-menu-item-icon + span,
.ant-menu-submenu-title .ant-menu-item-icon + span,
.ant-menu-item .anticon + span,
.ant-menu-submenu-title .anticon + span {
  margin-left: 10px;
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), margin 0.3s, color 0.3s;
}
.ant-menu-item .ant-menu-item-icon.svg,
.ant-menu-submenu-title .ant-menu-item-icon.svg {
  vertical-align: -0.125em;
}
.ant-menu-item.ant-menu-item-only-child > .anticon,
.ant-menu-submenu-title.ant-menu-item-only-child > .anticon,
.ant-menu-item.ant-menu-item-only-child > .ant-menu-item-icon,
.ant-menu-submenu-title.ant-menu-item-only-child > .ant-menu-item-icon {
  margin-right: 0;
}
.ant-menu-item:not(.ant-menu-item-disabled):focus-visible,
.ant-menu-submenu-title:not(.ant-menu-item-disabled):focus-visible {
  box-shadow: 0 0 0 2px #f5e6ff;
}
.ant-menu > .ant-menu-item-divider {
  margin: 1px 0;
  padding: 0;
}
.ant-menu-submenu-popup {
  position: absolute;
  z-index: 1050;
  background: transparent;
  border-radius: 2px;
  box-shadow: none;
  transform-origin: 0 0;
}
.ant-menu-submenu-popup::before {
  position: absolute;
  top: -7px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.0001;
  content: ' ';
}
.ant-menu-submenu-placement-rightTop::before {
  top: 0;
  left: -7px;
}
.ant-menu-submenu > .ant-menu {
  background-color: #fff;
  border-radius: 2px;
}
.ant-menu-submenu > .ant-menu-submenu-title::after {
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-submenu-popup > .ant-menu {
  background-color: #fff;
}
.ant-menu-submenu-expand-icon,
.ant-menu-submenu-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  color: rgba(0, 0, 0, 0.85);
  transform: translateY(-50%);
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-submenu-arrow::before,
.ant-menu-submenu-arrow::after {
  position: absolute;
  width: 6px;
  height: 1.5px;
  background-color: currentcolor;
  border-radius: 2px;
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  content: '';
}
.ant-menu-submenu-arrow::before {
  transform: rotate(45deg) translateY(-2.5px);
}
.ant-menu-submenu-arrow::after {
  transform: rotate(-45deg) translateY(2.5px);
}
.ant-menu-submenu:hover > .ant-menu-submenu-title > .ant-menu-submenu-expand-icon,
.ant-menu-submenu:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow {
  color: #913ef0;
}
.ant-menu-inline-collapsed .ant-menu-submenu-arrow::before,
.ant-menu-submenu-inline .ant-menu-submenu-arrow::before {
  transform: rotate(-45deg) translateX(2.5px);
}
.ant-menu-inline-collapsed .ant-menu-submenu-arrow::after,
.ant-menu-submenu-inline .ant-menu-submenu-arrow::after {
  transform: rotate(45deg) translateX(-2.5px);
}
.ant-menu-submenu-horizontal .ant-menu-submenu-arrow {
  display: none;
}
.ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title > .ant-menu-submenu-arrow {
  transform: translateY(-2px);
}
.ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after {
  transform: rotate(-45deg) translateX(-2.5px);
}
.ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before {
  transform: rotate(45deg) translateX(2.5px);
}
.ant-menu-vertical .ant-menu-submenu-selected,
.ant-menu-vertical-left .ant-menu-submenu-selected,
.ant-menu-vertical-right .ant-menu-submenu-selected {
  color: #913ef0;
}
.ant-menu-horizontal {
  line-height: 46px;
  border: 0;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: none;
}
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu {
  margin-top: -1px;
  margin-bottom: 0;
  padding: 0 20px;
}
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item:hover,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu:hover,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-active,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-active,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-open,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-open,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-selected,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-selected {
  color: #913ef0;
}
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item:hover::after,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu:hover::after,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-active::after,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-active::after,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-open::after,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-open::after,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item-selected::after,
.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-selected::after {
  border-bottom: 2px solid #913ef0;
}
.ant-menu-horizontal > .ant-menu-item,
.ant-menu-horizontal > .ant-menu-submenu {
  position: relative;
  top: 1px;
  display: inline-block;
  vertical-align: bottom;
}
.ant-menu-horizontal > .ant-menu-item::after,
.ant-menu-horizontal > .ant-menu-submenu::after {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  content: '';
}
.ant-menu-horizontal > .ant-menu-submenu > .ant-menu-submenu-title {
  padding: 0;
}
.ant-menu-horizontal > .ant-menu-item a {
  color: rgba(0, 0, 0, 0.85);
}
.ant-menu-horizontal > .ant-menu-item a:hover {
  color: #913ef0;
}
.ant-menu-horizontal > .ant-menu-item a::before {
  bottom: -2px;
}
.ant-menu-horizontal > .ant-menu-item-selected a {
  color: #913ef0;
}
.ant-menu-horizontal::after {
  display: block;
  clear: both;
  height: 0;
  content: '\20';
}
.ant-menu-vertical .ant-menu-item,
.ant-menu-vertical-left .ant-menu-item,
.ant-menu-vertical-right .ant-menu-item,
.ant-menu-inline .ant-menu-item {
  position: relative;
}
.ant-menu-vertical .ant-menu-item::after,
.ant-menu-vertical-left .ant-menu-item::after,
.ant-menu-vertical-right .ant-menu-item::after,
.ant-menu-inline .ant-menu-item::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-right: 3px solid #913ef0;
  transform: scaleY(0.0001);
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  content: '';
}
.ant-menu-vertical .ant-menu-item,
.ant-menu-vertical-left .ant-menu-item,
.ant-menu-vertical-right .ant-menu-item,
.ant-menu-inline .ant-menu-item,
.ant-menu-vertical .ant-menu-submenu-title,
.ant-menu-vertical-left .ant-menu-submenu-title,
.ant-menu-vertical-right .ant-menu-submenu-title,
.ant-menu-inline .ant-menu-submenu-title {
  height: 40px;
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 0 16px;
  overflow: hidden;
  line-height: 40px;
  text-overflow: ellipsis;
}
.ant-menu-vertical .ant-menu-submenu,
.ant-menu-vertical-left .ant-menu-submenu,
.ant-menu-vertical-right .ant-menu-submenu,
.ant-menu-inline .ant-menu-submenu {
  padding-bottom: 0.02px;
}
.ant-menu-vertical .ant-menu-item:not(:last-child),
.ant-menu-vertical-left .ant-menu-item:not(:last-child),
.ant-menu-vertical-right .ant-menu-item:not(:last-child),
.ant-menu-inline .ant-menu-item:not(:last-child) {
  margin-bottom: 8px;
}
.ant-menu-vertical > .ant-menu-item,
.ant-menu-vertical-left > .ant-menu-item,
.ant-menu-vertical-right > .ant-menu-item,
.ant-menu-inline > .ant-menu-item,
.ant-menu-vertical > .ant-menu-submenu > .ant-menu-submenu-title,
.ant-menu-vertical-left > .ant-menu-submenu > .ant-menu-submenu-title,
.ant-menu-vertical-right > .ant-menu-submenu > .ant-menu-submenu-title,
.ant-menu-inline > .ant-menu-submenu > .ant-menu-submenu-title {
  height: 40px;
  line-height: 40px;
}
.ant-menu-vertical .ant-menu-item-group-list .ant-menu-submenu-title,
.ant-menu-vertical .ant-menu-submenu-title {
  padding-right: 34px;
}
.ant-menu-inline {
  width: 100%;
}
.ant-menu-inline .ant-menu-selected::after,
.ant-menu-inline .ant-menu-item-selected::after {
  transform: scaleY(1);
  opacity: 1;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-inline .ant-menu-item,
.ant-menu-inline .ant-menu-submenu-title {
  width: calc(100% + 1px);
}
.ant-menu-inline .ant-menu-item-group-list .ant-menu-submenu-title,
.ant-menu-inline .ant-menu-submenu-title {
  padding-right: 34px;
}
.ant-menu-inline.ant-menu-root .ant-menu-item,
.ant-menu-inline.ant-menu-root .ant-menu-submenu-title {
  display: flex;
  align-items: center;
  transition: border-color 0.3s, background 0.3s, padding 0.1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ant-menu-inline.ant-menu-root .ant-menu-item > .ant-menu-title-content,
.ant-menu-inline.ant-menu-root .ant-menu-submenu-title > .ant-menu-title-content {
  flex: auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ant-menu-inline.ant-menu-root .ant-menu-item > *,
.ant-menu-inline.ant-menu-root .ant-menu-submenu-title > * {
  flex: none;
}
.ant-menu.ant-menu-inline-collapsed {
  width: 80px;
}
.ant-menu.ant-menu-inline-collapsed > .ant-menu-item,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title {
  left: 0;
  padding: 0 calc(50% - 16px / 2);
  text-overflow: clip;
}
.ant-menu.ant-menu-inline-collapsed > .ant-menu-item .ant-menu-submenu-arrow,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .ant-menu-submenu-arrow,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-submenu-arrow {
  opacity: 0;
}
.ant-menu.ant-menu-inline-collapsed > .ant-menu-item .ant-menu-item-icon,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .ant-menu-item-icon,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-item-icon,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-item-icon,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-item .anticon,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .anticon,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .anticon,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .anticon {
  margin: 0;
  font-size: 16px;
  line-height: 40px;
}
.ant-menu.ant-menu-inline-collapsed > .ant-menu-item .ant-menu-item-icon + span,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .ant-menu-item-icon + span,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-item-icon + span,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-item-icon + span,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-item .anticon + span,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .anticon + span,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .anticon + span,
.ant-menu.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .anticon + span {
  display: inline-block;
  opacity: 0;
}
.ant-menu.ant-menu-inline-collapsed .ant-menu-item-icon,
.ant-menu.ant-menu-inline-collapsed .anticon {
  display: inline-block;
}
.ant-menu.ant-menu-inline-collapsed-tooltip {
  pointer-events: none;
}
.ant-menu.ant-menu-inline-collapsed-tooltip .ant-menu-item-icon,
.ant-menu.ant-menu-inline-collapsed-tooltip .anticon {
  display: none;
}
.ant-menu.ant-menu-inline-collapsed-tooltip a {
  color: rgba(255, 255, 255, 0.85);
}
.ant-menu.ant-menu-inline-collapsed .ant-menu-item-group-title {
  padding-right: 4px;
  padding-left: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-menu-item-group-list {
  margin: 0;
  padding: 0;
}
.ant-menu-item-group-list .ant-menu-item,
.ant-menu-item-group-list .ant-menu-submenu-title {
  padding: 0 16px 0 28px;
}
.ant-menu-root.ant-menu-vertical,
.ant-menu-root.ant-menu-vertical-left,
.ant-menu-root.ant-menu-vertical-right,
.ant-menu-root.ant-menu-inline {
  box-shadow: none;
}
.ant-menu-root.ant-menu-inline-collapsed .ant-menu-item > .ant-menu-inline-collapsed-noicon,
.ant-menu-root.ant-menu-inline-collapsed .ant-menu-submenu .ant-menu-submenu-title > .ant-menu-inline-collapsed-noicon {
  font-size: 16px;
  text-align: center;
}
.ant-menu-sub.ant-menu-inline {
  padding: 0;
  background: #fafafa;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.ant-menu-sub.ant-menu-inline > .ant-menu-item,
.ant-menu-sub.ant-menu-inline > .ant-menu-submenu > .ant-menu-submenu-title {
  height: 40px;
  line-height: 40px;
  list-style-position: inside;
  list-style-type: disc;
}
.ant-menu-sub.ant-menu-inline .ant-menu-item-group-title {
  padding-left: 32px;
}
.ant-menu-item-disabled,
.ant-menu-submenu-disabled {
  color: rgba(0, 0, 0, 0.25) !important;
  background: none;
  cursor: not-allowed;
}
.ant-menu-item-disabled::after,
.ant-menu-submenu-disabled::after {
  border-color: transparent !important;
}
.ant-menu-item-disabled a,
.ant-menu-submenu-disabled a {
  color: rgba(0, 0, 0, 0.25) !important;
  pointer-events: none;
}
.ant-menu-item-disabled > .ant-menu-submenu-title,
.ant-menu-submenu-disabled > .ant-menu-submenu-title {
  color: rgba(0, 0, 0, 0.25) !important;
  cursor: not-allowed;
}
.ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after {
  background: rgba(0, 0, 0, 0.25) !important;
}
.ant-layout-header .ant-menu {
  line-height: inherit;
}
.ant-menu-inline-collapsed-tooltip a,
.ant-menu-inline-collapsed-tooltip a:hover {
  color: #fff;
}
.ant-menu-light .ant-menu-item:hover,
.ant-menu-light .ant-menu-item-active,
.ant-menu-light .ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open,
.ant-menu-light .ant-menu-submenu-active,
.ant-menu-light .ant-menu-submenu-title:hover {
  color: #913ef0;
}
.ant-menu.ant-menu-root:focus-visible {
  box-shadow: 0 0 0 2px #6f2ac9;
}
.ant-menu-dark .ant-menu-item:focus-visible,
.ant-menu-dark .ant-menu-submenu-title:focus-visible {
  box-shadow: 0 0 0 2px #6f2ac9;
}
.ant-menu.ant-menu-dark,
.ant-menu-dark .ant-menu-sub,
.ant-menu.ant-menu-dark .ant-menu-sub {
  color: rgba(255, 255, 255, 0.65);
  background: #001529;
}
.ant-menu.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow {
  opacity: 0.45;
  transition: all 0.3s;
}
.ant-menu.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  background: #fff;
}
.ant-menu-dark.ant-menu-submenu-popup {
  background: transparent;
}
.ant-menu-dark .ant-menu-inline.ant-menu-sub {
  background: #000c17;
}
.ant-menu-dark.ant-menu-horizontal {
  border-bottom: 0;
}
.ant-menu-dark.ant-menu-horizontal > .ant-menu-item,
.ant-menu-dark.ant-menu-horizontal > .ant-menu-submenu {
  top: 0;
  margin-top: 0;
  padding: 0 20px;
  border-color: #001529;
  border-bottom: 0;
}
.ant-menu-dark.ant-menu-horizontal > .ant-menu-item:hover {
  background-color: #913ef0;
}
.ant-menu-dark.ant-menu-horizontal > .ant-menu-item > a::before {
  bottom: 0;
}
.ant-menu-dark .ant-menu-item,
.ant-menu-dark .ant-menu-item-group-title,
.ant-menu-dark .ant-menu-item > a,
.ant-menu-dark .ant-menu-item > span > a {
  color: rgba(255, 255, 255, 0.65);
}
.ant-menu-dark.ant-menu-inline,
.ant-menu-dark.ant-menu-vertical,
.ant-menu-dark.ant-menu-vertical-left,
.ant-menu-dark.ant-menu-vertical-right {
  border-right: 0;
}
.ant-menu-dark.ant-menu-inline .ant-menu-item,
.ant-menu-dark.ant-menu-vertical .ant-menu-item,
.ant-menu-dark.ant-menu-vertical-left .ant-menu-item,
.ant-menu-dark.ant-menu-vertical-right .ant-menu-item {
  left: 0;
  margin-left: 0;
  border-right: 0;
}
.ant-menu-dark.ant-menu-inline .ant-menu-item::after,
.ant-menu-dark.ant-menu-vertical .ant-menu-item::after,
.ant-menu-dark.ant-menu-vertical-left .ant-menu-item::after,
.ant-menu-dark.ant-menu-vertical-right .ant-menu-item::after {
  border-right: 0;
}
.ant-menu-dark.ant-menu-inline .ant-menu-item,
.ant-menu-dark.ant-menu-inline .ant-menu-submenu-title {
  width: 100%;
}
.ant-menu-dark .ant-menu-item:hover,
.ant-menu-dark .ant-menu-item-active,
.ant-menu-dark .ant-menu-submenu-active,
.ant-menu-dark .ant-menu-submenu-open,
.ant-menu-dark .ant-menu-submenu-selected,
.ant-menu-dark .ant-menu-submenu-title:hover {
  color: #fff;
  background-color: transparent;
}
.ant-menu-dark .ant-menu-item:hover > a,
.ant-menu-dark .ant-menu-item-active > a,
.ant-menu-dark .ant-menu-submenu-active > a,
.ant-menu-dark .ant-menu-submenu-open > a,
.ant-menu-dark .ant-menu-submenu-selected > a,
.ant-menu-dark .ant-menu-submenu-title:hover > a,
.ant-menu-dark .ant-menu-item:hover > span > a,
.ant-menu-dark .ant-menu-item-active > span > a,
.ant-menu-dark .ant-menu-submenu-active > span > a,
.ant-menu-dark .ant-menu-submenu-open > span > a,
.ant-menu-dark .ant-menu-submenu-selected > span > a,
.ant-menu-dark .ant-menu-submenu-title:hover > span > a {
  color: #fff;
}
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow {
  opacity: 1;
}
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before {
  background: #fff;
}
.ant-menu-dark .ant-menu-item:hover {
  background-color: transparent;
}
.ant-menu-dark.ant-menu-dark:not(.ant-menu-horizontal) .ant-menu-item-selected {
  background-color: #913ef0;
}
.ant-menu-dark .ant-menu-item-selected {
  color: #fff;
  border-right: 0;
}
.ant-menu-dark .ant-menu-item-selected::after {
  border-right: 0;
}
.ant-menu-dark .ant-menu-item-selected > a,
.ant-menu-dark .ant-menu-item-selected > span > a,
.ant-menu-dark .ant-menu-item-selected > a:hover,
.ant-menu-dark .ant-menu-item-selected > span > a:hover {
  color: #fff;
}
.ant-menu-dark .ant-menu-item-selected .ant-menu-item-icon,
.ant-menu-dark .ant-menu-item-selected .anticon {
  color: #fff;
}
.ant-menu-dark .ant-menu-item-selected .ant-menu-item-icon + span,
.ant-menu-dark .ant-menu-item-selected .anticon + span {
  color: #fff;
}
.ant-menu.ant-menu-dark .ant-menu-item-selected,
.ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected {
  background-color: #913ef0;
}
.ant-menu-dark .ant-menu-item-disabled,
.ant-menu-dark .ant-menu-submenu-disabled,
.ant-menu-dark .ant-menu-item-disabled > a,
.ant-menu-dark .ant-menu-submenu-disabled > a,
.ant-menu-dark .ant-menu-item-disabled > span > a,
.ant-menu-dark .ant-menu-submenu-disabled > span > a {
  color: rgba(255, 255, 255, 0.35) !important;
  opacity: 0.8;
}
.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title,
.ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title {
  color: rgba(255, 255, 255, 0.35) !important;
}
.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after {
  background: rgba(255, 255, 255, 0.35) !important;
}
.ant-menu.ant-menu-rtl {
  direction: rtl;
  text-align: right;
}
.ant-menu-rtl .ant-menu-item-group-title {
  text-align: right;
}
.ant-menu-rtl.ant-menu-inline,
.ant-menu-rtl.ant-menu-vertical {
  border-right: none;
  border-left: 1px solid #f0f0f0;
}
.ant-menu-rtl.ant-menu-dark.ant-menu-inline,
.ant-menu-rtl.ant-menu-dark.ant-menu-vertical {
  border-left: none;
}
.ant-menu-rtl.ant-menu-vertical.ant-menu-sub > .ant-menu-item,
.ant-menu-rtl.ant-menu-vertical-left.ant-menu-sub > .ant-menu-item,
.ant-menu-rtl.ant-menu-vertical-right.ant-menu-sub > .ant-menu-item,
.ant-menu-rtl.ant-menu-vertical.ant-menu-sub > .ant-menu-submenu,
.ant-menu-rtl.ant-menu-vertical-left.ant-menu-sub > .ant-menu-submenu,
.ant-menu-rtl.ant-menu-vertical-right.ant-menu-sub > .ant-menu-submenu {
  transform-origin: top right;
}
.ant-menu-rtl .ant-menu-item .ant-menu-item-icon,
.ant-menu-rtl .ant-menu-submenu-title .ant-menu-item-icon,
.ant-menu-rtl .ant-menu-item .anticon,
.ant-menu-rtl .ant-menu-submenu-title .anticon {
  margin-right: auto;
  margin-left: 10px;
}
.ant-menu-rtl .ant-menu-item.ant-menu-item-only-child > .ant-menu-item-icon,
.ant-menu-rtl .ant-menu-submenu-title.ant-menu-item-only-child > .ant-menu-item-icon,
.ant-menu-rtl .ant-menu-item.ant-menu-item-only-child > .anticon,
.ant-menu-rtl .ant-menu-submenu-title.ant-menu-item-only-child > .anticon {
  margin-left: 0;
}
.ant-menu-submenu-rtl.ant-menu-submenu-popup {
  transform-origin: 100% 0;
}
.ant-menu-rtl .ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-rtl .ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-rtl .ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-rtl .ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow {
  right: auto;
  left: 16px;
}
.ant-menu-rtl .ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-rtl .ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-rtl .ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  transform: rotate(-45deg) translateY(-2px);
}
.ant-menu-rtl .ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-rtl .ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-rtl .ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  transform: rotate(45deg) translateY(2px);
}
.ant-menu-rtl.ant-menu-vertical .ant-menu-item::after,
.ant-menu-rtl.ant-menu-vertical-left .ant-menu-item::after,
.ant-menu-rtl.ant-menu-vertical-right .ant-menu-item::after,
.ant-menu-rtl.ant-menu-inline .ant-menu-item::after {
  right: auto;
  left: 0;
}
.ant-menu-rtl.ant-menu-vertical .ant-menu-item,
.ant-menu-rtl.ant-menu-vertical-left .ant-menu-item,
.ant-menu-rtl.ant-menu-vertical-right .ant-menu-item,
.ant-menu-rtl.ant-menu-inline .ant-menu-item,
.ant-menu-rtl.ant-menu-vertical .ant-menu-submenu-title,
.ant-menu-rtl.ant-menu-vertical-left .ant-menu-submenu-title,
.ant-menu-rtl.ant-menu-vertical-right .ant-menu-submenu-title,
.ant-menu-rtl.ant-menu-inline .ant-menu-submenu-title {
  text-align: right;
}
.ant-menu-rtl.ant-menu-inline .ant-menu-submenu-title {
  padding-right: 0;
  padding-left: 34px;
}
.ant-menu-rtl.ant-menu-vertical .ant-menu-submenu-title {
  padding-right: 16px;
  padding-left: 34px;
}
.ant-menu-rtl.ant-menu-inline-collapsed.ant-menu-vertical .ant-menu-submenu-title {
  padding: 0 calc(50% - 16px / 2);
}
.ant-menu-rtl .ant-menu-item-group-list .ant-menu-item,
.ant-menu-rtl .ant-menu-item-group-list .ant-menu-submenu-title {
  padding: 0 28px 0 16px;
}
.ant-menu-sub.ant-menu-inline {
  border: 0;
}
.ant-menu-rtl.ant-menu-sub.ant-menu-inline .ant-menu-item-group-title {
  padding-right: 32px;
  padding-left: 0;
}
.ant-message {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: fixed;
  top: 8px;
  left: 0;
  z-index: 1010;
  width: 100%;
  pointer-events: none;
}
.ant-message-notice {
  padding: 8px;
  text-align: center;
}
.ant-message-notice-content {
  display: inline-block;
  padding: 10px 16px;
  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);
  pointer-events: all;
}
.ant-message-success .anticon {
  color: #5ae399;
}
.ant-message-error .anticon {
  color: #E54963;
}
.ant-message-warning .anticon {
  color: #FFB946;
}
.ant-message-info .anticon,
.ant-message-loading .anticon {
  color: #4B80E7;
}
.ant-message .anticon {
  position: relative;
  top: 1px;
  margin-right: 8px;
  font-size: 16px;
}
.ant-message-notice.ant-move-up-leave.ant-move-up-leave-active {
  animation-name: MessageMoveOut;
  animation-duration: 0.3s;
}
@keyframes MessageMoveOut {
  0% {
    max-height: 150px;
    padding: 8px;
    opacity: 1;
  }
  100% {
    max-height: 0;
    padding: 0;
    opacity: 0;
  }
}
.ant-message-rtl {
  direction: rtl;
}
.ant-message-rtl span {
  direction: rtl;
}
.ant-message-rtl .anticon {
  margin-right: 0;
  margin-left: 8px;
}
.ant-modal {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  pointer-events: none;
  position: relative;
  top: 100px;
  width: auto;
  max-width: calc(100vw - 32px);
  margin: 0 auto;
  padding-bottom: 24px;
}
.ant-modal.ant-zoom-enter,
.ant-modal.ant-zoom-appear {
  transform: none;
  opacity: 0;
  animation-duration: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
.ant-modal-mask-hidden {
  display: none;
}
.ant-modal-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  outline: 0;
  z-index: 1000;
}
.ant-modal-title {
  margin: 0;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  word-wrap: break-word;
}
.ant-modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-radius: 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);
  pointer-events: auto;
}
.ant-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 0;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  transition: color 0.3s;
}
.ant-modal-close-x {
  display: block;
  width: 54px;
  height: 54px;
  font-size: 16px;
  font-style: normal;
  line-height: 54px;
  text-align: center;
  text-transform: none;
  text-rendering: auto;
}
.ant-modal-close:focus,
.ant-modal-close:hover {
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
}
.ant-modal-header {
  padding: 16px 24px;
  color: rgba(0, 0, 0, 0.85);
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 2px 2px 0 0;
}
.ant-modal-body {
  padding: 24px;
  font-size: 14px;
  line-height: 1.6;
  word-wrap: break-word;
}
.ant-modal-footer {
  padding: 10px 16px;
  text-align: right;
  background: transparent;
  border-top: 1px solid #f0f0f0;
  border-radius: 0 0 2px 2px;
}
.ant-modal-footer .ant-btn + .ant-btn:not(.ant-dropdown-trigger) {
  margin-bottom: 0;
  margin-left: 8px;
}
.ant-modal-open {
  overflow: hidden;
}
.ant-modal-centered {
  text-align: center;
}
.ant-modal-centered::before {
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  content: '';
}
.ant-modal-centered .ant-modal {
  top: 0;
  display: inline-block;
  padding-bottom: 0;
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .ant-modal {
    max-width: calc(100vw - 16px);
    margin: 8px auto;
  }
  .ant-modal-centered .ant-modal {
    flex: 1;
  }
}
.ant-modal-confirm .ant-modal-header {
  display: none;
}
.ant-modal-confirm .ant-modal-body {
  padding: 32px 32px 24px;
}
.ant-modal-confirm-body-wrapper::before {
  display: table;
  content: '';
}
.ant-modal-confirm-body-wrapper::after {
  display: table;
  clear: both;
  content: '';
}
.ant-modal-confirm-body-wrapper::before {
  display: table;
  content: '';
}
.ant-modal-confirm-body-wrapper::after {
  display: table;
  clear: both;
  content: '';
}
.ant-modal-confirm-body .ant-modal-confirm-title {
  display: block;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}
.ant-modal-confirm-body .ant-modal-confirm-content {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
}
.ant-modal-confirm-body > .anticon {
  float: left;
  margin-right: 16px;
  font-size: 22px;
}
.ant-modal-confirm-body > .anticon + .ant-modal-confirm-title + .ant-modal-confirm-content {
  margin-left: 38px;
}
.ant-modal-confirm .ant-modal-confirm-btns {
  margin-top: 24px;
  text-align: right;
}
.ant-modal-confirm .ant-modal-confirm-btns .ant-btn + .ant-btn {
  margin-bottom: 0;
  margin-left: 8px;
}
.ant-modal-confirm-error .ant-modal-confirm-body > .anticon {
  color: #E54963;
}
.ant-modal-confirm-warning .ant-modal-confirm-body > .anticon,
.ant-modal-confirm-confirm .ant-modal-confirm-body > .anticon {
  color: #FFB946;
}
.ant-modal-confirm-info .ant-modal-confirm-body > .anticon {
  color: #4B80E7;
}
.ant-modal-confirm-success .ant-modal-confirm-body > .anticon {
  color: #5ae399;
}
.ant-modal-confirm .ant-zoom-leave .ant-modal-confirm-btns {
  pointer-events: none;
}
.ant-modal-wrap-rtl {
  direction: rtl;
}
.ant-modal-wrap-rtl .ant-modal-close {
  right: initial;
  left: 0;
}
.ant-modal-wrap-rtl .ant-modal-footer {
  text-align: left;
}
.ant-modal-wrap-rtl .ant-modal-footer .ant-btn + .ant-btn {
  margin-right: 8px;
  margin-left: 0;
}
.ant-modal-wrap-rtl .ant-modal-confirm-body {
  direction: rtl;
}
.ant-modal-wrap-rtl .ant-modal-confirm-body > .anticon {
  float: right;
  margin-right: 0;
  margin-left: 16px;
}
.ant-modal-wrap-rtl .ant-modal-confirm-body > .anticon + .ant-modal-confirm-title + .ant-modal-confirm-content {
  margin-right: 38px;
  margin-left: 0;
}
.ant-modal-wrap-rtl .ant-modal-confirm-btns {
  text-align: left;
}
.ant-modal-wrap-rtl .ant-modal-confirm-btns .ant-btn + .ant-btn {
  margin-right: 8px;
  margin-left: 0;
}
.ant-modal-wrap-rtl.ant-modal-centered .ant-modal {
  text-align: right;
}
.ant-notification {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: fixed;
  z-index: 1010;
  margin-right: 24px;
}
.ant-notification-close-icon {
  font-size: 14px;
  cursor: pointer;
}
.ant-notification-hook-holder {
  position: relative;
}
.ant-notification-notice {
  position: relative;
  width: 384px;
  max-width: calc(100vw - 24px * 2);
  margin-bottom: 16px;
  margin-left: auto;
  padding: 16px 24px;
  overflow: hidden;
  line-height: 1.6;
  word-wrap: break-word;
  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);
}
.ant-notification-top .ant-notification-notice,
.ant-notification-bottom .ant-notification-notice {
  margin-right: auto;
  margin-left: auto;
}
.ant-notification-topLeft .ant-notification-notice,
.ant-notification-bottomLeft .ant-notification-notice {
  margin-right: auto;
  margin-left: 0;
}
.ant-notification-notice-message {
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
  line-height: 24px;
}
.ant-notification-notice-message-single-line-auto-margin {
  display: block;
  width: calc(384px - 24px * 2 - 24px - 48px - 100%);
  max-width: 4px;
  background-color: transparent;
  pointer-events: none;
}
.ant-notification-notice-message-single-line-auto-margin::before {
  display: block;
  content: '';
}
.ant-notification-notice-description {
  font-size: 14px;
}
.ant-notification-notice-closable .ant-notification-notice-message {
  padding-right: 24px;
}
.ant-notification-notice-with-icon .ant-notification-notice-message {
  margin-bottom: 4px;
  margin-left: 48px;
  font-size: 16px;
}
.ant-notification-notice-with-icon .ant-notification-notice-description {
  margin-left: 48px;
  font-size: 14px;
}
.ant-notification-notice-icon {
  position: absolute;
  margin-left: 4px;
  font-size: 24px;
  line-height: 24px;
}
.anticon.ant-notification-notice-icon-success {
  color: #5ae399;
}
.anticon.ant-notification-notice-icon-info {
  color: #4B80E7;
}
.anticon.ant-notification-notice-icon-warning {
  color: #FFB946;
}
.anticon.ant-notification-notice-icon-error {
  color: #E54963;
}
.ant-notification-notice-close {
  position: absolute;
  top: 16px;
  right: 22px;
  color: rgba(0, 0, 0, 0.45);
  outline: none;
}
.ant-notification-notice-close:hover {
  color: rgba(0, 0, 0, 0.67);
}
.ant-notification-notice-btn {
  float: right;
  margin-top: 16px;
}
.ant-notification .notification-fade-effect {
  animation-duration: 0.24s;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-fill-mode: both;
}
.ant-notification-fade-enter,
.ant-notification-fade-appear {
  animation-duration: 0.24s;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-fill-mode: both;
  opacity: 0;
  animation-play-state: paused;
}
.ant-notification-fade-leave {
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-fill-mode: both;
  animation-duration: 0.2s;
  animation-play-state: paused;
}
.ant-notification-fade-enter.ant-notification-fade-enter-active,
.ant-notification-fade-appear.ant-notification-fade-appear-active {
  animation-name: NotificationFadeIn;
  animation-play-state: running;
}
.ant-notification-fade-leave.ant-notification-fade-leave-active {
  animation-name: NotificationFadeOut;
  animation-play-state: running;
}
@keyframes NotificationFadeIn {
  0% {
    left: 384px;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes NotificationFadeOut {
  0% {
    max-height: 150px;
    margin-bottom: 16px;
    opacity: 1;
  }
  100% {
    max-height: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
  }
}
.ant-notification-rtl {
  direction: rtl;
}
.ant-notification-rtl .ant-notification-notice-closable .ant-notification-notice-message {
  padding-right: 0;
  padding-left: 24px;
}
.ant-notification-rtl .ant-notification-notice-with-icon .ant-notification-notice-message {
  margin-right: 48px;
  margin-left: 0;
}
.ant-notification-rtl .ant-notification-notice-with-icon .ant-notification-notice-description {
  margin-right: 48px;
  margin-left: 0;
}
.ant-notification-rtl .ant-notification-notice-icon {
  margin-right: 4px;
  margin-left: 0;
}
.ant-notification-rtl .ant-notification-notice-close {
  right: auto;
  left: 22px;
}
.ant-notification-rtl .ant-notification-notice-btn {
  float: left;
}
.ant-notification-top,
.ant-notification-bottom {
  margin-right: 0;
  margin-left: 0;
}
.ant-notification-top .ant-notification-fade-enter.ant-notification-fade-enter-active,
.ant-notification-top .ant-notification-fade-appear.ant-notification-fade-appear-active {
  animation-name: NotificationTopFadeIn;
}
.ant-notification-bottom .ant-notification-fade-enter.ant-notification-fade-enter-active,
.ant-notification-bottom .ant-notification-fade-appear.ant-notification-fade-appear-active {
  animation-name: NotificationBottomFadeIn;
}
.ant-notification-topLeft,
.ant-notification-bottomLeft {
  margin-right: 0;
  margin-left: 24px;
}
.ant-notification-topLeft .ant-notification-fade-enter.ant-notification-fade-enter-active,
.ant-notification-bottomLeft .ant-notification-fade-enter.ant-notification-fade-enter-active,
.ant-notification-topLeft .ant-notification-fade-appear.ant-notification-fade-appear-active,
.ant-notification-bottomLeft .ant-notification-fade-appear.ant-notification-fade-appear-active {
  animation-name: NotificationLeftFadeIn;
}
@keyframes NotificationTopFadeIn {
  0% {
    margin-top: -100%;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes NotificationBottomFadeIn {
  0% {
    margin-bottom: -100%;
    opacity: 0;
  }
  100% {
    margin-bottom: 0;
    opacity: 1;
  }
}
@keyframes NotificationLeftFadeIn {
  0% {
    right: 384px;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
.ant-page-header {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  padding: 16px 24px;
  background-color: #fff;
}
.ant-page-header-ghost {
  background-color: inherit;
}
.ant-page-header.has-breadcrumb {
  padding-top: 12px;
}
.ant-page-header.has-footer {
  padding-bottom: 0;
}
.ant-page-header-back {
  margin-right: 16px;
  font-size: 16px;
  line-height: 1;
}
.ant-page-header-back-button {
  color: black;
  outline: none;
  cursor: pointer;
  transition: color 0.3s;
  color: #000;
}
.ant-page-header-back-button:focus-visible,
.ant-page-header-back-button:hover {
  color: #0d0d0d;
}
.ant-page-header-back-button:active {
  color: #000000;
}
.ant-page-header .ant-divider-vertical {
  height: 14px;
  margin: 0 12px;
  vertical-align: middle;
}
.ant-breadcrumb + .ant-page-header-heading {
  margin-top: 8px;
}
.ant-page-header-heading {
  display: flex;
  justify-content: space-between;
}
.ant-page-header-heading-left {
  display: flex;
  align-items: center;
  margin: 4px 0;
  overflow: hidden;
}
.ant-page-header-heading-title {
  margin-right: 12px;
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-page-header-heading .ant-avatar {
  margin-right: 12px;
}
.ant-page-header-heading-sub-title {
  margin-right: 12px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 1.6;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-page-header-heading-extra {
  margin: 4px 0;
  white-space: nowrap;
}
.ant-page-header-heading-extra > * {
  white-space: unset;
}
.ant-page-header-content {
  padding-top: 12px;
}
.ant-page-header-footer {
  margin-top: 16px;
}
.ant-page-header-footer .ant-tabs > .ant-tabs-nav {
  margin: 0;
}
.ant-page-header-footer .ant-tabs > .ant-tabs-nav::before {
  border: none;
}
.ant-page-header-footer .ant-tabs .ant-tabs-tab {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 16px;
}
.ant-page-header-compact .ant-page-header-heading {
  flex-wrap: wrap;
}
.ant-page-header-rtl {
  direction: rtl;
}
.ant-page-header-rtl .ant-page-header-back {
  float: right;
  margin-right: 0;
  margin-left: 16px;
}
.ant-page-header-rtl .ant-page-header-heading-title {
  margin-right: 0;
  margin-left: 12px;
}
.ant-page-header-rtl .ant-page-header-heading .ant-avatar {
  margin-right: 0;
  margin-left: 12px;
}
.ant-page-header-rtl .ant-page-header-heading-sub-title {
  float: right;
  margin-right: 0;
  margin-left: 12px;
}
.ant-page-header-rtl .ant-page-header-heading-tags {
  float: right;
}
.ant-page-header-rtl .ant-page-header-heading-extra {
  float: left;
}
.ant-page-header-rtl .ant-page-header-heading-extra > * {
  margin-right: 12px;
  margin-left: 0;
}
.ant-page-header-rtl .ant-page-header-heading-extra > *:first-child {
  margin-right: 0;
}
.ant-page-header-rtl .ant-page-header-footer .ant-tabs-bar .ant-tabs-nav {
  float: right;
}
.ant-pagination {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
}
.ant-pagination ul,
.ant-pagination ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-pagination::after {
  display: block;
  clear: both;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  content: ' ';
}
.ant-pagination-total-text {
  display: inline-block;
  height: 32px;
  margin-right: 8px;
  line-height: 30px;
  vertical-align: middle;
}
.ant-pagination-item {
  display: inline-block;
  min-width: 32px;
  height: 32px;
  margin-right: 8px;
  font-family: Beatrice, sans-serif;
  line-height: 30px;
  text-align: center;
  vertical-align: middle;
  list-style: none;
  background-color: white;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  outline: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-pagination-item a {
  display: block;
  padding: 0 6px;
  color: rgba(0, 0, 0, 0.85);
  transition: none;
}
.ant-pagination-item a:hover {
  text-decoration: none;
}
.ant-pagination-item:hover {
  border-color: #913ef0;
  transition: all 0.3s;
}
.ant-pagination-item:hover a {
  color: #913ef0;
}
.ant-pagination-item:focus-visible {
  border-color: #913ef0;
  transition: all 0.3s;
}
.ant-pagination-item:focus-visible a {
  color: #913ef0;
}
.ant-pagination-item-active {
  font-weight: 500;
  background: #fff;
  border-color: #913ef0;
}
.ant-pagination-item-active a {
  color: #913ef0;
}
.ant-pagination-item-active:hover {
  border-color: #b36afc;
}
.ant-pagination-item-active:focus-visible {
  border-color: #b36afc;
}
.ant-pagination-item-active:hover a {
  color: #b36afc;
}
.ant-pagination-item-active:focus-visible a {
  color: #b36afc;
}
.ant-pagination-jump-prev,
.ant-pagination-jump-next {
  outline: 0;
}
.ant-pagination-jump-prev .ant-pagination-item-container,
.ant-pagination-jump-next .ant-pagination-item-container {
  position: relative;
}
.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon,
.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon {
  color: #913ef0;
  font-size: 11px;
  letter-spacing: -1px;
  opacity: 0;
  transition: all 0.2s;
}
.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon-svg,
.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon-svg {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-ellipsis,
.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-ellipsis {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  color: rgba(0, 0, 0, 0.25);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 2px;
  text-align: center;
  text-indent: 0.13em;
  opacity: 1;
  transition: all 0.2s;
}
.ant-pagination-jump-prev:hover .ant-pagination-item-link-icon,
.ant-pagination-jump-next:hover .ant-pagination-item-link-icon {
  opacity: 1;
}
.ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis,
.ant-pagination-jump-next:hover .ant-pagination-item-ellipsis {
  opacity: 0;
}
.ant-pagination-jump-prev:focus-visible .ant-pagination-item-link-icon,
.ant-pagination-jump-next:focus-visible .ant-pagination-item-link-icon {
  opacity: 1;
}
.ant-pagination-jump-prev:focus-visible .ant-pagination-item-ellipsis,
.ant-pagination-jump-next:focus-visible .ant-pagination-item-ellipsis {
  opacity: 0;
}
.ant-pagination-prev,
.ant-pagination-jump-prev,
.ant-pagination-jump-next {
  margin-right: 8px;
}
.ant-pagination-prev,
.ant-pagination-next,
.ant-pagination-jump-prev,
.ant-pagination-jump-next {
  display: inline-block;
  min-width: 32px;
  height: 32px;
  color: rgba(0, 0, 0, 0.85);
  font-family: Beatrice, sans-serif;
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
  list-style: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-pagination-prev,
.ant-pagination-next {
  font-family: Arial, Helvetica, sans-serif;
  outline: 0;
}
.ant-pagination-prev button,
.ant-pagination-next button {
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-pagination-prev:hover button,
.ant-pagination-next:hover button {
  border-color: #b36afc;
}
.ant-pagination-prev .ant-pagination-item-link,
.ant-pagination-next .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;
  transition: all 0.3s;
}
.ant-pagination-prev:focus-visible .ant-pagination-item-link,
.ant-pagination-next:focus-visible .ant-pagination-item-link {
  color: #913ef0;
  border-color: #913ef0;
}
.ant-pagination-prev:hover .ant-pagination-item-link,
.ant-pagination-next:hover .ant-pagination-item-link {
  color: #913ef0;
  border-color: #913ef0;
}
.ant-pagination-disabled,
.ant-pagination-disabled:hover {
  cursor: not-allowed;
}
.ant-pagination-disabled .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-disabled:focus-visible {
  cursor: not-allowed;
}
.ant-pagination-disabled:focus-visible .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 all and (-ms-high-contrast: none) {
  .ant-pagination-options *::-ms-backdrop,
  .ant-pagination-options {
    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: 3.8px 11px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 1.6;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: all 0.3s;
  width: 50px;
  height: 32px;
  margin: 0 8px;
}
.ant-pagination-options-quick-jumper input::-moz-placeholder {
  color: #bfbfbf;
  -moz-user-select: none;
       user-select: none;
}
.ant-pagination-options-quick-jumper input::placeholder {
  color: #bfbfbf;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-pagination-options-quick-jumper input:-moz-placeholder-shown {
  text-overflow: ellipsis;
}
.ant-pagination-options-quick-jumper input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-pagination-options-quick-jumper input:hover {
  border-color: #b36afc;
  border-right-width: 1px;
}
.ant-input-rtl .ant-pagination-options-quick-jumper input:hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-pagination-options-quick-jumper input:focus,
.ant-pagination-options-quick-jumper input-focused {
  border-color: #b36afc;
  box-shadow: 0 0 0 2px rgba(145, 62, 240, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-rtl .ant-pagination-options-quick-jumper input:focus,
.ant-input-rtl .ant-pagination-options-quick-jumper input-focused {
  border-right-width: 0;
  border-left-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;
}
.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;
}
.ant-pagination-options-quick-jumper input-borderless,
.ant-pagination-options-quick-jumper input-borderless:hover,
.ant-pagination-options-quick-jumper input-borderless:focus,
.ant-pagination-options-quick-jumper input-borderless-focused,
.ant-pagination-options-quick-jumper input-borderless-disabled,
.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.6;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}
.ant-pagination-options-quick-jumper input-lg {
  padding: 6.2px 11px;
  font-size: 16px;
}
.ant-pagination-options-quick-jumper input-sm {
  padding: 0 7px;
}
.ant-pagination-options-quick-jumper input-rtl {
  direction: rtl;
}
.ant-pagination-simple .ant-pagination-prev,
.ant-pagination-simple .ant-pagination-next {
  height: 24px;
  line-height: 24px;
  vertical-align: top;
}
.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link,
.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link {
  height: 24px;
  background-color: transparent;
  border: 0;
}
.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link::after,
.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link::after {
  height: 24px;
  line-height: 24px;
}
.ant-pagination-simple .ant-pagination-simple-pager {
  display: inline-block;
  height: 24px;
  margin-right: 8px;
}
.ant-pagination-simple .ant-pagination-simple-pager input {
  box-sizing: border-box;
  height: 100%;
  margin-right: 8px;
  padding: 0 6px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s;
}
.ant-pagination-simple .ant-pagination-simple-pager input:hover {
  border-color: #913ef0;
}
.ant-pagination-simple .ant-pagination-simple-pager input:focus {
  border-color: #b36afc;
  box-shadow: 0 0 0 2px rgba(145, 62, 240, 0.2);
}
.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.ant-pagination-mini .ant-pagination-total-text,
.ant-pagination.ant-pagination-mini .ant-pagination-simple-pager {
  height: 24px;
  line-height: 24px;
}
.ant-pagination.ant-pagination-mini .ant-pagination-item {
  min-width: 24px;
  height: 24px;
  margin: 0;
  line-height: 22px;
}
.ant-pagination.ant-pagination-mini .ant-pagination-item:not(.ant-pagination-item-active) {
  background: transparent;
  border-color: transparent;
}
.ant-pagination.ant-pagination-mini .ant-pagination-prev,
.ant-pagination.ant-pagination-mini .ant-pagination-next {
  min-width: 24px;
  height: 24px;
  margin: 0;
  line-height: 24px;
}
.ant-pagination.ant-pagination-mini .ant-pagination-prev .ant-pagination-item-link,
.ant-pagination.ant-pagination-mini .ant-pagination-next .ant-pagination-item-link {
  background: transparent;
  border-color: transparent;
}
.ant-pagination.ant-pagination-mini .ant-pagination-prev .ant-pagination-item-link::after,
.ant-pagination.ant-pagination-mini .ant-pagination-next .ant-pagination-item-link::after {
  height: 24px;
  line-height: 24px;
}
.ant-pagination.ant-pagination-mini .ant-pagination-jump-prev,
.ant-pagination.ant-pagination-mini .ant-pagination-jump-next {
  height: 24px;
  margin-right: 0;
  line-height: 24px;
}
.ant-pagination.ant-pagination-mini .ant-pagination-options {
  margin-left: 2px;
}
.ant-pagination.ant-pagination-mini .ant-pagination-options-size-changer {
  top: 0px;
}
.ant-pagination.ant-pagination-mini .ant-pagination-options-quick-jumper {
  height: 24px;
  line-height: 24px;
}
.ant-pagination.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-total-text {
  margin-right: 0;
  margin-left: 8px;
}
.ant-pagination-rtl .ant-pagination-item,
.ant-pagination-rtl .ant-pagination-prev,
.ant-pagination-rtl .ant-pagination-jump-prev,
.ant-pagination-rtl .ant-pagination-jump-next {
  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 {
  margin-right: 0;
  margin-left: 8px;
}
.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-popconfirm {
  z-index: 1060;
}
.ant-popover {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1030;
  max-width: 100vw;
  font-weight: normal;
  white-space: normal;
  text-align: left;
  cursor: auto;
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
}
.ant-popover-content {
  position: relative;
}
.ant-popover::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.01);
  content: '';
}
.ant-popover-hidden {
  display: none;
}
.ant-popover-placement-top,
.ant-popover-placement-topLeft,
.ant-popover-placement-topRight {
  padding-bottom: 15.3137085px;
}
.ant-popover-placement-right,
.ant-popover-placement-rightTop,
.ant-popover-placement-rightBottom {
  padding-left: 15.3137085px;
}
.ant-popover-placement-bottom,
.ant-popover-placement-bottomLeft,
.ant-popover-placement-bottomRight {
  padding-top: 15.3137085px;
}
.ant-popover-placement-left,
.ant-popover-placement-leftTop,
.ant-popover-placement-leftBottom {
  padding-right: 15.3137085px;
}
.ant-popover-inner {
  background-color: #fff;
  background-clip: padding-box;
  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);
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ant-popover {
    /* IE10+ */
  }
  .ant-popover-inner {
    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-popover-title {
  min-width: 177px;
  min-height: 32px;
  margin: 0;
  padding: 5px 16px 4px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
}
.ant-popover-inner-content {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding: 12px 16px;
  color: rgba(0, 0, 0, 0.85);
}
.ant-popover-message {
  display: flex;
  padding: 4px 0 12px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
}
.ant-popover-message-icon {
  display: inline-block;
  margin-right: 8px;
  color: #FFB946;
  font-size: 14px;
}
.ant-popover-buttons {
  margin-bottom: 4px;
  text-align: right;
}
.ant-popover-buttons button:not(:first-child) {
  margin-left: 8px;
}
.ant-popover-arrow {
  position: absolute;
  display: block;
  width: 22px;
  height: 22px;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}
.ant-popover-arrow-content {
  --antd-arrow-background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 11.3137085px;
  height: 11.3137085px;
  margin: auto;
  content: '';
  pointer-events: auto;
  border-radius: 0 0 2px;
  pointer-events: none;
}
.ant-popover-arrow-content::before {
  position: absolute;
  top: -11.3137085px;
  left: -11.3137085px;
  width: 33.9411255px;
  height: 33.9411255px;
  background: var(--antd-arrow-background-color);
  background-repeat: no-repeat;
  background-position: -10px -10px;
  content: '';
  -webkit-clip-path: inset(33% 33%);
          clip-path: inset(33% 33%);
  -webkit-clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
          clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
}
.ant-popover-placement-top .ant-popover-arrow,
.ant-popover-placement-topLeft .ant-popover-arrow,
.ant-popover-placement-topRight .ant-popover-arrow {
  bottom: 0;
  transform: translateY(100%);
}
.ant-popover-placement-top .ant-popover-arrow-content,
.ant-popover-placement-topLeft .ant-popover-arrow-content,
.ant-popover-placement-topRight .ant-popover-arrow-content {
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
  transform: translateY(-11px) rotate(45deg);
}
.ant-popover-placement-top .ant-popover-arrow {
  left: 50%;
  transform: translateY(100%) translateX(-50%);
}
.ant-popover-placement-topLeft .ant-popover-arrow {
  left: 16px;
}
.ant-popover-placement-topRight .ant-popover-arrow {
  right: 16px;
}
.ant-popover-placement-right .ant-popover-arrow,
.ant-popover-placement-rightTop .ant-popover-arrow,
.ant-popover-placement-rightBottom .ant-popover-arrow {
  left: 0;
  transform: translateX(-100%);
}
.ant-popover-placement-right .ant-popover-arrow-content,
.ant-popover-placement-rightTop .ant-popover-arrow-content,
.ant-popover-placement-rightBottom .ant-popover-arrow-content {
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
  transform: translateX(11px) rotate(135deg);
}
.ant-popover-placement-right .ant-popover-arrow {
  top: 50%;
  transform: translateX(-100%) translateY(-50%);
}
.ant-popover-placement-rightTop .ant-popover-arrow {
  top: 12px;
}
.ant-popover-placement-rightBottom .ant-popover-arrow {
  bottom: 12px;
}
.ant-popover-placement-bottom .ant-popover-arrow,
.ant-popover-placement-bottomLeft .ant-popover-arrow,
.ant-popover-placement-bottomRight .ant-popover-arrow {
  top: 0;
  transform: translateY(-100%);
}
.ant-popover-placement-bottom .ant-popover-arrow-content,
.ant-popover-placement-bottomLeft .ant-popover-arrow-content,
.ant-popover-placement-bottomRight .ant-popover-arrow-content {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.06);
  transform: translateY(11px) rotate(-135deg);
}
.ant-popover-placement-bottom .ant-popover-arrow {
  left: 50%;
  transform: translateY(-100%) translateX(-50%);
}
.ant-popover-placement-bottomLeft .ant-popover-arrow {
  left: 16px;
}
.ant-popover-placement-bottomRight .ant-popover-arrow {
  right: 16px;
}
.ant-popover-placement-left .ant-popover-arrow,
.ant-popover-placement-leftTop .ant-popover-arrow,
.ant-popover-placement-leftBottom .ant-popover-arrow {
  right: 0;
  transform: translateX(100%);
}
.ant-popover-placement-left .ant-popover-arrow-content,
.ant-popover-placement-leftTop .ant-popover-arrow-content,
.ant-popover-placement-leftBottom .ant-popover-arrow-content {
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
  transform: translateX(-11px) rotate(-45deg);
}
.ant-popover-placement-left .ant-popover-arrow {
  top: 50%;
  transform: translateX(100%) translateY(-50%);
}
.ant-popover-placement-leftTop .ant-popover-arrow {
  top: 12px;
}
.ant-popover-placement-leftBottom .ant-popover-arrow {
  bottom: 12px;
}
.ant-popover-pink .ant-popover-inner {
  background-color: #eb2f96;
}
.ant-popover-pink .ant-popover-arrow-content {
  background-color: #eb2f96;
}
.ant-popover-magenta .ant-popover-inner {
  background-color: #eb2f96;
}
.ant-popover-magenta .ant-popover-arrow-content {
  background-color: #eb2f96;
}
.ant-popover-red .ant-popover-inner {
  background-color: #E54963;
}
.ant-popover-red .ant-popover-arrow-content {
  background-color: #E54963;
}
.ant-popover-volcano .ant-popover-inner {
  background-color: #E54963;
}
.ant-popover-volcano .ant-popover-arrow-content {
  background-color: #E54963;
}
.ant-popover-orange .ant-popover-inner {
  background-color: #FFB946;
}
.ant-popover-orange .ant-popover-arrow-content {
  background-color: #FFB946;
}
.ant-popover-yellow .ant-popover-inner {
  background-color: #FFB946;
}
.ant-popover-yellow .ant-popover-arrow-content {
  background-color: #FFB946;
}
.ant-popover-gold .ant-popover-inner {
  background-color: #faad14;
}
.ant-popover-gold .ant-popover-arrow-content {
  background-color: #faad14;
}
.ant-popover-cyan .ant-popover-inner {
  background-color: #13c2c2;
}
.ant-popover-cyan .ant-popover-arrow-content {
  background-color: #13c2c2;
}
.ant-popover-lime .ant-popover-inner {
  background-color: #a0d911;
}
.ant-popover-lime .ant-popover-arrow-content {
  background-color: #a0d911;
}
.ant-popover-green .ant-popover-inner {
  background-color: #5ae399;
}
.ant-popover-green .ant-popover-arrow-content {
  background-color: #5ae399;
}
.ant-popover-blue .ant-popover-inner {
  background-color: #4B80E7;
}
.ant-popover-blue .ant-popover-arrow-content {
  background-color: #4B80E7;
}
.ant-popover-geekblue .ant-popover-inner {
  background-color: #4B80E7;
}
.ant-popover-geekblue .ant-popover-arrow-content {
  background-color: #4B80E7;
}
.ant-popover-purple .ant-popover-inner {
  background-color: #913ef0;
}
.ant-popover-purple .ant-popover-arrow-content {
  background-color: #913ef0;
}
.ant-popover-rtl {
  direction: rtl;
  text-align: right;
}
.ant-popover-rtl .ant-popover-message-icon {
  margin-right: 0;
  margin-left: 8px;
}
.ant-popover-rtl .ant-popover-message-title {
  padding-left: 16px;
}
.ant-popover-rtl .ant-popover-buttons {
  text-align: left;
}
.ant-popover-rtl .ant-popover-buttons button {
  margin-right: 8px;
  margin-left: 0;
}
.ant-progress {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
}
.ant-progress-line {
  position: relative;
  width: 100%;
  font-size: 14px;
}
.ant-progress-steps {
  display: inline-block;
}
.ant-progress-steps-outer {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.ant-progress-steps-item {
  flex-shrink: 0;
  min-width: 2px;
  margin-right: 2px;
  background: #f3f3f3;
  transition: all 0.3s;
}
.ant-progress-steps-item-active {
  background: #4B80E7;
}
.ant-progress-small.ant-progress-line,
.ant-progress-small.ant-progress-line .ant-progress-text .anticon {
  font-size: 11px;
}
.ant-progress-outer {
  display: inline-block;
  width: 100%;
  margin-right: 0;
  padding-right: 0;
}
.ant-progress-show-info .ant-progress-outer {
  margin-right: calc(-2em - 8px);
  padding-right: calc(2em + 8px);
}
.ant-progress-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  vertical-align: middle;
  background-color: #f5f5f5;
  border-radius: 100px;
}
.ant-progress-circle-trail {
  stroke: #f5f5f5;
}
.ant-progress-circle-path {
  animation: ant-progress-appear 0.3s;
}
.ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
  stroke: #4B80E7;
}
.ant-progress-success-bg,
.ant-progress-bg {
  position: relative;
  background-color: #4B80E7;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
}
.ant-progress-success-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #5ae399;
}
.ant-progress-text {
  display: inline-block;
  width: 2em;
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 1em;
  line-height: 1;
  white-space: nowrap;
  text-align: left;
  vertical-align: middle;
  word-break: normal;
}
.ant-progress-text .anticon {
  font-size: 14px;
}
.ant-progress-status-active .ant-progress-bg::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  border-radius: 10px;
  opacity: 0;
  animation: ant-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  content: '';
}
.ant-progress-status-exception .ant-progress-bg {
  background-color: #E54963;
}
.ant-progress-status-exception .ant-progress-text {
  color: #E54963;
}
.ant-progress-status-exception .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
  stroke: #E54963;
}
.ant-progress-status-success .ant-progress-bg {
  background-color: #5ae399;
}
.ant-progress-status-success .ant-progress-text {
  color: #5ae399;
}
.ant-progress-status-success .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
  stroke: #5ae399;
}
.ant-progress-circle .ant-progress-inner {
  position: relative;
  line-height: 1;
  background-color: transparent;
}
.ant-progress-circle .ant-progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 1em;
  line-height: 1;
  white-space: normal;
  text-align: center;
  transform: translate(-50%, -50%);
}
.ant-progress-circle .ant-progress-text .anticon {
  font-size: 1.16666667em;
}
.ant-progress-circle.ant-progress-status-exception .ant-progress-text {
  color: #E54963;
}
.ant-progress-circle.ant-progress-status-success .ant-progress-text {
  color: #5ae399;
}
@keyframes ant-progress-active {
  0% {
    transform: translateX(-100%) scaleX(0);
    opacity: 0.1;
  }
  20% {
    transform: translateX(-100%) scaleX(0);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0) scaleX(1);
    opacity: 0;
  }
}
.ant-progress-rtl {
  direction: rtl;
}
.ant-progress-rtl.ant-progress-show-info .ant-progress-outer {
  margin-right: 0;
  margin-left: calc(-2em - 8px);
  padding-right: 0;
  padding-left: calc(2em + 8px);
}
.ant-progress-rtl .ant-progress-success-bg {
  right: 0;
  left: auto;
}
.ant-progress-rtl.ant-progress-line .ant-progress-text,
.ant-progress-rtl.ant-progress-steps .ant-progress-text {
  margin-right: 8px;
  margin-left: 0;
  text-align: right;
}
.ant-radio-group {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
  font-size: 0;
}
.ant-radio-group .ant-badge-count {
  z-index: 1;
}
.ant-radio-group > .ant-badge:not(:first-child) > .ant-radio-button-wrapper {
  border-left: none;
}
.ant-radio-wrapper {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-flex;
  align-items: baseline;
  margin-right: 8px;
  cursor: pointer;
}
.ant-radio-wrapper-disabled {
  cursor: not-allowed;
}
.ant-radio-wrapper::after {
  display: inline-block;
  width: 0;
  overflow: hidden;
  content: '\a0';
}
.ant-radio-wrapper.ant-radio-wrapper-in-form-item input[type='radio'] {
  width: 14px;
  height: 14px;
}
.ant-radio {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  top: 0.2em;
  display: inline-block;
  outline: none;
  cursor: pointer;
}
.ant-radio-wrapper:hover .ant-radio,
.ant-radio:hover .ant-radio-inner,
.ant-radio-input:focus + .ant-radio-inner {
  border-color: #913ef0;
}
.ant-radio-input:focus + .ant-radio-inner {
  box-shadow: 0 0 0 3px rgba(145, 62, 240, 0.12);
}
.ant-radio-checked::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #913ef0;
  border-radius: 50%;
  visibility: hidden;
  animation: antRadioEffect 0.36s ease-in-out;
  animation-fill-mode: both;
  content: '';
}
.ant-radio:hover::after,
.ant-radio-wrapper:hover .ant-radio::after {
  visibility: visible;
}
.ant-radio-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-color: #d9d9d9;
  border-style: solid;
  border-width: 1px;
  border-radius: 50%;
  transition: all 0.3s;
}
.ant-radio-inner::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: -8px;
  background-color: #913ef0;
  border-top: 0;
  border-left: 0;
  border-radius: 16px;
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  content: ' ';
}
.ant-radio-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}
.ant-radio.ant-radio-disabled .ant-radio-inner {
  border-color: #d9d9d9;
}
.ant-radio-checked .ant-radio-inner {
  border-color: #913ef0;
}
.ant-radio-checked .ant-radio-inner::after {
  transform: scale(0.5);
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-radio-disabled {
  cursor: not-allowed;
}
.ant-radio-disabled .ant-radio-inner {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.ant-radio-disabled .ant-radio-inner::after {
  background-color: rgba(0, 0, 0, 0.2);
}
.ant-radio-disabled .ant-radio-input {
  cursor: not-allowed;
}
.ant-radio-disabled + span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
span.ant-radio + * {
  padding-right: 8px;
  padding-left: 8px;
}
.ant-radio-button-wrapper {
  position: relative;
  display: inline-block;
  height: 32px;
  margin: 0;
  padding: 0 15px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 30px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top-width: 1.02px;
  border-left-width: 0;
  cursor: pointer;
  transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.ant-radio-button-wrapper a {
  color: rgba(0, 0, 0, 0.85);
}
.ant-radio-button-wrapper > .ant-radio-button {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.ant-radio-group-large .ant-radio-button-wrapper {
  height: 40px;
  font-size: 16px;
  line-height: 38px;
}
.ant-radio-group-small .ant-radio-button-wrapper {
  height: 24px;
  padding: 0 7px;
  line-height: 22px;
}
.ant-radio-button-wrapper:not(:first-child)::before {
  position: absolute;
  top: -1px;
  left: -1px;
  display: block;
  box-sizing: content-box;
  width: 1px;
  height: 100%;
  padding: 1px 0;
  background-color: #d9d9d9;
  transition: background-color 0.3s;
  content: '';
}
.ant-radio-button-wrapper:first-child {
  border-left: 1px solid #d9d9d9;
  border-radius: 2px 0 0 2px;
}
.ant-radio-button-wrapper:last-child {
  border-radius: 0 2px 2px 0;
}
.ant-radio-button-wrapper:first-child:last-child {
  border-radius: 2px;
}
.ant-radio-button-wrapper:hover {
  position: relative;
  color: #913ef0;
}
.ant-radio-button-wrapper:focus-within {
  box-shadow: 0 0 0 3px rgba(145, 62, 240, 0.12);
}
.ant-radio-button-wrapper .ant-radio-inner,
.ant-radio-button-wrapper input[type='checkbox'],
.ant-radio-button-wrapper input[type='radio'] {
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
  z-index: 1;
  color: #913ef0;
  background: #fff;
  border-color: #913ef0;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before {
  background-color: #913ef0;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
  border-color: #913ef0;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
  color: #b36afc;
  border-color: #b36afc;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover::before {
  background-color: #b36afc;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
  color: #6f2ac9;
  border-color: #6f2ac9;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active::before {
  background-color: #6f2ac9;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
  box-shadow: 0 0 0 3px rgba(145, 62, 240, 0.12);
}
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
  color: #fff;
  background: #913ef0;
  border-color: #913ef0;
}
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
  color: #fff;
  background: #b36afc;
  border-color: #b36afc;
}
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
  color: #fff;
  background: #6f2ac9;
  border-color: #6f2ac9;
}
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
  box-shadow: 0 0 0 3px rgba(145, 62, 240, 0.12);
}
.ant-radio-button-wrapper-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}
.ant-radio-button-wrapper-disabled:first-child,
.ant-radio-button-wrapper-disabled:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
}
.ant-radio-button-wrapper-disabled:first-child {
  border-left-color: #d9d9d9;
}
.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
  color: rgba(0, 0, 0, 0.25);
  background-color: #e6e6e6;
  border-color: #d9d9d9;
  box-shadow: none;
}
@keyframes antRadioEffect {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.ant-radio-group.ant-radio-group-rtl {
  direction: rtl;
}
.ant-radio-wrapper.ant-radio-wrapper-rtl {
  margin-right: 0;
  margin-left: 8px;
  direction: rtl;
}
.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl {
  border-right-width: 0;
  border-left-width: 1px;
}
.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:not(:first-child)::before {
  right: -1px;
  left: 0;
}
.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:first-child {
  border-right: 1px solid #d9d9d9;
  border-radius: 0 2px 2px 0;
}
.ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper:first-child {
  border-right-color: #b36afc;
}
.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:last-child {
  border-radius: 2px 0 0 2px;
}
.ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper-disabled:first-child {
  border-right-color: #d9d9d9;
}
.ant-rate {
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.85);
  font-variant: tabular-nums;
  line-height: 1.6;
  font-feature-settings: 'tnum';
  display: inline-block;
  margin: 0;
  padding: 0;
  color: #FFB946;
  font-size: 20px;
  line-height: unset;
  list-style: none;
  outline: none;
}
.ant-rate-disabled .ant-rate-star {
  cursor: default;
}
.ant-rate-disabled .ant-rate-star > div:hover {
  transform: scale(1);
}
.ant-rate-star {
  position: relative;
  display: inline-block;
  color: inherit;
  cursor: pointer;
}
.ant-rate-star:not(:last-child) {
  margin-right: 8px;
}
.ant-rate-star > div {
  transition: all 0.3s, outline 0s;
}
.ant-rate-star > div:hover {
  transform: scale(1.1);
}
.ant-rate-star > div:focus {
  outline: 0;
}
.ant-rate-star > div:focus-visible {
  outline: 1px dashed #FFB946;
  transform: scale(1.1);
}
.ant-rate-star-first,
.ant-rate-star-second {
  color: #f0f0f0;
  transition: all 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-rate-star-first .anticon,
.ant-rate-star-second .anticon {
  vertical-align: middle;
}
.ant-rate-star-first {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
}
.ant-rate-star-half .ant-rate-star-first,
.ant-rate-star-half .ant-rate-star-second {
  opacity: 1;
}
.ant-rate-star-half .ant-rate-star-first,
.ant-rate-star-full .ant-rate-star-second {
  color: inherit;
}
.ant-rate-text {
  display: inline-block;
  margin: 0 8px;
  font-size: 14px;
}
.ant-rate-rtl {
  direction: rtl;
}
.ant-rate-rtl .ant-rate-star:not(:last-child) {
  margin-right: 0;
  margin-left: 8px;
}
.ant-rate-rtl .ant-rate-star-first {
  right: 0;
  left: auto;
}
.ant-result {
  padding: 48px 32px;
}
.ant-result-success .ant-result-icon > .anticon {
  color: #5ae399;
}
.ant-result-error .ant-result-icon > .anticon {
  color: #E54963;
}
.ant-result-info .ant-result-icon > .anticon {
  color: #4B80E7;
}
.ant-result-warning .ant-result-icon > .anticon {
  color: #FFB946;
}
.ant-result-image {
  width: 250px;
  height: 295px;
  margin: auto;
}
.ant-result-icon {
  margin-bottom: 24px;
  text-align: center;
}
.ant-result-icon > .anticon {
  font-size: 72px;
}
.ant-result-title {
  color: rgba(0, 0, 0, 0.85);
  font-size: 24px;
  line-height: 1.8;
  text-align: center;
}
.ant-result-subtitle {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
.ant-result-extra {
  margin: 24px 0 0 0;
  text-align: center;
}
.ant-result-extra > * {
  margin-right: 8px;
}
.ant-result-extra > *:last-child {
  margin-right: 0;
}
.ant-result-content {
  margin-top: 24px;
  padding: 24px 40px;
  background-color: #fafafa;
}
.ant-result-rtl {
  direction: rtl;
}
.ant-result-rtl .ant-result-extra > * {
  margin-right: 0;
  margin-left: 8px;
}
.ant-result-rtl .ant-result-extra > *:last-child {
  margin-left: 0;
}
.segmented-disabled-item,
.segmented-disabled-item:hover,
.segmented-disabled-item:focus {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.segmented-item-selected {
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.05), 0 1px 4px -1px rgba(0, 0, 0, 0.07), 0 0 1px 0 rgba(0, 0, 0, 0.08);
}
.segmented-text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: keep-all;
}
.ant-segmented {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
  padding: 2px;
  color: rgba(0, 0, 0, 0.65);
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-segmented-group {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-items: flex-start;
  width: 100%;
}
.ant-segmented.ant-segmented-block {
  display: flex;
}
.ant-segmented.ant-segmented-block .ant-segmented-item {
  flex: 1;
  min-width: 0;
}
.ant-segmented:not(.ant-segmented-disabled):hover,
.ant-segmented:not(.ant-segmented-disabled):focus {
  background-color: rgba(0, 0, 0, 0.06);
}
.ant-segmented-item {
  position: relative;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-segmented-item-selected {
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.05), 0 1px 4px -1px rgba(0, 0, 0, 0.07), 0 0 1px 0 rgba(0, 0, 0, 0.08);
  color: #262626;
}
.ant-segmented-item:hover,
.ant-segmented-item:focus {
  color: #262626;
}
.ant-segmented-item-label {
  min-height: 28px;
  padding: 0 11px;
  line-height: 28px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: keep-all;
}
.ant-segmented-item-icon + * {
  margin-left: 6px;
}
.ant-segmented-item-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.ant-segmented.ant-segmented-lg .ant-segmented-item-label {
  min-height: 36px;
  padding: 0 11px;
  font-size: 16px;
  line-height: 36px;
}
.ant-segmented.ant-segmented-sm .ant-segmented-item-label {
  min-height: 20px;
  padding: 0 7px;
  line-height: 20px;
}
.ant-segmented-item-disabled,
.ant-segmented-item-disabled:hover,
.ant-segmented-item-disabled:focus {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-segmented-thumb {
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.05), 0 1px 4px -1px rgba(0, 0, 0, 0.07), 0 0 1px 0 rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  padding: 4px 0;
}
.ant-segmented-thumb-motion-appear-active {
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: transform, width;
}
.ant-segmented.ant-segmented-rtl {
  direction: rtl;
}
.ant-segmented.ant-segmented-rtl .ant-segmented-item-icon {
  margin-right: 0;
  margin-left: 6px;
}
.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;
  transition: all 0.3s, visibility 0s;
}
.ant-select-single .ant-select-selector .ant-select-selection-item {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-select-single .ant-select-selector .ant-select-selection-placeholder {
  transition: none;
  pointer-events: none;
}
.ant-select-single .ant-select-selector::after,
.ant-select-single .ant-select-selector .ant-select-selection-item::after,
.ant-select-single .ant-select-selector .ant-select-selection-placeholder::after {
  display: inline-block;
  width: 0;
  visibility: hidden;
  content: '\a0';
}
.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::after,
.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 {
  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::after,
.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 {
  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;
}
/**
 * Do not merge `height` & `line-height` under style with `selection` & `search`,
 * since chrome may update to redesign with its align logic.
 */
.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: 0.8px 3.8px;
}
.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: 24.4px;
  visibility: hidden;
  content: '\a0';
}
.ant-select-multiple.ant-select-show-arrow .ant-select-selector,
.ant-select-multiple.ant-select-allow-clear .ant-select-selector {
  padding-right: 23px;
}
.ant-select-multiple .ant-select-selection-item {
  position: relative;
  display: flex;
  flex: none;
  box-sizing: border-box;
  max-width: 100%;
  height: 24.4px;
  margin-top: 2px;
  margin-bottom: 2px;
  line-height: 22.4px;
  background: #f5f5f5;
  border: 1px solid #f0f0f0;
  border-radius: 2px;
  cursor: default;
  transition: font-size 0.3s, line-height 0.3s, height 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-inline-end: 3.8px;
  padding-inline-start: 8px;
  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-flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.45);
  font-weight: bold;
  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: middle;
}
.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 {
  margin-inline-start: 0;
}
.ant-select-multiple .ant-select-selection-search {
  position: relative;
  max-width: 100%;
  margin-inline-start: 7.2px;
}
.ant-select-multiple .ant-select-selection-search-input,
.ant-select-multiple .ant-select-selection-search-mirror {
  height: 24.4px;
  font-family: Beatrice, sans-serif;
  line-height: 24.4px;
  transition: all 0.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;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.ant-select-multiple.ant-select-lg .ant-select-selector::after {
  line-height: 32.4px;
}
.ant-select-multiple.ant-select-lg .ant-select-selection-item {
  height: 32.4px;
  line-height: 30.4px;
}
.ant-select-multiple.ant-select-lg .ant-select-selection-search {
  height: 32.4px;
  line-height: 32.4px;
}
.ant-select-multiple.ant-select-lg .ant-select-selection-search-input,
.ant-select-multiple.ant-select-lg .ant-select-selection-search-mirror {
  height: 32.4px;
  line-height: 30.4px;
}
.ant-select-multiple.ant-select-sm .ant-select-selector::after {
  line-height: 16.4px;
}
.ant-select-multiple.ant-select-sm .ant-select-selection-item {
  height: 16.4px;
  line-height: 14.4px;
}
.ant-select-multiple.ant-select-sm .ant-select-selection-search {
  height: 16.4px;
  line-height: 16.4px;
}
.ant-select-multiple.ant-select-sm .ant-select-selection-search-input,
.ant-select-multiple.ant-select-sm .ant-select-selection-search-mirror {
  height: 16.4px;
  line-height: 14.4px;
}
.ant-select-multiple.ant-select-sm .ant-select-selection-placeholder {
  left: 7px;
}
.ant-select-multiple.ant-select-sm .ant-select-selection-search {
  margin-inline-start: 3px;
}
.ant-select-disabled .ant-select-selection-item-remove {
  display: none;
}
.ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer) .ant-select-selector {
  background-color: #fff;
  border-color: #E54963 !important;
}
.ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-open .ant-select-selector,
.ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-focused .ant-select-selector {
  border-color: #f27485;
  box-shadow: 0 0 0 2px rgba(229, 73, 99, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer) .ant-select-selector {
  background-color: #fff;
  border-color: #FFB946 !important;
}
.ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-open .ant-select-selector,
.ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-focused .ant-select-selector {
  border-color: #ffcc6e;
  box-shadow: 0 0 0 2px rgba(255, 185, 70, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-select-status-error.ant-select-has-feedback .ant-select-clear,
.ant-select-status-warning.ant-select-has-feedback .ant-select-clear,
.ant-select-status-success.ant-select-has-feedback .ant-select-clear,
.ant-select-status-validating.ant-select-has-feedback .ant-select-clear {
  right: 32px;
}
.ant-select-status-error.ant-select-has-feedback .ant-select-selection-selected-value,
.ant-select-status-warning.ant-select-has-feedback .ant-select-selection-selected-value,
.ant-select-status-success.ant-select-has-feedback .ant-select-selection-selected-value,
.ant-select-status-validating.ant-select-has-feedback .ant-select-selection-selected-value {
  padding-right: 42px;
}
/* Reset search input style */
.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.6;
  list-style: none;
  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;
  transition: all 0.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: #b36afc;
  box-shadow: 0 0 0 2px rgba(145, 62, 240, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-rtl .ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.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;
  /* stylelint-disable-next-line property-no-vendor-prefix */
  -webkit-appearance: none;
}
.ant-select:not(.ant-select-disabled):hover .ant-select-selector {
  border-color: #b36afc;
  border-right-width: 1px;
}
.ant-input-rtl .ant-select:not(.ant-select-disabled):hover .ant-select-selector {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-select-selection-item {
  flex: 1;
  overflow: hidden;
  font-weight: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media all and (-ms-high-contrast: none) {
  .ant-select-selection-item *::-ms-backdrop,
  .ant-select-selection-item {
    flex: auto;
  }
}
.ant-select-selection-placeholder {
  flex: 1;
  overflow: hidden;
  color: #bfbfbf;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}
@media all and (-ms-high-contrast: none) {
  .ant-select-selection-placeholder *::-ms-backdrop,
  .ant-select-selection-placeholder {
    flex: auto;
  }
}
.ant-select-arrow {
  display: inline-flex;
  color: inherit;
  font-style: normal;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 11px;
  display: flex;
  align-items: center;
  height: 11px;
  margin-top: -5.5px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 11px;
  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;
  transition: transform 0.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-arrow > *:not(:last-child) {
  margin-inline-end: 8px;
}
.ant-select-clear {
  position: absolute;
  top: 50%;
  right: 11px;
  z-index: 1;
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-top: -5.5px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 11px;
  font-style: normal;
  line-height: 1;
  text-align: center;
  text-transform: none;
  background: #fff;
  cursor: pointer;
  opacity: 0;
  transition: color 0.3s ease, opacity 0.15s ease;
  text-rendering: auto;
}
.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;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-variant: tabular-nums;
  line-height: 1.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
  box-sizing: border-box;
  padding: 4px 0;
  overflow: hidden;
  font-size: 14px;
  font-variant: initial;
  background-color: #fff;
  border-radius: 2px;
  outline: none;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.ant-select-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-select-dropdown-placement-bottomLeft,
.ant-select-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-select-dropdown-placement-bottomLeft {
  animation-name: antSlideUpIn;
}
.ant-select-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-select-dropdown-placement-topLeft,
.ant-select-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-select-dropdown-placement-topLeft {
  animation-name: antSlideDownIn;
}
.ant-select-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-select-dropdown-placement-bottomLeft {
  animation-name: antSlideUpOut;
}
.ant-select-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-select-dropdown-placement-topLeft {
  animation-name: antSlideDownOut;
}
.ant-select-dropdown-hidden {
  display: none;
}
.ant-select-dropdown-empty {
  color: rgba(0, 0, 0, 0.25);
}
.ant-select-item-empty {
  position: relative;
  display: block;
  min-height: 32px;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.25);
}
.ant-select-item {
  position: relative;
  display: block;
  min-height: 32px;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.ant-select-item-group {
  color: rgba(0, 0, 0, 0.45);
  font-size: 11px;
  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: #f9f0ff;
}
.ant-select-item-option-selected:not(.ant-select-item-option-disabled) .ant-select-item-option-state {
  color: #913ef0;
}
.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.ant-select-in-form-item {
  width: 100%;
}
.ant-select-compact-item:not(.ant-select-compact-last-item) {
  margin-right: -1px;
}
.ant-select-compact-item:not(.ant-select-compact-last-item).ant-select-compact-item-rtl {
  margin-right: 0;
  margin-left: -1px;
}
.ant-select-compact-item:hover > *,
.ant-select-compact-item:focus > *,
.ant-select-compact-item:active > * {
  z-index: 2;
}
.ant-select-compact-item.ant-select-focused > * {
  z-index: 2;
}
.ant-select-compact-item[disabled] > * {
  z-index: 0;
}
.ant-select-compact-item:not(.ant-select-compact-first-item):not(.ant-select-compact-last-item).ant-select > .ant-select-selector {
  border-radius: 0;
}
.ant-select-compact-item.ant-select-compact-first-item.ant-select:not(.ant-select-compact-last-item):not(.ant-select-compact-item-rtl) > .ant-select-selector {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-select-compact-item.ant-select-compact-last-item.ant-select:not(.ant-select-compact-first-item):not(.ant-select-compact-item-rtl) > .ant-select-selector {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-select-compact-item.ant-select.ant-select-compact-first-item.ant-select-compact-item-rtl:not(.ant-select-compact-last-item) > .ant-select-selector {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-select-compact-item.ant-select.ant-select-compact-last-item.ant-select-compact-item-rtl:not(.ant-select-compact-first-item) > .ant-select-selector {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-select-rtl {
  direction: rtl;
}
.ant-select-rtl .ant-select-arrow {
  right: initial;
  left: 11px;
}
.ant-select-rtl .ant-select-clear {
  right: initial;
  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-show-arrow .ant-select-selector,
.ant-select-rtl.ant-select-multiple.ant-select-allow-clear .ant-select-selector {
  padding-right: 3.8px;
  padding-left: 23px;
}
.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;
}
.ant-skeleton {
  display: table;
  width: 100%;
}
.ant-skeleton-header {
  display: table-cell;
  padding-right: 16px;
  vertical-align: top;
}
.ant-skeleton-header .ant-skeleton-avatar {
  display: inline-block;
  vertical-align: top;
  background: rgba(190, 190, 190, 0.2);
  width: 32px;
  height: 32px;
  line-height: 32px;
}
.ant-skeleton-header .ant-skeleton-avatar.ant-skeleton-avatar-circle {
  border-radius: 50%;
}
.ant-skeleton-header .ant-skeleton-avatar-lg {
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.ant-skeleton-header .ant-skeleton-avatar-lg.ant-skeleton-avatar-circle {
  border-radius: 50%;
}
.ant-skeleton-header .ant-skeleton-avatar-sm {
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.ant-skeleton-header .ant-skeleton-avatar-sm.ant-skeleton-avatar-circle {
  border-radius: 50%;
}
.ant-skeleton-content {
  display: table-cell;
  width: 100%;
  vertical-align: top;
}
.ant-skeleton-content .ant-skeleton-title {
  width: 100%;
  height: 16px;
  background: rgba(190, 190, 190, 0.2);
  border-radius: 2px;
}
.ant-skeleton-content .ant-skeleton-title + .ant-skeleton-paragraph {
  margin-top: 24px;
}
.ant-skeleton-content .ant-skeleton-paragraph {
  padding: 0;
}
.ant-skeleton-content .ant-skeleton-paragraph > li {
  width: 100%;
  height: 16px;
  list-style: none;
  background: rgba(190, 190, 190, 0.2);
  border-radius: 2px;
}
.ant-skeleton-content .ant-skeleton-paragraph > li:last-child:not(:first-child):not(:nth-child(2)) {
  width: 61%;
}
.ant-skeleton-content .ant-skeleton-paragraph > li + li {
  margin-top: 16px;
}
.ant-skeleton-with-avatar .ant-skeleton-content .ant-skeleton-title {
  margin-top: 12px;
}
.ant-skeleton-with-avatar .ant-skeleton-content .ant-skeleton-title + .ant-skeleton-paragraph {
  margin-top: 28px;
}
.ant-skeleton-round .ant-skeleton-content .ant-skeleton-title,
.ant-skeleton-round .ant-skeleton-content .ant-skeleton-paragraph > li {
  border-radius: 100px;
}
.ant-skeleton-active .ant-skeleton-title,
.ant-skeleton-active .ant-skeleton-paragraph > li,
.ant-skeleton-active .ant-skeleton-avatar,
.ant-skeleton-active .ant-skeleton-button,
.ant-skeleton-active .ant-skeleton-input,
.ant-skeleton-active .ant-skeleton-image {
  position: relative;
  /* stylelint-disable-next-line property-no-vendor-prefix,value-no-vendor-prefix */
  z-index: 0;
  overflow: hidden;
  background: transparent;
}
.ant-skeleton-active .ant-skeleton-title::after,
.ant-skeleton-active .ant-skeleton-paragraph > li::after,
.ant-skeleton-active .ant-skeleton-avatar::after,
.ant-skeleton-active .ant-skeleton-button::after,
.ant-skeleton-active .ant-skeleton-input::after,
.ant-skeleton-active .ant-skeleton-image::after {
  position: absolute;
  top: 0;
  right: -150%;
  bottom: 0;
  left: -150%;
  background: linear-gradient(90deg, rgba(190, 190, 190, 0.2) 25%, rgba(129, 129, 129, 0.24) 37%, rgba(190, 190, 190, 0.2) 63%);
  animation: ant-skeleton-loading 1.4s ease infinite;
  content: '';
}
.ant-skeleton.ant-skeleton-block {
  width: 100%;
}
.ant-skeleton.ant-skeleton-block .ant-skeleton-button {
  width: 100%;
}
.ant-skeleton.ant-skeleton-block .ant-skeleton-input {
  width: 100%;
}
.ant-skeleton-element {
  display: inline-block;
  width: auto;
}
.ant-skeleton-element .ant-skeleton-button {
  display: inline-block;
  vertical-align: top;
  background: rgba(190, 190, 190, 0.2);
  border-radius: 2px;
  width: 64px;
  min-width: 64px;
  height: 32px;
  line-height: 32px;
}
.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-square {
  width: 32px;
  min-width: 32px;
}
.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-circle {
  width: 32px;
  min-width: 32px;
  border-radius: 50%;
}
.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-round {
  border-radius: 32px;
}
.ant-skeleton-element .ant-skeleton-button-lg {
  width: 80px;
  min-width: 80px;
  height: 40px;
  line-height: 40px;
}
.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-square {
  width: 40px;
  min-width: 40px;
}
.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-circle {
  width: 40px;
  min-width: 40px;
  border-radius: 50%;
}
.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-round {
  border-radius: 40px;
}
.ant-skeleton-element .ant-skeleton-button-sm {
  width: 48px;
  min-width: 48px;
  height: 24px;
  line-height: 24px;
}
.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-square {
  width: 24px;
  min-width: 24px;
}
.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-circle {
  width: 24px;
  min-width: 24px;
  border-radius: 50%;
}
.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-round {
  border-radius: 24px;
}
.ant-skeleton-element .ant-skeleton-avatar {
  display: inline-block;
  vertical-align: top;
  background: rgba(190, 190, 190, 0.2);
  width: 32px;
  height: 32px;
  line-height: 32px;
}
.ant-skeleton-element .ant-skeleton-avatar.ant-skeleton-avatar-circle {
  border-radius: 50%;
}
.ant-skeleton-element .ant-skeleton-avatar-lg {
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.ant-skeleton-element .ant-skeleton-avatar-lg.ant-skeleton-avatar-circle {
  border-radius: 50%;
}
.ant-skeleton-element .ant-skeleton-avatar-sm {
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.ant-skeleton-element .ant-skeleton-avatar-sm.ant-skeleton-avatar-circle {
  border-radius: 50%;
}
.ant-skeleton-element .ant-skeleton-input {
  display: inline-block;
  vertical-align: top;
  background: rgba(190, 190, 190, 0.2);
  width: 160px;
  min-width: 160px;
  height: 32px;
  line-height: 32px;
}
.ant-skeleton-element .ant-skeleton-input-lg {
  width: 200px;
  min-width: 200px;
  height: 40px;
  line-height: 40px;
}
.ant-skeleton-element .ant-skeleton-input-sm {
  width: 120px;
  min-width: 120px;
  height: 24px;
  line-height: 24px;
}
.ant-skeleton-element .ant-skeleton-image {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  background: rgba(190, 190, 190, 0.2);
  width: 96px;
  height: 96px;
  line-height: 96px;
}
.ant-skeleton-element .ant-skeleton-image.ant-skeleton-image-circle {
  border-radius: 50%;
}
.ant-skeleton-element .ant-skeleton-image-path {
  fill: #bfbfbf;
}
.ant-skeleton-element .ant-skeleton-image-svg {
  width: 48px;
  height: 48px;
  line-height: 48px;
  max-width: 192px;
  max-height: 192px;
}
.ant-skeleton-element .ant-skeleton-image-svg.ant-skeleton-image-circle {
  border-radius: 50%;
}
@keyframes ant-skeleton-loading {
  0% {
    transform: translateX(-37.5%);
  }
  100% {
    transform: translateX(37.5%);
  }
}
.ant-skeleton-rtl {
  direction: rtl;
}
.ant-skeleton-rtl .ant-skeleton-header {
  padding-right: 0;
  padding-left: 16px;
}
.ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-title,
.ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-paragraph > li {
  animation-name: ant-skeleton-loading-rtl;
}
.ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-avatar {
  animation-name: ant-skeleton-loading-rtl;
}
@keyframes ant-skeleton-loading-rtl {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.ant-slider {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  height: 12px;
  margin: 10px 6px 10px;
  padding: 4px 0;
  cursor: pointer;
  touch-action: none;
}
.ant-slider-vertical {
  width: 12px;
  height: 100%;
  margin: 6px 10px;
  padding: 0 4px;
}
.ant-slider-vertical .ant-slider-rail {
  width: 4px;
  height: 100%;
}
.ant-slider-vertical .ant-slider-track {
  width: 4px;
}
.ant-slider-vertical .ant-slider-handle {
  margin-top: -6px;
  margin-left: -5px;
}
.ant-slider-vertical .ant-slider-mark {
  top: 0;
  left: 12px;
  width: 18px;
  height: 100%;
}
.ant-slider-vertical .ant-slider-mark-text {
  left: 4px;
  white-space: nowrap;
}
.ant-slider-vertical .ant-slider-step {
  width: 4px;
  height: 100%;
}
.ant-slider-vertical .ant-slider-dot {
  top: auto;
  margin-left: -2px;
}
.ant-slider-tooltip .ant-tooltip-inner {
  min-width: unset;
}
.ant-slider-rtl.ant-slider-vertical .ant-slider-handle {
  margin-right: -5px;
  margin-left: 0;
}
.ant-slider-rtl.ant-slider-vertical .ant-slider-mark {
  right: 12px;
  left: auto;
}
.ant-slider-rtl.ant-slider-vertical .ant-slider-mark-text {
  right: 4px;
  left: auto;
}
.ant-slider-rtl.ant-slider-vertical .ant-slider-dot {
  right: 2px;
  left: auto;
}
.ant-slider-with-marks {
  margin-bottom: 28px;
}
.ant-slider-rail {
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #f5f5f5;
  border-radius: 2px;
  transition: background-color 0.3s;
}
.ant-slider-track {
  position: absolute;
  height: 4px;
  background-color: #e2bdff;
  border-radius: 2px;
  transition: background-color 0.3s;
}
.ant-slider-handle {
  position: absolute;
  width: 14px;
  height: 14px;
  margin-top: -5px;
  background-color: #fff;
  border: solid 2px #e2bdff;
  border-radius: 50%;
  box-shadow: 0;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.6s, transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.ant-slider-handle-dragging {
  z-index: 1;
}
.ant-slider-handle:focus {
  border-color: #a765f3;
  outline: none;
  box-shadow: 0 0 0 5px rgba(145, 62, 240, 0.12);
}
.ant-slider-handle.ant-tooltip-open {
  border-color: #913ef0;
}
.ant-slider-handle::after {
  position: absolute;
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  content: '';
}
.ant-slider:hover .ant-slider-rail {
  background-color: #e1e1e1;
}
.ant-slider:hover .ant-slider-track {
  background-color: #cd94ff;
}
.ant-slider:hover .ant-slider-handle:not(.ant-tooltip-open) {
  border-color: #cd94ff;
}
.ant-slider-mark {
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  font-size: 14px;
}
.ant-slider-mark-text {
  position: absolute;
  display: inline-block;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
  word-break: keep-all;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-slider-mark-text-active {
  color: rgba(0, 0, 0, 0.85);
}
.ant-slider-step {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
  pointer-events: none;
}
.ant-slider-dot {
  position: absolute;
  top: -2px;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border: 2px solid #f0f0f0;
  border-radius: 50%;
  cursor: pointer;
}
.ant-slider-dot-active {
  border-color: #c89ff8;
}
.ant-slider-disabled {
  cursor: not-allowed;
}
.ant-slider-disabled .ant-slider-rail {
  background-color: #f5f5f5 !important;
}
.ant-slider-disabled .ant-slider-track {
  background-color: rgba(0, 0, 0, 0.25) !important;
}
.ant-slider-disabled .ant-slider-handle,
.ant-slider-disabled .ant-slider-dot {
  background-color: #fff;
  border-color: rgba(0, 0, 0, 0.25) !important;
  box-shadow: none;
  cursor: not-allowed;
}
.ant-slider-disabled .ant-slider-mark-text,
.ant-slider-disabled .ant-slider-dot {
  cursor: not-allowed !important;
}
.ant-slider-rtl {
  direction: rtl;
}
.ant-slider-rtl .ant-slider-mark {
  right: 0;
  left: auto;
}
.ant-space {
  display: inline-flex;
}
.ant-space-vertical {
  flex-direction: column;
}
.ant-space-align-center {
  align-items: center;
}
.ant-space-align-start {
  align-items: flex-start;
}
.ant-space-align-end {
  align-items: flex-end;
}
.ant-space-align-baseline {
  align-items: baseline;
}
.ant-space-item:empty {
  display: none;
}
.ant-space-compact {
  display: inline-flex;
}
.ant-space-compact-block {
  display: flex;
  width: 100%;
}
.ant-space-compact-vertical {
  flex-direction: column;
}
.ant-space-rtl {
  direction: rtl;
}
.ant-space-compact-rtl {
  direction: rtl;
}
.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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  display: none;
  color: #913ef0;
  font-size: 0;
  text-align: center;
  vertical-align: middle;
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-spin-spinning {
  position: static;
  display: inline-block;
  opacity: 1;
}
.ant-spin-nested-loading {
  position: relative;
}
.ant-spin-nested-loading > div > .ant-spin {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 400px;
}
.ant-spin-nested-loading > div > .ant-spin .ant-spin-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px;
}
.ant-spin-nested-loading > div > .ant-spin .ant-spin-text {
  position: absolute;
  top: 50%;
  width: 100%;
  padding-top: 5px;
  font-size: 14px;
  text-shadow: 0 1px 2px #fff;
}
.ant-spin-nested-loading > div > .ant-spin.ant-spin-show-text .ant-spin-dot {
  margin-top: -20px;
}
.ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-dot {
  margin: -7px;
}
.ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-text {
  padding-top: 2px;
}
.ant-spin-nested-loading > div > .ant-spin-sm.ant-spin-show-text .ant-spin-dot {
  margin-top: -17px;
}
.ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-dot {
  margin: -16px;
}
.ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-text {
  padding-top: 11px;
}
.ant-spin-nested-loading > div > .ant-spin-lg.ant-spin-show-text .ant-spin-dot {
  margin-top: -26px;
}
.ant-spin-container {
  position: relative;
  transition: opacity 0.3s;
}
.ant-spin-container::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: none \9;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: all 0.3s;
  content: '';
  pointer-events: none;
}
.ant-spin-blur {
  clear: both;
  opacity: 0.5;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.ant-spin-blur::after {
  opacity: 0.4;
  pointer-events: auto;
}
.ant-spin-tip {
  color: rgba(0, 0, 0, 0.45);
}
.ant-spin-dot {
  position: relative;
  display: inline-block;
  font-size: 20px;
  width: 1em;
  height: 1em;
}
.ant-spin-dot-item {
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  background-color: #913ef0;
  border-radius: 100%;
  transform: scale(0.75);
  transform-origin: 50% 50%;
  opacity: 0.3;
  animation: antSpinMove 1s infinite linear alternate;
}
.ant-spin-dot-item:nth-child(1) {
  top: 0;
  left: 0;
}
.ant-spin-dot-item:nth-child(2) {
  top: 0;
  right: 0;
  animation-delay: 0.4s;
}
.ant-spin-dot-item:nth-child(3) {
  right: 0;
  bottom: 0;
  animation-delay: 0.8s;
}
.ant-spin-dot-item:nth-child(4) {
  bottom: 0;
  left: 0;
  animation-delay: 1.2s;
}
.ant-spin-dot-spin {
  transform: rotate(0deg);
  animation: antRotate 1.2s infinite linear;
}
.ant-spin-sm .ant-spin-dot {
  font-size: 14px;
}
.ant-spin-sm .ant-spin-dot i {
  width: 6px;
  height: 6px;
}
.ant-spin-lg .ant-spin-dot {
  font-size: 32px;
}
.ant-spin-lg .ant-spin-dot i {
  width: 14px;
  height: 14px;
}
.ant-spin.ant-spin-show-text .ant-spin-text {
  display: block;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ */
  .ant-spin-blur {
    background: #fff;
    opacity: 0.5;
  }
}
@keyframes antSpinMove {
  to {
    opacity: 1;
  }
}
@keyframes antRotate {
  to {
    transform: rotate(360deg);
  }
}
.ant-spin-rtl {
  direction: rtl;
}
.ant-spin-rtl .ant-spin-dot-spin {
  transform: rotate(-45deg);
  animation-name: antRotateRtl;
}
@keyframes antRotateRtl {
  to {
    transform: rotate(-405deg);
  }
}
.ant-statistic {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
}
.ant-statistic-title {
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.ant-statistic-skeleton {
  padding-top: 16px;
}
.ant-statistic-content {
  color: rgba(0, 0, 0, 0.85);
  font-size: 24px;
  font-family: Beatrice, sans-serif;
}
.ant-statistic-content-value {
  display: inline-block;
  direction: ltr;
}
.ant-statistic-content-prefix,
.ant-statistic-content-suffix {
  display: inline-block;
}
.ant-statistic-content-prefix {
  margin-right: 4px;
}
.ant-statistic-content-suffix {
  margin-left: 4px;
}
.ant-statistic-rtl {
  direction: rtl;
}
.ant-statistic-rtl .ant-statistic-content-prefix {
  margin-right: 0;
  margin-left: 4px;
}
.ant-statistic-rtl .ant-statistic-content-suffix {
  margin-right: 4px;
  margin-left: 0;
}
.ant-steps {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  display: flex;
  width: 100%;
  font-size: 0;
  text-align: initial;
}
.ant-steps-item {
  position: relative;
  display: inline-block;
  flex: 1;
  overflow: hidden;
  vertical-align: top;
}
.ant-steps-item-container {
  outline: none;
}
.ant-steps-item:last-child {
  flex: none;
}
.ant-steps-item:last-child > .ant-steps-item-container > .ant-steps-item-tail,
.ant-steps-item:last-child > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
  display: none;
}
.ant-steps-item-icon,
.ant-steps-item-content {
  display: inline-block;
  vertical-align: top;
}
.ant-steps-item-icon {
  width: 32px;
  height: 32px;
  margin: 0 8px 0 0;
  font-size: 16px;
  font-family: Beatrice, sans-serif;
  line-height: 32px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 32px;
  transition: background-color 0.3s, border-color 0.3s;
}
.ant-steps-item-icon .ant-steps-icon {
  position: relative;
  top: -0.5px;
  color: #913ef0;
  line-height: 1;
}
.ant-steps-item-tail {
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  padding: 0 10px;
}
.ant-steps-item-tail::after {
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #f0f0f0;
  border-radius: 1px;
  transition: background 0.3s;
  content: '';
}
.ant-steps-item-title {
  position: relative;
  display: inline-block;
  padding-right: 16px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
  line-height: 32px;
}
.ant-steps-item-title::after {
  position: absolute;
  top: 16px;
  left: 100%;
  display: block;
  width: 9999px;
  height: 1px;
  background: #f0f0f0;
  content: '';
}
.ant-steps-item-subtitle {
  display: inline;
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.45);
  font-weight: normal;
  font-size: 14px;
}
.ant-steps-item-description {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.ant-steps-item-wait .ant-steps-item-icon {
  background-color: #fff;
  border-color: rgba(0, 0, 0, 0.25);
}
.ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon {
  color: rgba(0, 0, 0, 0.25);
}
.ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
  background: rgba(0, 0, 0, 0.25);
}
.ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title {
  color: rgba(0, 0, 0, 0.45);
}
.ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
  background-color: #f0f0f0;
}
.ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description {
  color: rgba(0, 0, 0, 0.45);
}
.ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-tail::after {
  background-color: #f0f0f0;
}
.ant-steps-item-process .ant-steps-item-icon {
  background-color: #fff;
  border-color: #913ef0;
}
.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon {
  color: #913ef0;
}
.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
  background: #913ef0;
}
.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title {
  color: rgba(0, 0, 0, 0.85);
}
.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
  background-color: #f0f0f0;
}
.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description {
  color: rgba(0, 0, 0, 0.85);
}
.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-tail::after {
  background-color: #f0f0f0;
}
.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-icon {
  background: #913ef0;
}
.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-icon .ant-steps-icon {
  color: #fff;
}
.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-title {
  font-weight: 500;
}
.ant-steps-item-finish .ant-steps-item-icon {
  background-color: #fff;
  border-color: #913ef0;
}
.ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon {
  color: #913ef0;
}
.ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
  background: #913ef0;
}
.ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title {
  color: rgba(0, 0, 0, 0.85);
}
.ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
  background-color: #913ef0;
}
.ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description {
  color: rgba(0, 0, 0, 0.45);
}
.ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-tail::after {
  background-color: #913ef0;
}
.ant-steps-item-error .ant-steps-item-icon {
  background-color: #fff;
  border-color: #E54963;
}
.ant-steps-item-error .ant-steps-item-icon > .ant-steps-icon {
  color: #E54963;
}
.ant-steps-item-error .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
  background: #E54963;
}
.ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title {
  color: #E54963;
}
.ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
  background-color: #f0f0f0;
}
.ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description {
  color: #E54963;
}
.ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-tail::after {
  background-color: #f0f0f0;
}
.ant-steps-item.ant-steps-next-error .ant-steps-item-title::after {
  background: #E54963;
}
.ant-steps-item-disabled {
  cursor: not-allowed;
}
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] {
  cursor: pointer;
}
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] .ant-steps-item-title,
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] .ant-steps-item-subtitle,
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] .ant-steps-item-description,
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] .ant-steps-item-icon .ant-steps-icon {
  transition: color 0.3s;
}
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-title,
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-subtitle,
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-description {
  color: #913ef0;
}
.ant-steps .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process) > .ant-steps-item-container[role='button']:hover .ant-steps-item-icon {
  border-color: #913ef0;
}
.ant-steps .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process) > .ant-steps-item-container[role='button']:hover .ant-steps-item-icon .ant-steps-icon {
  color: #913ef0;
}
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item {
  padding-left: 16px;
  white-space: nowrap;
}
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:first-child {
  padding-left: 0;
}
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child .ant-steps-item-title {
  padding-right: 0;
}
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item-tail {
  display: none;
}
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item-description {
  max-width: 140px;
  white-space: normal;
}
.ant-steps-item-custom > .ant-steps-item-container > .ant-steps-item-icon {
  height: auto;
  background: none;
  border: 0;
}
.ant-steps-item-custom > .ant-steps-item-container > .ant-steps-item-icon > .ant-steps-icon {
  top: 0px;
  left: 0.5px;
  width: 32px;
  height: 32px;
  font-size: 24px;
  line-height: 32px;
}
.ant-steps-item-custom.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon {
  color: #913ef0;
}
.ant-steps:not(.ant-steps-vertical) .ant-steps-item-custom .ant-steps-item-icon {
  width: auto;
  background: none;
}
.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item {
  padding-left: 12px;
}
.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:first-child {
  padding-left: 0;
}
.ant-steps-small .ant-steps-item-icon {
  width: 24px;
  height: 24px;
  margin: 0 8px 0 0;
  font-size: 11px;
  line-height: 24px;
  text-align: center;
  border-radius: 24px;
}
.ant-steps-small .ant-steps-item-title {
  padding-right: 12px;
  font-size: 14px;
  line-height: 24px;
}
.ant-steps-small .ant-steps-item-title::after {
  top: 12px;
}
.ant-steps-small .ant-steps-item-description {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.ant-steps-small .ant-steps-item-tail {
  top: 8px;
}
.ant-steps-small .ant-steps-item-custom .ant-steps-item-icon {
  width: inherit;
  height: inherit;
  line-height: inherit;
  background: none;
  border: 0;
  border-radius: 0;
}
.ant-steps-small .ant-steps-item-custom .ant-steps-item-icon > .ant-steps-icon {
  font-size: 24px;
  line-height: 24px;
  transform: none;
}
.ant-steps-vertical {
  display: flex;
  flex-direction: column;
}
.ant-steps-vertical > .ant-steps-item {
  display: block;
  flex: 1 0 auto;
  padding-left: 0;
  overflow: visible;
}
.ant-steps-vertical > .ant-steps-item .ant-steps-item-icon {
  float: left;
  margin-right: 16px;
}
.ant-steps-vertical > .ant-steps-item .ant-steps-item-content {
  display: block;
  min-height: 48px;
  overflow: hidden;
}
.ant-steps-vertical > .ant-steps-item .ant-steps-item-title {
  line-height: 32px;
}
.ant-steps-vertical > .ant-steps-item .ant-steps-item-description {
  padding-bottom: 12px;
}
.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
  position: absolute;
  top: 0;
  left: 15px;
  width: 1px;
  height: 100%;
  padding: 38px 0 6px;
}
.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail::after {
  width: 1px;
  height: 100%;
}
.ant-steps-vertical > .ant-steps-item:not(:last-child) > .ant-steps-item-container > .ant-steps-item-tail {
  display: block;
}
.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
  display: none;
}
.ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-tail {
  position: absolute;
  top: 0;
  left: 11px;
  padding: 30px 0 6px;
}
.ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-title {
  line-height: 24px;
}
.ant-steps-label-vertical .ant-steps-item {
  overflow: visible;
}
.ant-steps-label-vertical .ant-steps-item-tail {
  margin-left: 58px;
  padding: 3.5px 24px;
}
.ant-steps-label-vertical .ant-steps-item-content {
  display: block;
  width: 116px;
  margin-top: 8px;
  text-align: center;
}
.ant-steps-label-vertical .ant-steps-item-icon {
  display: inline-block;
  margin-left: 42px;
}
.ant-steps-label-vertical .ant-steps-item-title {
  padding-right: 0;
  padding-left: 0;
}
.ant-steps-label-vertical .ant-steps-item-title::after {
  display: none;
}
.ant-steps-label-vertical .ant-steps-item-subtitle {
  display: block;
  margin-bottom: 4px;
  margin-left: 0;
  line-height: 1.6;
}
.ant-steps-label-vertical.ant-steps-small:not(.ant-steps-dot) .ant-steps-item-icon {
  margin-left: 46px;
}
.ant-steps-dot .ant-steps-item-title,
.ant-steps-dot.ant-steps-small .ant-steps-item-title {
  line-height: 1.6;
}
.ant-steps-dot .ant-steps-item-tail,
.ant-steps-dot.ant-steps-small .ant-steps-item-tail {
  top: 2px;
  width: 100%;
  margin: 0 0 0 70px;
  padding: 0;
}
.ant-steps-dot .ant-steps-item-tail::after,
.ant-steps-dot.ant-steps-small .ant-steps-item-tail::after {
  width: calc(100% - 20px);
  height: 3px;
  margin-left: 12px;
}
.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot,
.ant-steps-dot.ant-steps-small .ant-steps-item:first-child .ant-steps-icon-dot {
  left: 2px;
}
.ant-steps-dot .ant-steps-item-icon,
.ant-steps-dot.ant-steps-small .ant-steps-item-icon {
  width: 8px;
  height: 8px;
  margin-left: 67px;
  padding-right: 0;
  line-height: 8px;
  background: transparent;
  border: 0;
}
.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot,
.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  transition: all 0.3s;
  /* expand hover area */
}
.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot::after,
.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot::after {
  position: absolute;
  top: -12px;
  left: -26px;
  width: 60px;
  height: 32px;
  background: rgba(0, 0, 0, 0.001);
  content: '';
}
.ant-steps-dot .ant-steps-item-content,
.ant-steps-dot.ant-steps-small .ant-steps-item-content {
  width: 140px;
}
.ant-steps-dot .ant-steps-item-process .ant-steps-item-icon,
.ant-steps-dot.ant-steps-small .ant-steps-item-process .ant-steps-item-icon {
  position: relative;
  top: -1px;
  width: 10px;
  height: 10px;
  line-height: 10px;
  background: none;
}
.ant-steps-dot .ant-steps-item-process .ant-steps-icon:first-child .ant-steps-icon-dot,
.ant-steps-dot.ant-steps-small .ant-steps-item-process .ant-steps-icon:first-child .ant-steps-icon-dot {
  left: 0;
}
.ant-steps-vertical.ant-steps-dot .ant-steps-item-icon {
  margin-top: 13px;
  margin-left: 0;
  background: none;
}
.ant-steps-vertical.ant-steps-dot .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
  top: 6.5px;
  left: -9px;
  margin: 0;
  padding: 22px 0 4px;
}
.ant-steps-vertical.ant-steps-dot.ant-steps-small .ant-steps-item-icon {
  margin-top: 10px;
}
.ant-steps-vertical.ant-steps-dot.ant-steps-small .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
  top: 3.5px;
}
.ant-steps-vertical.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot {
  left: 0;
}
.ant-steps-vertical.ant-steps-dot .ant-steps-item-content {
  width: inherit;
}
.ant-steps-vertical.ant-steps-dot .ant-steps-item-process .ant-steps-item-container .ant-steps-item-icon .ant-steps-icon-dot {
  top: -1px;
  left: -1px;
}
.ant-steps-navigation {
  padding-top: 12px;
}
.ant-steps-navigation.ant-steps-small .ant-steps-item-container {
  margin-left: -12px;
}
.ant-steps-navigation .ant-steps-item {
  overflow: visible;
  text-align: center;
}
.ant-steps-navigation .ant-steps-item-container {
  display: inline-block;
  height: 100%;
  margin-left: -16px;
  padding-bottom: 12px;
  text-align: left;
  transition: opacity 0.3s;
}
.ant-steps-navigation .ant-steps-item-container .ant-steps-item-content {
  max-width: auto;
}
.ant-steps-navigation .ant-steps-item-container .ant-steps-item-title {
  max-width: 100%;
  padding-right: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-steps-navigation .ant-steps-item-container .ant-steps-item-title::after {
  display: none;
}
.ant-steps-navigation .ant-steps-item:not(.ant-steps-item-active) .ant-steps-item-container[role='button'] {
  cursor: pointer;
}
.ant-steps-navigation .ant-steps-item:not(.ant-steps-item-active) .ant-steps-item-container[role='button']:hover {
  opacity: 0.85;
}
.ant-steps-navigation .ant-steps-item:last-child {
  flex: 1;
}
.ant-steps-navigation .ant-steps-item:last-child::after {
  display: none;
}
.ant-steps-navigation .ant-steps-item::after {
  position: absolute;
  top: 50%;
  left: 100%;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-top: -14px;
  margin-left: -2px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-bottom: none;
  border-left: none;
  transform: rotate(45deg);
  content: '';
}
.ant-steps-navigation .ant-steps-item::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: inline-block;
  width: 0;
  height: 2px;
  background-color: #913ef0;
  transition: width 0.3s, left 0.3s;
  transition-timing-function: ease-out;
  content: '';
}
.ant-steps-navigation .ant-steps-item.ant-steps-item-active::before {
  left: 0;
  width: 100%;
}
.ant-steps-navigation.ant-steps-vertical > .ant-steps-item {
  margin-right: 0 !important;
}
.ant-steps-navigation.ant-steps-vertical > .ant-steps-item::before {
  display: none;
}
.ant-steps-navigation.ant-steps-vertical > .ant-steps-item.ant-steps-item-active::before {
  top: 0;
  right: 0;
  left: unset;
  display: block;
  width: 3px;
  height: calc(100% - 24px);
}
.ant-steps-navigation.ant-steps-vertical > .ant-steps-item::after {
  position: relative;
  top: -2px;
  left: 50%;
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 8px;
  text-align: center;
  transform: rotate(135deg);
}
.ant-steps-navigation.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
  visibility: hidden;
}
.ant-steps-navigation.ant-steps-horizontal > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
  visibility: hidden;
}
.ant-steps-rtl {
  direction: rtl;
}
.ant-steps.ant-steps-rtl .ant-steps-item-icon {
  margin-right: 0;
  margin-left: 8px;
}
.ant-steps-rtl .ant-steps-item-tail {
  right: 0;
  left: auto;
}
.ant-steps-rtl .ant-steps-item-title {
  padding-right: 0;
  padding-left: 16px;
}
.ant-steps-rtl .ant-steps-item-title .ant-steps-item-subtitle {
  float: left;
  margin-right: 8px;
  margin-left: 0;
}
.ant-steps-rtl .ant-steps-item-title::after {
  right: 100%;
  left: auto;
}
.ant-steps-rtl.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item {
  padding-right: 16px;
  padding-left: 0;
}
.ant-steps-rtl.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:first-child {
  padding-right: 0;
}
.ant-steps-rtl.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child .ant-steps-item-title {
  padding-left: 0;
}
.ant-steps-rtl .ant-steps-item-custom .ant-steps-item-icon > .ant-steps-icon {
  right: 0.5px;
  left: auto;
}
.ant-steps-rtl.ant-steps-navigation.ant-steps-small .ant-steps-item-container {
  margin-right: -12px;
  margin-left: 0;
}
.ant-steps-rtl.ant-steps-navigation .ant-steps-item-container {
  margin-right: -16px;
  margin-left: 0;
  text-align: right;
}
.ant-steps-rtl.ant-steps-navigation .ant-steps-item-container .ant-steps-item-title {
  padding-left: 0;
}
.ant-steps-rtl.ant-steps-navigation .ant-steps-item::after {
  right: 100%;
  left: auto;
  margin-right: -2px;
  margin-left: 0;
  transform: rotate(225deg);
}
.ant-steps-rtl.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item {
  padding-right: 12px;
  padding-left: 0;
}
.ant-steps-rtl.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:first-child {
  padding-right: 0;
}
.ant-steps-rtl.ant-steps-small .ant-steps-item-title {
  padding-right: 0;
  padding-left: 12px;
}
.ant-steps-rtl.ant-steps-vertical > .ant-steps-item .ant-steps-item-icon {
  float: right;
  margin-right: 0;
  margin-left: 16px;
}
.ant-steps-rtl.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
  right: 16px;
  left: auto;
}
.ant-steps-rtl.ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-tail {
  right: 12px;
  left: auto;
}
.ant-steps-rtl.ant-steps-label-vertical .ant-steps-item-title {
  padding-left: 0;
}
.ant-steps-rtl.ant-steps-dot .ant-steps-item-tail,
.ant-steps-rtl.ant-steps-dot.ant-steps-small .ant-steps-item-tail {
  margin: 0 70px 0 0;
}
.ant-steps-rtl.ant-steps-dot .ant-steps-item-tail::after,
.ant-steps-rtl.ant-steps-dot.ant-steps-small .ant-steps-item-tail::after {
  margin-right: 12px;
  margin-left: 0;
}
.ant-steps-rtl.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot,
.ant-steps-rtl.ant-steps-dot.ant-steps-small .ant-steps-item:first-child .ant-steps-icon-dot {
  right: 2px;
  left: auto;
}
.ant-steps-rtl.ant-steps-dot .ant-steps-item-icon,
.ant-steps-rtl.ant-steps-dot.ant-steps-small .ant-steps-item-icon {
  margin-right: 67px;
  margin-left: 0;
}
.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot,
.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot {
  /* expand hover area */
}
.ant-steps-rtl.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot,
.ant-steps-rtl.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot {
  float: right;
}
.ant-steps-rtl.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot::after,
.ant-steps-rtl.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot::after {
  right: -26px;
  left: auto;
}
.ant-steps-rtl.ant-steps-vertical.ant-steps-dot .ant-steps-item-icon {
  margin-right: 0;
  margin-left: 16px;
}
.ant-steps-rtl.ant-steps-vertical.ant-steps-dot .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
  right: -9px;
  left: auto;
}
.ant-steps-rtl.ant-steps-vertical.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot {
  right: 0;
  left: auto;
}
.ant-steps-rtl.ant-steps-vertical.ant-steps-dot .ant-steps-item-process .ant-steps-icon-dot {
  right: -2px;
  left: auto;
}
.ant-steps-rtl.ant-steps-with-progress.ant-steps-vertical > .ant-steps-item {
  padding-right: 4px;
}
.ant-steps-rtl.ant-steps-with-progress.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
  right: 19px;
}
.ant-steps-rtl.ant-steps-with-progress.ant-steps-small.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
  right: 15px;
}
.ant-steps-rtl.ant-steps-with-progress.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child {
  padding-right: 4px;
  padding-left: 0;
}
.ant-steps-rtl.ant-steps-with-progress.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child.ant-steps-item-active {
  padding-right: 4px;
}
.ant-steps-with-progress .ant-steps-item {
  padding-top: 4px;
}
.ant-steps-with-progress .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
  top: 4px;
  left: 19px;
}
.ant-steps-with-progress.ant-steps-horizontal .ant-steps-item:first-child,
.ant-steps-with-progress.ant-steps-small.ant-steps-horizontal .ant-steps-item:first-child {
  padding-bottom: 4px;
  padding-left: 4px;
}
.ant-steps-with-progress.ant-steps-small > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
  left: 15px;
}
.ant-steps-with-progress.ant-steps-vertical .ant-steps-item {
  padding-left: 4px;
}
.ant-steps-with-progress.ant-steps-label-vertical .ant-steps-item .ant-steps-item-tail {
  top: 14px !important;
}
.ant-steps-with-progress .ant-steps-item-icon {
  position: relative;
}
.ant-steps-with-progress .ant-steps-item-icon .ant-progress {
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
}
.ant-switch {
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  min-width: 44px;
  height: 22px;
  line-height: 22px;
  vertical-align: middle;
  background-color: rgba(0, 0, 0, 0.25);
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-switch:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.ant-switch-checked:focus {
  box-shadow: 0 0 0 2px #f9f0ff;
}
.ant-switch:focus:hover {
  box-shadow: none;
}
.ant-switch-checked {
  background-color: #913ef0;
}
.ant-switch-loading,
.ant-switch-disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.ant-switch-loading *,
.ant-switch-disabled * {
  box-shadow: none;
  cursor: not-allowed;
}
.ant-switch-inner {
  display: block;
  margin: 0 7px 0 25px;
  color: #fff;
  font-size: 11px;
  transition: margin 0.2s;
}
.ant-switch-checked .ant-switch-inner {
  margin: 0 25px 0 7px;
}
.ant-switch-handle {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  transition: all 0.2s ease-in-out;
}
.ant-switch-handle::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 4px 0 rgba(0, 35, 11, 0.2);
  transition: all 0.2s ease-in-out;
  content: '';
}
.ant-switch-checked .ant-switch-handle {
  left: calc(100% - 18px - 2px);
}
.ant-switch:not(.ant-switch-disabled):active .ant-switch-handle::before {
  right: -30%;
  left: 0;
}
.ant-switch:not(.ant-switch-disabled):active.ant-switch-checked .ant-switch-handle::before {
  right: 0;
  left: -30%;
}
.ant-switch-loading-icon.anticon {
  position: relative;
  top: 2px;
  color: rgba(0, 0, 0, 0.65);
  vertical-align: top;
}
.ant-switch-checked .ant-switch-loading-icon {
  color: #913ef0;
}
.ant-switch-small {
  min-width: 28px;
  height: 16px;
  line-height: 16px;
}
.ant-switch-small .ant-switch-inner {
  margin: 0 5px 0 18px;
  font-size: 11px;
}
.ant-switch-small .ant-switch-handle {
  width: 12px;
  height: 12px;
}
.ant-switch-small .ant-switch-loading-icon {
  top: 1.5px;
  font-size: 9px;
}
.ant-switch-small.ant-switch-checked .ant-switch-inner {
  margin: 0 18px 0 5px;
}
.ant-switch-small.ant-switch-checked .ant-switch-handle {
  left: calc(100% - 12px - 2px);
}
.ant-switch-rtl {
  direction: rtl;
}
.ant-switch-rtl .ant-switch-inner {
  margin: 0 25px 0 7px;
}
.ant-switch-rtl .ant-switch-handle {
  right: 2px;
  left: auto;
}
.ant-switch-rtl:not(.ant-switch-rtl-disabled):active .ant-switch-handle::before {
  right: 0;
  left: -30%;
}
.ant-switch-rtl:not(.ant-switch-rtl-disabled):active.ant-switch-checked .ant-switch-handle::before {
  right: -30%;
  left: 0;
}
.ant-switch-rtl.ant-switch-checked .ant-switch-inner {
  margin: 0 7px 0 25px;
}
.ant-switch-rtl.ant-switch-checked .ant-switch-handle {
  right: calc(100% - 18px - 2px);
}
.ant-switch-rtl.ant-switch-small.ant-switch-checked .ant-switch-handle {
  right: calc(100% - 12px - 2px);
}
.ant-table.ant-table-middle {
  font-size: 14px;
}
.ant-table.ant-table-middle .ant-table-title,
.ant-table.ant-table-middle .ant-table-footer,
.ant-table.ant-table-middle .ant-table-thead > tr > th,
.ant-table.ant-table-middle .ant-table-tbody > tr > td,
.ant-table.ant-table-middle tfoot > tr > th,
.ant-table.ant-table-middle tfoot > tr > td {
  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 40px;
}
.ant-table.ant-table-middle .ant-table-selection-column {
  padding-inline-start: 2px;
}
.ant-table.ant-table-small {
  font-size: 14px;
}
.ant-table.ant-table-small .ant-table-title,
.ant-table.ant-table-small .ant-table-footer,
.ant-table.ant-table-small .ant-table-thead > tr > th,
.ant-table.ant-table-small .ant-table-tbody > tr > td,
.ant-table.ant-table-small tfoot > tr > th,
.ant-table.ant-table-small tfoot > tr > td {
  padding: 8px 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 -8px;
}
.ant-table.ant-table-small .ant-table-tbody .ant-table-wrapper:only-child .ant-table {
  margin: -8px -8px -8px 40px;
}
.ant-table.ant-table-small .ant-table-selection-column {
  padding-inline-start: 2px;
}
.ant-table.ant-table-bordered > .ant-table-title {
  border: 1px solid #f0f0f0;
  border-bottom: 0;
}
.ant-table.ant-table-bordered > .ant-table-container {
  border-left: 1px solid #f0f0f0;
}
.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 > thead > 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-summary > 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-header > table > tbody > tr > td,
.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-summary > table > tbody > 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-header > table > tfoot > tr > th,
.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-summary > table > tfoot > tr > th,
.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-header > table > tfoot > 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-summary > table > tfoot > tr > td {
  border-right: 1px solid #f0f0f0;
}
.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-body > 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-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-body > 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-content > table > thead > 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-body > table > thead > 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,
.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-header > table > tbody > tr > .ant-table-cell-fix-right-first::after,
.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-summary > 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-header > table > tfoot > 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-summary > table > tfoot > tr > .ant-table-cell-fix-right-first::after {
  border-right: 1px solid #f0f0f0;
}
.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-body > 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-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-body > 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;
  bottom: 0;
  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-content > table > tbody > tr > td > .ant-table-expanded-row-fixed,
.ant-table.ant-table-bordered.ant-table-middle > .ant-table-container > .ant-table-body > 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-content > table > tbody > tr > td > .ant-table-expanded-row-fixed,
.ant-table.ant-table-bordered.ant-table-small > .ant-table-container > .ant-table-body > table > tbody > tr > td > .ant-table-expanded-row-fixed {
  margin: -8px -9px;
}
.ant-table.ant-table-bordered > .ant-table-footer {
  border: 1px solid #f0f0f0;
  border-top: 0;
}
.ant-table-cell .ant-table-container:first-child {
  border-top: 0;
}
.ant-table-cell-scrollbar:not([rowspan]) {
  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-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.6;
  list-style: none;
  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-thead > tr > th,
.ant-table-tbody > tr > td,
.ant-table tfoot > tr > th,
.ant-table tfoot > tr > td {
  position: relative;
  padding: 16px 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 16px;
}
.ant-table-footer {
  padding: 16px 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;
  transition: background 0.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);
  transform: translateY(-50%);
  transition: background-color 0.3s;
  content: '';
}
.ant-table-thead > tr:not(:last-child) > th[colspan] {
  border-bottom: 0;
}
.ant-table-tbody > tr > td {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.3s;
}
.ant-table-tbody > tr > td > .ant-table-wrapper:only-child .ant-table,
.ant-table-tbody > tr > td > .ant-table-expanded-row-fixed > .ant-table-wrapper:only-child .ant-table {
  margin: -16px -16px -16px 32px;
}
.ant-table-tbody > tr > td > .ant-table-wrapper:only-child .ant-table-tbody > tr:last-child > td,
.ant-table-tbody > tr > td > .ant-table-expanded-row-fixed > .ant-table-wrapper:only-child .ant-table-tbody > tr:last-child > td {
  border-bottom: 0;
}
.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-expanded-row-fixed > .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,
.ant-table-tbody > tr > td > .ant-table-expanded-row-fixed > .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,
.ant-table-tbody > tr > td.ant-table-cell-row-hover {
  background: #fafafa;
}
.ant-table-tbody > tr.ant-table-row-selected > td {
  background: #f9f0ff;
  border-color: rgba(0, 0, 0, 0.03);
}
.ant-table-tbody > tr.ant-table-row-selected:hover > td {
  background: #f5e6ff;
}
.ant-table-summary {
  position: relative;
  z-index: 2;
  background: #fff;
}
div.ant-table-summary {
  box-shadow: 0 -1px 0 #f0f0f0;
}
.ant-table-summary > tr > th,
.ant-table-summary > tr > td {
  border-bottom: 1px solid #f0f0f0;
}
.ant-table-pagination.ant-pagination {
  margin: 16px 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 {
  outline: none;
  cursor: pointer;
  transition: all 0.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:focus-visible {
  color: #913ef0;
}
.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 {
  background: #f5f5f5;
}
.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;
}
.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 {
  margin-left: 4px;
  color: #bfbfbf;
  font-size: 0;
  transition: color 0.3s;
}
.ant-table-column-sorter-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.ant-table-column-sorter-up,
.ant-table-column-sorter-down {
  font-size: 11px;
}
.ant-table-column-sorter-up.active,
.ant-table-column-sorter-down.active {
  color: #913ef0;
}
.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: 11px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.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: #913ef0;
}
.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.6;
  list-style: none;
  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 .ant-dropdown-menu:empty::after {
  display: block;
  padding: 8px 0;
  color: rgba(0, 0, 0, 0.25);
  font-size: 11px;
  text-align: center;
  content: 'Not Found';
}
.ant-table-filter-dropdown-tree {
  padding: 8px 8px 0;
}
.ant-table-filter-dropdown-tree .ant-tree-treenode .ant-tree-node-content-wrapper:hover {
  background-color: #f5f5f5;
}
.ant-table-filter-dropdown-tree .ant-tree-treenode-checkbox-checked .ant-tree-node-content-wrapper,
.ant-table-filter-dropdown-tree .ant-tree-treenode-checkbox-checked .ant-tree-node-content-wrapper:hover {
  background-color: #f5e6ff;
}
.ant-table-filter-dropdown-search {
  padding: 8px;
  border-bottom: 1px #f0f0f0 solid;
}
.ant-table-filter-dropdown-search-input input {
  min-width: 140px;
}
.ant-table-filter-dropdown-search-input .anticon {
  color: rgba(0, 0, 0, 0.25);
}
.ant-table-filter-dropdown-checkall {
  width: 100%;
  margin-bottom: 4px;
  margin-left: 4px;
}
.ant-table-filter-dropdown-submenu > ul {
  max-height: calc(100vh - 130px);
  overflow-x: hidden;
  overflow-y: auto;
}
.ant-table-filter-dropdown .ant-checkbox-wrapper + span,
.ant-table-filter-dropdown-submenu .ant-checkbox-wrapper + span {
  padding-left: 8px;
}
.ant-table-filter-dropdown-btns {
  display: flex;
  justify-content: space-between;
  padding: 7px 8px;
  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 th.ant-table-selection-column,
table tr td.ant-table-selection-column {
  padding-right: 8px;
  padding-left: 8px;
  text-align: center;
}
table tr th.ant-table-selection-column .ant-radio-wrapper,
table tr td.ant-table-selection-column .ant-radio-wrapper {
  margin-right: 0;
}
table tr th.ant-table-selection-column.ant-table-cell-fix-left {
  z-index: 3;
}
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;
  transition: all 0.3s;
  margin-inline-start: 100%;
  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-expand-icon-cell .ant-table-row-expand-icon {
  display: inline-flex;
  float: none;
  vertical-align: sub;
}
.ant-table-row-indent {
  float: left;
  height: 1px;
}
.ant-table-row-expand-icon {
  color: black;
  outline: none;
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
  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;
  transform: scale(0.94117647);
  transition: all 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-table-row-expand-icon:focus-visible,
.ant-table-row-expand-icon:hover {
  color: #0d0d0d;
}
.ant-table-row-expand-icon:active {
  color: #000000;
}
.ant-table-row-expand-icon:focus,
.ant-table-row-expand-icon:hover,
.ant-table-row-expand-icon:active {
  border-color: currentcolor;
}
.ant-table-row-expand-icon::before,
.ant-table-row-expand-icon::after {
  position: absolute;
  background: currentcolor;
  transition: transform 0.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;
  transform: rotate(90deg);
}
.ant-table-row-expand-icon-collapsed::before {
  transform: rotate(-180deg);
}
.ant-table-row-expand-icon-collapsed::after {
  transform: rotate(0deg);
}
.ant-table-row-expand-icon-spaced {
  background: transparent;
  border: 0;
  visibility: hidden;
}
.ant-table-row-expand-icon-spaced::before,
.ant-table-row-expand-icon-spaced::after {
  display: none;
  content: none;
}
.ant-table-row-indent + .ant-table-row-expand-icon {
  margin-top: 2.7px;
  margin-right: 8px;
}
tr.ant-table-expanded-row > td,
tr.ant-table-expanded-row:hover > 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 -16px;
  padding: 16px 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: 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;
  transform: translateX(100%);
  transition: box-shadow 0.3s;
  content: '';
  pointer-events: none;
}
.ant-table-cell-fix-left-all::after {
  display: 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;
  transform: translateX(-100%);
  transition: box-shadow 0.3s;
  content: '';
  pointer-events: none;
}
.ant-table .ant-table-container::before,
.ant-table .ant-table-container::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: calc(calc(2 + 1) + 1);
  width: 30px;
  transition: box-shadow 0.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: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-first::after,
.ant-table-ping-left .ant-table-cell-fix-left-last::after {
  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: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-ping-right .ant-table-cell-fix-right-first::after,
.ant-table-ping-right .ant-table-cell-fix-right-last::after {
  box-shadow: inset -10px 0 8px -8px rgba(0, 0, 0, 0.15);
}
.ant-table-sticky-holder {
  position: sticky;
  z-index: calc(2 + 1);
  background: #fff;
}
.ant-table-sticky-scroll {
  position: sticky;
  bottom: 0;
  z-index: calc(2 + 1);
  display: flex;
  align-items: center;
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
  opacity: 0.6;
}
.ant-table-sticky-scroll:hover {
  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:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.ant-table-sticky-scroll-bar-active {
  background-color: rgba(0, 0, 0, 0.8);
}
@media all and (-ms-high-contrast: none) {
  .ant-table-ping-left .ant-table-cell-fix-left-last::after {
    box-shadow: none !important;
  }
  .ant-table-ping-right .ant-table-cell-fix-right-first::after {
    box-shadow: none !important;
  }
}
.ant-table {
  /* title + table */
  /* table */
  /* table + footer */
}
.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 {
  border-radius: 0;
}
.ant-table-title + .ant-table-container table > thead > tr:first-child th:first-child {
  border-radius: 0;
}
.ant-table-title + .ant-table-container table > thead > tr:first-child th:last-child {
  border-radius: 0;
}
.ant-table-container {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.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-wrapper-rtl {
  direction: rtl;
}
.ant-table-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:not(:last-child):not(.ant-table-selection-column):not(.ant-table-row-expand-icon-cell):not([colspan])::before {
  right: auto;
  left: 0;
}
.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 32px -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: 4px;
  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 {
  margin: -4px 4px -4px -8px;
}
.ant-dropdown-rtl .ant-table-filter-dropdown .ant-checkbox-wrapper + span,
.ant-dropdown-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-menu-submenu-rtl.ant-table-filter-dropdown-submenu .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-indent {
  float: right;
}
.ant-table-wrapper-rtl .ant-table-row-expand-icon {
  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 {
  transform: rotate(-90deg);
}
.ant-table-wrapper-rtl .ant-table-row-expand-icon-collapsed::before {
  transform: rotate(180deg);
}
.ant-table-wrapper-rtl .ant-table-row-expand-icon-collapsed::after {
  transform: rotate(0deg);
}
.ant-tabs-small > .ant-tabs-nav .ant-tabs-tab {
  padding: 8px 0;
  font-size: 14px;
}
.ant-tabs-large > .ant-tabs-nav .ant-tabs-tab {
  padding: 16px 0;
  font-size: 16px;
}
.ant-tabs-card.ant-tabs-small > .ant-tabs-nav .ant-tabs-tab {
  padding: 6px 16px;
}
.ant-tabs-card.ant-tabs-large > .ant-tabs-nav .ant-tabs-tab {
  padding: 7px 16px 6px;
}
.ant-tabs-rtl {
  direction: rtl;
}
.ant-tabs-rtl .ant-tabs-nav .ant-tabs-tab {
  margin: 0 0 0 32px;
}
.ant-tabs-rtl .ant-tabs-nav .ant-tabs-tab:last-of-type {
  margin-left: 0;
}
.ant-tabs-rtl .ant-tabs-nav .ant-tabs-tab .anticon {
  margin-right: 0;
  margin-left: 12px;
}
.ant-tabs-rtl .ant-tabs-nav .ant-tabs-tab .ant-tabs-tab-remove {
  margin-right: 8px;
  margin-left: -4px;
}
.ant-tabs-rtl .ant-tabs-nav .ant-tabs-tab .ant-tabs-tab-remove .anticon {
  margin: 0;
}
.ant-tabs-rtl.ant-tabs-left > .ant-tabs-nav {
  order: 1;
}
.ant-tabs-rtl.ant-tabs-left > .ant-tabs-content-holder {
  order: 0;
}
.ant-tabs-rtl.ant-tabs-right > .ant-tabs-nav {
  order: 0;
}
.ant-tabs-rtl.ant-tabs-right > .ant-tabs-content-holder {
  order: 1;
}
.ant-tabs-rtl.ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
.ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
.ant-tabs-rtl.ant-tabs-card.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
.ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab {
  margin-right: 2px;
  margin-left: 0;
}
.ant-tabs-rtl.ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-add,
.ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-nav-add,
.ant-tabs-rtl.ant-tabs-card.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-nav-add,
.ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-nav-add {
  margin-right: 2px;
  margin-left: 0;
}
.ant-tabs-dropdown-rtl {
  direction: rtl;
}
.ant-tabs-dropdown-rtl .ant-tabs-dropdown-menu-item {
  text-align: right;
}
.ant-tabs-top,
.ant-tabs-bottom {
  flex-direction: column;
}
.ant-tabs-top > .ant-tabs-nav,
.ant-tabs-bottom > .ant-tabs-nav,
.ant-tabs-top > div > .ant-tabs-nav,
.ant-tabs-bottom > div > .ant-tabs-nav {
  margin: 0 0 16px 0;
}
.ant-tabs-top > .ant-tabs-nav::before,
.ant-tabs-bottom > .ant-tabs-nav::before,
.ant-tabs-top > div > .ant-tabs-nav::before,
.ant-tabs-bottom > div > .ant-tabs-nav::before {
  position: absolute;
  right: 0;
  left: 0;
  border-bottom: 1px solid #f0f0f0;
  content: '';
}
.ant-tabs-top > .ant-tabs-nav .ant-tabs-ink-bar,
.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-ink-bar,
.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-ink-bar,
.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-ink-bar {
  height: 2px;
}
.ant-tabs-top > .ant-tabs-nav .ant-tabs-ink-bar-animated,
.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-ink-bar-animated,
.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-ink-bar-animated,
.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-ink-bar-animated {
  transition: width 0.3s, left 0.3s, right 0.3s;
}
.ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-wrap::before,
.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-nav-wrap::before,
.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-nav-wrap::before,
.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-nav-wrap::before,
.ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-wrap::after,
.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-nav-wrap::after,
.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-nav-wrap::after,
.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-nav-wrap::after {
  top: 0;
  bottom: 0;
  width: 30px;
}
.ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-wrap::before,
.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-nav-wrap::before,
.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-nav-wrap::before,
.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-nav-wrap::before {
  left: 0;
  box-shadow: inset 10px 0 8px -8px rgba(0, 0, 0, 0.08);
}
.ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-wrap::after,
.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-nav-wrap::after,
.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-nav-wrap::after,
.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-nav-wrap::after {
  right: 0;
  box-shadow: inset -10px 0 8px -8px rgba(0, 0, 0, 0.08);
}
.ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-left::before,
.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-left::before,
.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-left::before,
.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-left::before {
  opacity: 1;
}
.ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-right::after,
.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-right::after,
.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-right::after,
.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-right::after {
  opacity: 1;
}
.ant-tabs-top > .ant-tabs-nav::before,
.ant-tabs-top > div > .ant-tabs-nav::before {
  bottom: 0;
}
.ant-tabs-top > .ant-tabs-nav .ant-tabs-ink-bar,
.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-ink-bar {
  bottom: 0;
}
.ant-tabs-bottom > .ant-tabs-nav,
.ant-tabs-bottom > div > .ant-tabs-nav {
  order: 1;
  margin-top: 16px;
  margin-bottom: 0;
}
.ant-tabs-bottom > .ant-tabs-nav::before,
.ant-tabs-bottom > div > .ant-tabs-nav::before {
  top: 0;
}
.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-ink-bar,
.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-ink-bar {
  top: 0;
}
.ant-tabs-bottom > .ant-tabs-content-holder,
.ant-tabs-bottom > div > .ant-tabs-content-holder {
  order: 0;
}
.ant-tabs-left > .ant-tabs-nav,
.ant-tabs-right > .ant-tabs-nav,
.ant-tabs-left > div > .ant-tabs-nav,
.ant-tabs-right > div > .ant-tabs-nav {
  flex-direction: column;
  min-width: 50px;
}
.ant-tabs-left > .ant-tabs-nav .ant-tabs-tab,
.ant-tabs-right > .ant-tabs-nav .ant-tabs-tab,
.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-tab,
.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-tab {
  padding: 8px 24px;
  text-align: center;
}
.ant-tabs-left > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
.ant-tabs-right > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab {
  margin: 16px 0 0 0;
}
.ant-tabs-left > .ant-tabs-nav .ant-tabs-nav-wrap,
.ant-tabs-right > .ant-tabs-nav .ant-tabs-nav-wrap,
.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-nav-wrap,
.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-nav-wrap {
  flex-direction: column;
}
.ant-tabs-left > .ant-tabs-nav .ant-tabs-nav-wrap::before,
.ant-tabs-right > .ant-tabs-nav .ant-tabs-nav-wrap::before,
.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-nav-wrap::before,
.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-nav-wrap::before,
.ant-tabs-left > .ant-tabs-nav .ant-tabs-nav-wrap::after,
.ant-tabs-right > .ant-tabs-nav .ant-tabs-nav-wrap::after,
.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-nav-wrap::after,
.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-nav-wrap::after {
  right: 0;
  left: 0;
  height: 30px;
}
.ant-tabs-left > .ant-tabs-nav .ant-tabs-nav-wrap::before,
.ant-tabs-right > .ant-tabs-nav .ant-tabs-nav-wrap::before,
.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-nav-wrap::before,
.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-nav-wrap::before {
  top: 0;
  box-shadow: inset 0 10px 8px -8px rgba(0, 0, 0, 0.08);
}
.ant-tabs-left > .ant-tabs-nav .ant-tabs-nav-wrap::after,
.ant-tabs-right > .ant-tabs-nav .ant-tabs-nav-wrap::after,
.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-nav-wrap::after,
.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-nav-wrap::after {
  bottom: 0;
  box-shadow: inset 0 -10px 8px -8px rgba(0, 0, 0, 0.08);
}
.ant-tabs-left > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-top::before,
.ant-tabs-right > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-top::before,
.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-top::before,
.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-top::before {
  opacity: 1;
}
.ant-tabs-left > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-bottom::after,
.ant-tabs-right > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-bottom::after,
.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-bottom::after,
.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-nav-wrap.ant-tabs-nav-wrap-ping-bottom::after {
  opacity: 1;
}
.ant-tabs-left > .ant-tabs-nav .ant-tabs-ink-bar,
.ant-tabs-right > .ant-tabs-nav .ant-tabs-ink-bar,
.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-ink-bar,
.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-ink-bar {
  width: 2px;
}
.ant-tabs-left > .ant-tabs-nav .ant-tabs-ink-bar-animated,
.ant-tabs-right > .ant-tabs-nav .ant-tabs-ink-bar-animated,
.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-ink-bar-animated,
.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-ink-bar-animated {
  transition: height 0.3s, top 0.3s;
}
.ant-tabs-left > .ant-tabs-nav .ant-tabs-nav-list,
.ant-tabs-right > .ant-tabs-nav .ant-tabs-nav-list,
.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-nav-list,
.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-nav-list,
.ant-tabs-left > .ant-tabs-nav .ant-tabs-nav-operations,
.ant-tabs-right > .ant-tabs-nav .ant-tabs-nav-operations,
.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-nav-operations,
.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-nav-operations {
  flex: 1 0 auto;
  flex-direction: column;
}
.ant-tabs-left > .ant-tabs-nav .ant-tabs-ink-bar,
.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-ink-bar {
  right: 0;
}
.ant-tabs-left > .ant-tabs-content-holder,
.ant-tabs-left > div > .ant-tabs-content-holder {
  margin-left: -1px;
  border-left: 1px solid #f0f0f0;
}
.ant-tabs-left > .ant-tabs-content-holder > .ant-tabs-content > .ant-tabs-tabpane,
.ant-tabs-left > div > .ant-tabs-content-holder > .ant-tabs-content > .ant-tabs-tabpane {
  padding-left: 24px;
}
.ant-tabs-right > .ant-tabs-nav,
.ant-tabs-right > div > .ant-tabs-nav {
  order: 1;
}
.ant-tabs-right > .ant-tabs-nav .ant-tabs-ink-bar,
.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-ink-bar {
  left: 0;
}
.ant-tabs-right > .ant-tabs-content-holder,
.ant-tabs-right > div > .ant-tabs-content-holder {
  order: 0;
  margin-right: -1px;
  border-right: 1px solid #f0f0f0;
}
.ant-tabs-right > .ant-tabs-content-holder > .ant-tabs-content > .ant-tabs-tabpane,
.ant-tabs-right > div > .ant-tabs-content-holder > .ant-tabs-content > .ant-tabs-tabpane {
  padding-right: 24px;
}
.ant-tabs-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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
  display: block;
}
.ant-tabs-dropdown-hidden {
  display: none;
}
.ant-tabs-dropdown-menu {
  max-height: 200px;
  margin: 0;
  padding: 4px 0;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: left;
  list-style-type: none;
  background-color: #fff;
  background-clip: padding-box;
  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-tabs-dropdown-menu-item {
  display: flex;
  align-items: center;
  min-width: 120px;
  margin: 0;
  padding: 5px 12px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.85);
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-tabs-dropdown-menu-item > span {
  flex: 1;
  white-space: nowrap;
}
.ant-tabs-dropdown-menu-item-remove {
  flex: none;
  margin-left: 12px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 11px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.ant-tabs-dropdown-menu-item-remove:hover {
  color: #b36afc;
}
.ant-tabs-dropdown-menu-item:hover {
  background: #f5f5f5;
}
.ant-tabs-dropdown-menu-item-disabled,
.ant-tabs-dropdown-menu-item-disabled:hover {
  color: rgba(0, 0, 0, 0.25);
  background: transparent;
  cursor: not-allowed;
}
.ant-tabs-card > .ant-tabs-nav .ant-tabs-tab,
.ant-tabs-card > div > .ant-tabs-nav .ant-tabs-tab {
  margin: 0;
  padding: 8px 16px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-tabs-card > .ant-tabs-nav .ant-tabs-tab-active,
.ant-tabs-card > div > .ant-tabs-nav .ant-tabs-tab-active {
  color: #913ef0;
  background: #fff;
}
.ant-tabs-card > .ant-tabs-nav .ant-tabs-ink-bar,
.ant-tabs-card > div > .ant-tabs-nav .ant-tabs-ink-bar {
  visibility: hidden;
}
.ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
.ant-tabs-card.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
.ant-tabs-card.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
.ant-tabs-card.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab {
  margin-left: 2px;
}
.ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab,
.ant-tabs-card.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-tab {
  border-radius: 2px 2px 0 0;
}
.ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab-active,
.ant-tabs-card.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-tab-active {
  border-bottom-color: #fff;
}
.ant-tabs-card.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-tab,
.ant-tabs-card.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-tab {
  border-radius: 0 0 2px 2px;
}
.ant-tabs-card.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-tab-active,
.ant-tabs-card.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-tab-active {
  border-top-color: #fff;
}
.ant-tabs-card.ant-tabs-left > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
.ant-tabs-card.ant-tabs-right > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
.ant-tabs-card.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
.ant-tabs-card.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab {
  margin-top: 2px;
}
.ant-tabs-card.ant-tabs-left > .ant-tabs-nav .ant-tabs-tab,
.ant-tabs-card.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-tab {
  border-radius: 2px 0 0 2px;
}
.ant-tabs-card.ant-tabs-left > .ant-tabs-nav .ant-tabs-tab-active,
.ant-tabs-card.ant-tabs-left > div > .ant-tabs-nav .ant-tabs-tab-active {
  border-right-color: #fff;
}
.ant-tabs-card.ant-tabs-right > .ant-tabs-nav .ant-tabs-tab,
.ant-tabs-card.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-tab {
  border-radius: 0 2px 2px 0;
}
.ant-tabs-card.ant-tabs-right > .ant-tabs-nav .ant-tabs-tab-active,
.ant-tabs-card.ant-tabs-right > div > .ant-tabs-nav .ant-tabs-tab-active {
  border-left-color: #fff;
}
.ant-tabs {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  display: flex;
}
.ant-tabs > .ant-tabs-nav,
.ant-tabs > div > .ant-tabs-nav {
  position: relative;
  display: flex;
  flex: none;
  align-items: center;
}
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-wrap,
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-wrap {
  position: relative;
  display: inline-block;
  display: flex;
  flex: auto;
  align-self: stretch;
  overflow: hidden;
  white-space: nowrap;
  transform: translate(0);
}
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-wrap::before,
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-wrap::before,
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-wrap::after,
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-wrap::after {
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
  content: '';
  pointer-events: none;
}
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-list,
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-list {
  position: relative;
  display: flex;
  transition: transform 0.3s;
}
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-operations,
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-operations {
  display: flex;
  align-self: stretch;
}
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-operations-hidden,
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-operations-hidden {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
}
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-more,
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-more {
  position: relative;
  padding: 8px 16px;
  background: transparent;
  border: 0;
}
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-more::after,
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-more::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  transform: translateY(100%);
  content: '';
}
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-add,
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add {
  min-width: 40px;
  margin-left: 2px;
  padding: 0 8px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 2px 2px 0 0;
  outline: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-add:hover,
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add:hover {
  color: #b36afc;
}
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-add:active,
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add:active,
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-add:focus,
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add:focus {
  color: #6f2ac9;
}
.ant-tabs-extra-content {
  flex: none;
}
.ant-tabs-centered > .ant-tabs-nav .ant-tabs-nav-wrap:not([class*='ant-tabs-nav-wrap-ping']),
.ant-tabs-centered > div > .ant-tabs-nav .ant-tabs-nav-wrap:not([class*='ant-tabs-nav-wrap-ping']) {
  justify-content: center;
}
.ant-tabs-ink-bar {
  position: absolute;
  background: #913ef0;
  pointer-events: none;
}
.ant-tabs-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}
.ant-tabs-tab-btn:focus,
.ant-tabs-tab-remove:focus,
.ant-tabs-tab-btn:active,
.ant-tabs-tab-remove:active {
  color: #6f2ac9;
}
.ant-tabs-tab-btn {
  outline: none;
  transition: all 0.3s;
}
.ant-tabs-tab-remove {
  flex: none;
  margin-right: -4px;
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 11px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-tabs-tab-remove:hover {
  color: rgba(0, 0, 0, 0.85);
}
.ant-tabs-tab:hover {
  color: #b36afc;
}
.ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
  color: #913ef0;
  text-shadow: 0 0 0.25px currentcolor;
}
.ant-tabs-tab.ant-tabs-tab-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-tabs-tab.ant-tabs-tab-disabled .ant-tabs-tab-btn:focus,
.ant-tabs-tab.ant-tabs-tab-disabled .ant-tabs-tab-remove:focus,
.ant-tabs-tab.ant-tabs-tab-disabled .ant-tabs-tab-btn:active,
.ant-tabs-tab.ant-tabs-tab-disabled .ant-tabs-tab-remove:active {
  color: rgba(0, 0, 0, 0.25);
}
.ant-tabs-tab .ant-tabs-tab-remove .anticon {
  margin: 0;
}
.ant-tabs-tab .anticon {
  margin-right: 12px;
}
.ant-tabs-tab + .ant-tabs-tab {
  margin: 0 0 0 32px;
}
.ant-tabs-content {
  position: relative;
  width: 100%;
}
.ant-tabs-content-holder {
  flex: auto;
  min-width: 0;
  min-height: 0;
}
.ant-tabs-tabpane {
  outline: none;
}
.ant-tabs-tabpane-hidden {
  display: none;
}
.ant-tabs-switch-appear,
.ant-tabs-switch-enter {
  transition: none;
}
.ant-tabs-switch-appear-start,
.ant-tabs-switch-enter-start {
  opacity: 0;
}
.ant-tabs-switch-appear-active,
.ant-tabs-switch-enter-active {
  opacity: 1;
  transition: opacity 0.3s;
}
.ant-tabs-switch-leave {
  position: absolute;
  transition: none;
  inset: 0;
}
.ant-tabs-switch-leave-start {
  opacity: 1;
}
.ant-tabs-switch-leave-active {
  opacity: 0;
  transition: opacity 0.3s;
}
.ant-tag {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-variant: tabular-nums;
  line-height: 1.6;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
  height: auto;
  margin-right: 8px;
  padding: 0 7px;
  font-size: 11px;
  line-height: 20px;
  white-space: nowrap;
  background: #fafafa;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  opacity: 1;
  transition: all 0.3s;
}
.ant-tag,
.ant-tag a,
.ant-tag a:hover {
  color: rgba(0, 0, 0, 0.85);
}
.ant-tag > a:first-child:last-child {
  display: inline-block;
  margin: 0 -8px;
  padding: 0 8px;
}
.ant-tag-close-icon {
  margin-left: 3px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-tag-close-icon:hover {
  color: rgba(0, 0, 0, 0.85);
}
.ant-tag-has-color {
  border-color: transparent;
}
.ant-tag-has-color,
.ant-tag-has-color a,
.ant-tag-has-color a:hover,
.ant-tag-has-color .anticon-close,
.ant-tag-has-color .anticon-close:hover {
  color: #fff;
}
.ant-tag-checkable {
  background-color: transparent;
  border-color: transparent;
  cursor: pointer;
}
.ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
  color: #913ef0;
}
.ant-tag-checkable:active,
.ant-tag-checkable-checked {
  color: #fff;
}
.ant-tag-checkable-checked {
  background-color: #913ef0;
}
.ant-tag-checkable:active {
  background-color: #6f2ac9;
}
.ant-tag-hidden {
  display: none;
}
.ant-tag-pink {
  color: #c41d7f;
  background: #fff0f6;
  border-color: #ffadd2;
}
.ant-tag-pink-inverse {
  color: #fff;
  background: #eb2f96;
  border-color: #eb2f96;
}
.ant-tag-magenta {
  color: #c41d7f;
  background: #fff0f6;
  border-color: #ffadd2;
}
.ant-tag-magenta-inverse {
  color: #fff;
  background: #eb2f96;
  border-color: #eb2f96;
}
.ant-tag-red {
  color: #bf3450;
  background: #fff0f0;
  border-color: #ffcccf;
}
.ant-tag-red-inverse {
  color: #fff;
  background: #E54963;
  border-color: #E54963;
}
.ant-tag-volcano {
  color: #bf3450;
  background: #fff0f0;
  border-color: #ffcccf;
}
.ant-tag-volcano-inverse {
  color: #fff;
  background: #E54963;
  border-color: #E54963;
}
.ant-tag-orange {
  color: #d99230;
  background: #fffcf0;
  border-color: #ffedbf;
}
.ant-tag-orange-inverse {
  color: #fff;
  background: #FFB946;
  border-color: #FFB946;
}
.ant-tag-yellow {
  color: #d99230;
  background: #fffcf0;
  border-color: #ffedbf;
}
.ant-tag-yellow-inverse {
  color: #fff;
  background: #FFB946;
  border-color: #FFB946;
}
.ant-tag-gold {
  color: #d48806;
  background: #fffbe6;
  border-color: #ffe58f;
}
.ant-tag-gold-inverse {
  color: #fff;
  background: #faad14;
  border-color: #faad14;
}
.ant-tag-cyan {
  color: #08979c;
  background: #e6fffb;
  border-color: #87e8de;
}
.ant-tag-cyan-inverse {
  color: #fff;
  background: #13c2c2;
  border-color: #13c2c2;
}
.ant-tag-lime {
  color: #7cb305;
  background: #fcffe6;
  border-color: #eaff8f;
}
.ant-tag-lime-inverse {
  color: #fff;
  background: #a0d911;
  border-color: #a0d911;
}
.ant-tag-green {
  color: #42bd7f;
  background: #f0fff4;
  border-color: #e0ffec;
}
.ant-tag-green-inverse {
  color: #fff;
  background: #5ae399;
  border-color: #5ae399;
}
.ant-tag-blue {
  color: #345fc2;
  background: #f0f7ff;
  border-color: #cce2ff;
}
.ant-tag-blue-inverse {
  color: #fff;
  background: #4B80E7;
  border-color: #4B80E7;
}
.ant-tag-geekblue {
  color: #345fc2;
  background: #f0f7ff;
  border-color: #cce2ff;
}
.ant-tag-geekblue-inverse {
  color: #fff;
  background: #4B80E7;
  border-color: #4B80E7;
}
.ant-tag-purple {
  color: #6f2ac9;
  background: #f9f0ff;
  border-color: #e2bdff;
}
.ant-tag-purple-inverse {
  color: #fff;
  background: #913ef0;
  border-color: #913ef0;
}
.ant-tag-success {
  color: #5ae399;
  background: #f0fff4;
  border-color: #e0ffec;
}
.ant-tag-processing {
  color: #4B80E7;
  background: #f0f7ff;
  border-color: #cce2ff;
}
.ant-tag-error {
  color: #E54963;
  background: #fff0f0;
  border-color: #ffcccf;
}
.ant-tag-warning {
  color: #FFB946;
  background: #fffcf0;
  border-color: #ffedbf;
}
.ant-tag > .anticon + span,
.ant-tag > span + .anticon {
  margin-left: 7px;
}
.ant-tag.ant-tag-rtl {
  margin-right: 0;
  margin-left: 8px;
  direction: rtl;
  text-align: right;
}
.ant-tag-rtl .ant-tag-close-icon {
  margin-right: 3px;
  margin-left: 0;
}
.ant-tag-rtl.ant-tag > .anticon + span,
.ant-tag-rtl.ant-tag > span + .anticon {
  margin-right: 7px;
  margin-left: 0;
}
.ant-timeline {
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.6;
  font-feature-settings: 'tnum';
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-timeline-item {
  position: relative;
  margin: 0;
  padding-bottom: 20px;
  font-size: 14px;
  list-style: none;
}
.ant-timeline-item-tail {
  position: absolute;
  top: 10px;
  left: 4px;
  height: calc(100% - 10px);
  border-left: 2px solid #f0f0f0;
}
.ant-timeline-item-pending .ant-timeline-item-head {
  font-size: 11px;
  background-color: transparent;
}
.ant-timeline-item-pending .ant-timeline-item-tail {
  display: none;
}
.ant-timeline-item-head {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 100px;
}
.ant-timeline-item-head-blue {
  color: #913ef0;
  border-color: #913ef0;
}
.ant-timeline-item-head-red {
  color: #E54963;
  border-color: #E54963;
}
.ant-timeline-item-head-green {
  color: #5ae399;
  border-color: #5ae399;
}
.ant-timeline-item-head-gray {
  color: rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.25);
}
.ant-timeline-item-head-custom {
  position: absolute;
  top: 5.5px;
  left: 5px;
  width: auto;
  height: auto;
  margin-top: 0;
  padding: 3px 1px;
  line-height: 1;
  text-align: center;
  border: 0;
  border-radius: 0;
  transform: translate(-50%, -50%);
}
.ant-timeline-item-content {
  position: relative;
  top: -7.4px;
  margin: 0 0 0 26px;
  word-break: break-word;
}
.ant-timeline-item-last > .ant-timeline-item-tail {
  display: none;
}
.ant-timeline-item-last > .ant-timeline-item-content {
  min-height: 48px;
}
.ant-timeline.ant-timeline-alternate .ant-timeline-item-tail,
.ant-timeline.ant-timeline-right .ant-timeline-item-tail,
.ant-timeline.ant-timeline-label .ant-timeline-item-tail,
.ant-timeline.ant-timeline-alternate .ant-timeline-item-head,
.ant-timeline.ant-timeline-right .ant-timeline-item-head,
.ant-timeline.ant-timeline-label .ant-timeline-item-head,
.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom,
.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom,
.ant-timeline.ant-timeline-label .ant-timeline-item-head-custom {
  left: 50%;
}
.ant-timeline.ant-timeline-alternate .ant-timeline-item-head,
.ant-timeline.ant-timeline-right .ant-timeline-item-head,
.ant-timeline.ant-timeline-label .ant-timeline-item-head {
  margin-left: -4px;
}
.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom,
.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom,
.ant-timeline.ant-timeline-label .ant-timeline-item-head-custom {
  margin-left: 1px;
}
.ant-timeline.ant-timeline-alternate .ant-timeline-item-left .ant-timeline-item-content,
.ant-timeline.ant-timeline-right .ant-timeline-item-left .ant-timeline-item-content,
.ant-timeline.ant-timeline-label .ant-timeline-item-left .ant-timeline-item-content {
  left: calc(50% - 4px);
  width: calc(50% - 14px);
  text-align: left;
}
.ant-timeline.ant-timeline-alternate .ant-timeline-item-right .ant-timeline-item-content,
.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content,
.ant-timeline.ant-timeline-label .ant-timeline-item-right .ant-timeline-item-content {
  width: calc(50% - 12px);
  margin: 0;
  text-align: right;
}
.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-tail,
.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head,
.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head-custom {
  left: calc(100% - 4px - 2px);
}
.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content {
  width: calc(100% - 18px);
}
.ant-timeline.ant-timeline-pending .ant-timeline-item-last .ant-timeline-item-tail {
  display: block;
  height: calc(100% - 14px);
  border-left: 2px dotted #f0f0f0;
}
.ant-timeline.ant-timeline-reverse .ant-timeline-item-last .ant-timeline-item-tail {
  display: none;
}
.ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-tail {
  top: 15px;
  display: block;
  height: calc(100% - 15px);
  border-left: 2px dotted #f0f0f0;
}
.ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-content {
  min-height: 48px;
}
.ant-timeline.ant-timeline-label .ant-timeline-item-label {
  position: absolute;
  top: -7.4px;
  width: calc(50% - 12px);
  text-align: right;
}
.ant-timeline.ant-timeline-label .ant-timeline-item-right .ant-timeline-item-label {
  left: calc(50% + 14px);
  width: calc(50% - 14px);
  text-align: left;
}
.ant-timeline-rtl {
  direction: rtl;
}
.ant-timeline-rtl .ant-timeline-item-tail {
  right: 4px;
  left: auto;
  border-right: 2px solid #f0f0f0;
  border-left: none;
}
.ant-timeline-rtl .ant-timeline-item-head-custom {
  right: 5px;
  left: auto;
  transform: translate(50%, -50%);
}
.ant-timeline-rtl .ant-timeline-item-content {
  margin: 0 18px 0 0;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-tail,
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-tail,
.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-tail,
.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-head,
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-head,
.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-head,
.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom,
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom,
.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-head-custom {
  right: 50%;
  left: auto;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-head,
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-head,
.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-head {
  margin-right: -4px;
  margin-left: 0;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom,
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom,
.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-head-custom {
  margin-right: 1px;
  margin-left: 0;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-left .ant-timeline-item-content,
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-left .ant-timeline-item-content,
.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-left .ant-timeline-item-content {
  right: calc(50% - 4px);
  left: auto;
  text-align: right;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-alternate .ant-timeline-item-right .ant-timeline-item-content,
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content,
.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-right .ant-timeline-item-content {
  text-align: left;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-tail,
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head,
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head-custom {
  right: 0;
  left: auto;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content {
  width: 100%;
  margin-right: 18px;
  text-align: right;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-pending .ant-timeline-item-last .ant-timeline-item-tail {
  border-right: 2px dotted #f0f0f0;
  border-left: none;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-tail {
  border-right: 2px dotted #f0f0f0;
  border-left: none;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-label {
  text-align: left;
}
.ant-timeline-rtl.ant-timeline.ant-timeline-label .ant-timeline-item-right .ant-timeline-item-label {
  right: calc(50% + 14px);
  text-align: right;
}
.ant-tooltip {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: absolute;
  z-index: 1070;
  display: block;
  width: -moz-max-content;
  width: max-content;
  width: intrinsic;
  max-width: 250px;
  visibility: visible;
}
.ant-tooltip-content {
  position: relative;
}
.ant-tooltip-hidden {
  display: none;
}
.ant-tooltip-placement-top,
.ant-tooltip-placement-topLeft,
.ant-tooltip-placement-topRight {
  padding-bottom: 14.3137085px;
}
.ant-tooltip-placement-right,
.ant-tooltip-placement-rightTop,
.ant-tooltip-placement-rightBottom {
  padding-left: 14.3137085px;
}
.ant-tooltip-placement-bottom,
.ant-tooltip-placement-bottomLeft,
.ant-tooltip-placement-bottomRight {
  padding-top: 14.3137085px;
}
.ant-tooltip-placement-left,
.ant-tooltip-placement-leftTop,
.ant-tooltip-placement-leftBottom {
  padding-right: 14.3137085px;
}
.ant-tooltip-inner {
  min-width: 30px;
  min-height: 32px;
  padding: 6px 8px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  word-wrap: break-word;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 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-tooltip-arrow {
  position: absolute;
  z-index: 2;
  display: block;
  width: 22px;
  height: 22px;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}
.ant-tooltip-arrow-content {
  --antd-arrow-background-color: linear-gradient(to right bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75));
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 11.3137085px;
  height: 11.3137085px;
  margin: auto;
  content: '';
  pointer-events: auto;
  border-radius: 0 0 2px;
  pointer-events: none;
}
.ant-tooltip-arrow-content::before {
  position: absolute;
  top: -11.3137085px;
  left: -11.3137085px;
  width: 33.9411255px;
  height: 33.9411255px;
  background: var(--antd-arrow-background-color);
  background-repeat: no-repeat;
  background-position: -10px -10px;
  content: '';
  -webkit-clip-path: inset(33% 33%);
          clip-path: inset(33% 33%);
  -webkit-clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
          clip-path: path('M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z');
}
.ant-tooltip-placement-top .ant-tooltip-arrow,
.ant-tooltip-placement-topLeft .ant-tooltip-arrow,
.ant-tooltip-placement-topRight .ant-tooltip-arrow {
  bottom: 0;
  transform: translateY(100%);
}
.ant-tooltip-placement-top .ant-tooltip-arrow-content,
.ant-tooltip-placement-topLeft .ant-tooltip-arrow-content,
.ant-tooltip-placement-topRight .ant-tooltip-arrow-content {
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
  transform: translateY(-11px) rotate(45deg);
}
.ant-tooltip-placement-top .ant-tooltip-arrow {
  left: 50%;
  transform: translateY(100%) translateX(-50%);
}
.ant-tooltip-placement-topLeft .ant-tooltip-arrow {
  left: 13px;
}
.ant-tooltip-placement-topRight .ant-tooltip-arrow {
  right: 13px;
}
.ant-tooltip-placement-right .ant-tooltip-arrow,
.ant-tooltip-placement-rightTop .ant-tooltip-arrow,
.ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
  left: 0;
  transform: translateX(-100%);
}
.ant-tooltip-placement-right .ant-tooltip-arrow-content,
.ant-tooltip-placement-rightTop .ant-tooltip-arrow-content,
.ant-tooltip-placement-rightBottom .ant-tooltip-arrow-content {
  box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
  transform: translateX(11px) rotate(135deg);
}
.ant-tooltip-placement-right .ant-tooltip-arrow {
  top: 50%;
  transform: translateX(-100%) translateY(-50%);
}
.ant-tooltip-placement-rightTop .ant-tooltip-arrow {
  top: 5px;
}
.ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
  bottom: 5px;
}
.ant-tooltip-placement-left .ant-tooltip-arrow,
.ant-tooltip-placement-leftTop .ant-tooltip-arrow,
.ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
  right: 0;
  transform: translateX(100%);
}
.ant-tooltip-placement-left .ant-tooltip-arrow-content,
.ant-tooltip-placement-leftTop .ant-tooltip-arrow-content,
.ant-tooltip-placement-leftBottom .ant-tooltip-arrow-content {
  box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
  transform: translateX(-11px) rotate(315deg);
}
.ant-tooltip-placement-left .ant-tooltip-arrow {
  top: 50%;
  transform: translateX(100%) translateY(-50%);
}
.ant-tooltip-placement-leftTop .ant-tooltip-arrow {
  top: 5px;
}
.ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
  bottom: 5px;
}
.ant-tooltip-placement-bottom .ant-tooltip-arrow,
.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow,
.ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
  top: 0;
  transform: translateY(-100%);
}
.ant-tooltip-placement-bottom .ant-tooltip-arrow-content,
.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow-content,
.ant-tooltip-placement-bottomRight .ant-tooltip-arrow-content {
  box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.07);
  transform: translateY(11px) rotate(225deg);
}
.ant-tooltip-placement-bottom .ant-tooltip-arrow {
  left: 50%;
  transform: translateY(-100%) translateX(-50%);
}
.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow {
  left: 13px;
}
.ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
  right: 13px;
}
.ant-tooltip-pink .ant-tooltip-inner {
  background-color: #eb2f96;
}
.ant-tooltip-pink .ant-tooltip-arrow-content::before {
  background: #eb2f96;
}
.ant-tooltip-magenta .ant-tooltip-inner {
  background-color: #eb2f96;
}
.ant-tooltip-magenta .ant-tooltip-arrow-content::before {
  background: #eb2f96;
}
.ant-tooltip-red .ant-tooltip-inner {
  background-color: #E54963;
}
.ant-tooltip-red .ant-tooltip-arrow-content::before {
  background: #E54963;
}
.ant-tooltip-volcano .ant-tooltip-inner {
  background-color: #E54963;
}
.ant-tooltip-volcano .ant-tooltip-arrow-content::before {
  background: #E54963;
}
.ant-tooltip-orange .ant-tooltip-inner {
  background-color: #FFB946;
}
.ant-tooltip-orange .ant-tooltip-arrow-content::before {
  background: #FFB946;
}
.ant-tooltip-yellow .ant-tooltip-inner {
  background-color: #FFB946;
}
.ant-tooltip-yellow .ant-tooltip-arrow-content::before {
  background: #FFB946;
}
.ant-tooltip-gold .ant-tooltip-inner {
  background-color: #faad14;
}
.ant-tooltip-gold .ant-tooltip-arrow-content::before {
  background: #faad14;
}
.ant-tooltip-cyan .ant-tooltip-inner {
  background-color: #13c2c2;
}
.ant-tooltip-cyan .ant-tooltip-arrow-content::before {
  background: #13c2c2;
}
.ant-tooltip-lime .ant-tooltip-inner {
  background-color: #a0d911;
}
.ant-tooltip-lime .ant-tooltip-arrow-content::before {
  background: #a0d911;
}
.ant-tooltip-green .ant-tooltip-inner {
  background-color: #5ae399;
}
.ant-tooltip-green .ant-tooltip-arrow-content::before {
  background: #5ae399;
}
.ant-tooltip-blue .ant-tooltip-inner {
  background-color: #4B80E7;
}
.ant-tooltip-blue .ant-tooltip-arrow-content::before {
  background: #4B80E7;
}
.ant-tooltip-geekblue .ant-tooltip-inner {
  background-color: #4B80E7;
}
.ant-tooltip-geekblue .ant-tooltip-arrow-content::before {
  background: #4B80E7;
}
.ant-tooltip-purple .ant-tooltip-inner {
  background-color: #913ef0;
}
.ant-tooltip-purple .ant-tooltip-arrow-content::before {
  background: #913ef0;
}
.ant-tooltip-rtl {
  direction: rtl;
}
.ant-tooltip-rtl .ant-tooltip-inner {
  text-align: right;
}
.ant-transfer-customize-list .ant-transfer-list {
  flex: 1 1 50%;
  width: auto;
  height: auto;
  min-height: 200px;
}
.ant-transfer-customize-list .ant-table-wrapper .ant-table-small {
  border: 0;
  border-radius: 0;
}
.ant-transfer-customize-list .ant-table-wrapper .ant-table-small .ant-table-selection-column {
  width: 40px;
  min-width: 40px;
}
.ant-transfer-customize-list .ant-table-wrapper .ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th {
  background: #fafafa;
}
.ant-transfer-customize-list .ant-table-wrapper .ant-table-small > .ant-table-content .ant-table-row:last-child td {
  border-bottom: 1px solid #f0f0f0;
}
.ant-transfer-customize-list .ant-table-wrapper .ant-table-small .ant-table-body {
  margin: 0;
}
.ant-transfer-customize-list .ant-table-wrapper .ant-table-pagination.ant-pagination {
  margin: 16px 0 4px;
}
.ant-transfer-customize-list .ant-input[disabled] {
  background-color: transparent;
}
.ant-transfer-status-error .ant-transfer-list {
  border-color: #E54963;
}
.ant-transfer-status-error .ant-transfer-list-search:not([disabled]) {
  border-color: #d9d9d9;
}
.ant-transfer-status-error .ant-transfer-list-search:not([disabled]):hover {
  border-color: #b36afc;
  border-right-width: 1px;
}
.ant-input-rtl .ant-transfer-status-error .ant-transfer-list-search:not([disabled]):hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-transfer-status-error .ant-transfer-list-search:not([disabled]):focus {
  border-color: #b36afc;
  box-shadow: 0 0 0 2px rgba(145, 62, 240, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-rtl .ant-transfer-status-error .ant-transfer-list-search:not([disabled]):focus {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-transfer-status-warning .ant-transfer-list {
  border-color: #FFB946;
}
.ant-transfer-status-warning .ant-transfer-list-search:not([disabled]) {
  border-color: #d9d9d9;
}
.ant-transfer-status-warning .ant-transfer-list-search:not([disabled]):hover {
  border-color: #b36afc;
  border-right-width: 1px;
}
.ant-input-rtl .ant-transfer-status-warning .ant-transfer-list-search:not([disabled]):hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-transfer-status-warning .ant-transfer-list-search:not([disabled]):focus {
  border-color: #b36afc;
  box-shadow: 0 0 0 2px rgba(145, 62, 240, 0.2);
  border-right-width: 1px;
  outline: 0;
}
.ant-input-rtl .ant-transfer-status-warning .ant-transfer-list-search:not([disabled]):focus {
  border-right-width: 0;
  border-left-width: 1px !important;
}
.ant-transfer {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: flex;
  align-items: stretch;
}
.ant-transfer-disabled .ant-transfer-list {
  background: #f5f5f5;
}
.ant-transfer-list {
  display: flex;
  flex-direction: column;
  width: 180px;
  height: 200px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
}
.ant-transfer-list-with-pagination {
  width: 250px;
  height: auto;
}
.ant-transfer-list-search .anticon-search {
  color: rgba(0, 0, 0, 0.25);
}
.ant-transfer-list-header {
  display: flex;
  flex: none;
  align-items: center;
  height: 40px;
  padding: 8px 12px 9px;
  color: rgba(0, 0, 0, 0.85);
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 2px 2px 0 0;
}
.ant-transfer-list-header > *:not(:last-child) {
  margin-right: 4px;
}
.ant-transfer-list-header > * {
  flex: none;
}
.ant-transfer-list-header-title {
  flex: auto;
  overflow: hidden;
  white-space: nowrap;
  text-align: right;
  text-overflow: ellipsis;
}
.ant-transfer-list-header-dropdown {
  font-size: 10px;
  transform: translateY(10%);
  cursor: pointer;
}
.ant-transfer-list-header-dropdown[disabled] {
  cursor: not-allowed;
}
.ant-transfer-list-body {
  display: flex;
  flex: auto;
  flex-direction: column;
  overflow: hidden;
  font-size: 14px;
}
.ant-transfer-list-body-search-wrapper {
  position: relative;
  flex: none;
  padding: 12px;
}
.ant-transfer-list-content {
  flex: auto;
  margin: 0;
  padding: 0;
  overflow: auto;
  list-style: none;
}
.ant-transfer-list-content-item {
  display: flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  line-height: 20px;
  transition: all 0.3s;
}
.ant-transfer-list-content-item > *:not(:last-child) {
  margin-right: 8px;
}
.ant-transfer-list-content-item > * {
  flex: none;
}
.ant-transfer-list-content-item-text {
  flex: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-transfer-list-content-item-remove {
  position: relative;
  color: #d9d9d9;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-transfer-list-content-item-remove:hover {
  color: #0d0d0d;
}
.ant-transfer-list-content-item-remove::after {
  position: absolute;
  top: -6px;
  right: -50%;
  bottom: -6px;
  left: -50%;
  content: '';
}
.ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover {
  background-color: #f5f5f5;
  cursor: pointer;
}
.ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled).ant-transfer-list-content-item-checked:hover {
  background-color: #f5e6ff;
}
.ant-transfer-list-content-show-remove .ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover {
  background: transparent;
  cursor: default;
}
.ant-transfer-list-content-item-checked {
  background-color: #f9f0ff;
}
.ant-transfer-list-content-item-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-transfer-list-pagination {
  padding: 8px 0;
  text-align: right;
  border-top: 1px solid #f0f0f0;
}
.ant-transfer-list-body-not-found {
  flex: none;
  width: 100%;
  margin: auto 0;
  color: rgba(0, 0, 0, 0.25);
  text-align: center;
}
.ant-transfer-list-footer {
  border-top: 1px solid #f0f0f0;
}
.ant-transfer-operation {
  display: flex;
  flex: none;
  flex-direction: column;
  align-self: center;
  margin: 0 8px;
  vertical-align: middle;
}
.ant-transfer-operation .ant-btn {
  display: block;
}
.ant-transfer-operation .ant-btn:first-child {
  margin-bottom: 4px;
}
.ant-transfer-operation .ant-btn .anticon {
  font-size: 12px;
}
.ant-transfer .ant-empty-image {
  max-height: -2px;
}
.ant-transfer-rtl {
  direction: rtl;
}
.ant-transfer-rtl .ant-transfer-list-search {
  padding-right: 8px;
  padding-left: 24px;
}
.ant-transfer-rtl .ant-transfer-list-search-action {
  right: auto;
  left: 12px;
}
.ant-transfer-rtl .ant-transfer-list-header > *:not(:last-child) {
  margin-right: 0;
  margin-left: 4px;
}
.ant-transfer-rtl .ant-transfer-list-header {
  right: 0;
  left: auto;
}
.ant-transfer-rtl .ant-transfer-list-header-title {
  text-align: left;
}
.ant-transfer-rtl .ant-transfer-list-content-item > *:not(:last-child) {
  margin-right: 0;
  margin-left: 8px;
}
.ant-transfer-rtl .ant-transfer-list-pagination {
  text-align: left;
}
.ant-transfer-rtl .ant-transfer-list-footer {
  right: 0;
  left: auto;
}
@keyframes ant-tree-node-fx-do-not-use {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ant-tree.ant-tree-directory .ant-tree-treenode {
  position: relative;
}
.ant-tree.ant-tree-directory .ant-tree-treenode::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 4px;
  left: 0;
  transition: background-color 0.3s;
  content: '';
  pointer-events: none;
}
.ant-tree.ant-tree-directory .ant-tree-treenode:hover::before {
  background: #f5f5f5;
}
.ant-tree.ant-tree-directory .ant-tree-treenode > * {
  z-index: 1;
}
.ant-tree.ant-tree-directory .ant-tree-treenode .ant-tree-switcher {
  transition: color 0.3s;
}
.ant-tree.ant-tree-directory .ant-tree-treenode .ant-tree-node-content-wrapper {
  border-radius: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-tree.ant-tree-directory .ant-tree-treenode .ant-tree-node-content-wrapper:hover {
  background: transparent;
}
.ant-tree.ant-tree-directory .ant-tree-treenode .ant-tree-node-content-wrapper.ant-tree-node-selected {
  color: #fff;
  background: transparent;
}
.ant-tree.ant-tree-directory .ant-tree-treenode-selected:hover::before,
.ant-tree.ant-tree-directory .ant-tree-treenode-selected::before {
  background: #913ef0;
}
.ant-tree.ant-tree-directory .ant-tree-treenode-selected .ant-tree-switcher {
  color: #fff;
}
.ant-tree.ant-tree-directory .ant-tree-treenode-selected .ant-tree-node-content-wrapper {
  color: #fff;
  background: transparent;
}
.ant-tree-checkbox {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  top: 0.2em;
  line-height: 1;
  white-space: nowrap;
  outline: none;
  cursor: pointer;
}
.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner,
.ant-tree-checkbox:hover .ant-tree-checkbox-inner,
.ant-tree-checkbox-input:focus + .ant-tree-checkbox-inner {
  border-color: #913ef0;
}
.ant-tree-checkbox-checked::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #913ef0;
  border-radius: 2px;
  visibility: hidden;
  animation: antCheckboxEffect 0.36s ease-in-out;
  animation-fill-mode: backwards;
  content: '';
}
.ant-tree-checkbox:hover::after,
.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox::after {
  visibility: visible;
}
.ant-tree-checkbox-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  direction: ltr;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  border-collapse: separate;
  transition: all 0.3s;
}
.ant-tree-checkbox-inner::after {
  position: absolute;
  top: 50%;
  left: 21.5%;
  display: table;
  width: 5.71428571px;
  height: 9.14285714px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(0) translate(-50%, -50%);
  opacity: 0;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  content: ' ';
}
.ant-tree-checkbox-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after {
  position: absolute;
  display: table;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(1) translate(-50%, -50%);
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  content: ' ';
}
.ant-tree-checkbox-checked .ant-tree-checkbox-inner {
  background-color: #913ef0;
  border-color: #913ef0;
}
.ant-tree-checkbox-disabled {
  cursor: not-allowed;
}
.ant-tree-checkbox-disabled.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after {
  border-color: rgba(0, 0, 0, 0.25);
  animation-name: none;
}
.ant-tree-checkbox-disabled .ant-tree-checkbox-input {
  cursor: not-allowed;
  pointer-events: none;
}
.ant-tree-checkbox-disabled .ant-tree-checkbox-inner {
  background-color: #f5f5f5;
  border-color: #d9d9d9 !important;
}
.ant-tree-checkbox-disabled .ant-tree-checkbox-inner::after {
  border-color: #f5f5f5;
  border-collapse: separate;
  animation-name: none;
}
.ant-tree-checkbox-disabled + span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-tree-checkbox-disabled:hover::after,
.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-disabled::after {
  visibility: hidden;
}
.ant-tree-checkbox-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.6;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-flex;
  align-items: baseline;
  line-height: unset;
  cursor: pointer;
}
.ant-tree-checkbox-wrapper::after {
  display: inline-block;
  width: 0;
  overflow: hidden;
  content: '\a0';
}
.ant-tree-checkbox-wrapper.ant-tree-checkbox-wrapper-disabled {
  cursor: not-allowed;
}
.ant-tree-checkbox-wrapper + .ant-tree-checkbox-wrapper {
  margin-left: 8px;
}
.ant-tree-checkbox-wrapper.ant-tree-checkbox-wrapper-in-form-item input[type='checkbox'] {
  width: 14px;
  height: 14px;
}
.ant-tree-checkbox + span {
  padding-right: 8px;
  padding-left: 8px;
}
.ant-tree-checkbox-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.6;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
}
.ant-tree-checkbox-group-item {
  margin-right: 8px;
}
.ant-tree-checkbox-group-item:last-child {
  margin-right: 0;
}
.ant-tree-checkbox-group-item + .ant-tree-checkbox-group-item {
  margin-left: 0;
}
.ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner {
  background-color: #fff;
  border-color: #d9d9d9;
}
.ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner::after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #913ef0;
  border: 0;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  content: ' ';
}
.ant-tree-checkbox-indeterminate.ant-tree-checkbox-disabled .ant-tree-checkbox-inner::after {
  background-color: rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.25);
}
.ant-tree-checkbox-rtl {
  direction: rtl;
}
.ant-tree-checkbox-group-rtl .ant-tree-checkbox-group-item {
  margin-right: 0;
  margin-left: 8px;
}
.ant-tree-checkbox-group-rtl .ant-tree-checkbox-group-item:last-child {
  margin-left: 0 !important;
}
.ant-tree-checkbox-group-rtl .ant-tree-checkbox-group-item + .ant-tree-checkbox-group-item {
  margin-left: 8px;
}
.ant-tree {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  background: #fff;
  border-radius: 2px;
  transition: background-color 0.3s;
}
.ant-tree-focused:not(:hover):not(.ant-tree-active-focused) {
  background: #f9f0ff;
}
.ant-tree-list-holder-inner {
  align-items: flex-start;
}
.ant-tree.ant-tree-block-node .ant-tree-list-holder-inner {
  align-items: stretch;
}
.ant-tree.ant-tree-block-node .ant-tree-list-holder-inner .ant-tree-node-content-wrapper {
  flex: auto;
}
.ant-tree.ant-tree-block-node .ant-tree-list-holder-inner .ant-tree-treenode.dragging {
  position: relative;
}
.ant-tree.ant-tree-block-node .ant-tree-list-holder-inner .ant-tree-treenode.dragging::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 4px;
  left: 0;
  border: 1px solid #913ef0;
  opacity: 0;
  animation: ant-tree-node-fx-do-not-use 0.3s;
  animation-play-state: running;
  animation-fill-mode: forwards;
  content: '';
  pointer-events: none;
}
.ant-tree .ant-tree-treenode {
  display: flex;
  align-items: flex-start;
  padding: 0 0 4px 0;
  outline: none;
}
.ant-tree .ant-tree-treenode-disabled .ant-tree-node-content-wrapper {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-tree .ant-tree-treenode-disabled .ant-tree-node-content-wrapper:hover {
  background: transparent;
}
.ant-tree .ant-tree-treenode-active .ant-tree-node-content-wrapper {
  background: #f5f5f5;
}
.ant-tree .ant-tree-treenode:not(.ant-tree .ant-tree-treenode-disabled).filter-node .ant-tree-title {
  color: inherit;
  font-weight: 500;
}
.ant-tree .ant-tree-treenode-draggable .ant-tree-draggable-icon {
  width: 24px;
  line-height: 24px;
  text-align: center;
  visibility: visible;
  opacity: 0.2;
  transition: opacity 0.3s;
}
.ant-tree-treenode:hover .ant-tree .ant-tree-treenode-draggable .ant-tree-draggable-icon {
  opacity: 0.45;
}
.ant-tree .ant-tree-treenode-draggable.ant-tree-treenode-disabled .ant-tree-draggable-icon {
  visibility: hidden;
}
.ant-tree-indent {
  align-self: stretch;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-tree-indent-unit {
  display: inline-block;
  width: 24px;
}
.ant-tree-draggable-icon {
  visibility: hidden;
}
.ant-tree-switcher {
  position: relative;
  flex: none;
  align-self: stretch;
  width: 24px;
  margin: 0;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-tree-switcher .ant-tree-switcher-icon,
.ant-tree-switcher .ant-select-tree-switcher-icon {
  display: inline-block;
  font-size: 10px;
  vertical-align: baseline;
}
.ant-tree-switcher .ant-tree-switcher-icon svg,
.ant-tree-switcher .ant-select-tree-switcher-icon svg {
  transition: transform 0.3s;
}
.ant-tree-switcher-noop {
  cursor: default;
}
.ant-tree-switcher_close .ant-tree-switcher-icon svg {
  transform: rotate(-90deg);
}
.ant-tree-switcher-loading-icon {
  color: #913ef0;
}
.ant-tree-switcher-leaf-line {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.ant-tree-switcher-leaf-line::before {
  position: absolute;
  top: 0;
  right: 12px;
  bottom: -4px;
  margin-left: -1px;
  border-right: 1px solid #d9d9d9;
  content: ' ';
}
.ant-tree-switcher-leaf-line::after {
  position: absolute;
  width: 10px;
  height: 14px;
  border-bottom: 1px solid #d9d9d9;
  content: ' ';
}
.ant-tree-checkbox {
  top: initial;
  margin: 4px 8px 0 0;
}
.ant-tree .ant-tree-node-content-wrapper {
  position: relative;
  z-index: auto;
  min-height: 24px;
  margin: 0;
  padding: 0 4px;
  color: inherit;
  line-height: 24px;
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s, border 0s, line-height 0s, box-shadow 0s;
}
.ant-tree .ant-tree-node-content-wrapper:hover {
  background-color: #f5f5f5;
}
.ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected {
  background-color: #f5e6ff;
}
.ant-tree .ant-tree-node-content-wrapper .ant-tree-iconEle {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  vertical-align: top;
}
.ant-tree .ant-tree-node-content-wrapper .ant-tree-iconEle:empty {
  display: none;
}
.ant-tree-unselectable .ant-tree-node-content-wrapper:hover {
  background-color: transparent;
}
.ant-tree-node-content-wrapper {
  line-height: 24px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-tree-node-content-wrapper .ant-tree-drop-indicator {
  position: absolute;
  z-index: 1;
  height: 2px;
  background-color: #913ef0;
  border-radius: 1px;
  pointer-events: none;
}
.ant-tree-node-content-wrapper .ant-tree-drop-indicator::after {
  position: absolute;
  top: -3px;
  left: -6px;
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 2px solid #913ef0;
  border-radius: 50%;
  content: '';
}
.ant-tree .ant-tree-treenode.drop-container > [draggable] {
  box-shadow: 0 0 0 2px #913ef0;
}
.ant-tree-show-line .ant-tree-indent-unit {
  position: relative;
  height: 100%;
}
.ant-tree-show-line .ant-tree-indent-unit::before {
  position: absolute;
  top: 0;
  right: 12px;
  bottom: -4px;
  border-right: 1px solid #d9d9d9;
  content: '';
}
.ant-tree-show-line .ant-tree-indent-unit-end::before {
  display: none;
}
.ant-tree-show-line .ant-tree-switcher {
  background: #fff;
}
.ant-tree-show-line .ant-tree-switcher-line-icon {
  vertical-align: -0.15em;
}
.ant-tree .ant-tree-treenode-leaf-last .ant-tree-switcher-leaf-line::before {
  top: auto !important;
  bottom: auto !important;
  height: 14px !important;
}
.ant-tree-rtl {
  direction: rtl;
}
.ant-tree-rtl .ant-tree-node-content-wrapper[draggable='true'] .ant-tree-drop-indicator::after {
  right: -6px;
  left: unset;
}
.ant-tree .ant-tree-treenode-rtl {
  direction: rtl;
}
.ant-tree-rtl .ant-tree-switcher_close .ant-tree-switcher-icon svg {
  transform: rotate(90deg);
}
.ant-tree-rtl.ant-tree-show-line .ant-tree-indent-unit::before {
  right: auto;
  left: -13px;
  border-right: none;
  border-left: 1px solid #d9d9d9;
}
.ant-tree-rtl .ant-tree-checkbox {
  margin: 4px 0 0 8px;
}
.ant-tree-select-dropdown-rtl .ant-select-tree-checkbox {
  margin: 4px 0 0 8px;
}
.ant-select-tree-checkbox {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  top: 0.2em;
  line-height: 1;
  white-space: nowrap;
  outline: none;
  cursor: pointer;
}
.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox-inner,
.ant-select-tree-checkbox:hover .ant-select-tree-checkbox-inner,
.ant-select-tree-checkbox-input:focus + .ant-select-tree-checkbox-inner {
  border-color: #913ef0;
}
.ant-select-tree-checkbox-checked::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #913ef0;
  border-radius: 2px;
  visibility: hidden;
  animation: antCheckboxEffect 0.36s ease-in-out;
  animation-fill-mode: backwards;
  content: '';
}
.ant-select-tree-checkbox:hover::after,
.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox::after {
  visibility: visible;
}
.ant-select-tree-checkbox-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  direction: ltr;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  border-collapse: separate;
  transition: all 0.3s;
}
.ant-select-tree-checkbox-inner::after {
  position: absolute;
  top: 50%;
  left: 21.5%;
  display: table;
  width: 5.71428571px;
  height: 9.14285714px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(0) translate(-50%, -50%);
  opacity: 0;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  content: ' ';
}
.ant-select-tree-checkbox-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner::after {
  position: absolute;
  display: table;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(1) translate(-50%, -50%);
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  content: ' ';
}
.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner {
  background-color: #913ef0;
  border-color: #913ef0;
}
.ant-select-tree-checkbox-disabled {
  cursor: not-allowed;
}
.ant-select-tree-checkbox-disabled.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner::after {
  border-color: rgba(0, 0, 0, 0.25);
  animation-name: none;
}
.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-input {
  cursor: not-allowed;
  pointer-events: none;
}
.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner {
  background-color: #f5f5f5;
  border-color: #d9d9d9 !important;
}
.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner::after {
  border-color: #f5f5f5;
  border-collapse: separate;
  animation-name: none;
}
.ant-select-tree-checkbox-disabled + span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-select-tree-checkbox-disabled:hover::after,
.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox-disabled::after {
  visibility: hidden;
}
.ant-select-tree-checkbox-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.6;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-flex;
  align-items: baseline;
  line-height: unset;
  cursor: pointer;
}
.ant-select-tree-checkbox-wrapper::after {
  display: inline-block;
  width: 0;
  overflow: hidden;
  content: '\a0';
}
.ant-select-tree-checkbox-wrapper.ant-select-tree-checkbox-wrapper-disabled {
  cursor: not-allowed;
}
.ant-select-tree-checkbox-wrapper + .ant-select-tree-checkbox-wrapper {
  margin-left: 8px;
}
.ant-select-tree-checkbox-wrapper.ant-select-tree-checkbox-wrapper-in-form-item input[type='checkbox'] {
  width: 14px;
  height: 14px;
}
.ant-select-tree-checkbox + span {
  padding-right: 8px;
  padding-left: 8px;
}
.ant-select-tree-checkbox-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.6;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
}
.ant-select-tree-checkbox-group-item {
  margin-right: 8px;
}
.ant-select-tree-checkbox-group-item:last-child {
  margin-right: 0;
}
.ant-select-tree-checkbox-group-item + .ant-select-tree-checkbox-group-item {
  margin-left: 0;
}
.ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner {
  background-color: #fff;
  border-color: #d9d9d9;
}
.ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner::after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #913ef0;
  border: 0;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  content: ' ';
}
.ant-select-tree-checkbox-indeterminate.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner::after {
  background-color: rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.25);
}
.ant-select-tree-checkbox-rtl {
  direction: rtl;
}
.ant-select-tree-checkbox-group-rtl .ant-select-tree-checkbox-group-item {
  margin-right: 0;
  margin-left: 8px;
}
.ant-select-tree-checkbox-group-rtl .ant-select-tree-checkbox-group-item:last-child {
  margin-left: 0 !important;
}
.ant-select-tree-checkbox-group-rtl .ant-select-tree-checkbox-group-item + .ant-select-tree-checkbox-group-item {
  margin-left: 8px;
}
.ant-tree-select-dropdown {
  padding: 8px 4px;
}
.ant-tree-select-dropdown-rtl {
  direction: rtl;
}
.ant-tree-select-dropdown .ant-select-tree {
  border-radius: 0;
}
.ant-tree-select-dropdown .ant-select-tree-list-holder-inner {
  align-items: stretch;
}
.ant-tree-select-dropdown .ant-select-tree-list-holder-inner .ant-select-tree-treenode .ant-select-tree-node-content-wrapper {
  flex: auto;
}
.ant-select-tree {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  background: #fff;
  border-radius: 2px;
  transition: background-color 0.3s;
}
.ant-select-tree-focused:not(:hover):not(.ant-select-tree-active-focused) {
  background: #f9f0ff;
}
.ant-select-tree-list-holder-inner {
  align-items: flex-start;
}
.ant-select-tree.ant-select-tree-block-node .ant-select-tree-list-holder-inner {
  align-items: stretch;
}
.ant-select-tree.ant-select-tree-block-node .ant-select-tree-list-holder-inner .ant-select-tree-node-content-wrapper {
  flex: auto;
}
.ant-select-tree.ant-select-tree-block-node .ant-select-tree-list-holder-inner .ant-select-tree-treenode.dragging {
  position: relative;
}
.ant-select-tree.ant-select-tree-block-node .ant-select-tree-list-holder-inner .ant-select-tree-treenode.dragging::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 4px;
  left: 0;
  border: 1px solid #913ef0;
  opacity: 0;
  animation: ant-tree-node-fx-do-not-use 0.3s;
  animation-play-state: running;
  animation-fill-mode: forwards;
  content: '';
  pointer-events: none;
}
.ant-select-tree .ant-select-tree-treenode {
  display: flex;
  align-items: flex-start;
  padding: 0 0 4px 0;
  outline: none;
}
.ant-select-tree .ant-select-tree-treenode-disabled .ant-select-tree-node-content-wrapper {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-select-tree .ant-select-tree-treenode-disabled .ant-select-tree-node-content-wrapper:hover {
  background: transparent;
}
.ant-select-tree .ant-select-tree-treenode-active .ant-select-tree-node-content-wrapper {
  background: #f5f5f5;
}
.ant-select-tree .ant-select-tree-treenode:not(.ant-select-tree .ant-select-tree-treenode-disabled).filter-node .ant-select-tree-title {
  color: inherit;
  font-weight: 500;
}
.ant-select-tree .ant-select-tree-treenode-draggable .ant-select-tree-draggable-icon {
  width: 24px;
  line-height: 24px;
  text-align: center;
  visibility: visible;
  opacity: 0.2;
  transition: opacity 0.3s;
}
.ant-select-tree-treenode:hover .ant-select-tree .ant-select-tree-treenode-draggable .ant-select-tree-draggable-icon {
  opacity: 0.45;
}
.ant-select-tree .ant-select-tree-treenode-draggable.ant-select-tree-treenode-disabled .ant-select-tree-draggable-icon {
  visibility: hidden;
}
.ant-select-tree-indent {
  align-self: stretch;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-select-tree-indent-unit {
  display: inline-block;
  width: 24px;
}
.ant-select-tree-draggable-icon {
  visibility: hidden;
}
.ant-select-tree-switcher {
  position: relative;
  flex: none;
  align-self: stretch;
  width: 24px;
  margin: 0;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-select-tree-switcher .ant-tree-switcher-icon,
.ant-select-tree-switcher .ant-select-tree-switcher-icon {
  display: inline-block;
  font-size: 10px;
  vertical-align: baseline;
}
.ant-select-tree-switcher .ant-tree-switcher-icon svg,
.ant-select-tree-switcher .ant-select-tree-switcher-icon svg {
  transition: transform 0.3s;
}
.ant-select-tree-switcher-noop {
  cursor: default;
}
.ant-select-tree-switcher_close .ant-select-tree-switcher-icon svg {
  transform: rotate(-90deg);
}
.ant-select-tree-switcher-loading-icon {
  color: #913ef0;
}
.ant-select-tree-switcher-leaf-line {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.ant-select-tree-switcher-leaf-line::before {
  position: absolute;
  top: 0;
  right: 12px;
  bottom: -4px;
  margin-left: -1px;
  border-right: 1px solid #d9d9d9;
  content: ' ';
}
.ant-select-tree-switcher-leaf-line::after {
  position: absolute;
  width: 10px;
  height: 14px;
  border-bottom: 1px solid #d9d9d9;
  content: ' ';
}
.ant-select-tree-checkbox {
  top: initial;
  margin: 4px 8px 0 0;
}
.ant-select-tree .ant-select-tree-node-content-wrapper {
  position: relative;
  z-index: auto;
  min-height: 24px;
  margin: 0;
  padding: 0 4px;
  color: inherit;
  line-height: 24px;
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s, border 0s, line-height 0s, box-shadow 0s;
}
.ant-select-tree .ant-select-tree-node-content-wrapper:hover {
  background-color: #f5f5f5;
}
.ant-select-tree .ant-select-tree-node-content-wrapper.ant-select-tree-node-selected {
  background-color: #f5e6ff;
}
.ant-select-tree .ant-select-tree-node-content-wrapper .ant-select-tree-iconEle {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  vertical-align: top;
}
.ant-select-tree .ant-select-tree-node-content-wrapper .ant-select-tree-iconEle:empty {
  display: none;
}
.ant-select-tree-unselectable .ant-select-tree-node-content-wrapper:hover {
  background-color: transparent;
}
.ant-select-tree-node-content-wrapper {
  line-height: 24px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ant-select-tree-node-content-wrapper .ant-tree-drop-indicator {
  position: absolute;
  z-index: 1;
  height: 2px;
  background-color: #913ef0;
  border-radius: 1px;
  pointer-events: none;
}
.ant-select-tree-node-content-wrapper .ant-tree-drop-indicator::after {
  position: absolute;
  top: -3px;
  left: -6px;
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 2px solid #913ef0;
  border-radius: 50%;
  content: '';
}
.ant-select-tree .ant-select-tree-treenode.drop-container > [draggable] {
  box-shadow: 0 0 0 2px #913ef0;
}
.ant-select-tree-show-line .ant-select-tree-indent-unit {
  position: relative;
  height: 100%;
}
.ant-select-tree-show-line .ant-select-tree-indent-unit::before {
  position: absolute;
  top: 0;
  right: 12px;
  bottom: -4px;
  border-right: 1px solid #d9d9d9;
  content: '';
}
.ant-select-tree-show-line .ant-select-tree-indent-unit-end::before {
  display: none;
}
.ant-select-tree-show-line .ant-select-tree-switcher {
  background: #fff;
}
.ant-select-tree-show-line .ant-select-tree-switcher-line-icon {
  vertical-align: -0.15em;
}
.ant-select-tree .ant-select-tree-treenode-leaf-last .ant-select-tree-switcher-leaf-line::before {
  top: auto !important;
  bottom: auto !important;
  height: 14px !important;
}
.ant-tree-select-dropdown-rtl .ant-select-tree .ant-select-tree-switcher_close .ant-select-tree-switcher-icon svg {
  transform: rotate(90deg);
}
.ant-tree-select-dropdown-rtl .ant-select-tree .ant-select-tree-switcher-loading-icon {
  transform: scaleY(-1);
}
.ant-typography {
  color: rgba(0, 0, 0, 0.85);
  word-break: break-word;
}
.ant-typography.ant-typography-secondary {
  color: rgba(0, 0, 0, 0.45);
}
.ant-typography.ant-typography-success {
  color: #5ae399;
}
.ant-typography.ant-typography-warning {
  color: #FFB946;
}
.ant-typography.ant-typography-danger {
  color: #E54963;
}
a.ant-typography.ant-typography-danger:active,
a.ant-typography.ant-typography-danger:focus {
  color: #bf3450;
}
a.ant-typography.ant-typography-danger:hover {
  color: #f27485;
}
.ant-typography.ant-typography-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
div.ant-typography,
.ant-typography p {
  margin-bottom: 1em;
}
h1.ant-typography,
div.ant-typography-h1,
div.ant-typography-h1 > textarea,
.ant-typography h1 {
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
  font-size: 38px;
  line-height: 1.23;
}
h2.ant-typography,
div.ant-typography-h2,
div.ant-typography-h2 > textarea,
.ant-typography h2 {
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.35;
}
h3.ant-typography,
div.ant-typography-h3,
div.ant-typography-h3 > textarea,
.ant-typography h3 {
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.35;
}
h4.ant-typography,
div.ant-typography-h4,
div.ant-typography-h4 > textarea,
.ant-typography h4 {
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
}
h5.ant-typography,
div.ant-typography-h5,
div.ant-typography-h5 > textarea,
.ant-typography h5 {
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
.ant-typography + h1.ant-typography,
.ant-typography + h2.ant-typography,
.ant-typography + h3.ant-typography,
.ant-typography + h4.ant-typography,
.ant-typography + h5.ant-typography {
  margin-top: 1.2em;
}
.ant-typography div + h1,
.ant-typography ul + h1,
.ant-typography li + h1,
.ant-typography p + h1,
.ant-typography h1 + h1,
.ant-typography h2 + h1,
.ant-typography h3 + h1,
.ant-typography h4 + h1,
.ant-typography h5 + h1,
.ant-typography div + h2,
.ant-typography ul + h2,
.ant-typography li + h2,
.ant-typography p + h2,
.ant-typography h1 + h2,
.ant-typography h2 + h2,
.ant-typography h3 + h2,
.ant-typography h4 + h2,
.ant-typography h5 + h2,
.ant-typography div + h3,
.ant-typography ul + h3,
.ant-typography li + h3,
.ant-typography p + h3,
.ant-typography h1 + h3,
.ant-typography h2 + h3,
.ant-typography h3 + h3,
.ant-typography h4 + h3,
.ant-typography h5 + h3,
.ant-typography div + h4,
.ant-typography ul + h4,
.ant-typography li + h4,
.ant-typography p + h4,
.ant-typography h1 + h4,
.ant-typography h2 + h4,
.ant-typography h3 + h4,
.ant-typography h4 + h4,
.ant-typography h5 + h4,
.ant-typography div + h5,
.ant-typography ul + h5,
.ant-typography li + h5,
.ant-typography p + h5,
.ant-typography h1 + h5,
.ant-typography h2 + h5,
.ant-typography h3 + h5,
.ant-typography h4 + h5,
.ant-typography h5 + h5 {
  margin-top: 1.2em;
}
a.ant-typography-ellipsis,
span.ant-typography-ellipsis {
  display: inline-block;
  max-width: 100%;
}
a.ant-typography,
.ant-typography a {
  color: black;
  outline: none;
  cursor: pointer;
  transition: color 0.3s;
  text-decoration: none;
}
a.ant-typography:focus-visible,
.ant-typography a:focus-visible,
a.ant-typography:hover,
.ant-typography a:hover {
  color: #0d0d0d;
}
a.ant-typography:active,
.ant-typography a:active {
  color: #000000;
}
a.ant-typography:active,
.ant-typography a:active,
a.ant-typography:hover,
.ant-typography a:hover {
  text-decoration: none;
}
a.ant-typography[disabled],
.ant-typography a[disabled],
a.ant-typography.ant-typography-disabled,
.ant-typography a.ant-typography-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
a.ant-typography[disabled]:active,
.ant-typography a[disabled]:active,
a.ant-typography.ant-typography-disabled:active,
.ant-typography a.ant-typography-disabled:active,
a.ant-typography[disabled]:hover,
.ant-typography a[disabled]:hover,
a.ant-typography.ant-typography-disabled:hover,
.ant-typography a.ant-typography-disabled:hover {
  color: rgba(0, 0, 0, 0.25);
}
a.ant-typography[disabled]:active,
.ant-typography a[disabled]:active,
a.ant-typography.ant-typography-disabled:active,
.ant-typography a.ant-typography-disabled:active {
  pointer-events: none;
}
.ant-typography code {
  margin: 0 0.2em;
  padding: 0.2em 0.4em 0.1em;
  font-size: 85%;
  background: rgba(150, 150, 150, 0.1);
  border: 1px solid rgba(100, 100, 100, 0.2);
  border-radius: 3px;
}
.ant-typography kbd {
  margin: 0 0.2em;
  padding: 0.15em 0.4em 0.1em;
  font-size: 90%;
  background: rgba(150, 150, 150, 0.06);
  border: 1px solid rgba(100, 100, 100, 0.2);
  border-bottom-width: 2px;
  border-radius: 3px;
}
.ant-typography mark {
  padding: 0;
  background-color: #ffe58f;
}
.ant-typography u,
.ant-typography ins {
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
.ant-typography s,
.ant-typography del {
  text-decoration: line-through;
}
.ant-typography strong {
  font-weight: 600;
}
.ant-typography-expand,
.ant-typography-edit,
.ant-typography-copy {
  color: black;
  outline: none;
  cursor: pointer;
  transition: color 0.3s;
  margin-left: 4px;
}
.ant-typography-expand:focus-visible,
.ant-typography-edit:focus-visible,
.ant-typography-copy:focus-visible,
.ant-typography-expand:hover,
.ant-typography-edit:hover,
.ant-typography-copy:hover {
  color: #0d0d0d;
}
.ant-typography-expand:active,
.ant-typography-edit:active,
.ant-typography-copy:active {
  color: #000000;
}
.ant-typography-copy-success,
.ant-typography-copy-success:hover,
.ant-typography-copy-success:focus {
  color: #5ae399;
}
.ant-typography-edit-content {
  position: relative;
}
div.ant-typography-edit-content {
  left: -12px;
  margin-top: -4.8px;
  margin-bottom: calc(1em - 3.8px - 1px);
}
.ant-typography-edit-content-confirm {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: rgba(0, 0, 0, 0.45);
  font-weight: normal;
  font-size: 14px;
  font-style: normal;
  pointer-events: none;
}
.ant-typography-edit-content textarea {
  height: 1em;
  margin: 0 !important;
  /* stylelint-disable-next-line property-no-vendor-prefix */
  -moz-transition: none;
}
.ant-typography ul,
.ant-typography ol {
  margin: 0 0 1em;
  padding: 0;
}
.ant-typography ul li,
.ant-typography ol li {
  margin: 0 0 0 20px;
  padding: 0 0 0 4px;
}
.ant-typography ul {
  list-style-type: circle;
}
.ant-typography ul ul {
  list-style-type: disc;
}
.ant-typography ol {
  list-style-type: decimal;
}
.ant-typography pre,
.ant-typography blockquote {
  margin: 1em 0;
}
.ant-typography pre {
  padding: 0.4em 0.6em;
  white-space: pre-wrap;
  word-wrap: break-word;
  background: rgba(150, 150, 150, 0.1);
  border: 1px solid rgba(100, 100, 100, 0.2);
  border-radius: 3px;
}
.ant-typography pre code {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  background: transparent;
  border: 0;
}
.ant-typography blockquote {
  padding: 0 0 0 0.6em;
  border-left: 4px solid rgba(100, 100, 100, 0.2);
  opacity: 0.85;
}
.ant-typography-single-line {
  white-space: nowrap;
}
.ant-typography-ellipsis-single-line {
  overflow: hidden;
  text-overflow: ellipsis;
}
a.ant-typography-ellipsis-single-line,
span.ant-typography-ellipsis-single-line {
  vertical-align: bottom;
}
.ant-typography-ellipsis-multiple-line {
  /* stylelint-disable-next-line value-no-vendor-prefix */
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
}
.ant-typography-rtl {
  direction: rtl;
}
.ant-typography-rtl .ant-typography-expand,
.ant-typography-rtl .ant-typography-edit,
.ant-typography-rtl .ant-typography-copy {
  margin-right: 4px;
  margin-left: 0;
}
.ant-typography-rtl .ant-typography-expand {
  float: left;
}
div.ant-typography-edit-content.ant-typography-rtl {
  right: -12px;
  left: auto;
}
.ant-typography-rtl .ant-typography-edit-content-confirm {
  right: auto;
  left: 10px;
}
.ant-typography-rtl.ant-typography ul li,
.ant-typography-rtl.ant-typography ol li {
  margin: 0 20px 0 0;
  padding: 0 4px 0 0;
}
.ant-upload {
  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.6;
  list-style: none;
  font-feature-settings: 'tnum';
  outline: 0;
}
.ant-upload p {
  margin: 0;
}
.ant-upload-btn {
  display: block;
  width: 100%;
  outline: none;
}
.ant-upload input[type='file'] {
  cursor: pointer;
}
.ant-upload.ant-upload-select {
  display: inline-block;
}
.ant-upload.ant-upload-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-upload.ant-upload-select-picture-card {
  width: 104px;
  height: 104px;
  margin-right: 8px;
  margin-bottom: 8px;
  text-align: center;
  vertical-align: top;
  background-color: #fafafa;
  border: 1px dashed #d9d9d9;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.3s;
}
.ant-upload.ant-upload-select-picture-card > .ant-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}
.ant-upload.ant-upload-select-picture-card:hover {
  border-color: #913ef0;
}
.ant-upload-disabled.ant-upload.ant-upload-select-picture-card:hover {
  border-color: #d9d9d9;
}
.ant-upload.ant-upload-drag {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #fafafa;
  border: 1px dashed #d9d9d9;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.3s;
}
.ant-upload.ant-upload-drag .ant-upload {
  padding: 16px 0;
}
.ant-upload.ant-upload-drag.ant-upload-drag-hover:not(.ant-upload-disabled) {
  border-color: #6f2ac9;
}
.ant-upload.ant-upload-drag.ant-upload-disabled {
  cursor: not-allowed;
}
.ant-upload.ant-upload-drag .ant-upload-btn {
  display: table;
  height: 100%;
}
.ant-upload.ant-upload-drag .ant-upload-drag-container {
  display: table-cell;
  vertical-align: middle;
}
.ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover {
  border-color: #b36afc;
}
.ant-upload.ant-upload-drag p.ant-upload-drag-icon {
  margin-bottom: 20px;
}
.ant-upload.ant-upload-drag p.ant-upload-drag-icon .anticon {
  color: #b36afc;
  font-size: 48px;
}
.ant-upload.ant-upload-drag p.ant-upload-text {
  margin: 0 0 4px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
}
.ant-upload.ant-upload-drag p.ant-upload-hint {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.ant-upload.ant-upload-drag .anticon-plus {
  color: rgba(0, 0, 0, 0.25);
  font-size: 30px;
  transition: all 0.3s;
}
.ant-upload.ant-upload-drag .anticon-plus:hover {
  color: rgba(0, 0, 0, 0.45);
}
.ant-upload.ant-upload-drag:hover .anticon-plus {
  color: rgba(0, 0, 0, 0.45);
}
.ant-upload-picture-card-wrapper {
  display: inline-block;
  width: 100%;
}
.ant-upload-picture-card-wrapper::before {
  display: table;
  content: '';
}
.ant-upload-picture-card-wrapper::after {
  display: table;
  clear: both;
  content: '';
}
.ant-upload-picture-card-wrapper::before {
  display: table;
  content: '';
}
.ant-upload-picture-card-wrapper::after {
  display: table;
  clear: both;
  content: '';
}
.ant-upload-list {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: 'tnum';
  line-height: 1.6;
}
.ant-upload-list::before {
  display: table;
  content: '';
}
.ant-upload-list::after {
  display: table;
  clear: both;
  content: '';
}
.ant-upload-list::before {
  display: table;
  content: '';
}
.ant-upload-list::after {
  display: table;
  clear: both;
  content: '';
}
.ant-upload-list-item {
  position: relative;
  height: 22.4px;
  margin-top: 8px;
  font-size: 14px;
}
.ant-upload-list-item-name {
  display: inline-block;
  width: 100%;
  padding-left: 22px;
  overflow: hidden;
  line-height: 1.6;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-upload-list-item-card-actions {
  position: absolute;
  right: 0;
}
.ant-upload-list-item-card-actions-btn {
  opacity: 0;
}
.ant-upload-list-item-card-actions-btn.ant-btn-sm {
  height: 22.4px;
  line-height: 1;
  vertical-align: top;
}
.ant-upload-list-item-card-actions.picture {
  top: 22px;
  line-height: 0;
}
.ant-upload-list-item-card-actions-btn:focus,
.ant-upload-list-item-card-actions.picture .ant-upload-list-item-card-actions-btn {
  opacity: 1;
}
.ant-upload-list-item-card-actions .anticon {
  color: rgba(0, 0, 0, 0.45);
  transition: all 0.3s;
}
.ant-upload-list-item-card-actions:hover .anticon {
  color: rgba(0, 0, 0, 0.85);
}
.ant-upload-list-item-info {
  height: 100%;
  transition: background-color 0.3s;
}
.ant-upload-list-item-info > span {
  display: block;
  width: 100%;
  height: 100%;
}
.ant-upload-list-item-info .anticon-loading .anticon,
.ant-upload-list-item-info .ant-upload-text-icon .anticon {
  position: absolute;
  top: 5px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.ant-upload-list-item:hover .ant-upload-list-item-info {
  background-color: #f5f5f5;
}
.ant-upload-list-item:hover .ant-upload-list-item-card-actions-btn {
  opacity: 1;
}
.ant-upload-list-item-error,
.ant-upload-list-item-error .ant-upload-text-icon > .anticon,
.ant-upload-list-item-error .ant-upload-list-item-name {
  color: #E54963;
}
.ant-upload-list-item-error .ant-upload-list-item-card-actions .anticon {
  color: #E54963;
}
.ant-upload-list-item-error .ant-upload-list-item-card-actions-btn {
  opacity: 1;
}
.ant-upload-list-item-progress {
  position: absolute;
  bottom: -12px;
  width: 100%;
  padding-left: 26px;
  font-size: 14px;
  line-height: 0;
}
.ant-upload-list-picture .ant-upload-list-item,
.ant-upload-list-picture-card .ant-upload-list-item {
  position: relative;
  height: 66px;
  padding: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
}
.ant-upload-list-picture .ant-upload-list-item:hover,
.ant-upload-list-picture-card .ant-upload-list-item:hover {
  background: transparent;
}
.ant-upload-list-picture .ant-upload-list-item-error,
.ant-upload-list-picture-card .ant-upload-list-item-error {
  border-color: #E54963;
}
.ant-upload-list-picture .ant-upload-list-item-info,
.ant-upload-list-picture-card .ant-upload-list-item-info {
  padding: 0;
}
.ant-upload-list-picture .ant-upload-list-item:hover .ant-upload-list-item-info,
.ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info {
  background: transparent;
}
.ant-upload-list-picture .ant-upload-list-item-uploading,
.ant-upload-list-picture-card .ant-upload-list-item-uploading {
  border-style: dashed;
}
.ant-upload-list-picture .ant-upload-list-item-thumbnail,
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail {
  width: 48px;
  height: 48px;
  line-height: 60px;
  text-align: center;
  opacity: 0.8;
}
.ant-upload-list-picture .ant-upload-list-item-thumbnail .anticon,
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail .anticon {
  font-size: 26px;
}
.ant-upload-list-picture .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#e6f7ff'],
.ant-upload-list-picture-card .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#e6f7ff'] {
  fill: #fff0f0;
}
.ant-upload-list-picture .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#1890ff'],
.ant-upload-list-picture-card .ant-upload-list-item-error .ant-upload-list-item-thumbnail .anticon svg path[fill='#1890ff'] {
  fill: #E54963;
}
.ant-upload-list-picture .ant-upload-list-item-icon,
.ant-upload-list-picture-card .ant-upload-list-item-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 26px;
  transform: translate(-50%, -50%);
}
.ant-upload-list-picture .ant-upload-list-item-icon .anticon,
.ant-upload-list-picture-card .ant-upload-list-item-icon .anticon {
  font-size: 26px;
}
.ant-upload-list-picture .ant-upload-list-item-image,
.ant-upload-list-picture-card .ant-upload-list-item-image {
  max-width: 100%;
}
.ant-upload-list-picture .ant-upload-list-item-thumbnail img,
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail img {
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
}
.ant-upload-list-picture .ant-upload-list-item-name,
.ant-upload-list-picture-card .ant-upload-list-item-name {
  display: inline-block;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 0 0 8px;
  padding-right: 8px;
  padding-left: 48px;
  overflow: hidden;
  line-height: 44px;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.3s;
}
.ant-upload-list-picture .ant-upload-list-item-uploading .ant-upload-list-item-name,
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-name {
  margin-bottom: 12px;
}
.ant-upload-list-picture .ant-upload-list-item-progress,
.ant-upload-list-picture-card .ant-upload-list-item-progress {
  bottom: 14px;
  width: calc(100% - 24px);
  margin-top: 0;
  padding-left: 56px;
}
.ant-upload-list-picture-card-container {
  display: inline-block;
  width: 104px;
  height: 104px;
  margin: 0 8px 8px 0;
  vertical-align: top;
}
.ant-upload-list-picture-card .ant-upload-list-item {
  height: 100%;
  margin: 0;
}
.ant-upload-list-picture-card .ant-upload-list-item-info {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.ant-upload-list-picture-card .ant-upload-list-item-info::before {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s;
  content: ' ';
}
.ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info::before {
  opacity: 1;
}
.ant-upload-list-picture-card .ant-upload-list-item-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s;
}
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye,
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download,
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete {
  z-index: 10;
  width: 16px;
  margin: 0 4px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye:hover,
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download:hover,
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete:hover {
  color: #fff;
}
.ant-upload-list-picture-card .ant-upload-list-item-info:hover + .ant-upload-list-item-actions,
.ant-upload-list-picture-card .ant-upload-list-item-actions:hover {
  opacity: 1;
}
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail,
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.ant-upload-list-picture-card .ant-upload-list-item-name {
  display: none;
  margin: 8px 0 0;
  padding: 0;
  line-height: 1.6;
  text-align: center;
}
.ant-upload-list-picture-card .ant-upload-list-item-file + .ant-upload-list-item-name {
  position: absolute;
  bottom: 10px;
  display: block;
}
.ant-upload-list-picture-card .ant-upload-list-item-uploading.ant-upload-list-item {
  background-color: #fafafa;
}
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info {
  height: auto;
}
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info::before,
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-eye,
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-delete {
  display: none;
}
.ant-upload-list-picture-card .ant-upload-list-item-progress {
  bottom: 32px;
  width: calc(100% - 14px);
  padding-left: 0;
}
.ant-upload-list-text-container,
.ant-upload-list-picture-container {
  transition: opacity 0.3s, height 0.3s;
}
.ant-upload-list-text-container::before,
.ant-upload-list-picture-container::before {
  display: table;
  width: 0;
  height: 0;
  content: '';
}
.ant-upload-list-text-container .ant-upload-span,
.ant-upload-list-picture-container .ant-upload-span {
  display: block;
  flex: auto;
}
.ant-upload-list-text .ant-upload-span,
.ant-upload-list-picture .ant-upload-span {
  display: flex;
  align-items: center;
}
.ant-upload-list-text .ant-upload-span > *,
.ant-upload-list-picture .ant-upload-span > * {
  flex: none;
}
.ant-upload-list-text .ant-upload-list-item-name,
.ant-upload-list-picture .ant-upload-list-item-name {
  flex: auto;
  margin: 0;
  padding: 0 8px;
}
.ant-upload-list-text .ant-upload-list-item-card-actions,
.ant-upload-list-picture .ant-upload-list-item-card-actions {
  position: static;
}
.ant-upload-list-text .ant-upload-text-icon .anticon {
  position: static;
}
.ant-upload-list .ant-upload-animate-inline-appear,
.ant-upload-list .ant-upload-animate-inline-enter,
.ant-upload-list .ant-upload-animate-inline-leave {
  animation-duration: 0.3s;
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  animation-fill-mode: forwards;
}
.ant-upload-list .ant-upload-animate-inline-appear,
.ant-upload-list .ant-upload-animate-inline-enter {
  animation-name: uploadAnimateInlineIn;
}
.ant-upload-list .ant-upload-animate-inline-leave {
  animation-name: uploadAnimateInlineOut;
}
@keyframes uploadAnimateInlineIn {
  from {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}
@keyframes uploadAnimateInlineOut {
  to {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}
.ant-upload-rtl {
  direction: rtl;
}
.ant-upload-rtl.ant-upload.ant-upload-select-picture-card {
  margin-right: auto;
  margin-left: 8px;
}
.ant-upload-list-rtl {
  direction: rtl;
}
.ant-upload-list-rtl .ant-upload-list-item-list-type-text:hover .ant-upload-list-item-name-icon-count-1 {
  padding-right: 22px;
  padding-left: 14px;
}
.ant-upload-list-rtl .ant-upload-list-item-list-type-text:hover .ant-upload-list-item-name-icon-count-2 {
  padding-right: 22px;
  padding-left: 28px;
}
.ant-upload-list-rtl .ant-upload-list-item-name {
  padding-right: 22px;
  padding-left: 0;
}
.ant-upload-list-rtl .ant-upload-list-item-name-icon-count-1 {
  padding-left: 14px;
}
.ant-upload-list-rtl .ant-upload-list-item-card-actions {
  right: auto;
  left: 0;
}
.ant-upload-list-rtl .ant-upload-list-item-card-actions .anticon {
  padding-right: 0;
  padding-left: 5px;
}
.ant-upload-list-rtl .ant-upload-list-item-info {
  padding: 0 4px 0 12px;
}
.ant-upload-list-rtl .ant-upload-list-item-error .ant-upload-list-item-card-actions .anticon {
  padding-right: 0;
  padding-left: 5px;
}
.ant-upload-list-rtl .ant-upload-list-item-progress {
  padding-right: 26px;
  padding-left: 0;
}
.ant-upload-list-picture .ant-upload-list-item-info,
.ant-upload-list-picture-card .ant-upload-list-item-info {
  padding: 0;
}
.ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-thumbnail,
.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-thumbnail {
  right: 8px;
  left: auto;
}
.ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-icon,
.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-icon {
  right: 50%;
  left: auto;
  transform: translate(50%, -50%);
}
.ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-name,
.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-name {
  margin: 0 8px 0 0;
  padding-right: 48px;
  padding-left: 8px;
}
.ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-name-icon-count-1,
.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-name-icon-count-1 {
  padding-right: 48px;
  padding-left: 18px;
}
.ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-name-icon-count-2,
.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-name-icon-count-2 {
  padding-right: 48px;
  padding-left: 36px;
}
.ant-upload-list-rtl.ant-upload-list-picture .ant-upload-list-item-progress,
.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-progress {
  padding-right: 0;
  padding-left: 0;
}
.ant-upload-list-rtl .ant-upload-list-picture-card-container {
  margin: 0 0 8px 8px;
}
.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-actions {
  right: 50%;
  left: auto;
  transform: translate(50%, -50%);
}
.ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-file + .ant-upload-list-item-name {
  margin: 8px 0 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
p {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}
/* Color styles from figma */
@font-face {
  font-family: 'SimplonMono';
  src: url('../fonts/SimplonMono-Light.woff2') format('woff2'), url('../fonts/SimplonMono-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'SimplonMono';
  src: url('../fonts/SimplonMono-Medium.woff2') format('woff2'), url('../fonts/SimplonMono-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'SimplonMono';
  src: url('../fonts/SimplonMono-Regular.woff2') format('woff2'), url('../fonts/SimplonMono-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Beatrice';
  src: url("../fonts/Beatrice-Regular.eot");
  src: url("../fonts/Beatrice-Regular.eot?#iefix") format('embedded-opentype'), url("../fonts/Beatrice-Regular.woff2") format('woff2'), url("../fonts/Beatrice-Regular.woff") format('woff'), url("../fonts/Beatrice-Regular.ttf") format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Beatrice';
  src: url("../fonts/Beatrice-RegularItalic.eot");
  src: url("../fonts/Beatrice-RegularItalic.eot?#iefix") format('embedded-opentype'), url("../fonts/Beatrice-RegularItalic.woff2") format('woff2'), url("../fonts/Beatrice-RegularItalic.woff") format('woff'), url("../fonts/Beatrice-RegularItalic.ttf") format('truetype');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Beatrice';
  src: url("../fonts/Beatrice-Medium.eot");
  src: url("../fonts/Beatrice-Medium.eot?#iefix") format('embedded-opentype'), url("../fonts/Beatrice-Medium.woff2") format('woff2'), url("../fonts/Beatrice-Medium.woff") format('woff'), url("../fonts/Beatrice-Medium.ttf") format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Beatrice-Bold';
  src: url("../fonts/Beatrice-Bold.eot");
  src: url("../fonts/Beatrice-Bold.eot?#iefix") format('embedded-opentype'), url("../fonts/Beatrice-Bold.woff2") format('woff2'), url("../fonts/Beatrice-Bold.woff") format('woff'), url("../fonts/Beatrice-Bold.ttf") format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Beatrice-Bold';
  src: url("../fonts/Beatrice-ExtraBold.eot");
  src: url("../fonts/Beatrice-ExtraBold.eot?#iefix") format('embedded-opentype'), url("../fonts/Beatrice-ExtraBold.woff2") format('woff2'), url("../fonts/Beatrice-ExtraBold.woff") format('woff'), url("../fonts/Beatrice-ExtraBold.ttf") format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Beatrice';
  src: url("../fonts/Beatrice-Light.eot");
  src: url("../fonts/Beatrice-Light.eot?#iefix") format('embedded-opentype'), url("../fonts/Beatrice-Light.woff2") format('woff2'), url("../fonts/Beatrice-Light.woff") format('woff'), url("../fonts/Beatrice-Light.ttf") format('truetype');
  font-weight: 300;
  font-style: normal;
}
body {
  font-family: 'Beatrice', sans-serif;
  letter-spacing: 0.01em;
  font-weight: normal;
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Beatrice', sans-serif;
  letter-spacing: 0.01em;
  font-weight: normal;
  font-style: normal;
}
.fa-brand {
  font-family: "Font Awesome 5 Brands" !important;
}
.text-bold {
  font-weight: bold;
}
.talent-scaling {
  /* or use */
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
}
nav.navbar {
  padding: 0;
  background-color: white!important;
  align-items: center;
  justify-content: space-between;
}
nav.navbar .navbar-collapse,
nav.navbar .logo-link,
nav.navbar .registration-header {
  flex: 1;
}
nav.navbar .navbar-toggler {
  margin-right: 10px;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  nav.navbar .navbar-collapse {
    box-shadow: 0 6px 4px -4px rgba(0, 0, 0, 0.5);
    border-top: 1px solid #ececec;
    padding-left: 15px;
    overflow: hidden;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 500;
    background: inherit;
  }
  nav.navbar .navbar-collapse .nav-item {
    margin: 3px 0;
  }
}
.d-hidden {
  display: none;
}
.registration-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.registration-header h3 {
  font-style: normal;
  font-weight: normal;
  font-size: 19px;
  line-height: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.01em;
  color: black;
  font-family: Beatrice, sans-serif;
  margin-bottom: 0;
}
.register-username {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: center;
  margin-bottom: 0;
  white-space: nowrap;
  margin-left: auto;
  font-size: 16px;
  color: var(--theme-secondary, '#913ef0');
  font-weight: 400;
  margin-right: 25px;
}
.nav-icon-links-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-grow: 1;
  justify-content: space-evenly;
  max-width: 350px;
}
.nav-icon-links-container .nav-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}
.nav-icon-links-container .nav-icon-link i {
  transition: color 250ms ease-in;
}
.nav-icon-links-container .nav-icon-link:hover a,
.nav-icon-links-container .nav-icon-link:focus a,
.nav-icon-links-container .nav-icon-link.active a {
  border: none;
  outline: none;
  text-decoration: none;
}
.nav-icon-links-container .nav-icon-link:hover a:hover,
.nav-icon-links-container .nav-icon-link:focus a:hover,
.nav-icon-links-container .nav-icon-link.active a:hover,
.nav-icon-links-container .nav-icon-link:hover a:focus,
.nav-icon-links-container .nav-icon-link:focus a:focus,
.nav-icon-links-container .nav-icon-link.active a:focus,
.nav-icon-links-container .nav-icon-link:hover a:visited,
.nav-icon-links-container .nav-icon-link:focus a:visited,
.nav-icon-links-container .nav-icon-link.active a:visited {
  border: none;
  outline: none;
  text-decoration: none;
}
.nav-icon-links-container .nav-icon-link:hover a i,
.nav-icon-links-container .nav-icon-link:focus a i,
.nav-icon-links-container .nav-icon-link.active a i {
  color: var(--theme-secondary, '#913ef0');
}
.nav-icon-links-container .nav-icon-link a {
  padding: 5px;
  border: none;
}
.nav-icon-links-container .nav-icon-link i {
  font-size: 25px;
  line-height: 25px;
  display: flex;
  align-items: center;
  text-align: center;
  color: black;
  margin-bottom: 0;
}
.nav-icon-links-container .nav-icon-link.active {
  pointer-events: none;
}
.navbar-container {
  height: 100%;
  flex: 1;
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 18px 0;
}
.navbar-container .logo-link {
  margin-left: 25px;
  height: 24px;
}
.navbar-container .logo-link img {
  height: 100%;
}
.navbar-container .nav-items {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.navbar-container .nav-item .dropdown-divider {
  height: 60px;
}
.navbar-container .navbar-nav {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nav-row-divider {
  height: 30px;
  background-color: #e9ecef;
  width: 1px;
}
#navbar-menu {
  flex-grow: 1 !important;
  flex: 1 !important;
}
.nav-link {
  display: inline;
  padding: 0 2.5rem;
  color: #000000 !important;
  font-size: 13px;
  line-height: 22px;
}
.logo-link {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  display: flex;
  margin: auto 0;
  padding: 0;
  height: 60px;
}
.logo-link img {
  padding: 0 25px;
  height: 24px;
}
.nav-collapse {
  display: flex;
}
.client-org {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #000000;
  margin: 0 0 0 2rem;
}
@media only screen and (max-width: 768px) {
  .navbar-container {
    padding: 0;
  }
  .navbar-nav {
    padding: 0.5rem;
  }
  .client-org {
    color: var(--theme-primary, '#5f3db1');
    margin: 0.5em auto;
  }
}
.nav-divider {
  align-self: stretch;
  margin: 0 2rem;
  background-color: var(--theme-primary, '#5f3db1');
  width: 1px;
}
.nav-container {
  min-height: 90px;
  display: flex;
  align-items: center;
  background-color: #000000;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding: 15px;
  flex-wrap: wrap;
}
.nav-container .nav-info {
  flex-grow: 1;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  margin: 0 10px;
}
.nav-container .nav-info .nav-title,
.nav-container .nav-info .nav-subtitle {
  margin: 0 2rem 0 0;
  color: white;
}
.nav-container .nav-info .nav-title {
  font-weight: 300;
  font-size: 1.5rem;
}
.nav-container .nav-info .nav-subtitle {
  font-size: 12px;
}
.talent-portal-page .nav-alert,
.bidding-wizard .nav-alert,
.talent-scaling .nav-alert {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  background-color: var(--theme-info, '#4B80E7');
}
.talent-portal-page .nav-alert p,
.bidding-wizard .nav-alert p,
.talent-scaling .nav-alert p {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  padding: 6px 8px;
  text-align: center;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: white;
  font-style: normal;
  margin-bottom: 0;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently */
}
.talent-portal-page .nav-alert.nav-danger p b,
.bidding-wizard .nav-alert.nav-danger p b,
.talent-scaling .nav-alert.nav-danger p b,
.talent-portal-page .nav-alert.nav-info p b,
.bidding-wizard .nav-alert.nav-info p b,
.talent-scaling .nav-alert.nav-info p b {
  text-decoration: underline;
}
.talent-portal-page .nav-alert.nav-danger,
.bidding-wizard .nav-alert.nav-danger,
.talent-scaling .nav-alert.nav-danger {
  background-color: var(--theme-danger, '#E54963');
}
.talent-portal-page .nav-alert.nav-info,
.bidding-wizard .nav-alert.nav-info,
.talent-scaling .nav-alert.nav-info {
  background-color: var(--theme-info, '#4B80E7');
}
.talent-portal-page .nav-alert.nav-warning,
.bidding-wizard .nav-alert.nav-warning,
.talent-scaling .nav-alert.nav-warning {
  background-color: var(--theme-warning, '#FFB946');
}
.talent-portal-page .nav-alert.nav-warning p,
.bidding-wizard .nav-alert.nav-warning p,
.talent-scaling .nav-alert.nav-warning p {
  color: black;
}
.talent-portal-page .nav-alert {
  border-top: 0.5px solid white;
}
@media only screen and (max-width: 767px) {
  .talent-portal-page .nav-alert,
  .bidding-wizard .nav-alert {
    height: 50px;
  }
  .talent-portal-page .nav-alert p,
  .bidding-wizard .nav-alert p {
    max-width: 450px;
  }
}
.status-tabs {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 15px;
}
@media only screen and (max-width: 720px) {
  .status-tabs {
    display: none;
  }
}
.min-w-full {
  min-width: 100%;
}
.white-panel {
  background-color: white;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
}
.dark-panel {
  background-color: black;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
}
.bordered-panel {
  border-top: 20px solid #000000;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
}
.accordion-item--opened .accordion-item__icon {
  transform: rotate(180deg);
}
.accordion-item--opened .accordion-item__inner {
  transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition-duration: 400ms;
  transition-property: max-height;
  max-height: 500rem;
}
.accordion-item--opened .accordion-item__content {
  opacity: 1;
  transform: translateY(0);
  transition-timing-function: ease-in-out;
  transition-duration: 400ms;
}
.accordion-item__line {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  z-index: 2;
  position: relative;
  align-self: stretch;
}
.accordion-item--opened .accordion-item__icon:before {
  transform: rotate(180deg);
  left: 100%;
  right: unset;
  height: 1.2rem;
  content: 'Close';
  width: auto;
}
.accordion-item__icon {
  align-self: flex-start;
  position: absolute;
  right: 0;
  top: -3px;
  width: 1.2rem;
  height: 1.2rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAQAAABIkb+zAAABGklEQVR4Ae3RAcZCQRiF4buDfwshBGi+2UQgcIGAVtpSIuS/KyilG+UTcbk6zIH3GQBm3mM6AAAAAAAAAACA+eqf/yZBXcV/2XeCVPYx1FXj/FjGUMd45AQp/1HHGGLZNL+e61jHnKDmv8652YT1IvPfE2LX/Sh27/ycsF60yT/lk58JYn6eU4MJccjnlAmZ/33i0OAH4jg9Qcw/5g9YJpS+m6n0xvzpCfVe+nn59S7kGyYo+YYJWz3fO+E2PaFs9XzPhMy/6fmWCXq+YUJs9HzrhLh+JsQmrnq+bYKeb52g53snXPR88wQ93z9Bz/dP0PP9E/R89wQ93zpBz7dO0POtE/R86wQ93zpBzzdP+MoHAAAAAAAAAADAExTnTW20AtjhAAAAAElFTkSuQmCC);
}
.accordion-item__icon:before {
  content: "Wripple Approach";
  white-space: nowrap;
  position: absolute;
  right: 100%;
  text-decoration: underline;
  color: var(--theme-secondary, '#913ef0');
  padding-right: 10px;
  height: 1.2rem;
}
.accordion-item__inner {
  max-height: 0;
  overflow: hidden;
  transition-duration: 500ms;
  transition-property: max-height;
  z-index: 1;
  position: relative;
}
.accordion-item__content {
  opacity: 0;
  transform: translateY(-1rem);
  transition-timing-function: linear, ease;
  transition-duration: 300ms;
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 0 8px;
  border: 8px solid var(--theme-secondary, '#913ef0');
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--theme-secondary, '#913ef0') transparent transparent transparent;
}
.lds-ring.white div {
  border-color: white transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.wripple-footer {
  margin-top: auto;
  display: flex;
  width: 100%;
  align-items: center;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 0 40px;
}
.wripple-footer p,
.wripple-footer a {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #98A9BC;
  padding: 0;
  margin: 10px 25px;
  white-space: nowrap;
}
@media only screen and (max-width: 529px) {
  .wripple-footer {
    justify-content: center;
    padding: 0 20px;
  }
}
.table-shrink-cell {
  width: 0.01%;
  white-space: nowrap;
}
.table-pagination {
  margin: 5px 10px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.table-pagination p {
  margin: 0;
  font-size: 15px;
  font-family: Beatrice, sans-serif;
}
.table-pagination nav {
  margin-left: auto;
}
.table-pagination .table-pagination-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.table-pagination .table-pagination-info .pagination-children {
  margin: 0 15px;
}
.table-pagination ul.pagination {
  margin: 0;
}
.table-pagination ul.pagination li.page-item .page-link:focus {
  box-shadow: none!important;
  outline: none!important;
}
.table-pagination ul.pagination li.page-item.disabled .page-link {
  background-color: #f1f2f3;
  opacity: 0.7;
}
.table-pagination ul.pagination li.page-item.active .page-link {
  background-color: var(--theme-secondary, '#913ef0') !important;
  color: white;
}
.img-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (max-width: 529px) {
  .table-pagination {
    flex-direction: column;
  }
  .table-pagination nav {
    margin-left: unset;
    padding-top: 15px;
  }
}
.a-i-e {
  align-items: flex-end;
}
.a-i-s {
  align-items: flex-start;
}
.a-i-str {
  align-items: stretch;
}
.a-i-c {
  align-items: center;
}
.j-c-e {
  justify-content: flex-end;
}
.j-c-s {
  justify-content: flex-start;
}
.j-c-sb {
  justify-content: space-between;
}
.j-c-sa {
  justify-content: space-around;
}
.j-c-se {
  justify-content: space-evenly;
}
.page-error {
  height: 600px;
  width: 600px;
  margin-top: 25px;
  padding: 90px;
  align-items: stretch;
  justify-content: center;
  display: flex;
}
.page-error .white-panel {
  align-items: center;
  justify-content: space-evenly;
  display: flex;
  padding: 2.5rem 1rem;
  flex: 1;
  flex-direction: column;
}
.page-error .white-panel h1 {
  font-size: 120px;
  font-family: "Beatrice Semibold", sans-serif;
  text-shadow: 7px 7px #eee;
  line-height: 110px;
  margin-bottom: 0;
}
.page-error .white-panel h3 {
  font-family: "Beatrice", sans-serif;
  font-size: 22px;
  margin-bottom: 0;
}
.page-error .white-panel p {
  font-family: "Beatrice", sans-serif;
  text-align: center;
  font-size: 14px;
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.page-error .white-panel .btn {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wripple-light-darker-bg {
  background-color: #BFC5CB;
}
.wripple-light-darkest-bg {
  background-color: #8C9298;
}
.wripple-light-semitransparent-bg {
  background-color: #E5EBF1;
}
.wripple-light-light-bg {
  background-color: #f2f8fe;
}
.wripple-primary-yellow-bg {
  background-color: #FFB946;
}
.wripple-primary-dark-purple-bg {
  background-color: var(--theme-primary, '#5f3db1');
}
.wripple-primary-black-bg {
  background-color: #000000;
}
.wripple-primary-dark-navy-bg {
  background-color: #343741;
}
.wripple-white-bg {
  background-color: #FFFFFF;
}
.wripple-primary-pale-red-bg {
  background-color: #E54963;
}
.wripple-primary-medium-blue-bg {
  background-color: #4B80E7;
}
.wripple-primary-bright-purple-bg {
  background-color: var(--theme-secondary, '#913ef0');
}
.wripple-primary-pale-green-bg {
  background-color: #5ae399;
}
.wripple-light-gray-bg {
  background-color: #E5E5E5;
}
.wripple-primary-navy-bg {
  background-color: #192A3E;
}
.wripple-blue-gray-bg {
  background-color: #334D6E;
}
.wripple-primary-light-gray-bg {
  background-color: #D3D8DD;
}
.wripple-off-white-bg {
  background-color: #F5F6F8;
}
.wripple-primary-light-blue-bg {
  background-color: #90A0B7;
}
.wripple-primary-rule-blue-bg {
  background-color: #E5EBF1;
}
.wripple-primary-light-gray-bg {
  background-color: #D3D8DD;
}
.wripple-alternate-dark-bg {
  background-color: #5230A4;
}
.wripple-alternate-darker-bg {
  background-color: #39178B;
}
.wripple-alternate-darkest-bg {
  background-color: #060058;
}
.wripple-alternate-light-bg {
  background-color: #6C4ABE;
}
.wripple-alternate-lighter-bg {
  background-color: #8563D7;
}
.wripple-alternate-lightest-bg {
  background-color: #B896FF;
}
.text-wripple-light-darker {
  color: #BFC5CB;
}
.text-wripple-light-darkest {
  color: #8C9298;
}
.text-wripple-light-semitransparent {
  color: #E5EBF1;
}
.text-wripple-light-light {
  color: #f2f8fe;
}
.text-wripple-primary-yellow {
  color: #FFB946;
}
.text-wripple-primary-dark-purple {
  color: var(--theme-primary, '#5f3db1');
}
.text-wripple-primary-black {
  color: #000000;
}
.text-wripple-primary-dark-navy {
  color: #343741;
}
.text-wripple-white {
  color: #FFFFFF;
}
.text-wripple-primary-pale-red {
  color: #E54963;
}
.text-wripple-primary-medium-blue {
  color: #4B80E7;
}
.text-wripple-primary-bright-purple {
  color: var(--theme-secondary, '#913ef0');
}
.text-wripple-primary-pale-green {
  color: #5ae399;
}
.text-wripple-light-gray-bg {
  color: #E5E5E5;
}
.text-wripple-primary-navy {
  color: #192A3E;
}
.text-wripple-blue-gray {
  color: #334D6E;
}
.text-wripple-primary-light-gray {
  color: #D3D8DD;
}
.text-wripple-off-white {
  color: #F5F6F8;
}
.text-wripple-primary-light-blue {
  color: #90A0B7;
}
.text-wripple-primary-rule-blue {
  color: #E5EBF1;
}
.text-wripple-primary-light-gray {
  color: #D3D8DD;
}
.text-wripple-alternate-dark {
  color: #5230A4;
}
.text-wripple-alternate-darker {
  color: #39178B;
}
.text-wripple-alternate-darkest {
  color: #060058;
}
.text-wripple-alternate-light {
  color: #6C4ABE;
}
.text-wripple-alternate-lighter {
  color: #8563D7;
}
.text-wripple-alternate-lightest {
  color: #B896FF;
}
.border-wripple-light-darker {
  border-color: #BFC5CB;
}
.border-wripple-light-darkest {
  border-color: #8C9298;
}
.border-wripple-light-semitransparent {
  border-color: #E5EBF1;
}
.border-wripple-light-light {
  border-color: #f2f8fe;
}
.border-wripple-primary-yellow {
  border-color: #FFB946;
}
.border-wripple-primary-dark-purple {
  border-color: var(--theme-primary, '#5f3db1');
}
.border-wripple-primary-black {
  border-color: #000000;
}
.border-wripple-primary-dark-navy {
  border-color: #343741;
}
.border-wripple-white {
  border-color: #FFFFFF;
}
.border-wripple-primary-pale-red {
  border-color: #E54963;
}
.border-wripple-primary-medium-blue {
  border-color: #4B80E7;
}
.border-wripple-primary-bright-purple {
  border-color: var(--theme-secondary, '#913ef0');
}
.border-wripple-primary-pale-green {
  border-color: #5ae399;
}
.border-wripple-light-gray-bg {
  border-color: #E5E5E5;
}
.border-wripple-primary-navy {
  border-color: #192A3E;
}
.border-wripple-blue-gray {
  border-color: #334D6E;
}
.border-wripple-primary-light-gray {
  border-color: #D3D8DD;
}
.border-wripple-off-white {
  border-color: #F5F6F8;
}
.border-wripple-primary-light-blue {
  border-color: #90A0B7;
}
.border-wripple-primary-rule-blue {
  border-color: #E5EBF1;
}
.border-wripple-primary-light-gray {
  border-color: #D3D8DD;
}
.border-wripple-alternate-dark {
  border-color: #5230A4;
}
.border-wripple-alternate-darker {
  border-color: #39178B;
}
.border-wripple-alternate-darkest {
  border-color: #060058;
}
.border-wripple-alternate-light {
  border-color: #6C4ABE;
}
.border-wripple-alternate-lighter {
  border-color: #8563D7;
}
.border-wripple-alternate-lightest {
  border-color: #B896FF;
}
.no-click {
  pointer-events: none !important;
}
.cursor-none {
  cursor: default !important;
}
.btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
}
a.text-primary {
  color: var(--theme-primary, '#5f3db1') !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: var(--theme-primary-dark) !important;
}
.btn-primary {
  background: var(--theme-primary, '#5f3db1') !important;
  border-color: var(--theme-primary-dark) !important;
  color: white !important;
  text-decoration: none !important;
  box-shadow: none;
}
.btn-outline-light {
  border-color: #e5ebf1;
  border-width: 1px;
  color: #e5ebf1;
}
.btn-outline-dark {
  border-color: #343a40;
  color: #343a40;
  border-width: 1px;
}
.btn-outline-dark:disabled {
  box-shadow: none;
  background-color: #C2CFE0;
  border-color: #C2CFE0;
  opacity: 0.6;
}
.btn-outline-dark:not(:disabled):hover {
  background-color: #343a40;
  border-color: #343a40;
  color: #fff;
}
.btn-dark {
  border-width: 1px;
  background-color: #343a40;
  border-color: #343a40;
  color: white;
  box-shadow: none;
}
.btn-dark:not(:disabled):hover,
.btn-dark:not(:disabled):focus {
  border-color: black;
  background-color: black;
  color: white;
}
.btn-dark:disabled {
  box-shadow: none;
  background-color: #C2CFE0;
  border-color: #C2CFE0;
  opacity: 0.8;
}
a.btn.text-primary,
.btn-outline-primary,
.btn-primary {
  border-width: 1px;
}
a.btn.text-primary:hover,
.btn-outline-primary:hover,
.btn-primary:hover,
a.btn.text-primary:focus,
.btn-outline-primary:focus,
.btn-primary:focus {
  color: white !important;
  background: var(--theme-primary-dark) !important;
  box-shadow: 0 4px 10px rgba(139, 62, 240, 0.24) !important;
}
a.btn.text-primary:disabled,
.btn-outline-primary:disabled,
.btn-primary:disabled {
  box-shadow: none !important;
  background-color: #C2CFE0 !important;
  border-color: #C2CFE0 !important;
  opacity: 0.8 !important;
}
a.btn.text-primary:disabled.text-disabled-primary,
.btn-outline-primary:disabled.text-disabled-primary,
.btn-primary:disabled.text-disabled-primary {
  color: var(--theme-primary, '#5f3db1') !important;
  font-weight: 600 !important;
}
.btn-outline-danger {
  color: var(--theme-danger, '#E54963');
  border: 1.5px solid var(--theme-danger, '#E54963');
  background-color: white;
}
.btn-outline-danger:hover,
.btn-outline-danger:focus {
  color: white !important;
  background: var(--theme-danger, '#E54963') !important;
  box-shadow: 0 4px 10px rgba(139, 62, 240, 0.24) !important;
}
.btn-outline-danger:disabled {
  box-shadow: none !important;
  background-color: #C2CFE0 !important;
  border-color: #C2CFE0 !important;
  opacity: 0.8 !important;
}
.btn-label {
  font-size: 11px !important;
  line-height: 19px !important;
  font-weight: normal !important;
  text-transform: none !important;
}
.btn-label:hover {
  color: white !important;
  background: var(--theme-primary-dark) !important;
  box-shadow: 0 4px 10px rgba(139, 62, 240, 0.24) !important;
}
a.text-warning {
  color: var(--theme-warning, '#FFB946') !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: var(--theme-warning-dark) !important;
}
.btn-warning {
  background: var(--theme-warning, '#FFB946');
  border-color: var(--theme-warning-dark);
  color: white !important;
  text-decoration: none !important;
  box-shadow: none;
}
a.btn.text-warning:hover,
.btn-outline-warning:hover,
.btn-warning:hover,
a.btn.text-warning:focus,
.btn-outline-warning:focus,
.btn-warning:focus {
  color: white !important;
  background: var(--theme-warning-dark);
  box-shadow: 0 4px 10px rgba(139, 62, 240, 0.24);
}
a.btn.text-warning:disabled,
.btn-outline-warning:disabled,
.btn-warning:disabled {
  box-shadow: none !important;
  background-color: #C2CFE0 !important;
  border-color: #C2CFE0 !important;
  opacity: 0.8;
}
.btn-outline-white {
  background-color: white;
}
.btn-outline-white:hover,
.btn-outline-white:focus {
  color: white !important;
  background: black;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.24);
}
.btn-outline-white:disabled {
  box-shadow: none !important;
  background-color: #C2CFE0 !important;
  border-color: #C2CFE0 !important;
  opacity: 0.8;
}
.btn-outline-dark.hover-light {
  border-width: 1.5px;
}
.btn-outline-dark.hover-light:focus {
  box-shadow: none !important;
}
.btn-outline-dark.hover-light:disabled {
  border-color: #707683 !important;
  color: #707683 !important;
}
.btn-outline-dark.hover-light:not(:disabled).active,
.btn-outline-dark.hover-light:not(:disabled):focus {
  border-color: white !important;
  background-color: white !important;
  color: black !important;
}
.btn-outline-warning {
  border: 1.5px solid var(--theme-warning, '#FFB946');
}
.btn-outline-primary {
  border: 1.5px solid var(--theme-primary, '#5f3db1');
}
.text-success {
  color: var(--theme-success, '#5ae399') !important;
}
a.text-success,
button .text-success {
  color: var(--theme-success, '#5ae399') !important;
}
a.text-success:hover,
button .text-success:hover,
a.text-success:focus,
button .text-success:focus {
  color: var(--theme-success-dark) !important;
}
.btn-success {
  background: var(--theme-success, '#5ae399');
  border-color: var(--theme-success-dark);
  color: black;
  text-decoration: none;
  box-shadow: none;
}
a.btn.text-success:hover,
.btn-outline-success:hover,
.btn-success:hover {
  color: black;
  background: var(--theme-success-dark);
  box-shadow: 0 4px 10px rgba(46, 212, 144, 0.24);
}
a.btn.text-success:disabled,
.btn-outline-success:disabled,
.btn-success:disabled {
  box-shadow: none !important;
  background-color: #C2CFE0 !important;
  border-color: #C2CFE0 !important;
  opacity: 0.8;
}
.btn-info {
  background-color: var(--theme-info, '#4B80E7');
  border-color: var(--theme-info, '#4B80E7');
  color: white !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active {
  box-shadow: 0 4px 10px rgba(75, 128, 231, 0.24) !important;
  background: var(--theme-info-dark) !important;
  border-color: var(--theme-info-dark) !important;
}
.btn-info:disabled {
  box-shadow: none !important;
  background-color: #C2CFE0 !important;
  border-color: #C2CFE0 !important;
  opacity: 0.8;
}
.btn-outline-success {
  border: 1px solid var(--theme-success, '#5ae399');
}
a.text-accent,
a.text-secondary {
  color: var(--theme-info, '#4B80E7') !important;
}
a.text-accent:hover,
a.text-secondary:hover,
a.text-accent:focus,
a.text-secondary:focus {
  color: var(--theme-info-dark) !important;
}
.btn-secondary,
.btn-accent {
  background: var(--theme-info, '#4B80E7');
  border-color: var(--theme-info-dark);
  color: white !important;
  text-decoration: none !important;
  box-shadow: none;
}
a.btn.text-accent:hover,
a.btn.text-secondary:hover,
.btn-outline-secondary:hover,
.btn-outline-accent:hover,
.btn-secondary:hover,
.btn-accent:hover,
a.btn.text-accent:focus,
a.btn.text-secondary:focus,
.btn-outline-secondary:focus,
.btn-outline-accent:focus,
.btn-secondary:focus,
.btn-accent:focus {
  color: white !important;
  background: var(--theme-info-dark);
  border-color: var(--theme-info-dark);
  box-shadow: 0 4px 10px rgba(75, 128, 231, 0.24);
}
a.btn.text-accent:disabled,
a.btn.text-secondary:disabled,
.btn-outline-secondary:disabled,
.btn-outline-accent:disabled,
.btn-secondary:disabled,
.btn-accent:disabled {
  box-shadow: none !important;
  background-color: #C2CFE0 !important;
  border-color: #C2CFE0 !important;
  opacity: 0.8;
}
.btn-outline-secondary,
.btn-outline-accent {
  background: transparent;
  border-color: var(--theme-info-dark);
  color: var(--theme-info, '#4B80E7');
  border: 1.4px solid var(--theme-info, '#4B80E7');
}
.btn {
  font-size: 11px;
  line-height: 19px;
  letter-spacing: 0.01em;
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  display: inline-block;
  font-weight: 400;
}
.btn-tab {
  background: transparent;
  border: 1px solid #000000;
  color: #000000;
  margin: 0 10px;
  border-radius: unset;
  font-size: 12px;
  white-space: nowrap;
}
.btn-tab:disabled {
  border-color: #707683;
  color: #707683;
}
.btn-tab:not(:disabled):hover,
.btn-tab:not(:disabled):focus,
.btn-tab:not(:disabled):active {
  background-color: #000000;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
  color: white;
}
.btn-tab:not(:disabled).active {
  background: white;
  border-color: white;
  color: #000000;
  box-shadow: none;
}
a.text-link,
.btn-link {
  color: #90a0b7;
  background: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
  text-decoration: underline;
}
a.text-link:not(:disabled):hover,
.btn-link:not(:disabled):hover,
a.text-link:not(:disabled):focus,
.btn-link:not(:disabled):focus {
  color: #7186a3 !important;
}
a.text-link.disabled-edit-link,
.btn-link.disabled-edit-link {
  opacity: 0.75;
  color: #707683 !important;
  font-weight: 500;
  border-width: 1px;
  background-color: unset !important;
  border-color: #707683 !important;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
a.text-link.disabled-edit-link *,
.btn-link.disabled-edit-link * {
  color: #707683 !important;
}
a.text-link.disabled-edit-link:hover,
.btn-link.disabled-edit-link:hover,
a.text-link.disabled-edit-link:focus,
.btn-link.disabled-edit-link:focus,
a.text-link.disabled-edit-link:active,
.btn-link.disabled-edit-link:active {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
  color: #707683 !important;
  background-color: unset !important;
  box-shadow: none !important;
}
a.text-link.disabled-edit-link:hover *,
.btn-link.disabled-edit-link:hover *,
a.text-link.disabled-edit-link:focus *,
.btn-link.disabled-edit-link:focus *,
a.text-link.disabled-edit-link:active *,
.btn-link.disabled-edit-link:active * {
  color: #707683 !important;
}
a.text-link.disabled-edit-link p,
.btn-link.disabled-edit-link p {
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  padding: 0.5rem !important;
  line-height: 119.3%;
  display: flex;
  align-items: center;
  text-align: right;
  letter-spacing: 0.01em;
  color: #90a0b7;
  margin-bottom: 0;
}
a.text-link.disabled-edit-link p > span,
.btn-link.disabled-edit-link p > span {
  margin-right: 0.5rem !important;
}
a.text-link.disabled-edit-link p .tooltip-info span i,
.btn-link.disabled-edit-link p .tooltip-info span i {
  margin-left: 0;
}
a.text-link-white,
.btn-link-white {
  color: white;
  background: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
}
a.text-link-white i,
.btn-link-white i {
  text-decoration: none;
}
a.text-link-white :not(i),
.btn-link-white :not(i) {
  text-decoration: underline;
}
a.text-link-white:not(:disabled):hover,
.btn-link-white:not(:disabled):hover,
a.text-link-white:not(:disabled):focus,
.btn-link-white:not(:disabled):focus {
  color: white!important;
}
a.text-link-white:not(:disabled):hover :not(i),
.btn-link-white:not(:disabled):hover :not(i),
a.text-link-white:not(:disabled):focus :not(i),
.btn-link-white:not(:disabled):focus :not(i) {
  text-decoration: underline;
}
a.text-link-danger:not(:disabled),
.btn-link-danger:not(:disabled) {
  color: var(--theme-danger, '#E54963');
  background: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
}
a.text-link-danger:not(:disabled):not(:disabled):hover,
.btn-link-danger:not(:disabled):not(:disabled):hover,
a.text-link-danger:not(:disabled):not(:disabled):focus,
.btn-link-danger:not(:disabled):not(:disabled):focus {
  color: var(--theme-danger-darker) !important;
}
a.text-link-danger.disabled-edit-link,
.btn-link-danger.disabled-edit-link {
  opacity: 0.75;
  color: #707683 !important;
  font-weight: 500;
  border-width: 1px;
  background-color: unset !important;
  border-color: #707683 !important;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
a.text-link-danger.disabled-edit-link *,
.btn-link-danger.disabled-edit-link * {
  color: #707683 !important;
}
a.text-link-danger.disabled-edit-link:hover,
.btn-link-danger.disabled-edit-link:hover,
a.text-link-danger.disabled-edit-link:focus,
.btn-link-danger.disabled-edit-link:focus,
a.text-link-danger.disabled-edit-link:active,
.btn-link-danger.disabled-edit-link:active {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
  color: #707683 !important;
  background-color: unset !important;
  box-shadow: none !important;
}
a.text-link-danger.disabled-edit-link:hover *,
.btn-link-danger.disabled-edit-link:hover *,
a.text-link-danger.disabled-edit-link:focus *,
.btn-link-danger.disabled-edit-link:focus *,
a.text-link-danger.disabled-edit-link:active *,
.btn-link-danger.disabled-edit-link:active * {
  color: #707683 !important;
}
a.text-link-danger.disabled-edit-link p,
.btn-link-danger.disabled-edit-link p {
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  padding: 0.5rem !important;
  line-height: 119.3%;
  display: flex;
  align-items: center;
  text-align: right;
  letter-spacing: 0.01em;
  color: #90a0b7;
  margin-bottom: 0;
}
a.text-link-danger.disabled-edit-link p > span,
.btn-link-danger.disabled-edit-link p > span {
  margin-right: 0.5rem !important;
}
a.text-link-danger.disabled-edit-link p .tooltip-info span i,
.btn-link-danger.disabled-edit-link p .tooltip-info span i {
  margin-left: 0;
}
a.text-link-info,
.btn-link-info {
  color: #4B80E7;
  background: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
  text-decoration: underline;
}
a.text-link-info:not(:disabled):hover,
.btn-link-info:not(:disabled):hover,
a.text-link-info:not(:disabled):focus,
.btn-link-info:not(:disabled):focus {
  color: var(--theme-info-darkest) !important;
}
a.text-link-info.disabled-edit-link,
.btn-link-info.disabled-edit-link {
  opacity: 0.75;
  color: #707683 !important;
  font-weight: 500;
  border-width: 1px;
  background-color: unset !important;
  border-color: #707683 !important;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
a.text-link-info.disabled-edit-link *,
.btn-link-info.disabled-edit-link * {
  color: #707683 !important;
}
a.text-link-info.disabled-edit-link:hover,
.btn-link-info.disabled-edit-link:hover,
a.text-link-info.disabled-edit-link:focus,
.btn-link-info.disabled-edit-link:focus,
a.text-link-info.disabled-edit-link:active,
.btn-link-info.disabled-edit-link:active {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
  color: #707683 !important;
  background-color: unset !important;
  box-shadow: none !important;
}
a.text-link-info.disabled-edit-link:hover *,
.btn-link-info.disabled-edit-link:hover *,
a.text-link-info.disabled-edit-link:focus *,
.btn-link-info.disabled-edit-link:focus *,
a.text-link-info.disabled-edit-link:active *,
.btn-link-info.disabled-edit-link:active * {
  color: #707683 !important;
}
a.text-link-info.disabled-edit-link p,
.btn-link-info.disabled-edit-link p {
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  padding: 0.5rem !important;
  line-height: 119.3%;
  display: flex;
  align-items: center;
  text-align: right;
  letter-spacing: 0.01em;
  color: #90a0b7;
  margin-bottom: 0;
}
a.text-link-info.disabled-edit-link p > span,
.btn-link-info.disabled-edit-link p > span {
  margin-right: 0.5rem !important;
}
a.text-link-info.disabled-edit-link p .tooltip-info span i,
.btn-link-info.disabled-edit-link p .tooltip-info span i {
  margin-left: 0;
}
a.text-link-warning:not(:disabled),
.btn-link-warning:not(:disabled) {
  color: #FFB946;
  background: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
  text-decoration: underline;
}
a.text-link-warning:not(:disabled):not(:disabled):hover,
.btn-link-warning:not(:disabled):not(:disabled):hover,
a.text-link-warning:not(:disabled):not(:disabled):focus,
.btn-link-warning:not(:disabled):not(:disabled):focus {
  color: var(--theme-warning-darkest) !important;
}
a.text-link-warning.disabled-edit-link,
.btn-link-warning.disabled-edit-link {
  opacity: 0.75;
  color: #707683 !important;
  font-weight: 500;
  border-width: 1px;
  background-color: unset !important;
  border-color: #707683 !important;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
a.text-link-warning.disabled-edit-link *,
.btn-link-warning.disabled-edit-link * {
  color: #707683 !important;
}
a.text-link-warning.disabled-edit-link:hover,
.btn-link-warning.disabled-edit-link:hover,
a.text-link-warning.disabled-edit-link:focus,
.btn-link-warning.disabled-edit-link:focus,
a.text-link-warning.disabled-edit-link:active,
.btn-link-warning.disabled-edit-link:active {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
  color: #707683 !important;
  background-color: unset !important;
  box-shadow: none !important;
}
a.text-link-warning.disabled-edit-link:hover *,
.btn-link-warning.disabled-edit-link:hover *,
a.text-link-warning.disabled-edit-link:focus *,
.btn-link-warning.disabled-edit-link:focus *,
a.text-link-warning.disabled-edit-link:active *,
.btn-link-warning.disabled-edit-link:active * {
  color: #707683 !important;
}
a.text-link-warning.disabled-edit-link p,
.btn-link-warning.disabled-edit-link p {
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  padding: 0.5rem !important;
  line-height: 119.3%;
  display: flex;
  align-items: center;
  text-align: right;
  letter-spacing: 0.01em;
  color: #90a0b7;
  margin-bottom: 0;
}
a.text-link-warning.disabled-edit-link p > span,
.btn-link-warning.disabled-edit-link p > span {
  margin-right: 0.5rem !important;
}
a.text-link-warning.disabled-edit-link p .tooltip-info span i,
.btn-link-warning.disabled-edit-link p .tooltip-info span i {
  margin-left: 0;
}
a.text-link-success,
.btn-link-success {
  color: var(--theme-success-dark);
  background: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
  text-decoration: underline;
}
a.text-link-success:not(:disabled):hover,
.btn-link-success:not(:disabled):hover,
a.text-link-success:not(:disabled):focus,
.btn-link-success:not(:disabled):focus {
  color: var(--theme-success-darkest) !important;
}
a.text-link-success.disabled-edit-link,
.btn-link-success.disabled-edit-link {
  opacity: 0.75;
  color: #707683 !important;
  font-weight: 500;
  border-width: 1px;
  background-color: unset !important;
  border-color: #707683 !important;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
a.text-link-success.disabled-edit-link *,
.btn-link-success.disabled-edit-link * {
  color: #707683 !important;
}
a.text-link-success.disabled-edit-link:hover,
.btn-link-success.disabled-edit-link:hover,
a.text-link-success.disabled-edit-link:focus,
.btn-link-success.disabled-edit-link:focus,
a.text-link-success.disabled-edit-link:active,
.btn-link-success.disabled-edit-link:active {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
  color: #707683 !important;
  background-color: unset !important;
  box-shadow: none !important;
}
a.text-link-success.disabled-edit-link:hover *,
.btn-link-success.disabled-edit-link:hover *,
a.text-link-success.disabled-edit-link:focus *,
.btn-link-success.disabled-edit-link:focus *,
a.text-link-success.disabled-edit-link:active *,
.btn-link-success.disabled-edit-link:active * {
  color: #707683 !important;
}
a.text-link-success.disabled-edit-link p,
.btn-link-success.disabled-edit-link p {
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  padding: 0.5rem !important;
  line-height: 119.3%;
  display: flex;
  align-items: center;
  text-align: right;
  letter-spacing: 0.01em;
  color: #90a0b7;
  margin-bottom: 0;
}
a.text-link-success.disabled-edit-link p > span,
.btn-link-success.disabled-edit-link p > span {
  margin-right: 0.5rem !important;
}
a.text-link-success.disabled-edit-link p .tooltip-info span i,
.btn-link-success.disabled-edit-link p .tooltip-info span i {
  margin-left: 0;
}
.disabled-edit-link {
  opacity: 0.75;
  color: #707683 !important;
  font-weight: 500;
  border-width: 1px;
  background-color: unset !important;
  border-color: #707683 !important;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
.disabled-edit-link * {
  color: #707683 !important;
}
.disabled-edit-link:hover,
.disabled-edit-link:focus,
.disabled-edit-link:active {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
  color: #707683 !important;
  background-color: unset !important;
  box-shadow: none !important;
}
.disabled-edit-link:hover *,
.disabled-edit-link:focus *,
.disabled-edit-link:active * {
  color: #707683 !important;
}
.text-line-gray:not(:disabled),
.btn-link-primary:not(:disabled) {
  color: #707683;
  background: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
}
.text-line-gray:not(:disabled) i,
.btn-link-primary:not(:disabled) i {
  font-size: 11px;
}
.text-line-gray:not(:disabled):hover,
.btn-link-primary:not(:disabled):hover,
.text-line-gray:not(:disabled):focus,
.btn-link-primary:not(:disabled):focus {
  color: #000000 !important;
}
.btn-link-primary:not(:disabled) {
  color: var(--theme-secondary, '#913ef0');
}
.btn-link-primary:not(:disabled):hover,
.btn-link-primary:not(:disabled):focus {
  color: var(--theme-primary, '#5f3db1') !important;
  font-weight: 500 !important;
}
.btn-link-dark {
  color: #67676a !important;
  text-decoration: underline;
}
.btn-link-dark:not(:disabled):hover,
.btn-link-dark:not(:disabled):focus {
  color: black !important;
  font-weight: 500 !important;
}
.btn-disabled {
  background: #90a0b7;
  color: #343741;
}
.tooltip.show {
  opacity: 1;
}
.tooltip-inner.primary {
  background-color: var(--theme-secondary, '#913ef0');
}
.bs-tooltip-auto[x-placement^=top] span.arrow.primary::before,
.bs-tooltip-top span.arrow.primary::before {
  border-top-color: var(--theme-secondary, '#913ef0');
}
.bs-tooltip-auto[x-placement^=right] span.arrow.primary::before,
.bs-tooltip-right span.arrow.primary::before {
  border-right-color: var(--theme-secondary, '#913ef0');
}
.bs-tooltip-auto[x-placement^=left] span.arrow.primary::before,
.bs-tooltip-left span.arrow.primary::before {
  border-left-color: var(--theme-secondary, '#913ef0');
}
.bs-tooltip-auto[x-placement^=bottom] span.arrow.primary::before,
.bs-tooltip-bottom span.arrow.primary::before {
  border-bottom-color: var(--theme-secondary, '#913ef0');
}
.tooltip-inner.danger {
  background-color: var(--theme-danger, '#E54963');
}
.bs-tooltip-auto[x-placement^=top] span.arrow.danger::before,
.bs-tooltip-top span.arrow.danger::before {
  border-top-color: var(--theme-danger, '#E54963');
}
.bs-tooltip-auto[x-placement^=right] span.arrow.danger::before,
.bs-tooltip-right span.arrow.danger::before {
  border-right-color: var(--theme-danger, '#E54963');
}
.bs-tooltip-auto[x-placement^=left] span.arrow.danger::before,
.bs-tooltip-left span.arrow.danger::before {
  border-left-color: var(--theme-danger, '#E54963');
}
.bs-tooltip-auto[x-placement^=bottom] span.arrow.danger::before,
.bs-tooltip-bottom span.arrow.danger::before {
  border-bottom-color: var(--theme-danger, '#E54963');
}
.tooltip-inner.white {
  background-color: white;
}
.bs-tooltip-auto[x-placement^=top] span.arrow.white::before,
.bs-tooltip-top span.arrow.white::before {
  border-top-color: white;
}
.bs-tooltip-auto[x-placement^=right] span.arrow.white::before,
.bs-tooltip-right span.arrow.white::before {
  border-right-color: white;
}
.bs-tooltip-auto[x-placement^=left] span.arrow.white::before,
.bs-tooltip-left span.arrow.white::before {
  border-left-color: white;
}
.bs-tooltip-auto[x-placement^=bottom] span.arrow.white::before,
.bs-tooltip-bottom span.arrow.white::before {
  border-bottom-color: white;
}
.tooltip-inner.info {
  background-color: var(--theme-info, '#4B80E7');
}
.bs-tooltip-auto[x-placement^=top] span.arrow.info::before,
.bs-tooltip-top span.arrow.info::before {
  border-top-color: var(--theme-info, '#4B80E7');
}
.bs-tooltip-auto[x-placement^=right] span.arrow.info::before,
.bs-tooltip-right span.arrow.info::before {
  border-right-color: var(--theme-info, '#4B80E7');
}
.bs-tooltip-auto[x-placement^=left] span.arrow.info::before,
.bs-tooltip-left span.arrow.info::before {
  border-left-color: var(--theme-info, '#4B80E7');
}
.bs-tooltip-auto[x-placement^=bottom] span.arrow.info::before,
.bs-tooltip-bottom span.arrow.info::before {
  border-bottom-color: var(--theme-info, '#4B80E7');
}
.tooltip-inner.dark {
  background-color: #000000;
}
.bs-tooltip-auto[x-placement^=top] span.arrow.dark::before,
.bs-tooltip-top span.arrow.dark::before {
  border-top-color: #000000;
}
.bs-tooltip-auto[x-placement^=right] span.arrow.dark::before,
.bs-tooltip-right span.arrow.dark::before {
  border-right-color: #000000;
}
.bs-tooltip-auto[x-placement^=left] span.arrow.dark::before,
.bs-tooltip-left span.arrow.dark::before {
  border-left-color: #000000;
}
.bs-tooltip-auto[x-placement^=bottom] span.arrow.dark::before,
.bs-tooltip-bottom span.arrow.dark::before {
  border-bottom-color: #000000;
}
.tooltip-inner.gray {
  background-color: #343741;
}
.bs-tooltip-auto[x-placement^=top] span.arrow.gray::before,
.bs-tooltip-top span.arrow.gray::before {
  border-top-color: #343741;
}
.bs-tooltip-auto[x-placement^=right] span.arrow.gray::before,
.bs-tooltip-right span.arrow.gray::before {
  border-right-color: #343741;
}
.bs-tooltip-auto[x-placement^=left] span.arrow.gray::before,
.bs-tooltip-left span.arrow.gray::before {
  border-left-color: #343741;
}
.bs-tooltip-auto[x-placement^=bottom] span.arrow.gray::before,
.bs-tooltip-bottom span.arrow.gray::before {
  border-bottom-color: #343741;
}
.tooltip-inner.light {
  background-color: #C2CFE0;
}
.bs-tooltip-auto[x-placement^=top] span.arrow.light::before,
.bs-tooltip-top span.arrow.light::before {
  border-top-color: #C2CFE0;
}
.bs-tooltip-auto[x-placement^=right] span.arrow.light::before,
.bs-tooltip-right span.arrow.light::before {
  border-right-color: #C2CFE0;
}
.bs-tooltip-auto[x-placement^=left] span.arrow.light::before,
.bs-tooltip-left span.arrow.light::before {
  border-left-color: #C2CFE0;
}
.bs-tooltip-auto[x-placement^=bottom] span.arrow.light::before,
.bs-tooltip-bottom span.arrow.light::before {
  border-bottom-color: #C2CFE0;
}
.tooltip-inner.warning {
  background-color: var(--theme-warning, '#FFB946');
}
.bs-tooltip-auto[x-placement^=top] span.arrow.warning::before,
.bs-tooltip-top span.arrow.warning::before {
  border-top-color: var(--theme-warning, '#FFB946');
}
.bs-tooltip-auto[x-placement^=right] span.arrow.warning::before,
.bs-tooltip-right span.arrow.warning::before {
  border-right-color: var(--theme-warning, '#FFB946');
}
.bs-tooltip-auto[x-placement^=left] span.arrow.warning::before,
.bs-tooltip-left span.arrow.warning::before {
  border-left-color: var(--theme-warning, '#FFB946');
}
.bs-tooltip-auto[x-placement^=bottom] span.arrow.warning::before,
.bs-tooltip-bottom span.arrow.warning::before {
  border-bottom-color: var(--theme-warning, '#FFB946');
}
.tooltip-inner.bggray {
  background-color: #F5F6F8;
}
.bs-tooltip-auto[x-placement^=top] span.arrow.bggray::before,
.bs-tooltip-top span.arrow.bggray::before {
  border-top-color: #F5F6F8;
}
.bs-tooltip-auto[x-placement^=right] span.arrow.bggray::before,
.bs-tooltip-right span.arrow.bggray::before {
  border-right-color: #F5F6F8;
}
.bs-tooltip-auto[x-placement^=left] span.arrow.bggray::before,
.bs-tooltip-left span.arrow.bggray::before {
  border-left-color: #F5F6F8;
}
.bs-tooltip-auto[x-placement^=bottom] span.arrow.bggray::before,
.bs-tooltip-bottom span.arrow.bggray::before {
  border-bottom-color: #F5F6F8;
}
.tooltip-inner {
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.55);
  background: var(--theme-secondary, '#913ef0');
  max-width: 270px;
  font-size: 12px;
  color: white;
}
.tooltip-inner hr {
  border-top: 1px solid #323C47;
}
.tooltip-inner p {
  margin-bottom: 0;
  padding: 15px;
}
.team-avail-tooltip-inner,
.team-hourly-tooltip-inner {
  max-width: 500px !important;
  margin-left: 0;
  line-height: 1.2 !important;
  font-size: 0.6rem !important;
  padding: 10px !important;
  background-color: white !important;
}
.team-avail-tooltip-inner div > .btn,
.team-hourly-tooltip-inner div > .btn {
  float: right;
  padding-top: 0;
  padding-bottom: 0;
}
.team-avail-tooltip-inner {
  max-height: 400px;
  overflow-y: scroll;
}
.tooltip-info span i {
  color: #C2CFE0;
  margin-left: 8px;
}
.request-btn .request-btn-loading {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: center;
}
.request-btn .request-btn-loading .lds-ring {
  margin-right: 10px;
}
.request-btn .request-btn-loading .lds-ring div {
  border: 1.5px solid white;
  border-color: white transparent transparent transparent;
}
.disabled-edit-link p {
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  padding: 0.5rem !important;
  line-height: 119.3%;
  display: flex;
  align-items: center;
  text-align: right;
  letter-spacing: 0.01em;
  color: #90a0b7;
  margin-bottom: 0;
}
.disabled-edit-link p > span {
  margin-right: 0.5rem !important;
}
.disabled-edit-link p .tooltip-info span i {
  margin-left: 0;
}
.btn-icon {
  background-color: transparent;
  border: none;
  border-radius: unset;
  padding: 0;
  margin: 0;
}
.btn-icon:disabled {
  opacity: 0.7;
}
.btn-icon i {
  color: #818E9B;
}
.btn-icon:hover,
.btn-icon:focus {
  background-color: transparent;
  border: none;
  border-radius: unset;
}
.btn-icon:hover i,
.btn-icon:focus i {
  color: #67676a;
}
.close-icon {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  overflow: hidden;
}
.close-icon::before,
.close-icon::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: black;
}
.close-icon::before {
  transform: rotate(45deg);
}
.close-icon::after {
  transform: rotate(-45deg);
}
.position-tooltip {
  text-align: center;
}
.position-tooltip p {
  white-space: nowrap;
  color: white;
  padding: 0!important;
}
.position-tooltip p:first-child {
  border-bottom: 1px solid white;
  margin-bottom: 0.2rem;
}
.position-status-scroller {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  padding: 10px 0 10px 10px;
  max-width: 255px;
  height: 70px;
  width: auto;
  margin: 0;
}
.position-status-scroller .position-navigation {
  width: 70px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
}
.position-status-scroller .position-navigation .total-roles {
  line-height: normal;
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 0;
}
.position-status-scroller .position-navigation .total-roles span.text-primary {
  color: var(--theme-secondary, '#913ef0');
  font-weight: 600;
}
.position-status-scroller .position-navigation .slide-controls {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-around;
  flex: 1;
}
.position-status-scroller .position-navigation .slide-controls .swiper-page-btn {
  padding: 0.1rem 0.3rem;
  margin: 0 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.9;
  transition: all 250ms ease-in;
}
.position-status-scroller .position-navigation .slide-controls .swiper-page-btn i {
  font-size: 22px;
  color: #303030;
  transition: all 250ms ease-in;
}
.position-status-scroller .position-navigation .slide-controls .swiper-page-btn:hover,
.position-status-scroller .position-navigation .slide-controls .swiper-page-btn:focus {
  opacity: 1;
}
.position-status-scroller .position-navigation .slide-controls .swiper-page-btn:hover i,
.position-status-scroller .position-navigation .slide-controls .swiper-page-btn:focus i {
  color: black;
}
.position-status-scroller .position-navigation .slide-controls .swiper-page-btn.disabled {
  opacity: 0.35;
  pointer-events: none;
}
.position-status-scroller .position-swiper {
  flex: 1;
  height: 100%;
}
.position-swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.position-swiper-slide .role-img {
  height: 50px;
  width: 50px;
  border: 2px solid transparent;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.position-swiper-slide.assigned img {
  width: inherit;
  height: inherit;
}
.position-swiper-slide.unassigned .role-img > span {
  height: inherit;
  width: inherit;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #d5d5d5;
}
.position-swiper-slide.unassigned .role-img > span i {
  font-size: 45px;
  opacity: 0.2;
  margin-top: -1px;
}
.position-swiper-slide.unassigned .role-img > span .position-index{
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: black;
  font-size: 28px;
  font-weight: 500;
  font-family: Beatrice, sans-serif;
}
.position-swiper-slide.active .role-img {
  border-color: var(--theme-secondary, '#913ef0');
}
.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.indicator-success {
  background: var(--theme-success, '#5ae399');
}
.indicator-danger {
  background: var(--theme-danger, '#E54963');
}
.calendar {
  display: block;
  position: relative;
  width: 100%;
  background: #fff;
  border: 3px solid #eee;
}
.calendar .row {
  border-bottom: 1px solid #eee;
  margin: 0;
}
.calendar .row .col {
  flex-grow: 0;
  flex-basis: calc(100% / 10);
  width: calc(100% / 10);
  margin-bottom: 0;
}
.calendar .row .col.input {
  flex-basis: calc((100% / 10) * 3);
  width: calc((100% / 10) * 3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar .row .col.input .availability-hours {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}
.calendar .row .col.input .availability-hours .form-group {
  margin-bottom: 0 !important;
  position: relative !important;
}
.calendar .row .col.input .availability-hours .form-group label {
  display: none !important;
}
.calendar .row .col.input .availability-hours .form-group input {
  font-weight: 300 !important;
  font-size: 24px !important;
  letter-spacing: 0.01em !important;
  color: black !important;
  line-height: 27px !important;
  margin: 0 5px 0 0 !important;
  padding: 0 !important;
  text-align: center !important;
  width: 45px !important;
  height: auto !important;
  position: relative !important;
  border-top: 1px solid transparent !important;
  border-bottom: 1px solid #C2CFE0 !important;
  background-color: transparent !important;
}
.calendar .row .col.input .availability-hours .form-group input:disabled {
  border-bottom-color: transparent !important;
  background-color: #ececec !important;
  opacity: 1 !important;
  cursor: not-allowed;
}
.calendar .row .col.input .availability-hours .form-group input.is-invalid {
  background-image: none !important;
  border-bottom-color: var(--theme-danger, '#E54963') !important;
}
.calendar .row .col.input .availability-hours .form-group input:focus {
  border-top: 0px solid transparent !important;
  border-bottom: 2px solid var(--theme-secondary, '#913ef0') !important;
}
.calendar .row .col.input .availability-hours .form-group.text-danger .invalid-feedback {
  display: none !important;
}
.calendar .row .col.input .availability-hours p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.01em;
  margin: 0;
}
.calendar .row:last-child {
  border-bottom: none;
}
.calendar .header {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 115%;
  border-bottom: none;
}
.calendar .header .col-months {
  border-bottom: none;
  margin-bottom: 0;
}
.calendar .header .col-months > div {
  width: 100%;
}
.calendar .header .col-months > div .scroller {
  right: -90px;
}
@media only screen and (max-width: 529px) {
  .calendar .header .col-months > div .scroller {
    right: -70px;
  }
}
.calendar .header .col-scrollbar {
  flex-basis: calc((100% / 10) * 2);
  width: calc((100% / 10) * 2);
  border-bottom: none;
  border-right: 3px solid #eee;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.calendar .header .col-scrollbar button {
  background-color: #000000;
  width: 35px;
  height: 28px;
  color: white !important;
}
.calendar .header .col-scrollbar button:disabled {
  background-color: #7a7979;
  opacity: 1;
}
.calendar .header .col-scrollbar .left-scroll {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-right: 1px solid white;
}
.calendar .header .col-scrollbar .right-scroll {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.calendar .header .col {
  flex-basis: calc(((100% / 10) * 5) / 4);
  width: calc(((100% / 10) * 5) / 4);
  margin-bottom: 0;
  padding: 0.5em 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: none;
}
.calendar .header .col span {
  cursor: pointer;
  transition: all 250ms ease-in;
  text-align: center;
  padding: 0.1em 0.3em;
  font-size: 85%;
  font-family: Beatrice-Bold, sans-serif;
  font-weight: 600;
}
.calendar .header .col span:hover {
  background-color: var(--theme-success-darker);
}
.calendar .header .col.selected span {
  background-color: var(--theme-success, '#5ae399');
  text-decoration: underline;
}
.calendar .header .col.header-info {
  display: flex;
  flex-direction: column;
  text-align: center;
  border-left: none;
  margin-left: -2.5px;
  align-items: center;
  justify-content: flex-end;
  flex-basis: calc((100% / 10) * 3);
  width: calc((100% / 10) * 3);
  height: 45px;
  text-transform: none;
  position: relative;
}
.calendar .header .col.header-info p {
  top: -12px;
  padding: 0 0.5em;
  position: absolute;
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
}
@media only screen and (max-width: 529px) {
  .calendar .header .col.header-info p {
    font-size: 9px;
    padding: 0 0.1em;
    line-height: normal;
  }
}
.calendar .header .col.header-info p b {
  margin-bottom: 2px;
}
.calendar .body .cell {
  position: relative;
  height: 2.2em;
  border-right: 1px solid #eee;
  overflow: hidden;
  background: #fff;
  transition: 0.25s ease-out;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.calendar .body .cell .number {
  text-align: center;
  pointer-events: none;
  font-size: 82.5%;
  line-height: 1;
  font-weight: 500;
}
.calendar .body .cell .bg {
  font-weight: 700;
  line-height: 1;
  color: var(--theme-secondary, '#913ef0');
  opacity: 0;
  font-size: 4em;
  position: absolute;
  top: -0.1em;
  right: -0.05em;
  transition: 0.25s ease-out;
  letter-spacing: -0.07em;
}
.calendar .body .cell:last-child {
  border-right: none;
  border-left: 2px solid #eee;
}
.calendar .body .selected {
  background-color: rgba(90, 227, 153, 0.3);
}
.calendar .body .selected .bg {
  transition: 0.5s ease-in;
}
.calendar .body .disabled {
  color: #ccc;
  pointer-events: none;
}
.calendar .days {
  text-transform: uppercase;
  color: #000000;
  font-size: 70%;
  border-bottom: 1px solid #eee;
  align-items: stretch;
  padding: 0;
}
.calendar .days .col {
  padding: 0 12px;
  border-right: 1px solid #eee;
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}
.calendar .days .col:last-child {
  border-right: none;
  border-left: 2px solid #eee;
}
.calendar .days .col.day-info {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-basis: calc((100% / 10) * 3);
  width: calc((100% / 10) * 3);
  font-weight: 500;
  padding: 0;
  margin: 0;
  height: 30px;
}
.calendar .year-header {
  border-bottom: none;
}
.calendar .year-header .col.year {
  border-bottom: none;
  flex-basis: 70.4%;
  width: 70.4%;
  padding: 5px 12px 0;
  margin-bottom: -6px;
  font-size: 12px;
  border-right: 3px solid #eee;
  color: #303030;
}
.calendar .year-header .col.spacer {
  flex-basis: 29.6%;
  width: 29.6%;
  margin-bottom: -6px;
  padding: 5px 12px 0;
}
.user-image-circle {
  border-radius: 50%;
  height: 20px;
  text-align: center;
  width: 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.user-image-circle .initials {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
  text-align: center;
  line-height: 1;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.pulse-indicator {
  position: absolute;
  display: flex;
  top: -5.5px;
  right: -5.5px;
}
.pulse-indicator.pulse-relative {
  position: relative;
  top: unset;
  right: unset;
}
.blob {
  background: black;
  border-radius: 50%;
  box-shadow: 0 0 0 0 #000000;
  height: 11px;
  width: 11px;
  transform: scale(1);
  animation: pulse-black 1500ms infinite;
}
@keyframes pulse-black {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
.blob.danger {
  background: #e54963;
  box-shadow: 0 0 0 0 #e54963;
  animation: pulse-danger 1500ms infinite;
}
@keyframes pulse-danger {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(229, 73, 99, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(229, 73, 99, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(229, 73, 99, 0);
  }
}
.blob.warning {
  background: #ffb946;
  box-shadow: 0 0 0 0 #ffb946;
  animation: pulse-warning 1500ms infinite;
}
@keyframes pulse-warning {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 185, 70, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 185, 70, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 185, 70, 0);
  }
}
.blob.info {
  background: #4b80e7;
  box-shadow: 0 0 0 0 #4b80e7;
  animation: pulse-info 1500ms infinite;
}
@keyframes pulse-info {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(75, 128, 231, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(75, 128, 231, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(75, 128, 231, 0);
  }
}
.blob.success {
  background: #5ae399;
  box-shadow: 0 0 0 0 #5ae399;
  animation: pulse-success 1500ms infinite;
}
@keyframes pulse-success {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(90, 227, 153, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(90, 227, 153, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(90, 227, 153, 0);
  }
}
.blob.primary {
  background: #913ef0;
  box-shadow: 0 0 0 0 #913ef0;
  animation: pulse-primary 1500ms infinite;
}
@keyframes pulse-primary {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(145, 62, 240, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(145, 62, 240, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(145, 62, 240, 0);
  }
}
/* animation */
@keyframes anvil {
  0% {
    transform: scale(1) translateY(0px);
    opacity: 0;
    box-shadow: 0 0 0 rgba(241, 241, 241, 0);
  }
  1% {
    transform: scale(0.96) translateY(10px);
    opacity: 0;
    box-shadow: 0 0 0 rgba(241, 241, 241, 0);
  }
  100% {
    transform: scale(1) translateY(0px);
    opacity: 1;
    box-shadow: 0 0 500px rgba(241, 241, 241, 0);
  }
}
.popup-content {
  pointer-events: all!important;
  -webkit-animation: anvil 0.3s cubic-bezier(0.38, 0.1, 0.36, 0.9) forwards;
}
.intercom-launcher > div:first-child svg {
  display: none;
}
.intercom-launcher > div:first-child:after {
  font-family: "Font Awesome 5 Free";
  content: '\f059';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  color: white;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-code {
  position: relative;
}
.auth-code > i {
  align-self: center;
}
.auth-code .invalid {
  display: none;
}
.auth-code.invalidCode .invalid {
  display: block;
}
.auth-code .loading-container {
  display: none;
}
.auth-code.loading * {
  pointer-events: none;
}
.auth-code.loading > * {
  opacity: 0.5;
}
.auth-code.loading .loading-container {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.auth-code-container {
  padding: 16px;
  align-self: center;
}
.auth-code-input {
  width: 45px;
  height: 45px;
  padding: 0;
  font-size: 24px;
  text-align: center;
  margin-right: 12px;
  text-transform: uppercase;
  color: #494949;
  font-family: "Beatrice", sans-serif;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  background: #fff;
  background-clip: padding-box;
}
.auth-code-input:focus {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(131, 192, 253, 0.5);
}
.row-dragging {
  background: #fafafa;
  border: 1px solid #ccc;
}
.row-dragging td {
  position: relative;
  padding: 16px 16px;
  overflow-wrap: break-word;
  vertical-align: middle;
}
.row-dragging .drag-visible {
  visibility: visible;
}
.editable-cell {
  position: relative;
}
.editable-cell-value-wrap {
  padding: 5px 12px;
  cursor: pointer;
}
.noneditable-cell-value-wrap {
  padding: 5px 12px;
}
.editable-row:hover .editable-cell-value-wrap {
  padding: 4px 11px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
}
.editable-cell-input textarea{
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 4px 11px;
}
.editable-cell-input::after {
  margin-top: 3px;
}
select.not-selected {
  color: #d3d8dd !important;
}
input.is-invalid,
select.is-invalid {
  border-bottom-color: var(--theme-danger, '#E54963') !important;
  box-shadow: none;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #d3d8dd !important;
  opacity: 1;
  /* Firefox */
}
::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #d3d8dd !important;
  opacity: 1;
  /* Firefox */
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #d3d8dd !important;
}
::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #d3d8dd !important;
}
.form-control:disabled {
  opacity: 0.8 !important;
  background-color: #ececec !important;
}
.form-control:focus {
  color: #000000;
  border-color: #2684FF;
  box-shadow: 0 0 0 1px #2684ff;
}
.wripple-form.default-form .form-container form .field .form-group label,
.wripple-form.default-form .form-container form .field-element .form-group label {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  mix-blend-mode: normal;
  margin-bottom: 10px;
  min-height: 18px;
  font-weight: 500 !important;
  font-size: 12px !important;
  white-space: nowrap;
  line-height: 18px !important;
  letter-spacing: 0.01em !important;
  color: #343741 !important;
}
.wripple-form.default-form .form-container form .field .form-group select,
.wripple-form.default-form .form-container form .field-element .form-group select,
.wripple-form.default-form .form-container form .field .form-group input,
.wripple-form.default-form .form-container form .field-element .form-group input,
.wripple-form.default-form .form-container form .field .form-group textarea,
.wripple-form.default-form .form-container form .field-element .form-group textarea {
  padding: 4px 10px !important;
  background: #F5F6F8;
  border: none;
  box-shadow: none !important;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px !important;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  color: #000000;
}
.wripple-form.default-form .form-container form .field .form-group .ant-input-group-addon,
.wripple-form.default-form .form-container form .field-element .form-group .ant-input-group-addon {
  border: none;
}
.wripple-form.default-form .form-container form .field .form-group select,
.wripple-form.default-form .form-container form .field-element .form-group select {
  width: 100%;
}
.wripple-form.default-form .form-container form .field .form-group textarea,
.wripple-form.default-form .form-container form .field-element .form-group textarea {
  padding: 10px 10px !important;
}
.wripple-form.default-form .form-container form .field .form-group.text-danger label .required-symbol,
.wripple-form.default-form .form-container form .field-element .form-group.text-danger label .required-symbol {
  color: var(--theme-danger, '#E54963') !important;
}
.wripple-form.default-form .form-container form .field .form-group.text-danger select,
.wripple-form.default-form .form-container form .field-element .form-group.text-danger select,
.wripple-form.default-form .form-container form .field .form-group.text-danger input,
.wripple-form.default-form .form-container form .field-element .form-group.text-danger input,
.wripple-form.default-form .form-container form .field .form-group.text-danger textarea,
.wripple-form.default-form .form-container form .field-element .form-group.text-danger textarea,
.wripple-form.default-form .form-container form .field .form-group.text-danger .input-group,
.wripple-form.default-form .form-container form .field-element .form-group.text-danger .input-group {
  border-bottom-width: 1px;
}
.wripple-form.default-form .form-container form .field .form-group.text-danger .input-group *,
.wripple-form.default-form .form-container form .field-element .form-group.text-danger .input-group * {
  border-bottom: none !important;
}
.wripple-form.default-form .form-container form .field .form-group select,
.wripple-form.default-form .form-container form .field-element .form-group select,
.wripple-form.default-form .form-container form .field .form-group input,
.wripple-form.default-form .form-container form .field-element .form-group input,
.wripple-form.default-form .form-container form .field .form-group .help-element,
.wripple-form.default-form .form-container form .field-element .form-group .help-element {
  line-height: 18px;
  height: 43px;
}
.wripple-form.default-form .form-container select.not-selected {
  color: #90a0b7 !important;
}
.wripple-form.default-form .form-container select.not-selected option {
  color: #000000 !important;
}
.wripple-form {
  flex-direction: column;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  padding: 0;
}
.wripple-form.hide-required .required-symbol {
  display: none;
}
.wripple-form > div {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex: 1;
  margin: 0;
  padding: 35px 0;
}
@media only screen and (max-width: 600px) {
  .wripple-form > div {
    padding: 20px 0;
  }
}
.wripple-form > div .field-section,
.wripple-form > div .form-title-section {
  padding: 0;
}
@media (max-width: 768px) {
  .wripple-form > div .field-section,
  .wripple-form > div .form-title-section {
    padding: 0 5px;
  }
}
@media only screen and (max-width: 600px) {
  .wripple-form > div .field-section,
  .wripple-form > div .form-title-section {
    padding: 0 5px;
  }
}
.wripple-form > div .form-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  text-align: left;
  margin: 0;
}
.wripple-form > div .form-subtitle {
  margin: 0;
  color: var(--theme-primary, '#5f3db1');
  text-transform: uppercase;
  font-size: 12px !important;
  letter-spacing: 0.29em;
  padding: 0 !important;
  font-weight: 500;
}
.wripple-form > div form {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-self: stretch;
  align-items: stretch;
  flex: 1;
}
.wripple-form > div form .btn-submit {
  align-self: center;
}
.wripple-form > div form .field-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.wripple-form > div form .field-element,
.wripple-form > div form .field,
.wripple-form > div form .field-section {
  width: 100%;
}
.wripple-form > div form .field {
  margin-top: 30px;
  margin-bottom: 10px;
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}
.wripple-form > div form .field.hidden-field {
  pointer-events: none;
  opacity: 0;
}
.wripple-form > div form .field.inline-field {
  flex: 1;
  width: auto !important;
}
.wripple-form > div form .field.wripple-checkbox-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: center;
  justify-content: center;
}
.wripple-form > div form .field.wripple-checkbox-field .col-form-label {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  right: 15px;
  pointer-events: all;
  margin: 0;
}
.wripple-form > div form .field.wripple-checkbox-field .form-check {
  padding: 5px 30px 5px;
  background-color: var(--theme-success, '#5ae399');
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.wripple-form > div form .field.wripple-checkbox-field .form-check label {
  font-family: Beatrice, sans-serif !important;
  color: white !important;
  font-weight: 300 !important;
  text-transform: none !important;
  font-size: 12px !important;
  line-height: 18px !important;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
}
.wripple-form > div form .field.wripple-checkbox-field .form-check input {
  margin-top: 0;
}
.wripple-form > div form .field.wripple-checkbox-field .form-group {
  margin: 0;
}
.wripple-form > div form .field label,
.wripple-form > div form .field div.col-form-label {
  color: #808080 !important;
  font-style: normal;
  font-weight: 500;
  font-size: 12px !important;
  line-height: 21px;
  /*   identical to box height */
  letter-spacing: 0.01em;
}
.wripple-form > div form .field label.form-check-label,
.wripple-form > div form .field div.col-form-label.form-check-label {
  font-size: 13px;
  line-height: 19px;
  /* identical to box height */
  letter-spacing: 0.01em;
  /* table_black */
  color: #323C47 !important;
}
.wripple-form > div form .field input,
.wripple-form > div form .field select {
  padding: 0;
  line-height: 19px;
  letter-spacing: 0.01em;
  height: 30px;
  font-size: 13px;
  background: none;
  border-bottom-color: #D3D8DD;
  border-bottom-width: 1px;
}
.wripple-form > div form .field input.is-invalid,
.wripple-form > div form .field select.is-invalid {
  border-bottom-color: var(--theme-danger, '#E54963');
  box-shadow: none;
}
.wripple-form > div form .field input.form-check-input,
.wripple-form > div form .field select.form-check-input {
  height: auto;
  line-height: inherit;
}
.wripple-form > div form .field input:focus,
.wripple-form > div form .field select:focus {
  box-shadow: none;
  color: inherit;
}
.wripple-form > div form .field input:focus + label,
.wripple-form > div form .field select:focus + label {
  color: var(--theme-primary, '#5f3db1');
}
.wripple-form > div form .field:focus-within label,
.wripple-form > div form .field:focus label {
  color: var(--theme-primary, '#5f3db1');
}
.wripple-form > div form .field:focus-within input,
.wripple-form > div form .field:focus input,
.wripple-form > div form .field:focus-within .input-group-prepend,
.wripple-form > div form .field:focus .input-group-prepend,
.wripple-form > div form .field:focus-within .input-group-append,
.wripple-form > div form .field:focus .input-group-append {
  box-shadow: none;
  border-bottom-color: #818E9B;
}
.wripple-form > div form .field small,
.wripple-form > div form .field .invalid-feedback {
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.01em;
}
.wripple-form > div form .field .invalid-feedback {
  color: var(--theme-danger, '#E54963');
}
.wripple-form > div form .field .form-group.text-danger > select.form-control,
.wripple-form > div form .field .form-group.text-danger > .input-group > .input-group-prepend,
.wripple-form > div form .field .form-group.text-danger > .input-group > .input-group-append {
  border-bottom-color: var(--theme-danger, '#E54963');
  box-shadow: none;
  color: var(--theme-danger, '#E54963');
}
.wripple-form > div form .field .form-control .input-group-append,
.wripple-form > div form .field .input-group > .input-group-prepend > .btn,
.wripple-form > div form .field .input-group > .input-group-append > .btn {
  border-bottom: none;
}
.wripple-form > div form .field .form-component.is-invalid ~ .invalid-feedback,
.wripple-form > div form .field .form-group.text-danger > .invalid-feedback {
  display: block;
}
.wripple-form > div form .form-control:focus,
.wripple-form > div form .ap-input:focus {
  background: transparent;
}
.wripple-form > div form .form-links {
  margin-top: 20px;
  font-size: 13px;
  line-height: 19px;
  color: var(--theme-primary, '#5f3db1');
}
.form-container {
  position: relative;
  display: flex;
  padding-top: 60px;
  flex-direction: row;
  flex: 1;
  align-items: flex-start;
  justify-content: center;
}
.form-container > div {
  margin-left: auto;
  margin-right: auto;
  align-self: stretch;
  flex: 1;
}
.form-container > div form {
  margin: 0 5%;
}
.form-container > div form .col-form-label {
  color: #818E9B !important;
  font-size: 11px !important;
  padding-bottom: 0 !important;
}
.form-container .form-title-section {
  width: unset;
  padding: 0 15px;
}
.input-group {
  align-items: stretch;
  display: flex;
  position: relative;
  width: 100%;
}
.talent-preferences-panel label.col-form-label {
  display: block;
}
.service-option-search .input-group {
  align-items: stretch;
  display: flex;
  position: relative;
  width: 100%;
}
.service-option-search .input-group .input-group-append,
.service-option-search .input-group .input-group-prepend {
  align-items: center;
  display: flex;
  padding: 0 5px;
}
@media only screen and (min-width: 1129px) {
  .login-form > .form-container > .form-title-section {
    flex: 0;
  }
}
@media only screen and (max-width: 1128px) {
  .login-form > .form-container > .form-title-section {
    flex: 0;
  }
}
.input-group-prepend,
.input-group-append {
  display: flex;
  align-items: center;
  padding: 0 5px;
}
.form-check {
  margin-bottom: 6px;
}
.form-check label {
  font-size: 12px;
}
.form-control,
.ap-input,
.input-group-prepend,
.input-group-append {
  border: none;
  border-radius: 0 !important;
  border-bottom: solid rgba(50, 60, 71, 0.5) 0.5px;
  background: transparent;
}
.image-crop-container {
  align-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
  min-height: 400px;
}
.image-upload-container,
.file-upload-container {
  display: flex;
  margin: 0;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.image-upload-container .invalid-feedback,
.file-upload-container .invalid-feedback {
  top: 100%;
}
.image-upload-container .image-upload-preview,
.file-upload-container .image-upload-preview {
  text-align: center;
  margin: 10px 0;
  position: relative;
  background-position: center;
  background-size: contain;
}
.image-upload-container .image-drop-input,
.file-upload-container .image-drop-input {
  outline: none;
  width: 100%;
  position: relative;
}
.image-upload-container .image-drop-input .btn-file,
.file-upload-container .image-drop-input .btn-file {
  width: 100%;
  height: 100px;
  border: 2.5px dashed #565b6c;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
  padding: 0 35px;
  flex-direction: row;
}
.image-upload-container .image-drop-input .btn-file p,
.file-upload-container .image-drop-input .btn-file p {
  white-space: nowrap;
  margin-bottom: 0;
  flex: 1;
}
.image-upload-container .image-drop-input .btn-file p b,
.file-upload-container .image-drop-input .btn-file p b {
  margin-left: 5px;
  color: var(--theme-primary, '#5f3db1');
}
.image-upload-container .image-drop-input .btn-file i,
.file-upload-container .image-drop-input .btn-file i {
  font-size: 35px;
  color: var(--theme-primary, '#5f3db1');
}
@media only screen and (max-width: 767px) {
  .image-upload-container .image-drop-input .btn-file p,
  .file-upload-container .image-drop-input .btn-file p {
    white-space: normal;
  }
}
.image-upload-container .image-drop-input.drag-active .btn-file,
.file-upload-container .image-drop-input.drag-active .btn-file {
  border-color: var(--theme-danger, '#E54963');
  box-shadow: 0 0 0 0.2rem rgba(255, 68, 68, 0.25);
  background-color: rgba(255, 68, 68, 0.25);
}
.image-upload-container .image-upload-preview-circle,
.file-upload-container .image-upload-preview-circle {
  border-radius: 50%;
}
.image-upload-container .btn-file,
.file-upload-container .btn-file {
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.image-upload-container .btn-file .image-edit-btn,
.file-upload-container .btn-file .image-edit-btn {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 20px;
  transition: all 150ms ease-in;
}
.image-upload-container .btn-file .image-edit-btn i,
.file-upload-container .btn-file .image-edit-btn i {
  transition: all 150ms ease-in;
  color: white !important;
  font-size: 25px;
  opacity: 0.9;
}
.image-upload-container .btn-file:hover .image-edit-btn,
.file-upload-container .btn-file:hover .image-edit-btn {
  background-color: rgba(0, 0, 0, 0.8);
}
.image-upload-container .btn-file:hover .image-edit-btn i,
.file-upload-container .btn-file:hover .image-edit-btn i {
  opacity: 1;
}
.image-upload-container .btn-file input[type=file],
.file-upload-container .btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: unset !important;
  width: inherit !important;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}
.image-upload-container .preview-drop-container .image-edit-btn,
.file-upload-container .preview-drop-container .image-edit-btn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0.5;
}
.image-upload-container .preview-drop-container:hover .image-edit-btn,
.file-upload-container .preview-drop-container:hover .image-edit-btn {
  background-color: rgba(0, 0, 0, 0.5);
}
.image-upload-container.disabled,
.file-upload-container.disabled {
  pointer-events: none;
}
.image-upload-container.disabled *,
.file-upload-container.disabled * {
  pointer-events: none;
}
.image-upload-container .label-hint,
.file-upload-container .label-hint {
  margin: -5px 0 5px;
  font-size: 11px;
  color: #707683;
  font-style: italic;
}
.bordered-panel .image-upload-container {
  align-items: center !important;
}
.file-upload-container .btn-file {
  align-self: flex-start;
  width: unset;
}
.file-upload-container .file-upload-preview {
  align-self: flex-start;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  padding: 0.7rem 1rem;
  text-align: center;
  background: #f7fafc;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  list-style: none;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e2e8f0;
  border-radius: 0.375rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.file-upload-container .file-upload-preview .flex-row {
  display: flex;
}
.file-upload-container .file-upload-preview .flex-row i {
  text-align: center;
  font-size: 11px;
  color: #67676a;
  margin-bottom: 3px;
}
.file-upload-container .file-upload-preview .flex-row .file-edit-action,
.file-upload-container .file-upload-preview .flex-row .file-remove-action {
  position: relative;
  cursor: pointer;
  width: 30px;
  opacity: 0.9;
}
.file-upload-container .file-upload-preview .flex-row .file-edit-action i,
.file-upload-container .file-upload-preview .flex-row .file-remove-action i {
  font-size: 18px;
  pointer-events: none;
}
.file-upload-container .file-upload-preview .flex-row .file-edit-action:hover,
.file-upload-container .file-upload-preview .flex-row .file-remove-action:hover {
  opacity: 1;
}
.file-upload-container .file-upload-preview .flex-row .file-edit-action:hover i,
.file-upload-container .file-upload-preview .flex-row .file-remove-action:hover i {
  color: black;
}
.file-upload-container .file-upload-preview .flex-row .file-edit-action {
  margin: 0 8px 0 auto;
}
.file-upload-container .file-upload-preview .flex-row .file-edit-action input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: unset !important;
  width: inherit !important;
  height: 100%;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: transparent;
  cursor: inherit;
  display: block;
  z-index: 5;
}
.file-upload-container .file-upload-preview p {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.01em;
  margin-bottom: 25px;
  color: #000000;
  text-align: left;
  min-width: 125px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
}
.file-upload-container .file-upload-preview p:hover {
  color: var(--theme-info, '#4B80E7');
}
.file-upload-btn {
  height: 40px;
  position: relative;
}
.file-upload-btn label.btn {
  flex: 1;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 0;
  flex-direction: column;
  margin-right: auto;
  text-align: right;
  background-color: white;
  height: 40px!important;
  max-width: 250px;
  border: 2px solid var(--theme-primary, '#5f3db1') !important;
  color: var(--theme-primary, '#5f3db1') !important;
  overflow: hidden;
}
.file-upload-btn label.btn span {
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.file-upload-btn label.btn span p {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 11px!important;
  white-space: nowrap;
  line-height: 25px;
  color: var(--theme-primary, '#5f3db1') !important;
  text-overflow: ellipsis;
}
.file-upload-btn label.btn span i {
  margin-bottom: 1px;
  font-size: 20px;
  margin-right: 10px;
  color: var(--theme-primary, '#5f3db1') !important;
}
.file-upload-btn label.btn:hover,
.file-upload-btn label.btn:focus {
  background-color: var(--theme-primary, '#5f3db1');
}
.file-upload-btn label.btn:hover span p,
.file-upload-btn label.btn:focus span p {
  color: white!important;
}
.file-upload-btn label.btn:hover span i,
.file-upload-btn label.btn:focus span i {
  color: white!important;
}
.file-upload-btn label.btn input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: unset !important;
  width: inherit !important;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}
.file-upload-btn.hasFile label.btn:hover,
.file-upload-btn.hasFile label.btn:focus {
  background-color: white;
}
.file-upload-btn.hasFile label.btn:hover span p,
.file-upload-btn.hasFile label.btn:focus span p {
  color: var(--theme-primary, '#5f3db1') !important;
}
.file-upload-btn.hasFile label.btn:hover span i,
.file-upload-btn.hasFile label.btn:focus span i {
  color: var(--theme-primary, '#5f3db1') !important;
}
.form-footer {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 20px;
}
.form-footer > :first-child {
  flex-basis: 60%;
  flex-grow: 1;
  display: flex;
}
.form-footer .form-buttons {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.form-footer .form-links {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 900px) {
  .field-section {
    flex-direction: column !important;
  }
}
@media only screen and (max-width: 768px) {
  .form-container > div,
  .form-container form {
    width: 100%;
  }
  .form-footer {
    padding: 0 15px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .form-footer .form-buttons {
    align-items: center;
    justify-content: center;
  }
  .form-footer .form-buttons button {
    margin-top: 0;
  }
  .default-form .form-container > div,
  .default-form .form-container form {
    width: unset;
  }
}
.react-autosuggest__container {
  position: relative;
  align-self: stretch;
  width: 100%;
}
.react-autosuggest__input {
  width: 100%;
  max-width: 400px;
  background-color: #F5F6F8;
  border: none;
  border-radius: 0;
  padding: 0 20px;
  height: 38px;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height */
  letter-spacing: 0.01em;
}
.react-autosuggest__input--focused {
  outline: none;
}
.react-autosuggest__input--open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.react-autosuggest__suggestions-container {
  display: none;
}
.react-autosuggest__suggestions-container--open {
  display: block;
  max-height: 350px;
  position: absolute;
  overflow-y: auto;
  width: 100%;
  border: 1px solid #C4C4C4;
  border-top: none;
  background-color: #fff;
  font-family: Beatrice, sans-serif;
  font-weight: 300;
  font-size: 16px;
  z-index: 15;
}
.react-autosuggest__suggestions-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.react-autosuggest__suggestion {
  cursor: pointer;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  border-bottom: 0.5px solid #E5EBF1;
}
.react-autosuggest__suggestion p.suggestion {
  font-size: 11px;
  margin: 0;
  padding: 9px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
}
.react-autosuggest__suggestion p.suggestion .custom-name {
  color: var(--theme-secondary, '#913ef0');
  font-weight: 600;
}
.react-autosuggest__suggestion p.suggestion.highlighted-suggestion {
  background-color: var(--theme-secondary, '#913ef0');
  color: white;
  font-weight: 500;
}
.react-autosuggest__suggestion p.suggestion.highlighted-suggestion .custom-name {
  color: white;
  font-weight: 800;
}
.react-autosuggest__suggestion p.suggestion.tag-suggestion .custom-name {
  color: var(--theme-success, '#5ae399');
}
.react-autosuggest__suggestion p.suggestion.tag-suggestion.highlighted-suggestion {
  background-color: var(--theme-success, '#5ae399');
  color: black;
}
.react-autosuggest__suggestion p.suggestion .suggestion-help {
  float: right;
  font-size: 8px;
  font-weight: 300;
  font-style: italic;
}
.react-autosuggest__suggestion:last-child {
  border-bottom: none;
}
.suggestion-empty {
  border-bottom: 0.5px solid #E5EBF1;
  border-left: 0.5px solid #E5EBF1;
  border-right: 0.5px solid #E5EBF1;
  padding: 9px 11px;
  color: var(--theme-danger, '#E54963');
}
.react-autosuggest__suggestion--highlighted {
  background-color: #E5EBF1;
}
.react-autosuggest__section-container--first {
  border-top: 0;
}
.react-autosuggest__section-title {
  padding: 10px 0 0 10px;
  font-size: 12px;
  color: var(--theme-secondary, '#913ef0');
}
.auto-size-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
}
.auto-size-input {
  position: relative;
}
.auto-size-input input {
  margin-right: 5px;
}
.auto-size-input input:disabled {
  background-color: transparent !important;
}
.auto-size-input span {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  position: absolute;
  white-space: nowrap;
}
.position-text-field .auto-size-input span {
  font-family: Simplon Mono, sans-serif;
  font-size: 28px !important;
  font-weight: 500 !important;
  width: auto !important;
  border-bottom: none;
  flex-basis: auto !important;
  line-height: 19px;
  letter-spacing: 0.01em;
}
.position-text-field.discipline-position-text-field {
  background: none;
  border-bottom-color: #D3D8DD !important;
  border-bottom-width: 1px !important;
}
.position-text-field.discipline-position-text-field .auto-size-input input,
.position-text-field.discipline-position-text-field .auto-size-input span {
  font-family: Beatrice, sans-serif !important;
  font-weight: normal !important;
  padding: 0;
  line-height: 19px;
  letter-spacing: 0.01em;
  height: 30px;
  font-size: 14px !important;
}
.react-calendar {
  width: 350px;
  max-width: 100%;
  background: white;
  border: 1px solid #a0a096;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.125em;
}
.react-calendar--doubleView {
  width: 700px;
}
.react-calendar--doubleView .react-calendar__viewContainer {
  display: flex;
  margin: -0.5em;
}
.react-calendar--doubleView .react-calendar__viewContainer > * {
  width: 50%;
  margin: 0.5em;
}
.react-calendar,
.react-calendar *,
.react-calendar *:before,
.react-calendar *:after {
  box-sizing: border-box;
}
.react-calendar button {
  margin: 0;
  border: 0;
  outline: none;
}
.react-calendar button:enabled:hover {
  cursor: pointer;
}
.react-calendar__navigation {
  display: flex;
  height: 44px;
  margin-bottom: 1em;
}
.react-calendar__navigation button {
  min-width: 44px;
  background: none;
}
.react-calendar__navigation button:disabled {
  background-color: #f0f0f0;
}
.react-calendar__navigation button:enabled:hover,
.react-calendar__navigation button:enabled:focus {
  background-color: #e6e6e6;
}
.react-calendar__month-view__weekdays {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.75em;
}
.react-calendar__month-view__weekdays__weekday {
  padding: 0.5em;
}
.react-calendar__month-view__weekNumbers .react-calendar__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75em;
  font-weight: bold;
}
.react-calendar__month-view__days__day--weekend {
  color: #d10000;
}
.react-calendar__month-view__days__day--neighboringMonth {
  color: #757575;
}
.react-calendar__year-view .react-calendar__tile,
.react-calendar__decade-view .react-calendar__tile,
.react-calendar__century-view .react-calendar__tile {
  padding: 2em 0.5em;
}
.react-calendar__tile {
  max-width: 100%;
  padding: 10px 6.6667px;
  background: none;
  text-align: center;
  line-height: 16px;
}
.react-calendar__tile:disabled {
  background-color: #f0f0f0;
}
.react-calendar__tile:enabled:hover,
.react-calendar__tile:enabled:focus {
  background-color: #e6e6e6;
}
.react-calendar__tile--now {
  background: #ffff76;
}
.react-calendar__tile--now:enabled:hover,
.react-calendar__tile--now:enabled:focus {
  background: #ffffa9;
}
.react-calendar__tile--hasActive {
  background: #76baff;
}
.react-calendar__tile--hasActive:enabled:hover,
.react-calendar__tile--hasActive:enabled:focus {
  background: #a9d4ff;
}
.react-calendar__tile--active {
  background: #006edc;
  color: white;
}
.react-calendar__tile--active:enabled:hover,
.react-calendar__tile--active:enabled:focus {
  background: #1087ff;
}
.react-calendar--selectRange .react-calendar__tile--hover {
  background-color: #e6e6e6;
}

.react-date-picker {
  display: inline-flex;
  position: relative;
}
.react-date-picker,
.react-date-picker *,
.react-date-picker *:before,
.react-date-picker *:after {
  box-sizing: border-box;
}
.react-date-picker__wrapper {
  display: flex;
  flex-grow: 1;
  border: thin solid gray;
}
.react-date-picker__inputGroup {
  min-width: calc((4px * 3) +  0.54em * 8  +  0.217em * 2);
  flex-grow: 1;
  padding: 0 2px;
  box-sizing: content-box;
}
.react-date-picker__inputGroup__divider {
  padding: 1px 0;
  white-space: pre;
}
.react-date-picker__inputGroup__input {
  min-width: 0.54em;
  height: 100%;
  position: relative;
  padding: 0 1px;
  border: 0;
  background: none;
  font: inherit;
  box-sizing: content-box;
  -moz-appearance: textfield;
}
.react-date-picker__inputGroup__input::-webkit-outer-spin-button,
.react-date-picker__inputGroup__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.react-date-picker__inputGroup__input:invalid {
  background: rgba(255, 0, 0, 0.1);
}
.react-date-picker__inputGroup__input--hasLeadingZero {
  margin-left: -0.54em;
  padding-left: calc(1px +  0.54em);
}
.react-date-picker__button {
  border: 0;
  background: transparent;
  padding: 4px 6px;
}
.react-date-picker__button:enabled {
  cursor: pointer;
}
.react-date-picker__button:enabled:hover .react-date-picker__button__icon,
.react-date-picker__button:enabled:focus .react-date-picker__button__icon {
  stroke: #0078d7;
}
.react-date-picker__button:disabled .react-date-picker__button__icon {
  stroke: #6d6d6d;
}
.react-date-picker__button svg {
  display: inherit;
}
.react-date-picker__calendar {
  width: 350px;
  max-width: 100vw;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
}
.react-date-picker__calendar--closed {
  display: none;
}
.react-date-picker__calendar .react-calendar {
  border-width: thin;
}
.react-date-picker__calendar.react-date-picker__calendar--open {
  z-index: 5;
  top: 100% !important;
  bottom: unset !important;
}
.date-container {
  position: relative;
}
.date-container i.fa {
  font-size: 24px;
  color: var(--theme-primary, '#5f3db1');
  margin-right: 10px;
}
.date-container .react-date-picker {
  width: 100%;
}
.date-container .react-calendar__tile--now {
  background-color: var(--theme-success, '#5ae399');
  color: white;
}
.date-container .react-calendar__tile--now:hover,
.date-container .react-calendar__tile--now:focus {
  background-color: var(--theme-success-darker) !important;
}
.date-container .react-calendar__tile--active {
  background-color: var(--theme-secondary, '#913ef0');
}
.date-container .react-date-picker__wrapper {
  border: none !important;
}
.date-container .react-date-picker__wrapper label {
  padding-top: calc(0.375rem + 1px);
  margin-bottom: 10px;
}
.react-date-picker__inputGroup select,
.react-date-picker__inputGroup input:not([type='date']) {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.react-date-picker__inputGroup select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}
.experience-container {
  display: flex;
  position: relative;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.experience {
  opacity: 1;
  border: 1px solid var(--theme-secondary, '#913ef0');
  box-sizing: border-box;
  border-radius: 46px;
  display: inline-flex;
  flex-direction: row;
  height: 30px;
  cursor: pointer;
  padding: 4px 0;
  margin-right: 15px;
  margin-top: 0 !important;
  margin-bottom: 15px;
  align-items: stretch;
  position: relative;
  justify-content: space-between;
  transition: all 200ms ease-in-out;
}
.experience * {
  transition: all 200ms ease-in-out;
}
.experience p {
  font-size: 11px;
  line-height: 15px;
  padding: 0 12px !important;
  margin: 0 !important;
  color: var(--theme-secondary, '#913ef0');
  display: flex;
  align-items: center;
  justify-content: center;
}
.experience .s-divider {
  width: 1px;
  margin: 0;
  background-color: var(--theme-secondary, '#913ef0');
  display: flex;
  align-items: center;
  justify-content: center;
}
.experience i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-secondary, '#913ef0');
  font-size: 10px;
  padding: 0 12px !important;
}
.experience.selected {
  background-color: var(--theme-secondary, '#913ef0');
}
.experience.selected p,
.experience.selected i {
  color: white;
}
.experience.selected .s-divider {
  background-color: white;
}
.team-skills-container .dropdown,
.project-skills-container .dropdown,
.project-skills-step .dropdown,
.position-wizard-step .dropdown,
.wripple-form:not(.project-group-from) form .dropdown {
  display: block;
  min-width: 80px;
}
.team-skills-container .dropdown > span:first-child,
.project-skills-container .dropdown > span:first-child,
.project-skills-step .dropdown > span:first-child,
.position-wizard-step .dropdown > span:first-child,
.wripple-form:not(.project-group-from) form .dropdown > span:first-child {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  pointer-events: all;
  min-width: 80px;
}
.team-skills-container .dropdown > span:first-child .skill:first-child,
.project-skills-container .dropdown > span:first-child .skill:first-child,
.project-skills-step .dropdown > span:first-child .skill:first-child,
.position-wizard-step .dropdown > span:first-child .skill:first-child,
.wripple-form:not(.project-group-from) form .dropdown > span:first-child .skill:first-child,
.team-skills-container .dropdown > span:first-child .experience:first-child,
.project-skills-container .dropdown > span:first-child .experience:first-child,
.project-skills-step .dropdown > span:first-child .experience:first-child,
.position-wizard-step .dropdown > span:first-child .experience:first-child,
.wripple-form:not(.project-group-from) form .dropdown > span:first-child .experience:first-child {
  z-index: 2;
  min-width: 80px;
}
.team-skills-container .dropdown .skill.skill-result,
.project-skills-container .dropdown .skill.skill-result,
.project-skills-step .dropdown .skill.skill-result,
.position-wizard-step .dropdown .skill.skill-result,
.wripple-form:not(.project-group-from) form .dropdown .skill.skill-result,
.team-skills-container .dropdown .experience.experience-result,
.project-skills-container .dropdown .experience.experience-result,
.project-skills-step .dropdown .experience.experience-result,
.position-wizard-step .dropdown .experience.experience-result,
.wripple-form:not(.project-group-from) form .dropdown .experience.experience-result {
  transition: all 0s linear !important;
  margin-top: -30px !important;
  background-color: white;
  margin-bottom: 15px;
  padding-top: 16px;
  height: 40px;
  z-index: 1;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  text-align: center;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: row;
  min-width: 80px;
}
.team-skills-container .dropdown .skill.skill-result i,
.project-skills-container .dropdown .skill.skill-result i,
.project-skills-step .dropdown .skill.skill-result i,
.position-wizard-step .dropdown .skill.skill-result i,
.wripple-form:not(.project-group-from) form .dropdown .skill.skill-result i,
.team-skills-container .dropdown .experience.experience-result i,
.project-skills-container .dropdown .experience.experience-result i,
.project-skills-step .dropdown .experience.experience-result i,
.position-wizard-step .dropdown .experience.experience-result i,
.wripple-form:not(.project-group-from) form .dropdown .experience.experience-result i,
.team-skills-container .dropdown .skill.skill-result p,
.project-skills-container .dropdown .skill.skill-result p,
.project-skills-step .dropdown .skill.skill-result p,
.position-wizard-step .dropdown .skill.skill-result p,
.wripple-form:not(.project-group-from) form .dropdown .skill.skill-result p,
.team-skills-container .dropdown .experience.experience-result p,
.project-skills-container .dropdown .experience.experience-result p,
.project-skills-step .dropdown .experience.experience-result p,
.position-wizard-step .dropdown .experience.experience-result p,
.wripple-form:not(.project-group-from) form .dropdown .experience.experience-result p {
  padding-left: 3px !important;
  padding-right: 3px !important;
}
.team-skills-container .dropdown.show > span:first-child,
.project-skills-container .dropdown.show > span:first-child,
.project-skills-step .dropdown.show > span:first-child,
.position-wizard-step .dropdown.show > span:first-child,
.wripple-form:not(.project-group-from) form .dropdown.show > span:first-child {
  display: unset;
}
.team-skills-container .dropdown.show > span:first-child .experience:first-child,
.project-skills-container .dropdown.show > span:first-child .experience:first-child,
.project-skills-step .dropdown.show > span:first-child .experience:first-child,
.position-wizard-step .dropdown.show > span:first-child .experience:first-child,
.wripple-form:not(.project-group-from) form .dropdown.show > span:first-child .experience:first-child,
.team-skills-container .dropdown.show > span:first-child .skill:first-child,
.project-skills-container .dropdown.show > span:first-child .skill:first-child,
.project-skills-step .dropdown.show > span:first-child .skill:first-child,
.position-wizard-step .dropdown.show > span:first-child .skill:first-child,
.wripple-form:not(.project-group-from) form .dropdown.show > span:first-child .skill:first-child {
  pointer-events: unset;
  z-index: 1001;
  min-width: 80px;
}
.team-skills-container .dropdown.show .experience:first-of-type,
.project-skills-container .dropdown.show .experience:first-of-type,
.project-skills-step .dropdown.show .experience:first-of-type,
.position-wizard-step .dropdown.show .experience:first-of-type,
.wripple-form:not(.project-group-from) form .dropdown.show .experience:first-of-type,
.team-skills-container .dropdown.show .skill:first-of-type,
.project-skills-container .dropdown.show .skill:first-of-type,
.project-skills-step .dropdown.show .skill:first-of-type,
.position-wizard-step .dropdown.show .skill:first-of-type,
.wripple-form:not(.project-group-from) form .dropdown.show .skill:first-of-type {
  transition: z-index 0s linear;
  z-index: 1001;
  background-color: white;
}
.team-skills-container .dropdown.show .experience:first-of-type.selected,
.project-skills-container .dropdown.show .experience:first-of-type.selected,
.project-skills-step .dropdown.show .experience:first-of-type.selected,
.position-wizard-step .dropdown.show .experience:first-of-type.selected,
.wripple-form:not(.project-group-from) form .dropdown.show .experience:first-of-type.selected,
.team-skills-container .dropdown.show .skill:first-of-type.selected,
.project-skills-container .dropdown.show .skill:first-of-type.selected,
.project-skills-step .dropdown.show .skill:first-of-type.selected,
.position-wizard-step .dropdown.show .skill:first-of-type.selected,
.wripple-form:not(.project-group-from) form .dropdown.show .skill:first-of-type.selected {
  background-color: var(--theme-secondary, '#913ef0');
}
.team-skills-container .dropdown.show .dropdown-menu,
.project-skills-container .dropdown.show .dropdown-menu,
.project-skills-step .dropdown.show .dropdown-menu,
.position-wizard-step .dropdown.show .dropdown-menu,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu {
  background: var(--theme-primary-darker);
  right: 0;
  margin-right: 15px;
  padding-top: 15px;
  margin-top: -8px;
  border: 1px;
  padding-bottom: 0;
  min-width: unset;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  transform: translate3d(0px, 24px, 0px) !important;
}
.team-skills-container .dropdown.show .dropdown-menu .experience,
.project-skills-container .dropdown.show .dropdown-menu .experience,
.project-skills-step .dropdown.show .dropdown-menu .experience,
.position-wizard-step .dropdown.show .dropdown-menu .experience,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .experience,
.team-skills-container .dropdown.show .dropdown-menu .skill,
.project-skills-container .dropdown.show .dropdown-menu .skill,
.project-skills-step .dropdown.show .dropdown-menu .skill,
.position-wizard-step .dropdown.show .dropdown-menu .skill,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .skill {
  transition: none !important;
  margin: 0 !important;
  width: 100%;
  display: flex;
  background-color: transparent !important;
  border: none !important;
}
.team-skills-container .dropdown.show .dropdown-menu .experience *,
.project-skills-container .dropdown.show .dropdown-menu .experience *,
.project-skills-step .dropdown.show .dropdown-menu .experience *,
.position-wizard-step .dropdown.show .dropdown-menu .experience *,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .experience *,
.team-skills-container .dropdown.show .dropdown-menu .skill *,
.project-skills-container .dropdown.show .dropdown-menu .skill *,
.project-skills-step .dropdown.show .dropdown-menu .skill *,
.position-wizard-step .dropdown.show .dropdown-menu .skill *,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .skill * {
  transition: none !important;
  color: white;
}
.team-skills-container .dropdown.show .dropdown-menu .experience p,
.project-skills-container .dropdown.show .dropdown-menu .experience p,
.project-skills-step .dropdown.show .dropdown-menu .experience p,
.position-wizard-step .dropdown.show .dropdown-menu .experience p,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .experience p,
.team-skills-container .dropdown.show .dropdown-menu .skill p,
.project-skills-container .dropdown.show .dropdown-menu .skill p,
.project-skills-step .dropdown.show .dropdown-menu .skill p,
.position-wizard-step .dropdown.show .dropdown-menu .skill p,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .skill p {
  flex: 1;
  text-align: center;
}
.team-skills-container .dropdown.show .dropdown-menu .experience:active,
.project-skills-container .dropdown.show .dropdown-menu .experience:active,
.project-skills-step .dropdown.show .dropdown-menu .experience:active,
.position-wizard-step .dropdown.show .dropdown-menu .experience:active,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .experience:active,
.team-skills-container .dropdown.show .dropdown-menu .skill:active,
.project-skills-container .dropdown.show .dropdown-menu .skill:active,
.project-skills-step .dropdown.show .dropdown-menu .skill:active,
.position-wizard-step .dropdown.show .dropdown-menu .skill:active,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .skill:active,
.team-skills-container .dropdown.show .dropdown-menu .experience:focus,
.project-skills-container .dropdown.show .dropdown-menu .experience:focus,
.project-skills-step .dropdown.show .dropdown-menu .experience:focus,
.position-wizard-step .dropdown.show .dropdown-menu .experience:focus,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .experience:focus,
.team-skills-container .dropdown.show .dropdown-menu .skill:focus,
.project-skills-container .dropdown.show .dropdown-menu .skill:focus,
.project-skills-step .dropdown.show .dropdown-menu .skill:focus,
.position-wizard-step .dropdown.show .dropdown-menu .skill:focus,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .skill:focus {
  border: none !important;
}
.team-skills-container .dropdown.show .dropdown-menu .experience:active *,
.project-skills-container .dropdown.show .dropdown-menu .experience:active *,
.project-skills-step .dropdown.show .dropdown-menu .experience:active *,
.position-wizard-step .dropdown.show .dropdown-menu .experience:active *,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .experience:active *,
.team-skills-container .dropdown.show .dropdown-menu .skill:active *,
.project-skills-container .dropdown.show .dropdown-menu .skill:active *,
.project-skills-step .dropdown.show .dropdown-menu .skill:active *,
.position-wizard-step .dropdown.show .dropdown-menu .skill:active *,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .skill:active *,
.team-skills-container .dropdown.show .dropdown-menu .experience:focus *,
.project-skills-container .dropdown.show .dropdown-menu .experience:focus *,
.project-skills-step .dropdown.show .dropdown-menu .experience:focus *,
.position-wizard-step .dropdown.show .dropdown-menu .experience:focus *,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .experience:focus *,
.team-skills-container .dropdown.show .dropdown-menu .skill:focus *,
.project-skills-container .dropdown.show .dropdown-menu .skill:focus *,
.project-skills-step .dropdown.show .dropdown-menu .skill:focus *,
.position-wizard-step .dropdown.show .dropdown-menu .skill:focus *,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .skill:focus * {
  color: white !important;
}
.team-skills-container .dropdown.show .dropdown-menu .experience:hover *,
.project-skills-container .dropdown.show .dropdown-menu .experience:hover *,
.project-skills-step .dropdown.show .dropdown-menu .experience:hover *,
.position-wizard-step .dropdown.show .dropdown-menu .experience:hover *,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .experience:hover *,
.team-skills-container .dropdown.show .dropdown-menu .skill:hover *,
.project-skills-container .dropdown.show .dropdown-menu .skill:hover *,
.project-skills-step .dropdown.show .dropdown-menu .skill:hover *,
.position-wizard-step .dropdown.show .dropdown-menu .skill:hover *,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .skill:hover * {
  color: var(--theme-secondary, '#913ef0');
}
.team-skills-container .dropdown.show .dropdown-menu .experience .s-divider,
.project-skills-container .dropdown.show .dropdown-menu .experience .s-divider,
.project-skills-step .dropdown.show .dropdown-menu .experience .s-divider,
.position-wizard-step .dropdown.show .dropdown-menu .experience .s-divider,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .experience .s-divider,
.team-skills-container .dropdown.show .dropdown-menu .skill .s-divider,
.project-skills-container .dropdown.show .dropdown-menu .skill .s-divider,
.project-skills-step .dropdown.show .dropdown-menu .skill .s-divider,
.position-wizard-step .dropdown.show .dropdown-menu .skill .s-divider,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .skill .s-divider,
.team-skills-container .dropdown.show .dropdown-menu .experience i,
.project-skills-container .dropdown.show .dropdown-menu .experience i,
.project-skills-step .dropdown.show .dropdown-menu .experience i,
.position-wizard-step .dropdown.show .dropdown-menu .experience i,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .experience i,
.team-skills-container .dropdown.show .dropdown-menu .skill i,
.project-skills-container .dropdown.show .dropdown-menu .skill i,
.project-skills-step .dropdown.show .dropdown-menu .skill i,
.position-wizard-step .dropdown.show .dropdown-menu .skill i,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .skill i {
  display: none;
}
.team-skills-container .dropdown.show .dropdown-menu .dropdown-item,
.project-skills-container .dropdown.show .dropdown-menu .dropdown-item,
.project-skills-step .dropdown.show .dropdown-menu .dropdown-item,
.position-wizard-step .dropdown.show .dropdown-menu .dropdown-item,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .dropdown-item {
  padding: 0 !important;
  width: 100%;
  border-bottom: 1px solid white !important;
}
.team-skills-container .dropdown.show .dropdown-menu .dropdown-item:last-child,
.project-skills-container .dropdown.show .dropdown-menu .dropdown-item:last-child,
.project-skills-step .dropdown.show .dropdown-menu .dropdown-item:last-child,
.position-wizard-step .dropdown.show .dropdown-menu .dropdown-item:last-child,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .dropdown-item:last-child {
  border-width: 0;
  border-bottom: none !important;
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
}
.team-skills-container .dropdown.show .dropdown-menu .dropdown-item:hover,
.project-skills-container .dropdown.show .dropdown-menu .dropdown-item:hover,
.project-skills-step .dropdown.show .dropdown-menu .dropdown-item:hover,
.position-wizard-step .dropdown.show .dropdown-menu .dropdown-item:hover,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .dropdown-item:hover {
  background-color: white !important;
}
.team-skills-container .dropdown.show .dropdown-menu .dropdown-item:focus,
.project-skills-container .dropdown.show .dropdown-menu .dropdown-item:focus,
.project-skills-step .dropdown.show .dropdown-menu .dropdown-item:focus,
.position-wizard-step .dropdown.show .dropdown-menu .dropdown-item:focus,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .dropdown-item:focus {
  outline: none;
}
.team-skills-container .dropdown.show .dropdown-menu .dropdown-item:focus *,
.project-skills-container .dropdown.show .dropdown-menu .dropdown-item:focus *,
.project-skills-step .dropdown.show .dropdown-menu .dropdown-item:focus *,
.position-wizard-step .dropdown.show .dropdown-menu .dropdown-item:focus *,
.wripple-form:not(.project-group-from) form .dropdown.show .dropdown-menu .dropdown-item:focus * {
  color: var(--theme-secondary, '#913ef0') !important;
}
.team-skills-container .skill {
  margin-right: 10px;
}
.team-skills-container .dropdown .skill.skill-result,
.team-skills-container .dropdown .experience.experience-result {
  margin-bottom: 10px;
}
.team-skills-container .dropdown.show .dropdown-menu {
  margin-right: 10px;
}
.project-skills-step .dropdown .skill.skill-result,
.project-skills-step .dropdown .experience.experience-result {
  background-color: transparent;
}
.project-skills-step .dropdown.show .experience:first-of-type,
.project-skills-step .dropdown.show .skill:first-of-type {
  background-color: white;
}
.project-skills-step .dropdown.show .experience:first-of-type.selected,
.project-skills-step .dropdown.show .skill:first-of-type.selected {
  background-color: var(--theme-secondary, '#913ef0');
}
.project-skills-step .dropdown.show .dropdown-menu {
  background: var(--theme-primary-darker);
}
.project-skills-step .dropdown.show .dropdown-menu .experience,
.project-skills-step .dropdown.show .dropdown-menu .skill {
  background-color: transparent !important;
  border: none !important;
}
.project-skills-step .dropdown.show .dropdown-menu .experience *,
.project-skills-step .dropdown.show .dropdown-menu .skill * {
  transition: none !important;
  color: white;
}
.project-skills-step .dropdown.show .dropdown-menu .experience:hover *,
.project-skills-step .dropdown.show .dropdown-menu .skill:hover * {
  color: var(--theme-secondary, '#913ef0');
}
.project-skills-step .dropdown.show .dropdown-menu .experience .s-divider,
.project-skills-step .dropdown.show .dropdown-menu .skill .s-divider,
.project-skills-step .dropdown.show .dropdown-menu .experience i,
.project-skills-step .dropdown.show .dropdown-menu .skill i {
  display: none;
}
.talent-role-form {
  position: relative;
}
.talent-role-form.setup-team-form .wripple-form .form-container {
  padding: 0;
}
.talent-role-form.setup-team-form .wripple-form .form-container .field {
  margin-top: 0;
}
.team-name-form .invalid-feedback {
  bottom: -5px;
  font-size: 0.65rem;
}
.talent-role-panel {
  position: relative;
}
.form-profile-icon {
  position: absolute;
  top: -5px;
  right: 0;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--theme-secondary, '#913ef0');
}
.form-profile-icon i {
  font-size: 24px;
  color: white;
}
.form-hint {
  font-size: 0.7rem;
  line-height: 1.4;
  margin: -5px auto 0;
  color: #999;
}
.form-hint span {
  font-weight: 500;
}
.form-hint ul {
  margin-bottom: 0;
}
.form-hint.error {
  color: #c00;
  font-size: 0.8rem;
}
.password-count {
  bottom: 16px;
  right: 10px;
  font-size: 1rem;
}
.strength-meter {
  position: relative;
  height: 3px;
  background: #ddd;
  margin: 7px 0;
  border-radius: 2px;
}
.strength-meter:before,
.strength-meter:after {
  content: "";
  height: inherit;
  background: transparent;
  display: block;
  border-color: #fff;
  border-style: solid;
  border-width: 0 6px 0;
  position: absolute;
  width: calc(20% + 6px);
  z-index: 10;
}
.strength-meter:before {
  left: calc(20% - 3px);
}
.strength-meter:after {
  right: calc(20% - 3px);
}
.strength-meter-fill {
  background: #F5F6F8;
  height: inherit;
  position: absolute;
  width: 0;
  border-radius: inherit;
  transition: width 0.5s ease-in-out, background 0.25s;
}
.strength-meter-fill[data-strength="0"] {
  width: 20%;
  background: darkred;
}
.strength-meter-fill[data-strength="1"] {
  width: 40%;
  background: orangered;
}
.strength-meter-fill[data-strength="2"] {
  width: 60%;
  background: orange;
}
.strength-meter-fill[data-strength="3"] {
  width: 80%;
  background: yellowgreen;
}
.strength-meter-fill[data-strength="4"] {
  width: 100%;
  background: green;
}
.strength-meter.empty .strength-meter-fill {
  background: transparent !important;
}
.form-row label {
  padding-top: 0;
  margin: 0 !important;
  display: flex;
  align-items: center;
}
.hide-input {
  margin-bottom: 0px !important;
}
.hide-input input {
  visibility: hidden !important;
  position: absolute;
  left: -9999px;
}
.hide-input .invalid-feedback {
  bottom: -75px;
}
label.hide-label {
  visibility: hidden !important;
  position: absolute;
  left: -9999px;
}
label.form-control-label {
  padding-bottom: 7px;
}
.field-wrap label {
  white-space: normal !important;
}
.notifications-category-header {
  margin-top: 35px;
}
.notifications-category-header h4 {
  font-size: 20px;
  color: black;
  font-weight: 500;
}
.notifications-category-header hr {
  margin-bottom: 0;
}
.auth-settings-form .field-element {
  display: flex;
  align-items: stretch;
  align-self: stretch;
}
.auth-settings-form .notifications-category-option-header {
  flex: 1;
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-end;
}
.auth-settings-form .notifications-category-option-header p {
  margin-bottom: 0;
  font-size: 12px;
}
.auth-settings-form .field-section-group {
  border-bottom: 1px solid #707683;
}
.auth-settings-form .field-section-group .field-section .field {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.auth-settings-form .form-buttons {
  justify-content: flex-end;
  padding: 0 15px;
  margin-top: 20px;
}
.setting-form-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  padding: 0;
  margin: 0;
}
.setting-form-group label {
  margin: 0 !important;
}
.setting-form-group .react-switch-bg div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.setting-form-group .react-switch-bg div i {
  font-size: 10px;
}
.settings-label {
  flex: 1;
  margin-right: 15px;
}
.settings-label .setting-name {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 3px;
  color: black;
}
.settings-label .setting-description {
  color: #6c757d;
  font-size: 10px;
  font-weight: normal;
  margin-bottom: 0;
}
.rating-form-group {
  max-width: 300px;
}
.star-form-group {
  max-width: 200px;
}
.star-form-group,
.rating-form-group {
  display: flex;
  align-self: stretch;
  justify-content: space-evenly;
  flex-flow: row nowrap;
  margin: 0;
}
.star-form-group .star-input,
.rating-form-group .star-input {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 150ms ease-in;
  height: 30px;
}
.star-form-group .star-input i,
.rating-form-group .star-input i {
  font-size: 30px;
  color: var(--theme-warning, '#FFB946');
}
.star-form-group .rating-input,
.rating-form-group .rating-input {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  border-right: none;
  border-left: 1px solid #000;
  cursor: pointer;
  transition: all 150ms ease-in;
  height: 35px;
}
.star-form-group .rating-input.active,
.rating-form-group .rating-input.active {
  cursor: default;
}
.star-form-group .rating-input:first-child,
.rating-form-group .rating-input:first-child {
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
.star-form-group .rating-input:last-child,
.rating-form-group .rating-input:last-child {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-right: 1px solid #000;
}
.star-form-group .rating-input p,
.rating-form-group .rating-input p {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: normal;
  font-family: Beatrice, sans-serif;
}
.star-form-group .rating-input.rating-1 p,
.rating-form-group .rating-input.rating-1 p,
.star-form-group .rating-input.rating-2 p,
.rating-form-group .rating-input.rating-2 p,
.star-form-group .rating-input.rating-3 p,
.rating-form-group .rating-input.rating-3 p,
.star-form-group .rating-input.rating-4 p,
.rating-form-group .rating-input.rating-4 p,
.star-form-group .rating-input.rating-5 p,
.rating-form-group .rating-input.rating-5 p {
  font-weight: bold;
}
.star-form-group .rating-input.rating-1,
.rating-form-group .rating-input.rating-1 {
  background-color: var(--theme-danger, '#E54963');
}
.star-form-group .rating-input.rating-2,
.rating-form-group .rating-input.rating-2 {
  background-color: var(--theme-warning, '#FFB946');
}
.star-form-group .rating-input.rating-3,
.rating-form-group .rating-input.rating-3 {
  background-color: var(--theme-success, '#5ae399');
}
.star-form-group .rating-input.rating-4,
.rating-form-group .rating-input.rating-4 {
  background-color: var(--theme-success-dark);
}
.star-form-group .rating-input.rating-5,
.rating-form-group .rating-input.rating-5 {
  background-color: var(--theme-success-darker);
}
.login-container > div {
  padding: 70px 80px;
  background: #FFFFFF;
  margin: 70px 0 0;
}
.login-container > div > .row > div {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: center;
}
.login-container .login-logo-wrapper {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.login-container .login-logo-wrapper img {
  width: 200px;
  padding: 0;
}
@media screen and (max-width: 760px) {
  .login-container .login-logo-wrapper {
    font-size: 12px;
  }
  .login-container .login-logo-wrapper img {
    width: 150px;
    padding: 0px;
  }
}
.login-container img {
  width: 100%;
  padding: 0 50px;
}
.login-form .form-container {
  background-color: transparent !important;
}
@media screen and (max-width: 760px) {
  .login-form .form-container {
    padding-right: 0;
  }
}
.login-form .form-container form .field {
  margin-top: 0 !important;
}
.login-form .form-container .form-title-section {
  margin: 0 !important;
}
.login-form .form-container .form-title {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 760px) {
  .login-form .form-container .form-title {
    display: none;
  }
}
.login-form .form-container form .field .form-group label {
  padding: 0px;
  margin: 0px !important;
  font-size: 14px !important;
}
.login-form .form-container form .form-buttons button {
  width: 7rem;
}
.login-form .form-container .form-footer {
  margin-top: 0;
}
.login-form .form-container .form-footer > :first-child {
  flex-basis: unset;
}
.login-form .form-container .form-footer .form-links {
  margin-top: 0;
}
.login-form .form-container .form-footer .form-links button,
.login-form .form-container .form-footer .form-links a {
  white-space: nowrap;
}
.checkbox-group-option {
  pointer-events: all;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.checkbox-group-option:active {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.checkbox-group-option.checked {
  background-color: #f8f9fa;
}
.checkbox-group-option .form-checkbox {
  flex: 1;
}
.checkbox-group-option .form-checkbox label {
  flex: 1;
}
.checkbox-group-option .form-checkbox [type="checkbox"]:checked + label {
  background-color: transparent;
}
.checkbox-group-option .form-checkbox [type="checkbox"]:checked + label::before {
  color: black;
}
.wripple-form .field-section .filter-button-dropdown {
  display: flex;
  flex-direction: column;
  position: relative;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu {
  min-width: 348px !important;
  background-color: white !important;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu > .dropdown-item span {
  font-weight: 400;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .dropdown-header .text-bold {
  color: #000;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-option-form {
  pointer-events: all;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-option-form:active {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-option-form.checked {
  background-color: #f8f9fa;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-option-form .filter-importance {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-option-form .filter-importance * {
  font-family: Beatrice, sans-serif;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-option-form .filter-importance .importance-btn {
  font-size: 11px;
  white-space: nowrap;
  color: var(--theme-secondary, '#913ef0');
  font-weight: 500;
  font-family: Beatrice, sans-serif;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-option-form .filter-importance .importance-btn.disabled {
  color: #d3d8dd;
  pointer-events: none;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-option-form .form-checkbox {
  flex: 1;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-option-form .form-checkbox label {
  flex: 1;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-option-form .form-checkbox [type="checkbox"]:checked + label {
  background-color: transparent;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-option-form .form-checkbox [type="checkbox"]:checked + label::before {
  color: var(--theme-warning, '#FFB946');
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-section-select {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-search-input {
  min-width: 280px;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-search-input.active,
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-search-input:active {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-search-input .react-autosuggest__container {
  pointer-events: all;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-search-input .input-group {
  height: 30px;
  position: relative;
  display: flex;
  align-items: center;
  width: 300px;
  box-shadow: #95899b 0px 0px 0px 1px inset;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 0 5px;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-search-input .input-group .input-group-prepend,
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-search-input .input-group .input-group-append {
  border: none !important;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-search-input input {
  flex: 1 1 auto;
  height: 100%;
  background-color: transparent !important;
  line-height: normal !important;
  box-shadow: none !important;
  outline: none !important;
  display: inline-block !important;
  font-size: 14px !important;
  padding: 0 !important;
  width: 70% !important;
  color: #000 !important;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-search-input input:focus {
  outline: none !important;
  box-shadow: none !important;
  color: inherit!important;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-search-input ::-moz-placeholder {
  color: #707683 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  opacity: 1;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-search-input ::placeholder {
  color: #707683 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  opacity: 1;
}
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-search-input :-ms-input-placeholder,
.wripple-form .field-section .filter-button-dropdown .filter-dropdown-menu .filter-search-input ::-ms-input-placeholder {
  color: #707683 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}
.wripple-form .field-section .filter-button-dropdown .help-text {
  padding: 0 10px;
  height: 35px;
  margin-top: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  overflow: visible;
}
.wripple-form .field-section .filter-button-dropdown .help-text p {
  font-size: 11px;
  white-space: nowrap;
}
@media only screen and (max-width: 900px) {
  .auth-settings-form .field-section-group .field-section {
    flex-direction: row !important;
  }
}
@media only screen and (max-width: 529px) {
  .auth-settings-form .field {
    padding: 0 !important;
  }
  .login-container > div {
    padding: 70px 15px;
  }
}
.login-form .form-container .form-footer .form-links {
  margin-top: 1rem !important;
}
.multi-input-group {
  position: relative;
}
.multi-input-group .btn-link-info {
  color: var(--theme-info, '#4B80E7') !important;
  transition: all 200ms ease-in;
}
.multi-input-group .btn-link-info:hover,
.multi-input-group .btn-link-info:focus {
  background: transparent!important;
  color: var(--theme-info-darker);
}
.registration-container {
  padding: 35px;
  min-height: 100vh;
}
.registration-container > .row {
  align-items: stretch;
}
.registration-container > .row > div {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.registration-container .registration-logo {
  width: 120px;
  margin-bottom: 5px;
  margin-top: 5px;
}
.registration-container .registration-login-graphic {
  width: 100%;
  margin: 0;
}
.registration-container h1 {
  font-size: 40px;
  font-family: "Beatrice", sans-serif;
  color: var(--theme-secondary, '#913ef0') !important;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.registration-container h3 {
  line-height: 35px;
  font-size: 18px;
}
.registration-container .wripple-form.default-form .form-container form .field .form-group input {
  height: 35px;
  line-height: 35px;
}
.registration-container .registration-form-children {
  padding: 0 15px;
  font-size: 14px;
}
.registration-container .registration-form-children p,
.registration-container .registration-form-children li {
  font-size: 12px;
}
.registration-container .registration-form-children p.register-terms,
.registration-container .registration-form-children li.register-terms {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 500;
  margin-top: 10px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
}
.registration-container .registration-form-children ul {
  padding-left: 12px;
  margin-bottom: 15px;
}
.registration-container .registration-form-children ul li {
  padding: 5px 0 10px;
}
.registration-container .registration-form-children .form-checkbox [type="checkbox"]:checked + label {
  background-color: transparent!important;
}
.registration-container .registration-form-children .form-checkbox [type="checkbox"]:checked + label:before {
  color: var(--theme-secondary, '#913ef0');
}
.registration-container .registration-form-children #terms-modal ol li,
.registration-container .registration-form-children #terms-modal ul li {
  margin-bottom: 0;
}
@media only screen and (min-width: 1128px) {
  .registration-container .registration-logo {
    width: 150px;
  }
  .registration-container .form-container {
    padding: 25px;
  }
}
@media only screen and (min-width: 901px) {
  .registration-container {
    display: flex;
    align-items: center;
  }
}
.multi-asset-upload .ant-upload-list .ant-upload-list-item-done .ant-upload-list-item-actions,
.multi-asset-upload .ant-upload-list .ant-upload-list-item-done .ant-upload-list-item-card-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.multi-asset-upload .ant-upload-list .ant-upload-list-item-done .ant-upload-list-item-actions > a,
.multi-asset-upload .ant-upload-list .ant-upload-list-item-done .ant-upload-list-item-card-actions > a,
.multi-asset-upload .ant-upload-list .ant-upload-list-item-done .ant-upload-list-item-actions > button,
.multi-asset-upload .ant-upload-list .ant-upload-list-item-done .ant-upload-list-item-card-actions > button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.multi-asset-upload .ant-upload-list .ant-upload-list-item-done .ant-upload-list-item-actions .ant-upload-list-item-card-actions-btn,
.multi-asset-upload .ant-upload-list .ant-upload-list-item-done .ant-upload-list-item-card-actions .ant-upload-list-item-card-actions-btn {
  opacity: 1;
}
.multi-asset-upload .ant-upload-list-picture-card .ant-upload-list-item {
  background: rgba(245, 246, 248, 0.75);
  padding: 4px;
  border-color: #C2CFE0;
}
.scope-question-info,
.scope-question-navigation {
  margin: 0 77px;
}
@media only screen and (min-width: 768px) {
  .project-scope-question .wripple-form > div .field-section {
    padding: 0!important;
  }
}
@media only screen and (max-width: 768px) {
  .project-scope-question .wripple-form > div .field-section {
    padding: 0 35px!important;
  }
  .scope-question-info,
  .scope-question-navigation {
    margin: 0 35px!important;
  }
}
.question-info-dropdown {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none!important;
}
.question-info-dropdown p,
.question-info-dropdown i {
  color: #707683;
  text-decoration: none!important;
}
.question-info-dropdown p {
  margin: 0;
  font-size: 13px;
  line-height: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.question-info-dropdown i {
  margin-left: 4px;
  font-size: 11px;
  line-height: 15px;
}
.project-scope-question {
  max-width: 900px!important;
}
.project-scope-question .wripple-form {
  max-width: 700px;
}
.project-scope-question .form-check {
  border-bottom: 1px solid var(--theme-light, '#E5EBF1');
  display: flex;
  flex-direction: row;
  align-items: center;
}
.project-scope-question .form-check .form-check-label {
  font-size: 20px;
  line-height: 17.5px !important;
  margin-bottom: 15px;
  margin-top: 15px;
  flex-grow: 1;
}
.project-scope-question .wripple-form > div form .field .form-check {
  padding-left: 10px;
}
.project-scope-question .wripple-form > div form .field .form-check .form-group {
  margin-left: 28px;
  margin-bottom: unset;
  position: relative;
  flex-grow: 1;
}
.project-scope-question .wripple-form > div form .field input[type="number"] {
  background: #F5F6F8 !important;
  border-bottom: none;
  height: 43px;
  padding: 0 10px;
}
.project-scope-question .expanded .wripple-form > div form .field input[type="number"] {
  background: var(--theme-light, '#E5EBF1') !important;
}
.project-scope-question.expanded .scope-step-form {
  background: #F5F6F8 !important;
}
:not(.ant-radio-input)[type="radio"]:checked,
:not(.ant-radio-input)[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
:not(.ant-radio-input)[type="radio"]:checked + label,
:not(.ant-radio-input)[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}
:not(.ant-radio-input)[type="radio"]:checked + label:before,
:not(.ant-radio-input)[type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 100%;
}
:not(.ant-radio-input)[type="radio"]:checked + label:after,
:not(.ant-radio-input)[type="radio"]:not(:checked) + label:after {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  border-radius: 100%;
  transition: all 0.2s ease;
}
:not(.ant-radio-input)[type="radio"]:checked + label:after {
  background: var(--theme-primary, '#5f3db1');
  width: 14px;
  height: 14px;
}
:not(.ant-radio-input)[type="radio"]:not(:checked) + label:after {
  border: 1px solid #707683;
  width: 14px;
  height: 14px;
}
:not(.ant-radio-input)[type="radio"]:not(:checked):disabled + label:after {
  opacity: 0.7;
  background: #d3d8dd;
}
:not(.ant-radio-input)[type="radio"]:checked:disabled + label:after {
  opacity: 0.7;
}
.form-checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.form-checkbox.disabled-checkbox {
  pointer-events: none;
  opacity: 0.6;
}
.form-checkbox label {
  transition: all 0.25s linear;
  color: #343741;
  padding: 5px 10px;
  font-family: Beatrice, sans-serif !important;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  text-transform: none!important;
}
.form-checkbox label:after {
  color: #343741;
}
.form-checkbox [type="checkbox"]:checked + label {
  color: #000000;
  background-color: var(--theme-success, '#5ae399');
}
.form-checkbox [type="checkbox"]:checked + label:after {
  color: #000000;
}
.form-checkbox.no-bg [type="checkbox"]:checked + label {
  color: #000000;
  background-color: transparent;
}
.form-checkbox.no-bg [type="checkbox"]:checked + label:after {
  color: #000000;
}
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label {
  position: relative;
  padding-left: 10px;
  cursor: pointer;
  line-height: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #666;
}
[type="checkbox"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before {
  font-size: 16px;
  letter-spacing: 10px;
  font-weight: normal;
  font-family: "Font Awesome 5 Free" !important;
}
[type="checkbox"]:checked + label:before {
  content: "\f14a";
  font-weight: 900;
}
[type="checkbox"]:not(:checked) + label:before {
  content: "\f0c8";
}
span.radio-checked,
span.radio-unchecked {
  position: relative;
  top: auto;
  left: auto;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-bottom: -1px;
  margin-right: 10px;
  border-radius: 100%;
}
span.radio-checked {
  background: #8B3EF0;
}
span.radio-unchecked {
  border: 1px solid #707683;
}
.wizard-container {
  flex: 1;
  flex-direction: column;
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: flex-start;
  height: unset!important;
  min-height: calc(100vh - 60px) !important;
}
.wizard-container .wizard-progress {
  height: 30px;
  position: relative;
  background-color: #F5F6F8;
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.wizard-container .wizard-progress .RSPBprogression {
  border-radius: 0 !important;
  transition: width 1s ease-in-out;
}
.wizard-container .wizard-progress .talent-app-progress-title {
  transition: right 1s ease-in-out;
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  text-align: right;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #343741;
  margin-bottom: 0;
  position: absolute;
  margin-right: 4px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.wizard-container .wizard-progress .talent-app-progress-title.talent-supplier-resource {
  font-family: "Beatrice", sans-serif;
  font-weight: normal;
}
.wizard-container .wizard-banner-container {
  height: 80px;
  align-items: center;
  justify-content: center;
  background-color: #000000;
}
.wizard-container .wizard-step-container {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding: 10px 10px 0;
  background-color: var(--theme-light, '#E5EBF1');
  align-items: stretch;
  justify-content: flex-start;
  flex-grow: 1;
}
.wizard-container .wizard-step-container > div:first-child {
  flex-grow: 1;
}
.wizard-container .wizard-step-container .wizard-footer-fixed {
  background-color: white;
  border: 1px solid #E5EBF1;
  padding: 20px 35px;
  margin-top: auto;
}
.wizard-container .wizard-step-container .wizard-footer-fixed .flex-1 {
  flex: 1;
}
.wizard-container .wizard-step-container .wizard-footer-fixed .save-and-exit {
  align-items: flex-start;
  margin-left: auto;
  background: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  white-space: nowrap;
}
.wizard-container .wizard-step-container .wizard-footer-fixed .save-and-exit-mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .wizard-container .wizard-step-container .wizard-footer-fixed {
    padding-bottom: 10px;
  }
  .wizard-container .wizard-step-container .wizard-footer-fixed .save-and-exit {
    display: none;
  }
  .wizard-container .wizard-step-container .wizard-footer-fixed .save-and-exit + .btn-primary {
    margin-left: auto !important;
  }
  .wizard-container .wizard-step-container .wizard-footer-fixed .save-and-exit-mobile {
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 20px auto 5px;
  }
}
.wizard-container .wizard-step-container .wizard-footer {
  margin-top: 35px;
  display: flex;
  flex-flow: row wrap;
}
.wizard-container .wizard-step-container .wizard-footer .flex-1 {
  flex: 1;
}
.wizard-container .wizard-step-container .added-padding {
  padding: 25px 53px;
}
.wizard-container .wizard-step-container .wizard-step {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.wizard-container .wizard-step-container .wizard-step .white-panel {
  position: relative;
  margin-bottom: 60px;
}
.wizard-container .wizard-step-container .wizard-step .services-step-header {
  margin-bottom: 1.3rem;
  color: #707683;
  font-size: 20px;
  font-family: "Beatrice Medium", sans-serif;
}
.wizard-container .wizard-step-container .wizard-step .service-category {
  margin-right: 10px;
  margin-top: 10px;
  padding: 8px 15px;
  border: 1px solid #E5EBF1;
  color: #90a0b7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease-in;
  cursor: pointer;
  font-size: 12px;
  margin-bottom: -1px;
}
.wizard-container .wizard-step-container .wizard-step .service-category:hover {
  color: #000;
  border-color: #000;
}
.wizard-container .wizard-step-container .wizard-step .service-category.active {
  color: white;
  background-color: var(--theme-primary, '#5f3db1');
  border-color: var(--theme-primary, '#5f3db1');
}
.wizard-container .wizard-step-container .wizard-step .search-info {
  flex: 1;
  padding-right: 16px;
}
.wizard-container .wizard-step-container .wizard-step .search-info h1 {
  font-size: 26px;
  margin-bottom: 16px;
}
.wizard-container .wizard-step-container .wizard-step .search-info p {
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  white-space: pre-line;
  letter-spacing: 0.01em;
  max-width: 460px;
  margin: 0;
}
.wizard-container .wizard-step-container .wizard-step .search-info.service-info p {
  font-size: 1rem;
  line-height: 1.5rem;
  white-space: pre-line;
  max-width: 650px;
  letter-spacing: 0.01em;
  margin: 0 0 1rem;
  font-weight: 400;
  font-family: "Beatrice", sans-serif;
}
.wizard-container .wizard-step-container .wizard-step .search-info.questions-info h1 {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.01em;
  color: #000000;
}
.wizard-container .wizard-step-container .wizard-step .search-info.questions-info h1 b {
  margin-left: 3px;
}
.wizard-container .wizard-step-container .wizard-step .search-info.questions-info p {
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: #000000;
}
.wizard-container .wizard-step-container .wizard-step .byo-steps-descriptions-container .byo-steps-descriptions-index {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 30px;
  color: white;
  font-weight: bold;
}
.wizard-container .wizard-step-container .wizard-step .byo-steps-descriptions-container .byo-steps-descriptions-text {
  padding-left: 20px;
  align-self: center;
}
.wizard-container .wizard-step-container .wizard-step .byo-steps-descriptions-container .byo-steps-descriptions-text h5 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 2px;
}
.wizard-container .wizard-step-container .wizard-step .byo-steps-descriptions-container .byo-steps-descriptions-text p {
  font-size: 12px;
  margin-bottom: 0;
}
.wizard-container .wizard-step-container .wizard-step .byo-wripple-roles-container {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #8B3EF0;
  overflow: hidden;
}
.wizard-container .wizard-step-container .wizard-step .byo-wripple-roles-container img {
  height: 20px;
}
.wizard-container .wizard-step-container .wizard-step .byo-wripple-roles-container > div:nth-child(odd) {
  background-color: #EFEFEF;
}
.wizard-container .wizard-step-container .wizard-step .byo-wripple-roles-container i {
  font-size: 20px;
}
.wizard-container .wizard-step-container .wizard-step .byo-wripple-roles-container p {
  font-size: 14px;
}
.wizard-container .wizard-step-container .wizard-step .byo-wripple-roles-container ul {
  margin: 0 0 0 56px;
}
.wizard-container .wizard-step-container .wizard-step .byo-wripple-roles-container ul li {
  margin: 4px 0;
  font-size: 12px;
}
.wizard-container .wizard-step-container .wizard-step .collapse-btn {
  border: none;
  background: transparent;
  color: var(--theme-primary, '#5f3db1');
  text-transform: uppercase;
  font-size: 10px;
}
.form-search {
  display: flex;
}
.form-search i.fa-bars {
  font-size: 22px;
  margin-right: 5px;
}
.form-search .wripple-form {
  align-items: flex-end;
}
.form-search .form-container {
  margin: 0;
  width: 100%;
  flex: 0;
  align-items: flex-end;
  padding-bottom: 0;
}
.form-search .form-container form {
  display: inline-flex;
}
.form-search .form-container form .field {
  margin: 0;
}
.form-search .form-container form .field-section {
  padding: 0;
}
.form-search .form-container form input {
  font-size: 14px;
  line-height: 150%;
  /* identical to box height, or 21px */
  letter-spacing: 0.01em;
}
.form-search .input-group {
  background-color: white;
}
.form-search input,
.form-search .input-group-prepend {
  border: none !important;
}
.form-search .field {
  border-bottom: 1px solid #000000;
}
.form-search .field .input-group-prepend {
  padding-left: 0;
  color: #707683;
}
.form-search .field input {
  background-color: transparent;
  font-size: 12px;
  line-height: 110%;
  /* identical to box height, or 21px */
  letter-spacing: 0.01em;
}
.form-search .field input.react-autosuggest__input {
  width: unset;
  flex-grow: 1;
  padding: 0 3px;
  height: 30px;
}
.service-suggestion {
  padding: 5px 3px;
  border-bottom: 1px solid #000000;
}
.service-suggestion p {
  font-size: 12px;
  margin: 0;
}
.service-suggestion:last-child {
  border-bottom: none;
}
.wizard-form-step,
.wizard-position-step {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  max-width: 800px;
  align-self: center;
  margin: 20px auto 35px;
  position: relative;
}
.wizard-position-step {
  max-width: 1000px;
}
.wizard-position-step .position-form-container {
  position: relative;
}
.wizard-position-step .position-form-container .wripple-form {
  background-color: white;
  padding: 20px 25px;
}
.wizard-form-step.wizard-review-step .no-edit {
  opacity: 0.8;
  pointer-events: none;
}
.wizard-form-step.wizard-review-step .no-edit * {
  pointer-events: none;
}
.wizard-form-step .create-project-scope-estimate {
  top: 0;
  left: 100%;
  position: absolute;
}
.wizard-form-step .project-scope-question {
  background-color: white;
  padding-top: 50px;
}
.wizard-form-step .project-scope-question .scope-question-navigation a {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.29em;
  text-transform: uppercase;
  color: var(--theme-primary, '#5f3db1');
}
.wizard-form-step .wripple-form .form-container {
  background: unset!important;
  padding: 0!important;
}
.wizard-form-step .wripple-form .form-container form .form-group label {
  white-space: normal;
}
.wizard-form-step .wripple-form .form-container form .form-group.client-project-groups .form-check-label {
  display: inline-flex !important;
  padding-right: 5px;
}
.wizard-form-step .wripple-form .form-container form .form-group.client-project-groups label .tooltip-info {
  line-height: 20px;
}
.wizard-form-step .wripple-form .form-container form .form-group.client-project-groups label .tooltip-info span {
  vertical-align: text-top;
}
.wizard-form-step .wripple-form .form-container form .form-group.client-project-groups label .tooltip-info span i {
  color: black;
  margin-left: 5px;
}
.wizard-form-step .wripple-form .col-form-label-hint {
  margin: 0 0 3px!important;
  text-align: left;
  font-family: Beatrice, sans-serif !important;
  font-style: normal!important;
  font-weight: normal!important;
  font-size: 11px!important;
  line-height: 18px!important;
  letter-spacing: 0.01em !important;
  color: #707683 !important;
}
.wizard-form-step .wripple-form .col-form-label,
.wizard-form-step .wripple-form .form-control-label {
  padding-top: 0!important;
  margin-bottom: 10px!important;
  text-align: left;
  font-family: Beatrice, sans-serif !important;
  font-style: normal!important;
  font-weight: 500!important;
  font-size: 23px!important;
  line-height: 135%!important;
  letter-spacing: 0.01em !important;
  color: #000000 !important;
}
.wizard-form-step .wripple-form .field-section {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #ffffff;
  padding: 35px 10%;
  margin-bottom: 25px;
  align-items: flex-start;
}
.wizard-form-step .wripple-form .field-section:last-child {
  margin-bottom: 0;
}
.wizard-form-step .wripple-form .field-section-group {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: stretch;
  flex: 1;
}
.wizard-form-step .wripple-form .field-section-group .field-section {
  display: flex;
  flex: 1;
  flex-direction: row;
  margin: 0 -5px;
  min-height: unset!important;
  padding: 0!important;
}
.wizard-form-step .wripple-form .field-section-group .field-section .field {
  margin: 10px 5px 0;
}
.wizard-form-step .wripple-form .field-section-group .field-section .field .col-form-label {
  margin: 0 0 3px!important;
  text-align: left;
  font-family: Beatrice, sans-serif !important;
  font-style: normal!important;
  font-weight: normal!important;
  font-size: 11px!important;
  line-height: 18px!important;
  letter-spacing: 0.01em !important;
  color: #707683 !important;
}
.wizard-form-step .wripple-form .field-element {
  width: 100%;
}
.wizard-form-step .wripple-form .field {
  width: 100%;
  margin-top: 0px;
}
.wizard-form-step .wripple-form .field #project-name {
  text-align: left;
  height: 50px;
  width: 100%;
  font-size: 28px;
  line-height: 150%;
  border: none;
  padding: 10px 0;
  outline: none !important;
  border-bottom: 1px solid #D3D8DD;
  /* identical to box height, or 42px */
  letter-spacing: 0.01em;
}
.wizard-form-step .wripple-form .field #project-name::-moz-placeholder {
  color: #D3D8DD;
}
.wizard-form-step .wripple-form .field #project-name::placeholder {
  color: #D3D8DD;
}
.wizard-form-step .wripple-form .field .field-help {
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  text-align: left;
  letter-spacing: 0.01em;
  margin-top: 15px;
  color: #334D6E;
}
.wizard-form-step .wripple-form .input-group-prepend {
  transition: all 150ms ease-in;
  border-bottom-color: #D3D8DD !important;
  border-bottom-width: 1px !important;
}
.wizard-form-step .wripple-form .form-group:focus-within .input-group-prepend {
  border-bottom-color: #637281 !important;
  border-bottom-width: 1px !important;
}
.wizard-form-step .wripple-form .form-group.text-danger .input-group-prepend {
  border-bottom-color: var(--theme-danger, '#E54963') !important;
}
.wizard-form-step .wripple-form > div {
  justify-content: flex-start;
}
.wizard-form-step .wripple-form > div form {
  justify-content: space-between;
  width: 100%;
  background-color: transparent;
}
.wizard-form-step .wripple-form > div form .create-project-form-field-question {
  font-size: 22px;
  line-height: 150%;
  /* or 30px */
  letter-spacing: 0.01em;
  margin: 0;
  text-align: left;
}
.wizard-form-step .wripple-form > div form textarea {
  background: #F5F6F8 !important;
}
.wizard-form-step .wripple-form > div form textarea:focus {
  box-shadow: none;
  outline: none;
}
.wizard-form-step .wripple-form > div form ::-moz-placeholder {
  color: #8b909b !important;
}
.wizard-form-step .wripple-form > div form ::placeholder {
  color: #8b909b !important;
}
.wizard-form-step .wripple-form > div form .form-check {
  border-bottom: 1px solid var(--theme-light, '#E5EBF1');
  padding-bottom: 15px;
  padding-top: 15px;
}
.wizard-form-step .wripple-form > div form .form-check label::before,
.wizard-form-step .wripple-form > div form .form-check label::after {
  margin: 1px 0;
}
.wizard-form-step .wripple-form > div form .form-check:last-of-type {
  border-bottom-color: transparent;
}
.wizard-form-step .wripple-form > div form [type="radio"]:checked + label,
.wizard-form-step .wripple-form > div form [type="radio"]:not(:checked) + label {
  font-family: Beatrice;
  font-style: normal;
  font-weight: normal;
  font-size: 14px!important;
  line-height: 150% !important;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  color: #000000;
}
.wizard-form-step.preview-project-step {
  max-width: 1200px;
}
.wizard-form-step.preview-project-step .wripple-form .field-section {
  padding: 35px 5%;
}
.wizard-form-step.preview-project-step .wripple-form .wizard-form-container {
  padding: 0;
  background-color: transparent!important;
}
.wizard-form-step.preview-project-step .preview-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.wizard-form-step.preview-project-step .preview-column {
  flex-grow: 1;
  margin: 8px;
  max-width: 500px;
  padding: 25px 30px;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.wizard-form-step.preview-project-step .preview-column .preview-number {
  padding: 0;
  width: 25px;
  height: 25px;
  color: white;
  font-size: 13px;
  align-self: flex-start;
  background-color: var(--theme-primary, '#5f3db1');
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin-right: auto;
}
.wizard-form-step.preview-project-step .preview-column .preview-header {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 135%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--theme-secondary, '#913ef0');
}
.wizard-form-step.preview-project-step .preview-column .preview-header span.text-bold {
  color: var(--theme-primary, '#5f3db1');
}
.wizard-form-step.preview-project-step .preview-column .preview-message ul {
  flex: 1;
  margin-left: 15px!important;
}
.wizard-form-step.preview-project-step .preview-column .preview-message ul li {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.01em;
  color: #707683;
}
.wizard-form-step.preview-project-step .preview-column .col-form-label .text-primary {
  color: var(--theme-primary, '#5f3db1') !important;
}
.wizard-form-step.preview-project-step .preview-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 45px;
}
.wizard-form-step.preview-project-step .preview-arrows i.fa {
  font-size: 70px;
  line-height: 70px;
  color: #C4C4C4;
}
.wizard-form-step.project-team-step .form-group.text-danger .invalid-feedback {
  display: block !important;
}
.wizard-form-step.project-team-step .project-skill-search-results {
  min-height: unset;
}
.wizard-form-step.project-team-step .project-skill-search-results .ant-empty.ant-empty-normal {
  margin: 0;
}
.wizard-form-step.project-team-step .project-discipline-skills-form .input-group {
  padding: 4px 15px !important;
  background: #FFFFFF !important;
}
.wizard-form-step.project-team-step .project-discipline-skills-form .input-group .input-group-prepend {
  border: none !important;
}
.wizard-form-step.project-team-step .project-discipline-skills-form .input-group input {
  border: none;
  box-shadow: none !important;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px!important;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em !important;
  padding-left: 0;
  color: #000000;
}
.wizard-form-step.project-team-step .project-discipline-skills-form .input-group ::-moz-placeholder {
  color: #707683 !important;
  font-size: 13px!important;
  font-weight: 500 !important;
  opacity: 1;
}
.wizard-form-step.project-team-step .project-discipline-skills-form .input-group ::placeholder {
  color: #707683 !important;
  font-size: 13px!important;
  font-weight: 500 !important;
  opacity: 1;
}
.wizard-form-step.project-team-step .project-discipline-skills-form .input-group :-ms-input-placeholder,
.wizard-form-step.project-team-step .project-discipline-skills-form .input-group ::-ms-input-placeholder {
  color: #707683 !important;
  font-size: 14px!important;
  font-weight: 500 !important;
}
.wizard-form-step.project-team-step .editor-shell {
  margin-top: 15px;
}
.wizard-form-step.project-team-step .editor {
  background-color: #fff;
}
.wizard-form-step.project-team-step .col-form-label {
  font-size: 16px;
  display: block;
}
.wizard-form-step.project-team-step .experience-tile-select i {
  font-size: 22px;
}
.wizard-form-step.project-team-step .experience-tile-select:not(.active) {
  background-color: #fff;
  border-color: #D8D8D8;
}
.wizard-form-step.project-team-step .experience-tile-select:not(.active) i.far.fa-square {
  color: #D8D8D8;
}
.wizard-form-step .editor-alt .editor-container {
  background: white;
}
.wizard-form-step .editor-alt .editor-container .editor-inner {
  background: white;
}
.wizard-container .nav-alert {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  background-color: #109CF1;
  margin: -10px -10px 0;
}
.wizard-container .nav-alert p {
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: white;
  margin: 12px auto;
  max-width: 800px;
}
.wizard-container .project-nav-back {
  flex: unset!important;
  width: 105px;
}
.wizard-container .project-nav-back a {
  white-space: nowrap;
  padding: 0;
  margin: 0 10px;
}
.wizard-container .project-progress-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 80px;
}
.wizard-container .project-progress-container .RSPBprogressBar {
  border-radius: 0!important;
}
.wizard-container .project-progress-container .wizard-progress-title {
  transition: right 1s ease-in-out;
  font-family: Poppins, sans-serif;
  font-style: normal;
  white-space: nowrap;
  font-weight: 600;
  font-size: 10px;
  line-height: 18px;
  text-align: right;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #343741;
  margin-bottom: 0;
  position: absolute;
  margin-right: 8px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.wizard-container .project-progress-container .project-progress-sections {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 5px;
  flex: 1;
}
.wizard-container .project-progress-container .project-progress-sections .progress-section {
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  text-align: center;
  border-left: 0.05em solid #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: none;
  border-bottom: none;
}
.wizard-container .project-progress-container .project-progress-sections .progress-section:last-child {
  border-right: 0.05em solid #ffffff;
  border-top: none;
  border-bottom: none;
}
.wizard-container .project-progress-container .project-progress-sections .progress-section.active-section {
  font-weight: bolder;
  border-width: 0.1em;
  color: var(--theme-success, '#5ae399');
  border-color: var(--theme-success, '#5ae399');
  border-top: none;
  border-bottom: none;
}
.wizard-container .project-progress-container .project-progress-sections .progress-section.active-section + .progress-section {
  border-left-width: 0.1em;
  border-left-color: var(--theme-success, '#5ae399');
  border-top: none;
  border-bottom: none;
}
.wizard-container .progress-spacer {
  flex: unset!important;
  width: 105px;
}
.wizard-container .wizard-nav-btns {
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.wizard-container .wizard-nav-btns button:nth-child(2) {
  margin-left: auto;
  margin-right: 10px;
}
.wizard-container .wizard-footer-fixed .wizard-nav-btns {
  padding: 0 35px;
}
.wripple-form.positions-total-form > div form .field {
  margin-bottom: 0 !important;
}
.wripple-form.positions-total-form > div form .field input {
  text-align: center;
  height: 50px;
  font-size: 28px;
  line-height: 150%;
  border: none;
  padding: 10px 0;
  outline: none !important;
  border-bottom: 1px solid #D3D8DD;
  /* identical to box height, or 42px */
  letter-spacing: 0.01em;
}
.wripple-form.positions-total-form > div form .field input::-moz-placeholder {
  color: #D3D8DD;
}
.wripple-form.positions-total-form > div form .field input::placeholder {
  color: #D3D8DD;
}
.wripple-form.positions-total-form > div form .field-help {
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.01em;
  margin-top: 5px;
  color: #334D6E;
}
.add-wizard {
  display: flex;
  min-height: inherit;
  width: 100%;
  position: relative;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
}
.add-wizard .positions-form-container {
  width: 100% !important;
}
.add-wizard .position-form-buttons {
  margin-top: 50px;
  display: flex;
  justify-content: flex-start;
}
.add-wizard .field-section-group {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: stretch;
  flex: 1;
}
.add-wizard .field-section-group .field-section {
  display: flex;
  flex: 1;
  flex-direction: row;
  margin: 0 -5px;
}
.add-wizard .field-section-group .field-section .field {
  margin: 0 5px;
}
.wizard-substep {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  align-items: stretch;
  justify-content: flex-start;
}
.step-subtitle {
  font-weight: normal;
  font-family: 'SimplonMono', sans-serif;
  font-size: 16px;
  text-align: center;
  margin-top: 40px;
  color: var(--theme-primary, '#5f3db1');
  text-transform: uppercase;
}
.step-title-container {
  margin: 25px auto;
}
.step-section {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #707683;
  margin-bottom: 0;
}
.step-title {
  text-align: center;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 135%;
  letter-spacing: 0.01em;
  color: #000000;
}
.review-step-container {
  align-self: stretch!important;
  align-items: stretch;
  display: flex;
  flex-direction: column;
}
.review-step-container .step-title-container {
  align-self: center!important;
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
.review-step-container .step-title-container .step-title {
  display: flex;
  flex-flow: row wrap;
  white-space: nowrap;
  justify-content: space-around;
}
.review-step-container .step-title-container .step-title .step-title-link {
  position: relative;
  color: black;
  text-decoration: underline;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  width: 110px;
  margin: 0 -130px 0 20px;
  cursor: pointer;
}
@media only screen and (max-width: 900px) {
  .review-step-container {
    align-self: stretch!important;
  }
  .review-step-container .step-title-container {
    align-self: stretch!important;
    margin: 25px 0 0;
  }
  .review-step-container .step-title-container .step-title {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
    white-space: normal;
  }
  .review-step-container .step-title-container .step-title .step-title-link {
    width: unset;
    margin: 3px auto 0;
    font-size: 16px;
  }
}
.review-step-container .nav.nav-tabs .nav-item {
  border: none;
}
.review-step-container .nav.nav-tabs .nav-item a {
  cursor: pointer;
  border: none;
  background-color: transparent;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 27px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #343741;
  padding: 11px 20px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-step-container .nav.nav-tabs .nav-item a.active {
  background-color: white;
  pointer-events: none;
}
.position-title {
  font-family: Beatrice, sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 125%;
  letter-spacing: 0.01em;
}
.position-subtitle {
  font-family: Beatrice, sans-serif;
  font-weight: 300;
  margin-top: 10px;
  font-size: 12px;
  line-height: 125%;
  letter-spacing: 0.01em;
}
.position-progress-title {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex: 1;
  border-left: 1px solid var(--theme-light, '#E5EBF1');
  border-right: 1px solid var(--theme-light, '#E5EBF1');
}
.position-progress-title p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  /* identical to box height, or 21px */
  letter-spacing: 0.29em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding: 0;
  color: var(--theme-primary, '#5f3db1');
}
@media only screen and (max-width: 600px) {
  .wizard-container .wizard-step-container {
    padding: 0;
  }
  .wizard-container .wizard-step-container .nav-alert {
    margin: 0;
    padding: 0 8px;
  }
  .wizard-container .wizard-step-container .nav-alert p {
    font-size: 10px;
  }
}
.seperator-dot {
  height: 5px;
  width: 5px;
  background-color: white;
  border-radius: 50%;
  margin: 5px;
  display: inline-block;
}
.Step-Label {
  color: white;
  text-align: center;
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
}
#availability-container,
#position-template-container,
#services-container,
#engagement-container,
#questions-container,
#months-container,
#pyo-services-container,
#team-container,
#default-scroll-container,
#profile-jobs-container,
#profile-schools-container,
#profile-skills-container,
#profile-roles-container,
#profile-project-types-container,
#profile-industry-expertise-container,
#profile-certifications-container {
  overflow-x: hidden;
  white-space: nowrap;
  width: 100%;
  display: inline-flex;
  align-items: stretch;
  flex-direction: row;
}
#availability-container .pyo-service-panel,
#position-template-container .pyo-service-panel,
#services-container .pyo-service-panel,
#engagement-container .pyo-service-panel,
#questions-container .pyo-service-panel,
#months-container .pyo-service-panel,
#pyo-services-container .pyo-service-panel,
#team-container .pyo-service-panel,
#default-scroll-container .pyo-service-panel,
#profile-jobs-container .pyo-service-panel,
#profile-schools-container .pyo-service-panel,
#profile-skills-container .pyo-service-panel,
#profile-roles-container .pyo-service-panel,
#profile-project-types-container .pyo-service-panel,
#profile-industry-expertise-container .pyo-service-panel,
#profile-certifications-container .pyo-service-panel,
#availability-container .profile-job-panel,
#position-template-container .profile-job-panel,
#services-container .profile-job-panel,
#engagement-container .profile-job-panel,
#questions-container .profile-job-panel,
#months-container .profile-job-panel,
#pyo-services-container .profile-job-panel,
#team-container .profile-job-panel,
#default-scroll-container .profile-job-panel,
#profile-jobs-container .profile-job-panel,
#profile-schools-container .profile-job-panel,
#profile-skills-container .profile-job-panel,
#profile-roles-container .profile-job-panel,
#profile-project-types-container .profile-job-panel,
#profile-industry-expertise-container .profile-job-panel,
#profile-certifications-container .profile-job-panel,
#availability-container .profile-school-panel,
#position-template-container .profile-school-panel,
#services-container .profile-school-panel,
#engagement-container .profile-school-panel,
#questions-container .profile-school-panel,
#months-container .profile-school-panel,
#pyo-services-container .profile-school-panel,
#team-container .profile-school-panel,
#default-scroll-container .profile-school-panel,
#profile-jobs-container .profile-school-panel,
#profile-schools-container .profile-school-panel,
#profile-skills-container .profile-school-panel,
#profile-roles-container .profile-school-panel,
#profile-project-types-container .profile-school-panel,
#profile-industry-expertise-container .profile-school-panel,
#profile-certifications-container .profile-school-panel,
#availability-container .profile-certification-panel,
#position-template-container .profile-certification-panel,
#services-container .profile-certification-panel,
#engagement-container .profile-certification-panel,
#questions-container .profile-certification-panel,
#months-container .profile-certification-panel,
#pyo-services-container .profile-certification-panel,
#team-container .profile-certification-panel,
#default-scroll-container .profile-certification-panel,
#profile-jobs-container .profile-certification-panel,
#profile-schools-container .profile-certification-panel,
#profile-skills-container .profile-certification-panel,
#profile-roles-container .profile-certification-panel,
#profile-project-types-container .profile-certification-panel,
#profile-industry-expertise-container .profile-certification-panel,
#profile-certifications-container .profile-certification-panel,
#availability-container .default-scroll-panel,
#position-template-container .default-scroll-panel,
#services-container .default-scroll-panel,
#engagement-container .default-scroll-panel,
#questions-container .default-scroll-panel,
#months-container .default-scroll-panel,
#pyo-services-container .default-scroll-panel,
#team-container .default-scroll-panel,
#default-scroll-container .default-scroll-panel,
#profile-jobs-container .default-scroll-panel,
#profile-schools-container .default-scroll-panel,
#profile-skills-container .default-scroll-panel,
#profile-roles-container .default-scroll-panel,
#profile-project-types-container .default-scroll-panel,
#profile-industry-expertise-container .default-scroll-panel,
#profile-certifications-container .default-scroll-panel {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-evenly;
  position: relative;
  min-width: 100%!important;
  float: none;
  display: inline-flex;
  white-space: normal;
  flex-wrap: wrap;
}
#availability-container .pyo-service-panel .search-info,
#position-template-container .pyo-service-panel .search-info,
#services-container .pyo-service-panel .search-info,
#engagement-container .pyo-service-panel .search-info,
#questions-container .pyo-service-panel .search-info,
#months-container .pyo-service-panel .search-info,
#pyo-services-container .pyo-service-panel .search-info,
#team-container .pyo-service-panel .search-info,
#default-scroll-container .pyo-service-panel .search-info,
#profile-jobs-container .pyo-service-panel .search-info,
#profile-schools-container .pyo-service-panel .search-info,
#profile-skills-container .pyo-service-panel .search-info,
#profile-roles-container .pyo-service-panel .search-info,
#profile-project-types-container .pyo-service-panel .search-info,
#profile-industry-expertise-container .pyo-service-panel .search-info,
#profile-certifications-container .pyo-service-panel .search-info,
#availability-container .profile-job-panel .search-info,
#position-template-container .profile-job-panel .search-info,
#services-container .profile-job-panel .search-info,
#engagement-container .profile-job-panel .search-info,
#questions-container .profile-job-panel .search-info,
#months-container .profile-job-panel .search-info,
#pyo-services-container .profile-job-panel .search-info,
#team-container .profile-job-panel .search-info,
#default-scroll-container .profile-job-panel .search-info,
#profile-jobs-container .profile-job-panel .search-info,
#profile-schools-container .profile-job-panel .search-info,
#profile-skills-container .profile-job-panel .search-info,
#profile-roles-container .profile-job-panel .search-info,
#profile-project-types-container .profile-job-panel .search-info,
#profile-industry-expertise-container .profile-job-panel .search-info,
#profile-certifications-container .profile-job-panel .search-info,
#availability-container .profile-school-panel .search-info,
#position-template-container .profile-school-panel .search-info,
#services-container .profile-school-panel .search-info,
#engagement-container .profile-school-panel .search-info,
#questions-container .profile-school-panel .search-info,
#months-container .profile-school-panel .search-info,
#pyo-services-container .profile-school-panel .search-info,
#team-container .profile-school-panel .search-info,
#default-scroll-container .profile-school-panel .search-info,
#profile-jobs-container .profile-school-panel .search-info,
#profile-schools-container .profile-school-panel .search-info,
#profile-skills-container .profile-school-panel .search-info,
#profile-roles-container .profile-school-panel .search-info,
#profile-project-types-container .profile-school-panel .search-info,
#profile-industry-expertise-container .profile-school-panel .search-info,
#profile-certifications-container .profile-school-panel .search-info,
#availability-container .profile-certification-panel .search-info,
#position-template-container .profile-certification-panel .search-info,
#services-container .profile-certification-panel .search-info,
#engagement-container .profile-certification-panel .search-info,
#questions-container .profile-certification-panel .search-info,
#months-container .profile-certification-panel .search-info,
#pyo-services-container .profile-certification-panel .search-info,
#team-container .profile-certification-panel .search-info,
#default-scroll-container .profile-certification-panel .search-info,
#profile-jobs-container .profile-certification-panel .search-info,
#profile-schools-container .profile-certification-panel .search-info,
#profile-skills-container .profile-certification-panel .search-info,
#profile-roles-container .profile-certification-panel .search-info,
#profile-project-types-container .profile-certification-panel .search-info,
#profile-industry-expertise-container .profile-certification-panel .search-info,
#profile-certifications-container .profile-certification-panel .search-info,
#availability-container .default-scroll-panel .search-info,
#position-template-container .default-scroll-panel .search-info,
#services-container .default-scroll-panel .search-info,
#engagement-container .default-scroll-panel .search-info,
#questions-container .default-scroll-panel .search-info,
#months-container .default-scroll-panel .search-info,
#pyo-services-container .default-scroll-panel .search-info,
#team-container .default-scroll-panel .search-info,
#default-scroll-container .default-scroll-panel .search-info,
#profile-jobs-container .default-scroll-panel .search-info,
#profile-schools-container .default-scroll-panel .search-info,
#profile-skills-container .default-scroll-panel .search-info,
#profile-roles-container .default-scroll-panel .search-info,
#profile-project-types-container .default-scroll-panel .search-info,
#profile-industry-expertise-container .default-scroll-panel .search-info,
#profile-certifications-container .default-scroll-panel .search-info {
  margin-bottom: 0;
}
#availability-container .profile-job-panel,
#position-template-container .profile-job-panel,
#services-container .profile-job-panel,
#engagement-container .profile-job-panel,
#questions-container .profile-job-panel,
#months-container .profile-job-panel,
#pyo-services-container .profile-job-panel,
#team-container .profile-job-panel,
#default-scroll-container .profile-job-panel,
#profile-jobs-container .profile-job-panel,
#profile-schools-container .profile-job-panel,
#profile-skills-container .profile-job-panel,
#profile-roles-container .profile-job-panel,
#profile-project-types-container .profile-job-panel,
#profile-industry-expertise-container .profile-job-panel,
#profile-certifications-container .profile-job-panel,
#availability-container .profile-school-panel,
#position-template-container .profile-school-panel,
#services-container .profile-school-panel,
#engagement-container .profile-school-panel,
#questions-container .profile-school-panel,
#months-container .profile-school-panel,
#pyo-services-container .profile-school-panel,
#team-container .profile-school-panel,
#default-scroll-container .profile-school-panel,
#profile-jobs-container .profile-school-panel,
#profile-schools-container .profile-school-panel,
#profile-skills-container .profile-school-panel,
#profile-roles-container .profile-school-panel,
#profile-project-types-container .profile-school-panel,
#profile-industry-expertise-container .profile-school-panel,
#profile-certifications-container .profile-school-panel,
#availability-container .profile-certification-panel,
#position-template-container .profile-certification-panel,
#services-container .profile-certification-panel,
#engagement-container .profile-certification-panel,
#questions-container .profile-certification-panel,
#months-container .profile-certification-panel,
#pyo-services-container .profile-certification-panel,
#team-container .profile-certification-panel,
#default-scroll-container .profile-certification-panel,
#profile-jobs-container .profile-certification-panel,
#profile-schools-container .profile-certification-panel,
#profile-skills-container .profile-certification-panel,
#profile-roles-container .profile-certification-panel,
#profile-project-types-container .profile-certification-panel,
#profile-industry-expertise-container .profile-certification-panel,
#profile-certifications-container .profile-certification-panel {
  flex-direction: column;
}
#availability-container .question-panel,
#position-template-container .question-panel,
#services-container .question-panel,
#engagement-container .question-panel,
#questions-container .question-panel,
#months-container .question-panel,
#pyo-services-container .question-panel,
#team-container .question-panel,
#default-scroll-container .question-panel,
#profile-jobs-container .question-panel,
#profile-schools-container .question-panel,
#profile-skills-container .question-panel,
#profile-roles-container .question-panel,
#profile-project-types-container .question-panel,
#profile-industry-expertise-container .question-panel,
#profile-certifications-container .question-panel {
  justify-content: space-evenly;
  position: relative;
  flex-direction: column;
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  padding: 12px;
  width: 220px!important;
  height: 200px!important;
  background: var(--theme-light-semitrans, '#E5EBF155');
  margin-right: 16px;
}
#availability-container .question-panel *,
#position-template-container .question-panel *,
#services-container .question-panel *,
#engagement-container .question-panel *,
#questions-container .question-panel *,
#months-container .question-panel *,
#pyo-services-container .question-panel *,
#team-container .question-panel *,
#default-scroll-container .question-panel *,
#profile-jobs-container .question-panel *,
#profile-schools-container .question-panel *,
#profile-skills-container .question-panel *,
#profile-roles-container .question-panel *,
#profile-project-types-container .question-panel *,
#profile-industry-expertise-container .question-panel *,
#profile-certifications-container .question-panel * {
  white-space: normal;
  font-family: Beatrice, sans-serif;
}
#availability-container .question-panel .question-number,
#position-template-container .question-panel .question-number,
#services-container .question-panel .question-number,
#engagement-container .question-panel .question-number,
#questions-container .question-panel .question-number,
#months-container .question-panel .question-number,
#pyo-services-container .question-panel .question-number,
#team-container .question-panel .question-number,
#default-scroll-container .question-panel .question-number,
#profile-jobs-container .question-panel .question-number,
#profile-schools-container .question-panel .question-number,
#profile-skills-container .question-panel .question-number,
#profile-roles-container .question-panel .question-number,
#profile-project-types-container .question-panel .question-number,
#profile-industry-expertise-container .question-panel .question-number,
#profile-certifications-container .question-panel .question-number {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.01em;
  margin-bottom: 5px;
  color: var(--theme-success, '#5ae399');
}
#availability-container .question-panel .question-label,
#position-template-container .question-panel .question-label,
#services-container .question-panel .question-label,
#engagement-container .question-panel .question-label,
#questions-container .question-panel .question-label,
#months-container .question-panel .question-label,
#pyo-services-container .question-panel .question-label,
#team-container .question-panel .question-label,
#default-scroll-container .question-panel .question-label,
#profile-jobs-container .question-panel .question-label,
#profile-schools-container .question-panel .question-label,
#profile-skills-container .question-panel .question-label,
#profile-roles-container .question-panel .question-label,
#profile-project-types-container .question-panel .question-label,
#profile-industry-expertise-container .question-panel .question-label,
#profile-certifications-container .question-panel .question-label {
  font-style: normal;
  font-weight: bold;
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 0;
  text-align: center;
  letter-spacing: 0.01em;
  color: #000000;
}
#availability-container .question-panel .question-answer,
#position-template-container .question-panel .question-answer,
#services-container .question-panel .question-answer,
#engagement-container .question-panel .question-answer,
#questions-container .question-panel .question-answer,
#months-container .question-panel .question-answer,
#pyo-services-container .question-panel .question-answer,
#team-container .question-panel .question-answer,
#default-scroll-container .question-panel .question-answer,
#profile-jobs-container .question-panel .question-answer,
#profile-schools-container .question-panel .question-answer,
#profile-skills-container .question-panel .question-answer,
#profile-roles-container .question-panel .question-answer,
#profile-project-types-container .question-panel .question-answer,
#profile-industry-expertise-container .question-panel .question-answer,
#profile-certifications-container .question-panel .question-answer {
  font-style: normal;
  font-weight: normal;
  flex: 1;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#availability-container .question-panel .question-answer h4,
#position-template-container .question-panel .question-answer h4,
#services-container .question-panel .question-answer h4,
#engagement-container .question-panel .question-answer h4,
#questions-container .question-panel .question-answer h4,
#months-container .question-panel .question-answer h4,
#pyo-services-container .question-panel .question-answer h4,
#team-container .question-panel .question-answer h4,
#default-scroll-container .question-panel .question-answer h4,
#profile-jobs-container .question-panel .question-answer h4,
#profile-schools-container .question-panel .question-answer h4,
#profile-skills-container .question-panel .question-answer h4,
#profile-roles-container .question-panel .question-answer h4,
#profile-project-types-container .question-panel .question-answer h4,
#profile-industry-expertise-container .question-panel .question-answer h4,
#profile-certifications-container .question-panel .question-answer h4 {
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0.01em;
  margin: 0;
}
#availability-container .question-panel .question-answer .highlight,
#position-template-container .question-panel .question-answer .highlight,
#services-container .question-panel .question-answer .highlight,
#engagement-container .question-panel .question-answer .highlight,
#questions-container .question-panel .question-answer .highlight,
#months-container .question-panel .question-answer .highlight,
#pyo-services-container .question-panel .question-answer .highlight,
#team-container .question-panel .question-answer .highlight,
#default-scroll-container .question-panel .question-answer .highlight,
#profile-jobs-container .question-panel .question-answer .highlight,
#profile-schools-container .question-panel .question-answer .highlight,
#profile-skills-container .question-panel .question-answer .highlight,
#profile-roles-container .question-panel .question-answer .highlight,
#profile-project-types-container .question-panel .question-answer .highlight,
#profile-industry-expertise-container .question-panel .question-answer .highlight,
#profile-certifications-container .question-panel .question-answer .highlight {
  color: var(--theme-primary, '#5f3db1');
  font-weight: bold;
  font-size: 35px;
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
  flex-direction: column;
}
#availability-container .service-panel,
#position-template-container .service-panel,
#services-container .service-panel,
#engagement-container .service-panel,
#questions-container .service-panel,
#months-container .service-panel,
#pyo-services-container .service-panel,
#team-container .service-panel,
#default-scroll-container .service-panel,
#profile-jobs-container .service-panel,
#profile-schools-container .service-panel,
#profile-skills-container .service-panel,
#profile-roles-container .service-panel,
#profile-project-types-container .service-panel,
#profile-industry-expertise-container .service-panel,
#profile-certifications-container .service-panel {
  justify-content: space-evenly;
  position: relative;
  flex-direction: column;
  float: none;
  display: inline-flex;
  align-items: center;
  min-width: 345px;
  padding: 2em 0;
  /* border-right: 1px solid @light-bg; */
  height: 300px;
  background: var(--theme-light-semitrans, '#E5EBF155');
  margin-right: 10px;
}
#availability-container .service-panel > div,
#position-template-container .service-panel > div,
#services-container .service-panel > div,
#engagement-container .service-panel > div,
#questions-container .service-panel > div,
#months-container .service-panel > div,
#pyo-services-container .service-panel > div,
#team-container .service-panel > div,
#default-scroll-container .service-panel > div,
#profile-jobs-container .service-panel > div,
#profile-schools-container .service-panel > div,
#profile-skills-container .service-panel > div,
#profile-roles-container .service-panel > div,
#profile-project-types-container .service-panel > div,
#profile-industry-expertise-container .service-panel > div,
#profile-certifications-container .service-panel > div,
#availability-container .service-panel > button,
#position-template-container .service-panel > button,
#services-container .service-panel > button,
#engagement-container .service-panel > button,
#questions-container .service-panel > button,
#months-container .service-panel > button,
#pyo-services-container .service-panel > button,
#team-container .service-panel > button,
#default-scroll-container .service-panel > button,
#profile-jobs-container .service-panel > button,
#profile-schools-container .service-panel > button,
#profile-skills-container .service-panel > button,
#profile-roles-container .service-panel > button,
#profile-project-types-container .service-panel > button,
#profile-industry-expertise-container .service-panel > button,
#profile-certifications-container .service-panel > button {
  margin: 5px auto;
}
#availability-container .service-panel .service-name,
#position-template-container .service-panel .service-name,
#services-container .service-panel .service-name,
#engagement-container .service-panel .service-name,
#questions-container .service-panel .service-name,
#months-container .service-panel .service-name,
#pyo-services-container .service-panel .service-name,
#team-container .service-panel .service-name,
#default-scroll-container .service-panel .service-name,
#profile-jobs-container .service-panel .service-name,
#profile-schools-container .service-panel .service-name,
#profile-skills-container .service-panel .service-name,
#profile-roles-container .service-panel .service-name,
#profile-project-types-container .service-panel .service-name,
#profile-industry-expertise-container .service-panel .service-name,
#profile-certifications-container .service-panel .service-name {
  text-align: center;
  font-weight: 500;
  max-width: 250px;
  font-size: 18px;
  white-space: normal;
  height: 50px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
#availability-container .service-panel .service-description,
#position-template-container .service-panel .service-description,
#services-container .service-panel .service-description,
#engagement-container .service-panel .service-description,
#questions-container .service-panel .service-description,
#months-container .service-panel .service-description,
#pyo-services-container .service-panel .service-description,
#team-container .service-panel .service-description,
#default-scroll-container .service-panel .service-description,
#profile-jobs-container .service-panel .service-description,
#profile-schools-container .service-panel .service-description,
#profile-skills-container .service-panel .service-description,
#profile-roles-container .service-panel .service-description,
#profile-project-types-container .service-panel .service-description,
#profile-industry-expertise-container .service-panel .service-description,
#profile-certifications-container .service-panel .service-description {
  font-size: 11px;
  max-width: 250px;
  text-align: center;
  letter-spacing: 0.01em;
  white-space: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
#availability-container .service-panel .service-cost,
#position-template-container .service-panel .service-cost,
#services-container .service-panel .service-cost,
#engagement-container .service-panel .service-cost,
#questions-container .service-panel .service-cost,
#months-container .service-panel .service-cost,
#pyo-services-container .service-panel .service-cost,
#team-container .service-panel .service-cost,
#default-scroll-container .service-panel .service-cost,
#profile-jobs-container .service-panel .service-cost,
#profile-schools-container .service-panel .service-cost,
#profile-skills-container .service-panel .service-cost,
#profile-roles-container .service-panel .service-cost,
#profile-project-types-container .service-panel .service-cost,
#profile-industry-expertise-container .service-panel .service-cost,
#profile-certifications-container .service-panel .service-cost {
  font-size: 11px;
  line-height: 16px;
  /* identical to box height */
  text-align: center;
  font-weight: 500;
  color: var(--theme-info, '#4B80E7');
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
#availability-container .service-panel .service-cost i,
#position-template-container .service-panel .service-cost i,
#services-container .service-panel .service-cost i,
#engagement-container .service-panel .service-cost i,
#questions-container .service-panel .service-cost i,
#months-container .service-panel .service-cost i,
#pyo-services-container .service-panel .service-cost i,
#team-container .service-panel .service-cost i,
#default-scroll-container .service-panel .service-cost i,
#profile-jobs-container .service-panel .service-cost i,
#profile-schools-container .service-panel .service-cost i,
#profile-skills-container .service-panel .service-cost i,
#profile-roles-container .service-panel .service-cost i,
#profile-project-types-container .service-panel .service-cost i,
#profile-industry-expertise-container .service-panel .service-cost i,
#profile-certifications-container .service-panel .service-cost i {
  color: #000000;
  margin-left: 10px;
}
#availability-container .service-panel .service-description,
#position-template-container .service-panel .service-description,
#services-container .service-panel .service-description,
#engagement-container .service-panel .service-description,
#questions-container .service-panel .service-description,
#months-container .service-panel .service-description,
#pyo-services-container .service-panel .service-description,
#team-container .service-panel .service-description,
#default-scroll-container .service-panel .service-description,
#profile-jobs-container .service-panel .service-description,
#profile-schools-container .service-panel .service-description,
#profile-skills-container .service-panel .service-description,
#profile-roles-container .service-panel .service-description,
#profile-project-types-container .service-panel .service-description,
#profile-industry-expertise-container .service-panel .service-description,
#profile-certifications-container .service-panel .service-description {
  display: none;
}
#availability-container .service-panel:hover,
#position-template-container .service-panel:hover,
#services-container .service-panel:hover,
#engagement-container .service-panel:hover,
#questions-container .service-panel:hover,
#months-container .service-panel:hover,
#pyo-services-container .service-panel:hover,
#team-container .service-panel:hover,
#default-scroll-container .service-panel:hover,
#profile-jobs-container .service-panel:hover,
#profile-schools-container .service-panel:hover,
#profile-skills-container .service-panel:hover,
#profile-roles-container .service-panel:hover,
#profile-project-types-container .service-panel:hover,
#profile-industry-expertise-container .service-panel:hover,
#profile-certifications-container .service-panel:hover {
  background-color: var(--theme-secondary, '#913ef0');
  justify-content: space-around;
}
#availability-container .service-panel:hover .service-description,
#position-template-container .service-panel:hover .service-description,
#services-container .service-panel:hover .service-description,
#engagement-container .service-panel:hover .service-description,
#questions-container .service-panel:hover .service-description,
#months-container .service-panel:hover .service-description,
#pyo-services-container .service-panel:hover .service-description,
#team-container .service-panel:hover .service-description,
#default-scroll-container .service-panel:hover .service-description,
#profile-jobs-container .service-panel:hover .service-description,
#profile-schools-container .service-panel:hover .service-description,
#profile-skills-container .service-panel:hover .service-description,
#profile-roles-container .service-panel:hover .service-description,
#profile-project-types-container .service-panel:hover .service-description,
#profile-industry-expertise-container .service-panel:hover .service-description,
#profile-certifications-container .service-panel:hover .service-description,
#availability-container .service-panel:hover .service-name,
#position-template-container .service-panel:hover .service-name,
#services-container .service-panel:hover .service-name,
#engagement-container .service-panel:hover .service-name,
#questions-container .service-panel:hover .service-name,
#months-container .service-panel:hover .service-name,
#pyo-services-container .service-panel:hover .service-name,
#team-container .service-panel:hover .service-name,
#default-scroll-container .service-panel:hover .service-name,
#profile-jobs-container .service-panel:hover .service-name,
#profile-schools-container .service-panel:hover .service-name,
#profile-skills-container .service-panel:hover .service-name,
#profile-roles-container .service-panel:hover .service-name,
#profile-project-types-container .service-panel:hover .service-name,
#profile-industry-expertise-container .service-panel:hover .service-name,
#profile-certifications-container .service-panel:hover .service-name {
  color: white;
}
#availability-container .service-panel:hover .service-description,
#position-template-container .service-panel:hover .service-description,
#services-container .service-panel:hover .service-description,
#engagement-container .service-panel:hover .service-description,
#questions-container .service-panel:hover .service-description,
#months-container .service-panel:hover .service-description,
#pyo-services-container .service-panel:hover .service-description,
#team-container .service-panel:hover .service-description,
#default-scroll-container .service-panel:hover .service-description,
#profile-jobs-container .service-panel:hover .service-description,
#profile-schools-container .service-panel:hover .service-description,
#profile-skills-container .service-panel:hover .service-description,
#profile-roles-container .service-panel:hover .service-description,
#profile-project-types-container .service-panel:hover .service-description,
#profile-industry-expertise-container .service-panel:hover .service-description,
#profile-certifications-container .service-panel:hover .service-description {
  display: inline-flex;
  align-items: center;
  margin: 0;
  justify-content: center;
}
#availability-container .service-panel:hover .service-cost,
#position-template-container .service-panel:hover .service-cost,
#services-container .service-panel:hover .service-cost,
#engagement-container .service-panel:hover .service-cost,
#questions-container .service-panel:hover .service-cost,
#months-container .service-panel:hover .service-cost,
#pyo-services-container .service-panel:hover .service-cost,
#team-container .service-panel:hover .service-cost,
#default-scroll-container .service-panel:hover .service-cost,
#profile-jobs-container .service-panel:hover .service-cost,
#profile-schools-container .service-panel:hover .service-cost,
#profile-skills-container .service-panel:hover .service-cost,
#profile-roles-container .service-panel:hover .service-cost,
#profile-project-types-container .service-panel:hover .service-cost,
#profile-industry-expertise-container .service-panel:hover .service-cost,
#profile-certifications-container .service-panel:hover .service-cost,
#availability-container .service-panel:hover .service-icon,
#position-template-container .service-panel:hover .service-icon,
#services-container .service-panel:hover .service-icon,
#engagement-container .service-panel:hover .service-icon,
#questions-container .service-panel:hover .service-icon,
#months-container .service-panel:hover .service-icon,
#pyo-services-container .service-panel:hover .service-icon,
#team-container .service-panel:hover .service-icon,
#default-scroll-container .service-panel:hover .service-icon,
#profile-jobs-container .service-panel:hover .service-icon,
#profile-schools-container .service-panel:hover .service-icon,
#profile-skills-container .service-panel:hover .service-icon,
#profile-roles-container .service-panel:hover .service-icon,
#profile-project-types-container .service-panel:hover .service-icon,
#profile-industry-expertise-container .service-panel:hover .service-icon,
#profile-certifications-container .service-panel:hover .service-icon {
  display: none;
}
#availability-container .service-panel:hover .get-started,
#position-template-container .service-panel:hover .get-started,
#services-container .service-panel:hover .get-started,
#engagement-container .service-panel:hover .get-started,
#questions-container .service-panel:hover .get-started,
#months-container .service-panel:hover .get-started,
#pyo-services-container .service-panel:hover .get-started,
#team-container .service-panel:hover .get-started,
#default-scroll-container .service-panel:hover .get-started,
#profile-jobs-container .service-panel:hover .get-started,
#profile-schools-container .service-panel:hover .get-started,
#profile-skills-container .service-panel:hover .get-started,
#profile-roles-container .service-panel:hover .get-started,
#profile-project-types-container .service-panel:hover .get-started,
#profile-industry-expertise-container .service-panel:hover .get-started,
#profile-certifications-container .service-panel:hover .get-started {
  background-color: white !important;
  color: var(--theme-secondary, '#913ef0') !important;
  border-color: white !important;
}
#profile-jobs-container,
#profile-schools-container,
#profile-skills-container,
#profile-roles-container,
#profile-project-types-container,
#profile-industry-expertise-container,
#profile-certifications-container {
  align-items: flex-start;
  word-break: break-word;
}
.certifications-row {
  align-items: stretch;
  justify-content: flex-start;
}
.certifications-row .profile-certification-panel {
  align-items: flex-start;
  margin-bottom: 25px;
}
#profile-roles-container,
#profile-skills-container,
#profile-project-types-container,
#profile-industry-expertise-container {
  align-items: flex-start;
}
#profile-roles-container > div,
#profile-skills-container > div,
#profile-project-types-container > div,
#profile-industry-expertise-container > div {
  min-width: 100%!important;
}
#profile-jobs-container .profile-job-panel {
  justify-content: flex-start;
}
#pyo-services-container {
  padding-bottom: 10px;
}
.scroller {
  position: absolute;
  bottom: 45px;
  right: 75px;
  box-shadow: 6px 0 18px rgba(0, 0, 0, 0.06);
}
.scroller button {
  background-color: #000000;
  width: 46px;
  height: 32px;
  color: white !important;
}
.scroller button:disabled {
  background-color: #7a7979;
  opacity: 1;
}
.scroller .left-scroll {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-right: 1px solid white;
}
.scroller .right-scroll {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.scroller.services-container-scroller {
  bottom: -16px;
}
.scroller.engagement-container-scroller {
  bottom: 50%;
  right: -15px;
  left: -15px;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.scroller.engagement-container-scroller .left-scroll {
  width: 42px;
  padding-right: 0;
  padding-left: 0;
  border-right: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.scroller.engagement-container-scroller .right-scroll {
  width: 42px;
  padding-left: 0;
  padding-right: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.scroller.profile-roles-container-scroller,
.scroller.profile-skills-container-scroller,
.scroller.profile-project-types-container-scroller,
.scroller.profile-industry-expertise-container-scroller {
  bottom: -31px;
}
.scroller.questions-container-scroller {
  bottom: -16px;
  right: 50px;
}
.scroller.months-container-scroller {
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}
.scroller.months-container-scroller.scroller button {
  width: 35px;
  height: 28px;
  color: white !important;
}
.scroller.pyo-services-container-scroller,
.scroller.profile-jobs-container-scroller,
.scroller.profile-schools-container-scroller,
.scroller.profile-certifications-container-scroller {
  bottom: -12px;
}
.scroller.availability-container-scroller {
  bottom: -26px;
  right: 15px;
}
.scroller.profile-roles-container-pagination,
.scroller.profile-skills-container-pagination,
.scroller.profile-project-types-container-pagination,
.scroller.profile-industry-expertise-container-pagination,
.scroller.position-template-container-pagination,
.scroller.services-container-pagination,
.scroller.engagement-container-pagination,
.scroller.pyo-services-container-pagination,
.scroller.profile-jobs-container-pagination,
.scroller.profile-schools-container-pagination,
.scroller.profile-certifications-container-pagination {
  bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  box-shadow: none;
  background-color: transparent;
}
.scroller.profile-roles-container-pagination p,
.scroller.profile-skills-container-pagination p,
.scroller.profile-project-types-container-pagination p,
.scroller.profile-industry-expertise-container-pagination p,
.scroller.position-template-container-pagination p,
.scroller.services-container-pagination p,
.scroller.engagement-container-pagination p,
.scroller.pyo-services-container-pagination p,
.scroller.profile-jobs-container-pagination p,
.scroller.profile-schools-container-pagination p,
.scroller.profile-certifications-container-pagination p {
  background-color: transparent;
  margin-bottom: 0;
  color: #000000;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
}
.scroller.profile-roles-container-pagination p .current-page,
.scroller.profile-skills-container-pagination p .current-page,
.scroller.profile-project-types-container-pagination p .current-page,
.scroller.profile-industry-expertise-container-pagination p .current-page,
.scroller.position-template-container-pagination p .current-page,
.scroller.services-container-pagination p .current-page,
.scroller.engagement-container-pagination p .current-page,
.scroller.pyo-services-container-pagination p .current-page,
.scroller.profile-jobs-container-pagination p .current-page,
.scroller.profile-schools-container-pagination p .current-page,
.scroller.profile-certifications-container-pagination p .current-page {
  color: var(--theme-primary, '#5f3db1');
  padding: 0 2px;
  letter-spacing: 0.1em;
  text-decoration: underline;
}
.scroller.position-template-container-scroller {
  right: 25px;
  bottom: -16px;
}
.scroller.position-template-container-pagination {
  right: 25px;
  bottom: -40px;
}
.scroller.services-container-pagination {
  bottom: -40px;
}
.scroller.engagement-container-pagination {
  bottom: -35px;
  right: 0;
  left: 0;
}
.scroller.profile-roles-container-pagination,
.scroller.profile-skills-container-pagination,
.scroller.profile-project-types-container-pagination,
.scroller.profile-industry-expertise-container-pagination {
  bottom: -55px;
}
.scroller.availability-container-pagination {
  display: none;
}
button.get-started {
  margin-top: 0;
  padding: 11px 17px;
  align-self: center;
  white-space: nowrap;
}
.w-full {
  width: 100%;
}
.project-scope-question {
  flex-direction: column;
  align-items: stretch;
}
.project-scope-question .project-scope-nav {
  display: flex;
  justify-content: flex-start;
}
.project-scope-question .project-scope-nav .nav-progress {
  flex: 1;
  height: 6px;
}
.project-scope-question .project-scope-nav .nav-progress.active {
  background-color: var(--theme-primary, '#5f3db1');
}
.project-scope-question .project-scope-nav .nav-progress.past {
  background-color: var(--theme-secondary, '#913ef0');
}
.project-scope-question .scope-step-form {
  padding: 0;
  position: relative;
  background: white;
}
.project-scope-question.expanded .scope-step-form {
  background: #F5F6F8 !important;
}
.scope-question-number-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.scope-question-number-nav .scope-question-number-nav-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 13px 10px;
  min-width: 240px;
  cursor: pointer;
}
.scope-question-number-nav .scope-question-number-nav-item p {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: #000000;
  margin: 0;
}
.scope-question-number-nav .scope-question-number-nav-item i {
  color: var(--theme-secondary, '#913ef0');
  margin-right: 20px;
  font-size: 9px;
}
.scope-question-number-nav .scope-question-number-nav-item .question-number-nav-label {
  margin-left: 7px;
}
.scope-question-number-nav .scope-question-number-nav-item.active {
  background: #F5F6F8;
}
.scope-question-number-nav .scope-question-number-nav-item.disabled i {
  color: #C2CFE0;
}
.scope-question-number-nav .scope-question-number-nav-item.disabled .question-number-nav-label {
  text-decoration: line-through;
}
.project-review-container-tabs .wizard-form-step {
  margin-left: 0;
  margin-right: 0;
  max-width: unset;
}
.project-review-container-tabs .wizard-form-step .wripple-form .col-form-label {
  font-size: 16px!important;
}
.project-review-container-tabs .ant-tabs .ant-tabs-tab {
  padding: 12px !important;
  background-color: white;
}
.project-review-container-tabs .ant-tabs .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
  border-bottom: 1px solid #913EF0;
}
.project-review-container-tabs .ant-tabs .ant-tabs-tab .ant-tabs-tab-btn {
  width: 100%;
  border-bottom: 1px solid transparent;
}
.project-review-container-tabs .ant-tabs .ant-tabs-ink-bar {
  display: none;
}
.project-review-container {
  display: flex;
  flex-direction: column;
}
.project-review-container .ant-tabs-left > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab {
  margin: 0;
}
.project-review-container .nav.nav-tabs .nav-item a {
  height: 50px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.project-review-container .review-tabs {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
  flex-wrap: nowrap;
}
.project-review-container .review-tabs .review-tab-section {
  background-color: white;
  display: flex;
  text-align: center;
  flex: 1;
  padding: 0 0 3rem;
  align-items: stretch;
  flex-direction: column;
}
.project-review-container .review-tabs .review-tab-section.est-tab-section {
  padding-top: 0;
}
.project-review-container .review-tabs .review-tab-section:last-child {
  border-right: none;
}
.project-review-container .review-tabs .review-tab-section .review-tab-title {
  letter-spacing: 0.29em;
}
.project-review-container .review-tabs .review-tab-section .position-review-item {
  border: 1px solid var(--theme-light, '#E5EBF1');
  border-left: none;
}
.project-review-container .review-tabs .review-tab-section .position-review-item .title-label {
  color: var(--theme-primary, '#5f3db1');
  font-size: 11px;
}
.project-review-container .review-tabs .review-tab-section .position-review-item .position-name-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.project-review-container .review-tabs .review-tab-section .position-review-item .position-name-row * {
  color: black;
  font-size: 13px;
}
.project-review-container .review-tabs .review-tab-section .position-review-item .position-name-row .discipline-title {
  margin-right: 5px;
  margin-bottom: 3px;
}
.project-review-container .review-tabs .review-tab-section .position-review-item .position-name-row .template-title {
  font-weight: 500;
}
.project-review-container .review-tabs .review-tab-section .position-review-item .position-time-range {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 12px;
}
.project-review-container .review-tabs .review-tab-section .position-review-item .position-time-range .radio-checked {
  margin-right: 7px;
  margin-bottom: 2px;
  height: 10px;
  width: 10px;
}
.project-review-container .review-tabs .review-tab-section .review-item-title {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #90A0B7;
  margin-bottom: 10px;
  text-align: left;
}
.project-review-container .review-tabs .review-tab-section .review-item-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.project-review-container .review-tabs .review-tab-section .review-item-section .review-item-info {
  flex: 1;
  align-items: stretch;
  flex-direction: column;
  justify-content: space-evenly;
  padding-top: 0.5rem;
}
.project-review-container .review-tabs .review-tab-section .review-item-section .review-item-info .review-item-label {
  margin-bottom: 25px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: #000000;
}
.project-review-container .review-tabs .review-tab-section .review-item-section .review-item-info .review-item-label .review-item-value {
  color: var(--theme-primary, '#5f3db1');
  margin-left: 8px;
}
.project-review-container .review-tabs .review-tab-section .review-item-section .review-item-action {
  margin: 0;
  flex: unset!important;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: flex-start;
}
.project-review-container .review-tabs .review-tab-section .review-item-section .review-item-action button {
  font-size: 11px;
  font-weight: 600;
  line-height: 17px;
  text-decoration: underline;
}
.project-review-container .review-tabs .review-tab-section .review-item {
  border-bottom: 1px solid var(--theme-light, '#E5EBF1');
  padding: 28px 1.5rem 10px;
  text-align: left;
}
.project-review-container .review-tabs .review-tab-section .review-item:first-child {
  padding-top: 0;
}
.project-review-container .review-tabs .review-tab-section .review-item .edit-item-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.project-review-container .review-tabs .review-tab-section .review-item .edit-item-section .wizard-form-step .wripple-form .field-section {
  min-height: unset!important;
  margin-bottom: 0;
  padding: 0;
}
.project-review-container .review-tabs .review-tab-section .review-item .edit-item-section .edit-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  margin: 0 -10px 15px;
}
.project-review-container .review-tabs .review-tab-section .review-item .edit-item-section .edit-actions button {
  margin: 0 10px;
}
.project-review-container .review-tabs .review-tab-section .review-item:last-child {
  border-bottom: 0;
}
.project-review-container .review-tabs .review-tab-section .review-scope-question-label {
  font-family: Beatrice, sans-serif !important;
  font-style: normal;
  font-weight: 600;
  font-size: 10px!important;
  line-height: 150%;
  letter-spacing: 0.29em !important;
  text-transform: uppercase;
  color: var(--theme-primary, '#5f3db1');
  cursor: default;
  text-decoration: none!important;
}
.project-review-container .review-tabs .review-tab-section .review-scope-question-question {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #000000;
}
.project-review-container .review-tabs .review-tab-section .review-scope-question-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 5px 0;
}
.project-review-container .review-tabs .review-tab-section .review-scope-question-answer {
  flex: 1;
  margin: 7px 0;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  line-height: 22px;
  align-items: flex-start;
  justify-content: flex-start;
  letter-spacing: 0.01em;
  color: #000000;
}
.project-review-container .review-tabs .review-tab-section .review-scope-question-answer i {
  color: var(--theme-secondary, '#913ef0');
  font-size: 10px!important;
  line-height: 22px;
  margin-right: 10px;
}
.project-review-container .review-tabs .review-tab-section .review-scope-question-delta {
  flex: unset!important;
  padding: 7px 8px;
  border-radius: 7px;
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-review-container .review-tabs .review-tab-section .review-scope-question-actions {
  vertical-align: middle!important;
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128 / var(--tw-border-opacity));
  border-left-width: 0px;
  padding: 0 25px!important;
}
.project-review-container .review-tabs .review-tab-section .review-scope-question-actions button {
  font-size: 11px;
  font-weight: 600;
  line-height: 17px;
  text-decoration: underline;
}
.project-review-container .review-tabs .review-tab-section .review-tab-title {
  margin-bottom: 50px;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 150%;
  /* identical to box height, or 18px */
  text-align: center;
  letter-spacing: 0.29em;
  text-transform: uppercase;
}
@media only screen and (max-width: 720px) {
  .project-review-container .review-tabs .review-tab-section {
    display: none;
    padding-top: 20px;
  }
  .project-review-container .review-tabs .review-tab-section.active-review-tab {
    display: flex;
  }
}
.project-review-container .review-tabs.bidding-brief-tabs {
  flex-direction: column;
}
.project-review-container .review-tabs.bidding-brief-tabs .review-tab-section {
  text-align: unset;
}
.project-review-container .review-tabs.bidding-brief-tabs .review-tab-section .review-tab-title {
  margin-bottom: 10px;
}
.project-review-container .review-form-actions {
  border-top: 1px solid var(--theme-light, '#E5EBF1');
  padding: 0 1.5rem;
  align-self: stretch;
}
@media only screen and (max-width: 900px) {
  .project-review-container .project-review-step .filter-dropdown {
    display: block;
  }
}
.project-review-step .wizard-nav-btns > button {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.bidding-wizard-disabled > div {
  pointer-events: none;
}
.bidding-wizard-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  margin: 8px 0;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  background-color: transparent;
  border: 1px solid var(--theme-info, '#4B80E7');
  border-radius: 0.25em;
  overflow: hidden;
  min-height: 35px;
}
.bidding-wizard-container .MuiTabs-indicator {
  display: none!important;
}
.bidding-wizard-container .MuiTabs-root {
  flex: 1;
  text-transform: unset;
  min-height: 40px;
}
.bidding-wizard-container .MuiTabs-root .MuiTabs-flexContainer {
  justify-content: space-evenly;
  align-items: stretch;
}
.bidding-wizard-container button {
  flex: 1;
  text-transform: unset;
  border-right: 1px solid var(--theme-info, '#4B80E7');
  min-height: 42px;
  color: #868686;
  padding: 8px 12px!important;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.bidding-wizard-container button:last-child {
  border-right: none;
}
.bidding-wizard-container button.MuiTab-labelIcon {
  padding-top: 6px;
  text-transform: unset;
}
.bidding-wizard-container button .MuiTab-wrapper,
.bidding-wizard-container button .MuiTab-wrapper span {
  transition: all 50ms ease-in;
}
.bidding-wizard-container button:hover .MuiTab-wrapper,
.bidding-wizard-container button:focus .MuiTab-wrapper {
  opacity: 1;
  color: white;
}
.bidding-wizard-container button:hover .MuiTab-wrapper span,
.bidding-wizard-container button:focus .MuiTab-wrapper span {
  text-decoration: underline;
}
.bidding-wizard-container .MuiTab-labelIcon .MuiTab-wrapper,
.bidding-wizard-container .MuiTab-wrapper {
  font-weight: 600;
  flex-direction: row;
  font-size: 13px;
  letter-spacing: 0.01em;
  margin-bottom: 0;
  text-transform: unset;
  white-space: nowrap;
  position: relative;
  flex: 1;
  align-items: center;
  display: flex;
  font-family: Beatrice, sans-serif;
}
.bidding-wizard-container .MuiTab-labelIcon .MuiTab-wrapper i.fas,
.bidding-wizard-container .MuiTab-wrapper i.fas,
.bidding-wizard-container .MuiTab-labelIcon .MuiTab-wrapper .tab-icon,
.bidding-wizard-container .MuiTab-wrapper .tab-icon {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  margin-right: 8px;
  color: var(--theme-success, '#5ae399');
}
.bidding-wizard-container .MuiTab-labelIcon .MuiTab-wrapper img.tab-icon,
.bidding-wizard-container .MuiTab-wrapper img.tab-icon {
  width: 20px;
  height: 20px;
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
  margin-right: 6px;
}
.bidding-wizard-container .MuiTab-labelIcon .MuiTab-wrapper > *:first-child,
.bidding-wizard-container .MuiTab-wrapper > *:first-child {
  margin-bottom: 0;
}
.bidding-wizard-container .MuiButtonBase-root.accomplished .MuiTab-wrapper {
  color: white;
}
.bidding-wizard-container .MuiButtonBase-root.accomplished .MuiTab-wrapper span {
  text-decoration: underline;
}
.bidding-wizard-container .MuiTab-textColorPrimary.Mui-selected .MuiTab-wrapper {
  background-color: var(--theme-secondary, '#913ef0');
  opacity: 1;
  color: white;
}
.bidding-wizard-container .MuiTab-textColorPrimary.Mui-selected .MuiTab-wrapper span {
  text-decoration: underline;
}
.bidding-wizard-container .MuiTab-textColorPrimary.Mui-selected .MuiTab-wrapper i.fas,
.bidding-wizard-container .MuiTab-textColorPrimary.Mui-selected .MuiTab-wrapper .tab-icon {
  color: white;
}
@media (min-width: 600px) {
  .bidding-wizard-container .MuiTab-root {
    min-width: 100px;
  }
}
.wripple-estimate-container-mobile {
  display: none;
}
.wripple-estimate-container-desktop {
  display: block;
}
@media only screen and (max-width: 529px) {
  .wizard-container .wizard-step-container .added-padding {
    padding: 25px 15px;
  }
  .wizard-container .wizard-nav-btns {
    flex-wrap: wrap;
  }
  .wizard-container .wizard-nav-btns button {
    flex: 1;
  }
  .wizard-container .wizard-nav-btns button:first-child {
    margin-right: 16px;
  }
  .wizard-container .wizard-nav-btns button:nth-child(2) {
    margin: 0;
  }
  .wizard-container .wizard-nav-btns button:last-child {
    flex-basis: 100%;
    margin-top: 16px;
  }
  .wizard-form-step .wripple-form .field-section {
    padding: 35px 15px;
  }
  .wizard-form-step.wizard-review-step {
    width: 100%;
    max-width: unset;
  }
  .project-review-container .review-tabs .review-tab-section .review-item {
    padding-left: 16px;
    padding-right: 16px;
  }
  .review-step-container .nav.nav-tabs .nav-item {
    flex: 1;
  }
  .position-form .form-container .position-form-buttons > div {
    flex-wrap: wrap;
  }
  .position-form .form-container .position-form-buttons > div > button:first-child {
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .wizard-container .wizard-step-container .wizard-step .search-info {
    flex: auto;
    padding-right: 0;
    padding: 16px 0;
  }
  .wizard-container .project-nav {
    padding: 0 10px;
  }
  .wizard-container .project-nav .project-nav-back,
  .wizard-container .project-nav .progress-spacer {
    display: none;
  }
  #pyo-services-container .pyo-service-panel {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 1240px) {
  .wizard-container .project-progress-container .wizard-progress-title span {
    display: none;
  }
  .wizard-form-step,
  .wizard-position-step {
    margin: 60px auto 35px;
  }
}
@media only screen and (max-width: 1128px) {
  .wripple-estimate-container-mobile {
    display: block;
    background: black;
    padding: 12px 8px 8px;
  }
  .wripple-estimate-container-mobile .title,
  .wripple-estimate-container-mobile .description {
    margin: 0;
    color: white;
    text-align: center;
  }
  .wripple-estimate-container-mobile .title {
    font-size: 8px;
  }
  .wripple-estimate-container-mobile .description {
    font-size: 16px;
  }
  .wripple-estimate-container-desktop {
    display: none;
  }
  .wizard-form-step .create-project-scope-estimate {
    top: -42px;
    right: 0;
    left: auto;
    position: absolute;
  }
}
@media only screen and (min-width: 1129px) {
  .wizard-container .project-nav-back,
  .wizard-container .progress-spacer {
    width: 140px;
  }
}
@media only screen and (max-width: 720px) {
  .project-review-container .review-tabs {
    display: block;
  }
  .review-step-container .wizard-form-step,
  .review-step-container .wizard-position-step {
    margin-top: 10px;
  }
  .show-tabs-mobile {
    display: block;
    margin-bottom: 0;
  }
  .review-step-container .wizard-form-step .create-project-scope-estimate {
    top: 92px;
  }
}
.wizard-team-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  max-width: 1200px;
  align-self: center;
  margin: 20px auto 35px;
  position: relative;
}
.wizard-team-container .team-blueprint *,
.wizard-team-container .phase-deliverables .project-skills-container * {
  pointer-events: none!important;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
.wizard-team-container .wizard-form-step.project-team-step {
  background-color: white;
  margin: 0;
  padding: 2rem 3rem 3rem;
  max-width: unset;
}
.wizard-team-container .wizard-form-step.project-team-step .wripple-form {
  padding: 0 1rem;
}
.wizard-team-container .wizard-form-step.project-team-step .wripple-form .field-section {
  padding: 0;
  margin-bottom: 0;
}
.alert-overlay {
  position: fixed !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: all 500ms ease-in-out;
  transition-delay: 150ms;
  visibility: hidden !important;
  opacity: 0 !important;
  z-index: 200 !important;
}
.alert-overlay .alert-container {
  margin: 175px auto;
  background: #fff;
  border-radius: 0;
  max-width: 550px;
  display: flex;
  min-height: 75px;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  position: relative;
  border-top: 10px solid transparent;
  padding: 25px 30px;
}
.alert-overlay .alert-container h2 {
  margin: 0;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.01em;
  padding: 0;
  margin-bottom: 15px;
  flex-grow: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-right: 20px;
}
.alert-overlay .alert-container h2.alert-notification-title {
  color: white !important;
  margin-bottom: 0;
  margin-top: -10px;
  padding-right: 0;
}
.alert-overlay .alert-container .content {
  margin-bottom: 25px;
  overflow: auto;
  flex: 1;
  font-size: 14px;
  line-height: 27px;
}
.alert-overlay .alert-container .content p {
  font-size: 14px;
  margin-bottom: 3px;
}
.alert-overlay .alert-container .content ul {
  padding-left: 20px;
  list-style: list-decimal;
}
.alert-overlay .alert-container .content ul li {
  font-size: 12px;
  font-weight: bold;
}
.alert-overlay .alert-container .close {
  position: absolute;
  top: -22px;
  right: -14px;
  height: 24px;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  color: white;
  opacity: 1 !important;
  transition: all 200ms;
  font-size: 25px;
  font-weight: 300;
  text-decoration: none;
  background-color: #000;
  font-family: 'SimplonMono', sans-serif;
  cursor: pointer !important;
}
.alert-overlay .alert-container .close span {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 24px !important;
  margin-top: -1px;
}
.alert-overlay .alert-container .close:hover {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}
.alert-overlay .alert-container .alert-icon {
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-direction: row;
  color: white;
  transition: all 200ms;
}
.alert-overlay .alert-container .alert-icon i {
  font-size: 25px;
}
.alert-overlay .alert-container .alert-actions {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
}
.alert-overlay .alert-container .alert-actions button {
  padding-left: 22px;
  padding-right: 22px;
}
.alert-overlay .alert-container .alert-actions button:first-child {
  margin-right: 20px;
}
.alert-overlay.popped {
  visibility: visible !important;
  opacity: 1 !important;
}
.upload-area {
  height: 70vh;
  max-height: unset !important;
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: center;
}
.modal-overlay {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: all 500ms ease-in-out;
  transition-delay: 150ms;
  visibility: hidden;
  opacity: 0;
  z-index: 199;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  min-height: 100vh;
}
.modal-overlay > .scrollarea {
  flex: 1;
}
.modal-overlay > .scrollarea > .scrollarea-content {
  padding: 40px 50px;
}
.modal-overlay .close {
  position: absolute;
  top: -12px;
  right: -14px;
  height: 24px;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  color: white;
  opacity: 1 !important;
  transition: all 200ms;
  font-size: 25px;
  font-weight: 300;
  text-decoration: none;
  background-color: #000;
  font-family: 'SimplonMono', sans-serif;
  cursor: pointer !important;
  z-index: 5;
}
.modal-overlay .close span {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 24px !important;
  margin-top: -1px;
}
.modal-overlay .close:hover {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}
.modal-overlay .defaultScroll {
  flex: 1;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
.modal-overlay .defaultScroll > .scrollarea-content {
  padding: 40px 50px;
}
.modal-overlay .modal-scroll {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  flex-direction: column;
}
.modal-overlay .modal-container {
  min-height: 70vh;
  background: #fff;
  border-radius: 0;
  min-width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  position: relative;
  padding: 25px 30px;
}
.modal-overlay .modal-container .modal-title {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #000000;
  font-family: Beatrice, sans-serif;
}
.modal-overlay .modal-container .modal-subtitle {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #000000;
  font-family: Beatrice, sans-serif;
}
.modal-overlay .modal-container .content {
  margin-bottom: 25px;
  overflow: auto;
  flex: 1;
  font-size: 14px;
  line-height: 27px;
}
.modal-overlay .modal-container .modal-icon {
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-direction: row;
  color: white;
  transition: all 200ms;
}
.modal-overlay .modal-container .modal-icon i {
  font-size: 25px;
}
.modal-overlay .modal-container .modal-actions {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
}
.modal-overlay .modal-container .modal-actions button {
  padding-left: 22px;
  padding-right: 22px;
}
.modal-overlay .modal-container .modal-actions button:first-child {
  margin-right: 20px;
}
.modal-overlay.modal-overlay-enter-done {
  opacity: 1;
  visibility: visible !important;
  pointer-events: auto;
}
.modal-overlay.modal-overlay-exit {
  opacity: 0;
}
.modal-overlay.popped {
  visibility: visible !important;
  opacity: 1 !important;
}
.modal-overlay.opacity-0 {
  opacity: 0 !important;
}
.modal-overlay.modal-fixed {
  position: fixed !important;
}
.modal-overlay.modal-fixed .modal-container {
  min-width: unset !important;
  margin: 0 auto;
}
.modal-portal {
  position: fixed !important;
  inset: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: 200;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  min-height: 100vh;
}
.modal-portal * {
  pointer-events: none;
}
.modal-portal .close {
  position: absolute;
  top: -12px;
  right: -14px;
  height: 24px;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  color: white;
  opacity: 1 !important;
  transition: all 200ms;
  font-size: 25px;
  font-weight: 300;
  text-decoration: none;
  background-color: #000;
  font-family: 'Poppins', sans-serif;
  cursor: pointer !important;
  z-index: 5;
}
.modal-portal .close span {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 24px !important;
  margin-top: -1px;
}
.modal-portal .close:hover {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}
.modal-portal .defaultScroll {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
.modal-portal .modal-content {
  background: #fff;
  border-radius: 0;
  min-width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  position: relative;
  padding: 25px 30px;
}
.modal-portal-enter-done {
  opacity: 1;
  pointer-events: auto;
}
.modal-portal-enter-done * {
  pointer-events: auto;
}
.modal-portal-exit {
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .modal-overlay.modal-fixed .modal-container {
    min-width: 100% !important;
  }
  .modal-overlay .scrollarea .scrollarea-content {
    padding: 20px 15px;
  }
  .modal-overlay .scrollarea .scrollarea-content .modal-container {
    padding: 20px 15px;
  }
  .modal-overlay .scrollarea .scrollarea-content .modal-container .modal-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 700px) {
  .modal-container,
  .alert-container {
    width: 70%;
  }
}
.modal-overlay.referral-modal-form .modal-container,
.modal-overlay.job-referral-modal-form .modal-container {
  max-width: 500px;
  width: 90%;
  align-self: center;
  min-width: auto;
  min-height: 100px;
}
.modal-overlay.referral-modal-form .modal-container .wripple-form .form-container,
.modal-overlay.job-referral-modal-form .modal-container .wripple-form .form-container {
  padding: 0!important;
}
.modal-overlay.referral-modal-form .modal-container .wripple-form .form-container .referral-form-info,
.modal-overlay.job-referral-modal-form .modal-container .wripple-form .form-container .referral-form-info {
  margin: 0 0 15px;
}
.modal-overlay.referral-modal-form .modal-container .wripple-form .form-container .referral-form-info h4,
.modal-overlay.job-referral-modal-form .modal-container .wripple-form .form-container .referral-form-info h4 {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #000000;
}
.modal-overlay.referral-modal-form .modal-container .wripple-form .form-container .referral-form-info p,
.modal-overlay.job-referral-modal-form .modal-container .wripple-form .form-container .referral-form-info p {
  font-family: Beatrice, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: #000000;
}
.modal-overlay.referral-modal-form .modal-container .wripple-form .form-container .field-section .field,
.modal-overlay.job-referral-modal-form .modal-container .wripple-form .form-container .field-section .field {
  margin-top: 10px;
  padding: 0 15px;
}
.modal-overlay.referral-modal-form .modal-container .wripple-form .form-container .field-section .field .invalid-feedback,
.modal-overlay.job-referral-modal-form .modal-container .wripple-form .form-container .field-section .field .invalid-feedback {
  padding: 0 15px;
}
.modal-overlay.referral-modal-form .modal-container .wripple-form .form-container .form-footer,
.modal-overlay.job-referral-modal-form .modal-container .wripple-form .form-container .form-footer {
  flex-direction: column;
  align-items: flex-end;
  padding: 0 15px;
}
.modal-overlay.referral-modal-form .modal-container .wripple-form .form-container .form-footer button,
.modal-overlay.job-referral-modal-form .modal-container .wripple-form .form-container .form-footer button {
  min-width: 150px;
}
.modal-overlay.job-referral-modal-form .modal-container {
  max-width: 650px;
}
.greenlight-request-modal form label.col-form-label {
  font-weight: 500;
  font-size: 14px;
}
.select-contents-header {
  display: none;
  flex-direction: row;
  align-items: stretch;
  height: 50px;
  border-bottom: 1px solid #E5EBF1;
}
.select-contents-header .header-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
}
.select-contents-header .header-section h3 {
  width: 100%;
  font-style: normal;
  font-weight: 900;
  font-size: 11px;
  line-height: 14px;
  margin-bottom: 0;
  /* identical to box height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-right: 1px solid #E5EBF1;
}
.select-contents-header .cat-header {
  flex: 1;
  max-width: 180px;
}
.select-contents-header .cat-header,
.select-contents-header .desc-section {
  display: none;
}
.select-contents-header .header-row {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.select-contents-header .header-row .item-header {
  flex-basis: 35%;
}
.select-contents-header .header-row .content-header {
  flex-basis: 65%;
}
.select-contents-header .header-row .content-header h3 {
  border-right: none;
}
.select-contents-header .header-row .content-header,
.select-contents-header .header-row .item-header {
  text-align: center;
}
.select-contents-header .header-row .content-header.active-section,
.select-contents-header .header-row .item-header.active-section {
  background-color: rgba(136, 90, 248, 0.045);
}
.select-contents-header .header-row .content-header.active-section h3,
.select-contents-header .header-row .item-header.active-section h3 {
  border-top: 6px solid var(--theme-secondary, '#913ef0');
}
.team-services-modal .modal-table {
  min-height: 70vh;
}
.team-services-modal .selected-item {
  flex-grow: 1;
  background-color: rgba(197, 238, 216, 0.5);
}
.team-services-modal [type="checkbox"]:checked + label {
  color: var(--theme-primary, '#5f3db1');
  background-color: unset !important;
}
.select-contents-container {
  display: flex;
  align-self: stretch;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}
.select-contents-container .select-contents-nav {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background-color: #F5F6F8;
  flex: 1;
  max-width: 180px;
}
.select-contents-container .select-contents-nav .select-content-nav-item {
  border-bottom: 1px solid #E5EBF1;
  border-right: 1px solid #E5EBF1;
  min-height: 65px;
  align-items: stretch;
  justify-content: flex-start;
  display: flex;
  cursor: pointer;
}
.select-contents-container .select-contents-nav .select-content-nav-item p {
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* identical to box height */
  margin: 10px 40px 10px 25px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 15px!important;
  width: 100% !important;
  font-style: normal;
  flex-flow: row nowrap;
  align-self: stretch;
}
.select-contents-container .select-contents-nav .select-content-nav-item p i {
  font-size: 12px;
  line-height: 15px!important;
}
.select-contents-container .select-contents-nav .select-content-nav-item p small {
  display: none;
}
.select-contents-container .select-contents-nav .select-content-nav-item p .fas {
  margin-left: 5px !important;
}
.select-contents-container .select-contents-nav .select-content-nav-item.active {
  background-color: white;
}
.select-contents-container .select-contents-nav .select-content-nav-item.active p {
  font-weight: 600;
}
.select-contents-container .select-contents-nav .select-content-nav-item.active p small {
  display: block;
  font-weight: normal;
  margin-top: 5px;
}
.select-contents-container .select-contents-nav .select-content-nav-item.active p small::before {
  display: block;
  clear: both;
  content: "";
}
.select-contents-container .modal-category-container {
  flex: 1;
  flex-direction: column;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
}
.select-contents-container .modal-category-container .category-name {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #000000;
}
.select-contents-container .modal-category-container .category-description {
  font-weight: 300;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.01em;
  margin: 0 0 15px;
}
.select-contents-container .modal-category-container .category-items {
  flex-direction: column;
  display: flex;
  align-items: stretch;
  flex: 1;
  width: 100%;
}
.select-contents-container .modal-category-container .category-items .item-section {
  border-bottom: 1px solid #D3D8DD;
  flex-direction: column;
  display: flex;
  align-self: stretch;
  align-items: stretch;
  justify-content: center;
}
.select-contents-container .modal-category-container .category-items .item-section .accordion-item {
  display: flex;
  align-self: stretch;
  flex: 1;
  flex-direction: column;
}
.select-contents-container .modal-category-container .category-items .item-section .accordion-item__icon {
  right: 30px;
  top: 17px;
}
.select-contents-container .modal-category-container .category-items .item-section .accordion-item__icon.offset {
  display: inline-block;
  position: relative;
  right: auto;
  top: auto;
}
.select-contents-container .modal-category-container .category-items .item-section .item-name {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 0;
  align-items: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #323C47;
}
.select-contents-container .modal-category-container .category-items .item-section .item-description {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  margin: 0!important;
  letter-spacing: 0.01em;
  color: black;
}
.select-contents-container .modal-category-container .category-items .item-row,
.select-contents-container .modal-category-container .category-items .item-header {
  display: flex;
  flex: 1;
  width: 100%;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
}
.select-contents-container .modal-category-container .category-items .item-row button,
.select-contents-container .modal-category-container .category-items .item-header button {
  margin-top: 30px!important;
}
.select-contents-container .modal-category-container .category-items .item-row .item-info,
.select-contents-container .modal-category-container .category-items .item-header .item-info {
  flex-basis: 45%;
  border-right: 1px solid var(--theme-light, '#E5EBF1');
  padding: 0;
}
.select-contents-container .modal-category-container .category-items .item-row .contents-info,
.select-contents-container .modal-category-container .category-items .item-header .contents-info,
.select-contents-container .modal-category-container .category-items .item-row .headerSpacer,
.select-contents-container .modal-category-container .category-items .item-header .headerSpacer {
  flex-basis: 55%;
  padding: 0 30px;
}
.select-contents-container .modal-category-container .category-items .item-row .contents-info,
.select-contents-container .modal-category-container .category-items .item-header .contents-info {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.select-contents-container .modal-category-container .category-items .item-row .contents-info,
.select-contents-container .modal-category-container .category-items .item-header .contents-info,
.select-contents-container .modal-category-container .category-items .item-row .item-info,
.select-contents-container .modal-category-container .category-items .item-header .item-info {
  align-self: stretch;
}
.select-contents-container .modal-category-container .category-items .item-row .contents-info.active-section,
.select-contents-container .modal-category-container .category-items .item-header .contents-info.active-section,
.select-contents-container .modal-category-container .category-items .item-row .item-info.active-section,
.select-contents-container .modal-category-container .category-items .item-header .item-info.active-section {
  background-color: rgba(136, 90, 248, 0.045);
}
.select-contents-container .modal-category-container .category-items .item-row .item-info {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 20px 20px !important;
  transition: background-color 200ms ease-in;
}
.select-contents-container .modal-category-container .category-items .item-row .item-info:first-child {
  flex-basis: 35%;
}
.select-contents-container .modal-category-container .category-items .item-row .item-info:last-child {
  flex-basis: 65%;
}
.select-contents-container .modal-category-container .category-items .item-row .item-info .item-name {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  /* identical to box height */
  display: flex;
  align-items: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  /* Table "Black" */
  color: #323c47;
  border-radius: 4px;
}
.select-contents-container .modal-category-container .category-items .item-row .item-info .item-description {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 18px;
  display: flex;
  align-items: center;
}
.select-contents-container .modal-category-container .category-items .item-row .item-info.active-section {
  flex: 1;
  display: none;
}
.select-contents-container .modal-category-container .category-items .item-row .item-info.selected-item {
  background-color: rgba(197, 238, 216, 0.5);
}
.select-contents-container .modal-category-container .category-items .item-row .item-info .form-checkbox [type="checkbox"]:checked + label {
  color: var(--theme-primary, '#5f3db1');
  background-color: unset !important;
}
.select-contents-container .modal-category-container .category-items .item-row .item-info .btn-form-modal {
  margin-top: 1px !important;
  min-width: unset;
}
.select-contents-container .modal-category-container .category-items .item-header .item-info {
  padding: 20px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.select-contents-container .modal-category-container .category-items .item-header .item-info.active-section,
.select-contents-container .modal-category-container .category-items .item-header .headerSpacer.active-section {
  background-color: rgba(136, 90, 248, 0.045);
}
@media only screen and (max-width: 767px) {
  .select-contents-header .header-row .item-header,
  .select-contents-container .modal-category-container .category-items .item-row .item-info:first-child {
    flex-basis: 100%;
  }
  .modal-category-form .form-footer {
    margin: 0 !important;
    border-bottom: 1px solid #E5EBF1;
  }
  .modal-category-form .form-container {
    padding-top: 10px!important;
    padding-bottom: 0!important;
  }
  .modal-category-form .form-container .field-section {
    padding: 0 15px!important;
  }
  .modal-category-form .form-container .select-field {
    margin-bottom: 15px!important;
  }
  .modal-category-form div form .field {
    margin: 0!important;
  }
}
@media only screen and (max-width: 529px) {
  .select-contents-container .modal-category-container .category-items .item-row .item-info {
    padding: 15px !important;
  }
  .select-contents-container .modal-category-container .category-items .item-row .item-info .item-name {
    font-size: 14px;
  }
  .select-contents-container .modal-category-container .category-items .item-row .item-info .item-description {
    margin: 10px 0 !important;
  }
  .select-contents-container .modal-category-container .category-items .item-row .item-info .form-checkbox input[type="checkbox"] + label {
    padding-left: 5px!important;
  }
}
.Toastify__toast {
  font-size: 13px;
  font-family: Beatrice, sans-serif;
}
.Toastify__toast-container {
  min-width: 320px;
  width: unset;
  max-width: 600px;
}
.Toastify__toast--info {
  background-color: var(--theme-info, '#4B80E7');
}
.Toastify__toast--success {
  background-color: var(--theme-success-dark);
}
.Toastify__toast--warning {
  background-color: var(--theme-warning, '#FFB946');
}
.Toastify__toast--error {
  background-color: var(--theme-danger, '#E54963');
}
.morph-button-to-modal-wrapper {
  position: absolute;
  overflow: visible;
  width: 100%;
  height: 3.2rem;
  z-index: 150;
  top: 0;
  left: 0;
}
.morph-button-to-modal {
  position: relative;
  top: 0;
  bottom: 0;
  overflow: hidden;
  min-width: 3.2rem;
  min-height: 3.2rem;
  width: 3.2rem;
  height: 3.2rem;
  border: 0.2rem solid transparent;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  will-change: content, width, height, max-width, max-height, transform;
  transition-property: width, height, max-width, max-height, border-color, border-radius, background-color;
  transition-duration: 350ms, 350ms,350ms, 350ms, 200ms, 200ms, 400ms;
  transition-timing-function: cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transition-delay: 100ms, 100ms,100ms, 200ms, 400ms, 400ms, 200ms;
}
.morph-button-to-modal button {
  appearence: none;
  background: none;
  border: none;
  padding: 0;
}
.morph-button-to-modal.open {
  z-index: 1000;
  width: 90rem;
  height: 90rem;
  border-color: transparent;
  border-radius: 0;
  background: white;
  box-shadow: 8px 0 18px rgba(0, 0, 0, 0.06);
  transition-delay: 200ms, 200ms, 200ms, 200ms, 200ms, 200ms;
}
.morph-button-to-modal .morph-button {
  position: absolute;
  width: 100%;
  height: 100%;
}
.morph-button-to-modal .morph-modal-container {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  position: relative;
  padding: 2rem;
}
.morph-button-to-modal .morph-modal-title {
  flex: 0 0 auto;
  overflow: hidden;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid #545e61;
  font-size: 2rem;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.morph-button-to-modal .btn-close {
  position: absolute;
  top: 1.4rem;
  right: 2rem;
  color: black;
  font-size: 15px;
}
.morph-button-to-modal .morph-modal-body {
  flex: 0 1 auto;
  overflow-y: auto;
  max-height: calc(100vh - 14rem);
  font-size: 1.5rem;
}
.morph-button-to-modal .morph-button-enter {
  opacity: 0.01;
}
.morph-button-to-modal .morph-button-enter.morph-button-enter-active {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 300ms;
  transition-timing-function: ease-out;
  transition-delay: 400ms;
}
.morph-button-to-modal .morph-button-exit {
  opacity: 1;
}
.morph-button-to-modal .morph-button-exit.morph-button-exit-active {
  opacity: 0;
  transition: opacity 200ms ease-out;
}
.morph-button-to-modal .morph-modal-enter {
  opacity: 0.01;
}
.morph-button-to-modal .morph-modal-enter.morph-modal-enter-active {
  opacity: 1;
  transition-property: opacity 320ms ease-out 500ms;
}
.morph-button-to-modal .morph-modal-exit {
  opacity: 1;
}
.morph-button-to-modal .morph-modal-exit.morph-modal-exit-active {
  opacity: 0;
  transition: opacity 200ms ease-out;
}
.ant-popconfirm .ant-popover-buttons {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
}
.lexical-wripple .ant-select .ant-select-selector {
  height: unset!important;
  line-height: unset!important;
}
.lexical-wripple .ant-select .ant-select-selection-item {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.lexical-wripple .ltr {
  text-align: left;
}
.lexical-wripple .rtl {
  text-align: right;
}
.lexical-wripple .editor-container {
  margin: 20px 0 20px 0;
  border-radius: 2px;
  background: #F7F8FA;
  color: #000;
  position: relative;
  line-height: 20px;
  font-weight: 400;
  text-align: left;
  border: 1px solid #ececec;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.lexical-wripple .editor-container .characters-limit {
  margin-left: auto;
}
.lexical-wripple .editor-container .characters-limit-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.lexical-wripple .editor-container .characters-limit-container.characters-limit-exceeded {
  color: var(--theme-danger, '#E54963');
  font-weight: 500;
}
.lexical-wripple .editor-container .characters-limit-container.characters-limit-exceeded * {
  font-weight: 500;
  color: var(--theme-danger, '#E54963');
}
.lexical-wripple .editor-inner {
  background: #F7F8FA;
  position: relative;
  border-top: 1px solid #ececec;
}
.lexical-wripple .editor-input {
  min-height: 150px;
  resize: none;
  font-size: 12px;
  position: relative;
  -moz-tab-size: 1;
    -o-tab-size: 1;
       tab-size: 1;
  outline: 0;
  padding: 20px 10px;
  caret-color: #444;
}
.lexical-wripple .editor-placeholder {
  color: #999;
  overflow: hidden;
  position: absolute;
  text-overflow: ellipsis;
  top: 20px;
  left: 10px;
  right: 10px;
  font-size: 12px;
  line-height: 18px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-block;
  pointer-events: none;
}
.lexical-wripple .editor-text-bold {
  font-weight: bold;
}
.lexical-wripple .editor-text-italic {
  font-style: italic;
}
.lexical-wripple .editor-text-underline {
  text-decoration: underline;
}
.lexical-wripple .editor-text-strikethrough {
  text-decoration: line-through;
}
.lexical-wripple .editor-text-underlineStrikethrough {
  text-decoration: underline line-through;
}
.lexical-wripple .editor-text-code {
  background-color: #f0f2f5;
  padding: 1px 0.25rem;
  font-family: Menlo, Consolas, Monaco, monospace;
  font-size: 94%;
}
.lexical-wripple .editor-link {
  color: #216fdb;
  text-decoration: none;
}
.lexical-wripple .tree-view-output {
  display: block;
  background: #222;
  color: #fff;
  padding: 5px;
  font-size: 12px;
  white-space: pre-wrap;
  margin: 1px auto 10px auto;
  max-height: 250px;
  position: relative;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: auto;
  line-height: 14px;
}
.lexical-wripple .editor-code {
  background-color: #f0f2f5;
  font-family: Menlo, Consolas, Monaco, monospace;
  display: block;
  padding: 8px 8px 8px 52px;
  line-height: 1.53;
  font-size: 13px;
  margin: 0;
  margin-top: 8px;
  margin-bottom: 8px;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  /* white-space: pre; */
  overflow-x: auto;
  position: relative;
}
.lexical-wripple .editor-code:before {
  content: attr(data-gutter);
  position: absolute;
  background-color: #eee;
  left: 0;
  top: 0;
  border-right: 1px solid #ccc;
  padding: 8px;
  color: #777;
  white-space: pre-wrap;
  text-align: right;
  min-width: 25px;
}
.lexical-wripple .editor-code:after {
  content: attr(data-highlight-language);
  top: 0;
  right: 3px;
  padding: 3px;
  font-size: 10px;
  text-transform: uppercase;
  position: absolute;
  color: rgba(0, 0, 0, 0.5);
}
.lexical-wripple .editor-tokenComment {
  color: slategray;
}
.lexical-wripple .editor-tokenPunctuation {
  color: #999;
}
.lexical-wripple .editor-tokenProperty {
  color: #905;
}
.lexical-wripple .editor-tokenSelector {
  color: #690;
}
.lexical-wripple .editor-tokenOperator {
  color: #9a6e3a;
}
.lexical-wripple .editor-tokenAttr {
  color: #07a;
}
.lexical-wripple .editor-tokenVariable {
  color: #e90;
}
.lexical-wripple .editor-tokenFunction {
  color: #dd4a68;
}
.lexical-wripple .editor-paragraph {
  margin: 0;
  margin-bottom: 8px;
  position: relative;
}
.lexical-wripple .editor-paragraph:last-child {
  margin-bottom: 0;
}
.lexical-wripple .editor-heading-h1 {
  font-size: 24px;
  color: #050505;
  font-weight: 400;
  margin: 0;
  margin-bottom: 12px;
  padding: 0;
}
.lexical-wripple .editor-heading-h2 {
  font-size: 15px;
  color: #65676b;
  font-weight: 700;
  margin: 0;
  margin-top: 10px;
  padding: 0;
  text-transform: uppercase;
}
.lexical-wripple .editor-quote {
  margin: 0;
  margin-left: 20px;
  font-size: 15px;
  color: #65676b;
  border-left-color: #ced0d4;
  border-left-width: 4px;
  border-left-style: solid;
  padding-left: 16px;
}
.lexical-wripple .editor-list-ol {
  padding: 0;
  margin: 0;
  margin-left: 16px;
  list-style: decimal;
}
.lexical-wripple .editor-list-ul {
  padding: 0;
  margin: 0;
  margin-left: 16px;
  list-style: disc;
}
.lexical-wripple .editor-listitem {
  margin: 8px 32px 8px 32px;
}
.lexical-wripple .editor-nested-listitem {
  list-style-type: none;
}
.lexical-wripple pre::-webkit-scrollbar {
  background: transparent;
  width: 10px;
}
.lexical-wripple pre::-webkit-scrollbar-thumb {
  background: #999;
}
.lexical-wripple .debug-timetravel-panel {
  overflow: hidden;
  padding: 0 0 10px 0;
  margin: auto;
  display: flex;
}
.lexical-wripple .debug-timetravel-panel-slider {
  padding: 0;
  flex: 8;
}
.lexical-wripple .debug-timetravel-panel-button {
  padding: 0;
  border: 0;
  background: none;
  flex: 1;
  color: #fff;
  font-size: 12px;
}
.lexical-wripple .debug-timetravel-panel-button:hover {
  text-decoration: underline;
}
.lexical-wripple .debug-timetravel-button {
  border: 0;
  padding: 0;
  font-size: 12px;
  top: 10px;
  right: 15px;
  position: absolute;
  background: none;
  color: #fff;
}
.lexical-wripple .debug-timetravel-button:hover {
  text-decoration: underline;
}
.lexical-wripple .emoji {
  color: transparent;
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 -1px;
}
.lexical-wripple .emoji-inner {
  padding: 0 0.15em;
}
.lexical-wripple .emoji-inner::-moz-selection {
  color: transparent;
  background-color: rgba(150, 150, 150, 0.4);
}
.lexical-wripple .emoji-inner::selection {
  color: transparent;
  background-color: rgba(150, 150, 150, 0.4);
}
.lexical-wripple .emoji-inner::moz-selection {
  color: transparent;
  background-color: rgba(150, 150, 150, 0.4);
}
.lexical-wripple .emoji.happysmile {
  background-image: url(./images/emoji/1F642.png);
}
.lexical-wripple .toolbar {
  display: flex !important;
  margin-bottom: 1px !important;
  background: #fff !important;
  padding: 4px !important;
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
  vertical-align: middle !important;
}
.lexical-wripple.editor-disabled {
  pointer-events: none !important;
}
.lexical-wripple.editor-disabled .characters-limit-container,
.lexical-wripple.editor-disabled .toolbar {
  display: none !important;
  pointer-events: none !important;
}
.lexical-wripple .toolbar button.toolbar-item {
  border: 0;
  display: flex;
  background: none;
  border-radius: 10px;
  padding: 6px;
  cursor: pointer;
  vertical-align: middle;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lexical-wripple .toolbar button.toolbar-item:disabled {
  cursor: not-allowed;
}
.lexical-wripple .toolbar button.toolbar-item.spaced {
  margin-right: 2px;
}
.lexical-wripple .toolbar button.toolbar-item i.format {
  background-size: contain;
  display: inline-block;
  height: 18px;
  width: 18px;
  display: flex;
  opacity: 0.6;
}
.lexical-wripple .toolbar button.toolbar-item:disabled * {
  opacity: 0.2;
}
.lexical-wripple .toolbar button.toolbar-item:disabled i.format {
  opacity: 0.2;
}
.lexical-wripple .toolbar button.toolbar-item.active {
  background-color: rgba(223, 232, 250, 0.3);
}
.lexical-wripple .toolbar button.toolbar-item.active i {
  opacity: 1;
}
.lexical-wripple .toolbar .toolbar-item:hover:not([disabled]) {
  background-color: #eee;
}
.lexical-wripple .toolbar .divider {
  width: 1px;
  background-color: #eee;
  margin: 0 4px;
}
.lexical-wripple .toolbar select.toolbar-item {
  border: 0;
  display: flex;
  background: none;
  border-radius: 10px;
  padding: 8px;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 70px;
  font-size: 14px;
  color: #777;
  text-overflow: ellipsis;
}
.lexical-wripple .toolbar select.code-language {
  text-transform: capitalize;
  width: 130px;
}
.lexical-wripple .toolbar .toolbar-item .text {
  display: flex;
  line-height: 20px;
  vertical-align: middle;
  font-size: 14px;
  color: #777;
  text-overflow: ellipsis;
  width: 70px;
  overflow: hidden;
  height: 20px;
  text-align: left;
}
.lexical-wripple .toolbar .toolbar-item .icon {
  display: flex;
  width: 20px;
  height: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-right: 8px;
  line-height: 16px;
  background-size: contain;
}
.lexical-wripple .toolbar i.chevron-down {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.lexical-wripple .toolbar i.chevron-down.inside {
  width: 16px;
  height: 16px;
  display: flex;
  margin-left: -25px;
  margin-top: 11px;
  margin-right: 10px;
  pointer-events: none;
}
.lexical-wripple i.chevron-down {
  background-color: transparent;
  background-size: contain;
  display: inline-block;
  height: 8px;
  width: 8px;
  background-image: url(/images/lexical/icons/chevron-down.svg);
}
.lexical-wripple #block-controls button:hover {
  background-color: #efefef;
}
.lexical-wripple #block-controls button:focus-visible {
  border-color: blue;
}
.lexical-wripple #block-controls span.block-type {
  background-size: contain;
  display: block;
  width: 18px;
  height: 18px;
  margin: 2px;
}
.lexical-wripple #block-controls span.block-type.paragraph {
  background-image: url(/images/lexical/icons/text-paragraph.svg);
}
.lexical-wripple #block-controls span.block-type.h1 {
  background-image: url(/images/lexical/icons/type-h1.svg);
  margin-bottom: 0;
}
.lexical-wripple #block-controls span.block-type.h2 {
  background-image: url(/images/lexical/icons/type-h2.svg);
  margin-bottom: 0;
}
.lexical-wripple #block-controls span.block-type.quote {
  background-image: url(/images/lexical/icons/chat-square-quote.svg);
}
.lexical-wripple #block-controls span.block-type.ul {
  background-image: url(/images/lexical/icons/list-ul.svg);
}
.lexical-wripple #block-controls span.block-type.ol {
  background-image: url(/images/lexical/icons/list-ol.svg);
}
.lexical-wripple #block-controls span.block-type.code {
  background-image: url(/images/lexical/icons/code.svg);
}
.lexical-wripple .dropdown {
  z-index: 5;
  display: block;
  position: absolute;
  box-shadow: 0 12px 28px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  min-width: 100px;
  min-height: 40px;
  background-color: #fff;
}
.lexical-wripple .dropdown .item {
  margin: 0 8px 0 8px;
  padding: 8px;
  color: #050505;
  cursor: pointer;
  line-height: 16px;
  font-size: 15px;
  display: flex;
  align-content: center;
  flex-direction: row;
  flex-shrink: 0;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 8px;
  border: 0;
  min-width: 268px;
}
.lexical-wripple .dropdown .item .active {
  display: flex;
  width: 20px;
  height: 20px;
  background-size: contain;
}
.lexical-wripple .dropdown .item:first-child {
  margin-top: 8px;
}
.lexical-wripple .dropdown .item:last-child {
  margin-bottom: 8px;
}
.lexical-wripple .dropdown .item:hover {
  background-color: #eee;
}
.lexical-wripple .dropdown .item .text {
  display: flex;
  line-height: 20px;
  flex-grow: 1;
  width: 200px;
}
.lexical-wripple .dropdown .item .icon {
  display: flex;
  width: 20px;
  height: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-right: 12px;
  line-height: 16px;
  background-size: contain;
}
.lexical-wripple i.undo {
  background-image: url(/images/lexical/icons/arrow-counterclockwise.svg);
}
.lexical-wripple i.redo {
  background-image: url(/images/lexical/icons/arrow-clockwise.svg);
}
.lexical-wripple .icon.paragraph {
  background-image: url(/images/lexical/icons/text-paragraph.svg);
}
.lexical-wripple .icon.large-heading,
.lexical-wripple .icon.h1 {
  background-image: url(/images/lexical/icons/type-h1.svg);
  margin-bottom: 0;
}
.lexical-wripple .icon.small-heading,
.lexical-wripple .icon.h2 {
  background-image: url(/images/lexical/icons/type-h2.svg);
  margin-bottom: 0;
}
.lexical-wripple .icon.bullet-list,
.lexical-wripple .icon.ul {
  background-image: url(/images/lexical/icons/list-ul.svg);
}
.lexical-wripple .icon.numbered-list,
.lexical-wripple .icon.ol {
  background-image: url(/images/lexical/icons/list-ol.svg);
}
.lexical-wripple .icon.quote {
  background-image: url(/images/lexical/icons/chat-square-quote.svg);
}
.lexical-wripple .icon.code {
  background-image: url(/images/lexical/icons/code.svg);
}
.lexical-wripple i.format.bullet-list {
  background-image: url(/images/lexical/icons/list-ul.svg);
}
.lexical-wripple i.format.numbered-list {
  background-image: url(/images/lexical/icons/list-ol.svg);
}
.lexical-wripple i.bold {
  background-image: url(/images/lexical/icons/type-bold.svg);
}
.lexical-wripple i.italic {
  background-image: url(/images/lexical/icons/type-italic.svg);
}
.lexical-wripple i.underline {
  background-image: url(/images/lexical/icons/type-underline.svg);
}
.lexical-wripple i.strikethrough {
  background-image: url(/images/lexical/icons/type-strikethrough.svg);
}
.lexical-wripple i.code {
  background-image: url(/images/lexical/icons/code.svg);
}
.lexical-wripple i.link {
  background-image: url(/images/lexical/icons/link.svg);
}
.lexical-wripple i.left-align {
  background-image: url(/images/lexical/icons/text-left.svg);
}
.lexical-wripple i.center-align {
  background-image: url(/images/lexical/icons/text-center.svg);
}
.lexical-wripple i.right-align {
  background-image: url(/images/lexical/icons/text-right.svg);
}
.lexical-wripple i.justify-align {
  background-image: url(/images/lexical/icons/justify.svg);
}
.link-editor {
  position: absolute;
  z-index: 400;
  top: -10000px;
  left: -10000px;
  margin-top: -6px;
  max-width: 300px;
  width: 100%;
  opacity: 0;
  background-color: #fff;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  transition: opacity 0.5s;
}
.link-editor .link-input {
  display: block;
  width: calc(100% - 24px);
  box-sizing: border-box;
  margin: 8px 12px;
  padding: 8px 12px;
  border-radius: 15px;
  background-color: #eee;
  font-size: 15px;
  color: #050505;
  border: 0;
  outline: 0;
  position: relative;
  font-family: inherit;
}
.link-editor div.link-edit {
  background-image: url(/images/lexical/icons/pencil-fill.svg);
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
  width: 35px;
  vertical-align: -0.25em;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
}
.link-editor .link-input a {
  color: #216fdb;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  margin-right: 30px;
  text-overflow: ellipsis;
}
.link-editor .link-input a:hover {
  text-decoration: underline;
}
.link-editor .button {
  width: 20px;
  height: 20px;
  display: inline-block;
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
  margin: 0 2px;
}
.link-editor .button.hovered {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-color: #eee;
}
.link-editor .button i,
.actions i {
  background-size: contain;
  display: inline-block;
  height: 20px;
  width: 20px;
  vertical-align: -0.25em;
}
.lexical-editor-dropdown i.undo {
  background-image: url(/images/lexical/icons/arrow-counterclockwise.svg);
}
.lexical-editor-dropdown i.redo {
  background-image: url(/images/lexical/icons/arrow-clockwise.svg);
}
.lexical-editor-dropdown .icon.paragraph {
  background-image: url(/images/lexical/icons/text-paragraph.svg);
}
.lexical-editor-dropdown .icon.large-heading,
.lexical-editor-dropdown .icon.h1 {
  background-image: url(/images/lexical/icons/type-h1.svg);
  margin-bottom: 0;
}
.lexical-editor-dropdown .icon.small-heading,
.lexical-editor-dropdown .icon.h2 {
  background-image: url(/images/lexical/icons/type-h2.svg);
  margin-bottom: 0;
}
.lexical-editor-dropdown .icon.bullet-list,
.lexical-editor-dropdown .icon.ul {
  background-image: url(/images/lexical/icons/list-ul.svg);
}
.lexical-editor-dropdown .icon.numbered-list,
.lexical-editor-dropdown .icon.ol {
  background-image: url(/images/lexical/icons/list-ol.svg);
}
.lexical-editor-dropdown .icon.quote {
  background-image: url(/images/lexical/icons/chat-square-quote.svg);
}
.lexical-editor-dropdown .icon.code {
  background-image: url(/images/lexical/icons/code.svg);
}
.lexical-editor-dropdown i.format.bullet-list {
  background-image: url(/images/lexical/icons/list-ul.svg);
}
.lexical-editor-dropdown i.format.numbered-list {
  background-image: url(/images/lexical/icons/list-ol.svg);
}
.lexical-editor-dropdown i.bold {
  background-image: url(/images/lexical/icons/type-bold.svg);
}
.lexical-editor-dropdown i.italic {
  background-image: url(/images/lexical/icons/type-italic.svg);
}
.lexical-editor-dropdown i.underline {
  background-image: url(/images/lexical/icons/type-underline.svg);
}
.lexical-editor-dropdown i.strikethrough {
  background-image: url(/images/lexical/icons/type-strikethrough.svg);
}
.lexical-editor-dropdown i.code {
  background-image: url(/images/lexical/icons/code.svg);
}
.lexical-editor-dropdown i.link {
  background-image: url(/images/lexical/icons/link.svg);
}
.lexical-editor-dropdown i.left-align {
  background-image: url(/images/lexical/icons/text-left.svg);
}
.lexical-editor-dropdown i.center-align {
  background-image: url(/images/lexical/icons/text-center.svg);
}
.lexical-editor-dropdown i.right-align {
  background-image: url(/images/lexical/icons/text-right.svg);
}
.lexical-editor-dropdown i.justify-align {
  background-image: url(/images/lexical/icons/justify.svg);
}
.lexical-editor-dropdown .item {
  padding: 8px 0;
  color: #050505;
  cursor: pointer;
  line-height: 16px;
  font-size: 15px;
  display: flex;
  align-content: center;
  flex-direction: row;
  flex-shrink: 0;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.lexical-editor-dropdown .item .text {
  display: none;
  line-height: 20px;
  flex-grow: 1;
}
.lexical-editor-dropdown .item .icon {
  display: flex;
  width: 20px;
  height: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-repeat: no-repeat;
  line-height: 16px;
  background-size: contain;
}
.lexical-editor-dropdown.lexical-popup {
  min-width: 50px !important;
  width: 50px !important;
}
.project-group-title {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--theme-primary, '#5f3db1');
  margin: 20px 0;
  display: flex;
  align-self: stretch;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.project-group-title:before,
.project-group-title:after {
  content: "";
  flex: 1 1;
  border-bottom: 1px solid;
  margin: 0 15px;
  padding: 0;
}
.breif-separator {
  border-right: 1px solid purple;
  padding: 10px 5px;
  margin: 14px 0px;
  width: 100%;
  height: 80%;
}
@media only screen and (max-width: 765px) {
  .breif-separator {
    border-right: none;
    border-bottom: 1px solid purple;
    height: 100%;
  }
}
.question-delta > sup {
  margin-left: 2px;
  font-size: 60%;
  margin-right: 1px;
}
.project-panel .panel-info > div > .wripple-estimate {
  min-height: 107px;
}
.project-bidding-navbar-menu > div > .wripple-estimate.wripple-estimate-editable-empty {
  min-width: 420px;
}
.tabs-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 0 43px;
}
.project-filter {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 400px;
}
.project-filter > .dropdown {
  display: flex;
  flex-direction: column;
}
.project-filter > .dropdown * {
  white-space: nowrap;
  font-size: 15px!important;
}
.project-filter:first-child {
  flex-grow: 1;
}
.project-filter:nth-child(2) {
  flex: 1;
}
.project-filter .ant-select {
  min-height: 38px;
}
.project-filter .ant-select .ant-select-selector {
  border-radius: 4px;
  border-color: hsl(0, 0%, 80%);
  border-width: 1px;
  background-color: hsl(0, 0%, 100%);
}
.project-filter .ant-select .ant-select-selector,
.project-filter .ant-select .ant-select-selection-search-input {
  min-height: 38px;
}
.project-filter .ant-select .ant-select-selection-placeholder,
.project-filter .ant-select .ant-select-selection-search-input {
  line-height: 38px;
}
.project-filter .ant-select .ant-select-selection-item {
  line-height: 36px;
  min-width: 140px;
}
.client-projects-list-filters .filter-button {
  min-width: 300px;
  padding: 0 8px 0 !important;
  min-height: 38px;
  background-color: hsl(0, 0%, 100%);
  border-color: hsl(0, 0%, 80%);
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  box-shadow: none !important;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 11px !important;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.01em;
  color: #000000 !important;
  margin: 0 5px 8px;
}
.client-projects-list-filters .filter-button .filter-button-label.active {
  color: black;
  font-weight: 700;
}
.client-projects-list-filters .filter-button > span {
  margin: 0 3px 0 0;
}
.client-projects-list-filters .filter-button::after {
  margin-left: 4px;
  padding-left: 0;
}
.client-projects-list-filters .filter-button.dropdown-toggle {
  background-color: white!important;
  border-color: hsl(0, 0%, 80%) !important;
}
.client-projects-list-filters .filter-button.disabled {
  background-color: hsl(0, 0%, 95%) !important;
  border-color: hsl(0, 0%, 90%) !important;
  color: hsl(0, 0%, 50%) !important;
}
.client-projects-list-filters .placeholder-item {
  color: #90a0b7 !important;
}
.project-status-tabs button {
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  transition: all 200ms ease-in;
}
.project-status-tabs button:not(:disabled):hover,
.project-status-tabs button:not(:disabled):focus {
  background: black;
  color: white;
}
.project-list {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 0 40px;
  flex-direction: row;
}
.project-list .project-group-container {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
}
.project-list .project-section-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.project-list .card-list-header {
  align-self: stretch;
  margin: 0 auto;
}
.project-list .card-list {
  align-self: stretch;
  margin: 0 auto;
}
.project-list .project-panel {
  width: 100%;
  min-width: 350px !important;
  margin: 0;
  display: block;
}
.project-list .project-panel .project-panel-group {
  margin-bottom: 5px;
}
.project-list .project-panel .project-panel-group p:first-child {
  font-family: "Beatrice-Bold", sans-serif;
  align-self: flex-end;
}
.project-list .project-panel .project-panel-group p:last-child {
  color: var(--theme-primary, '#5f3db1');
  font-size: 18px;
  font-family: "Beatrice Semibold", sans-serif;
  margin-bottom: -3px !important;
}
.project-list .project-panel .project-panel-title {
  font-size: 18px;
  line-height: 125%;
  height: 50px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
  max-width: 100%;
  font-family: Beatrice, sans-serif;
}
.project-list .project-panel .project-panel-title .project-title {
  font-weight: 600;
  letter-spacing: 0.01em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  margin-bottom: 2px;
}
.project-list .project-panel .project-panel-title small {
  letter-spacing: 0.01em;
  font-weight: 600;
  font-size: 11px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
}
.project-list .project-panel .project-panel-timerange {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #343741;
}
.project-list .project-panel .project-panel-label {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #343741;
}
.project-list .project-panel .panel-status {
  display: flex;
  flex-direction: row;
}
.project-list .project-panel .panel-status > div {
  flex: 1;
  height: 20px;
  padding: 0;
  align-items: flex-end;
  justify-content: flex-end;
  display: flex;
}
.project-list .project-panel .panel-status > div h5 {
  margin: 0 auto;
  padding: 0;
  font-size: 11px;
  font-family: 'Beatrice', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
  text-align: center;
  line-height: 10px;
}
.project-list .project-panel .panel-info {
  border-top: 10px solid var(--theme-primary, '#5f3db1');
  background-color: white;
  box-shadow: 6px 0 18px rgba(0, 0, 0, 0.06);
  position: relative;
}
.project-list .project-panel .panel-info .project-panel-header-btns {
  margin-bottom: -20px;
  height: 40px;
  padding: 0 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
}
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link {
  padding: 5px;
  text-align: center;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  color: var(--theme-info, '#4B80E7');
  font-size: 13px;
}
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link span,
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link i {
  color: var(--theme-info, '#4B80E7');
}
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link i {
  margin-top: -1.5px;
  font-size: 12px;
}
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link:hover,
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link:focus,
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link:active {
  text-decoration: none;
}
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link:hover span,
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link:focus span,
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link:active span {
  text-decoration: underline;
}
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link:hover span,
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link:focus span,
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link:active span,
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link:hover i,
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link:focus i,
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link:active i {
  font-weight: 600;
}
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link.disabled-edit-link {
  color: #707683 !important;
  font-weight: 500;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
  text-decoration: none;
}
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link.disabled-edit-link * {
  color: #707683 !important;
}
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link.disabled-edit-link:hover,
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link.disabled-edit-link:focus,
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link.disabled-edit-link:active {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
  text-decoration: none;
  color: #707683 !important;
}
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link.disabled-edit-link:hover span,
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link.disabled-edit-link:focus span,
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link.disabled-edit-link:active span {
  text-decoration: none;
}
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link.disabled-edit-link:hover *,
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link.disabled-edit-link:focus *,
.project-list .project-panel .panel-info .project-panel-header-btns .edit-project-link.disabled-edit-link:active * {
  color: #707683 !important;
}
.project-list .project-panel .panel-info .project-panel-header-btns .project-menu {
  margin-left: 15px;
}
.project-list .project-panel .panel-info .project-panel-header-btns .project-menu span.clickable {
  padding: 3px 5px;
}
.project-list .project-panel .panel-info .project-panel-header-btns .project-menu span.clickable i.fa-ellipsis-h {
  font-size: 24px;
  color: #334D6E;
}
.project-list .project-panel .project-panel-details {
  height: 120px;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.project-list .project-panel .project-panel-details .project-panel-details-row {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.project-list .project-panel .project-panel-details .project-panel-details-row .project-panel-details-label {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #343741;
  margin: 0;
}
.project-list .project-panel .project-panel-details .project-panel-details-row .project-panel-details-value {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  text-align: right;
  letter-spacing: 0.01em;
  margin: 0;
  color: #343741;
}
.project-list .project-panel .project-panels-progress-info {
  background-color: #F5F6F8;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  height: 205px;
}
.project-list .project-panel .project-panels-progress-info .project-panels-progress-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.project-list .project-panel .project-panels-progress-info .project-panels-progress-section h4,
.project-list .project-panel .project-panels-progress-info .project-panels-progress-section h5 {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 8px;
}
.project-list .project-panel .project-panels-progress-info .project-panels-progress-section h5 {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 5px;
}
.project-list .project-panel .project-panels-progress-info .project-panels-progress-section .project-panel-section-details {
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0;
  align-self: stretch;
  position: relative;
  display: flex;
}
.project-list .project-panel .project-panels-progress-info .project-panels-progress-section .project-panel-section-details p {
  position: relative;
  margin: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #000000;
}
.project-list .project-panel .project-panels-progress-info .project-panels-progress-section .project-panel-section-details p i {
  line-height: 18px;
  margin-right: 8px;
  color: #90a0b7;
}
.project-list .project-panel .project-panels-progress-info .project-panels-progress-section .project-panel-section-details p:nth-child(1) {
  margin-right: 15px;
}
.project-panel-steps-text {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 8px;
}
.project-panel-steps-text b {
  margin-left: 3px;
}
.project-panel-steps-text i {
  margin-left: 4px;
  line-height: 18px;
  font-size: 13px;
}
.project-panel-steps-text.complete {
  color: #90A0B7;
}
.project-panel-steps-text.complete b {
  color: #90A0B7;
}
.project-panel-steps-btn {
  display: flex;
  align-self: stretch;
  margin-bottom: 8px;
  height: 42px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 720px) {
  .project-list {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 0 5px 0;
    white-space: normal;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .project-list .project-group {
    display: block;
    width: 100% !important;
    margin: 0 auto;
    padding: 10px 0 0;
    flex-direction: column;
    align-items: stretch;
  }
  .project-list .project-group:last-child {
    padding-right: 0;
  }
  .project-list .project-group .project-panel {
    margin: 0 auto 30px auto;
    max-width: 360px;
    width: 100% !important;
    display: block;
    float: none;
  }
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 14px;
  height: 14px;
}
.lds-ring.lg {
  width: 35px;
  height: 35px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  margin: 0;
  border: 1.5px solid var(--theme-primary, '#5f3db1');
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--theme-primary, '#5f3db1') transparent transparent transparent;
}
.lds-ring div.success {
  border: 1.5px solid var(--theme-success, '#5ae399');
}
.lds-ring.lg {
  width: 35px;
  height: 35px;
}
.lds-ring.lg div {
  width: 35px;
  height: 35px;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.form-loading {
  position: absolute;
  right: 10px;
  bottom: 6px;
  font-size: 8px;
  color: var(--theme-primary, '#5f3db1');
  transition: opacity 2s ease-in;
  letter-spacing: 0.1em;
  display: inline-block;
  opacity: 0.85;
}
.form-loading span {
  margin-right: 1px;
}
.service-form > div {
  margin-top: 10px;
  padding: 20px 0;
}
.service-form .form-container > div,
.service-form .form-container form {
  width: 100%;
  margin: 0;
}
.service-form .form-container > div .input-group,
.service-form .form-container form .input-group {
  padding: 0;
}
.service-overview-form .form-footer {
  display: none;
}
.service-overview-form .form-container > div,
.service-overview-form .form-container form {
  margin: 0;
  width: 100%;
}
.service-overview-form .form-container > div ::-moz-placeholder, .service-overview-form .form-container form ::-moz-placeholder {
  color: #707683 !important;
}
.service-overview-form .form-container > div ::placeholder,
.service-overview-form .form-container form ::placeholder {
  color: #707683 !important;
}
.service-overview-form .form-container > div .field-section,
.service-overview-form .form-container form .field-section {
  padding: 0;
  display: flex;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: stretch;
  justify-content: flex-start !important;
}
.service-overview-form .form-container > div .field-element,
.service-overview-form .form-container form .field-element,
.service-overview-form .form-container > div .field,
.service-overview-form .form-container form .field {
  width: unset !important;
  margin-top: 15px !important;
  margin-bottom: 4px !important;
}
.service-overview-form .form-container > div .input-group,
.service-overview-form .form-container form .input-group {
  padding: 0;
}
.service-overview-form .form-container > div .service-back,
.service-overview-form .form-container form .service-back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.service-overview-form .form-container > div .service-back button,
.service-overview-form .form-container form .service-back button {
  padding: 5px 15px 5px 0;
  height: 100%;
}
.service-overview-form .form-container > div .service-back button i,
.service-overview-form .form-container form .service-back button i {
  margin-top: 5px;
  font-size: 17px;
}
.service-overview-form .form-container > div .select-field,
.service-overview-form .form-container form .select-field {
  position: relative;
  margin: 0 12px;
  display: flex;
  align-items: stretch;
  min-width: 200px;
  flex: 1;
}
.service-overview-form .form-container > div .select-field select,
.service-overview-form .form-container form .select-field select {
  width: 100%;
  height: unset;
  padding: 12px 15px;
  border: none;
  background-color: #f5f6f8;
  color: #707683;
}
.service-overview-form .form-container > div .select-field:nth-child(3),
.service-overview-form .form-container form .select-field:nth-child(3) {
  flex-basis: 40%;
  flex-grow: 1;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.service-overview-form .form-container > div .select-field:nth-child(3) select,
.service-overview-form .form-container form .select-field:nth-child(3) select {
  min-width: unset;
}
.service-overview-form .form-container > div .service-search,
.service-overview-form .form-container form .service-search {
  align-self: center;
  flex-direction: row;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  flex-grow: 1;
}
.service-overview-form .form-container > div .service-search .form-search,
.service-overview-form .form-container form .service-search .form-search {
  align-self: unset;
  flex: 1;
  align-items: flex-end;
}
.service-overview-form .form-container > div .service-search .form-search input,
.service-overview-form .form-container form .service-search .form-search input {
  height: 100%;
}
.service-overview-form .form-container > div .service-search .react-autosuggest__container,
.service-overview-form .form-container form .service-search .react-autosuggest__container {
  align-self: flex-end;
}
.service-overview-form .form-container > div .service-search .field,
.service-overview-form .form-container form .service-search .field {
  margin-top: 0 !important;
  padding-left: 5px;
}
.service-overview-form .form-container > div .service-search .field .input-group,
.service-overview-form .form-container form .service-search .field .input-group {
  background-color: transparent;
}
.service-overview-form .form-container > div .service-search .field .input-group > span,
.service-overview-form .form-container form .service-search .field .input-group > span,
.service-overview-form .form-container > div .service-search .field .input-group > input,
.service-overview-form .form-container form .service-search .field .input-group > input {
  padding-bottom: 5px;
}
.panel-subtitle {
  margin: 0;
  color: var(--theme-primary, '#5f3db1');
  text-transform: uppercase;
  font-size: 10px !important;
  letter-spacing: 0.29em;
  padding: 0 !important;
  font-weight: 600;
  margin-bottom: 15px;
}
.service-form .form-container {
  padding-top: 0;
}
.service-form .form-container .form-footer {
  margin: 0;
}
.service-form > div form .field {
  margin-bottom: 30px;
  border-bottom: 1px solid #000000;
}
.service-form > div form .field .input-group {
  background-color: white;
}
.service-form > div form .field input,
.service-form > div form .field .input-group-prepend {
  border: none !important;
}
.service-form > div form .field .input-group-prepend {
  padding-left: 0;
  color: #707683;
}
.service-form > div form .field input {
  font-size: 12px;
}
.create-project-form-field-question {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0px;
  margin-top: 25px;
}
.create-project-scope-question-step .form-footer-btns {
  text-align: center;
  margin-bottom: 50px;
}
.create-project-scope-question-step .form-footer-btns .btn {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  width: 160px;
}
.create-project-scope-question-step .step-title {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.create-project-scope-question-step .counter {
  color: #109CF1;
  display: block;
}
.review-tab-container {
  background: white;
  margin-left: 60px;
  padding-left: 53px;
  align-items: center;
  justify-content: flex-start;
}
@media only screen and (max-width: 768px) {
  .step-title {
    font-size: 20px;
  }
}
.question-choices-container {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.question-choices-container .question-choice {
  display: inline-block;
  vertical-align: top;
  width: 300px;
}
.question-choices-container .question-choice-panel {
  box-shadow: 6px 0px 18px rgba(0, 0, 0, 0.06);
  background: white;
  text-align: left;
}
.question-choices-container .question-choice-panel .question-choice-label {
  color: white;
  background: #323C47;
  text-transform: uppercase;
}
.question-choices-container .question-choice-panel .question-choice-label p {
  text-align: center;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
}
.question-choices-container .question-choice-panel .question-choice-needs p {
  font-size: 16px;
}
.question-choices-container .question-choice-panel .question-choice-items {
  background: #F5F6F8;
}
.question-choices-container .question-choice-panel .question-choice-items p {
  font-size: 14px;
  color: #334D6E;
}
.question-choices-container .question-choice-panel .question-choice-items li {
  color: #323C47;
}
.question-choices-container .question-choice-panel .question-choice-items .btn {
  border: 1px solid var(--theme-secondary, '#913ef0');
  width: 100%;
  color: var(--theme-secondary, '#913ef0');
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.question-choices-container .question-choice-panel .question-choice-items .btn:hover {
  background: var(--theme-secondary, '#913ef0');
  border: 1px solid var(--theme-secondary, '#913ef0');
  color: white;
}
.question-choices-container .question-choice-panel .question-choice-items .btn.active,
.question-choices-container .question-choice-panel .question-choice-items .btn.active:hover {
  background: #2ED47A;
  border: 1px solid #2ED47A;
  color: white;
}
@media only screen and (max-width: 1010px) {
  .question-choice {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    min-width: 300px;
    max-width: 400px;
    padding: 15px;
    padding-top: 0;
    width: auto !important;
  }
}
.create-project-review-step-modal {
  margin: 0;
  max-width: 100%;
  height: 100%;
}
.create-project-review-step-modal .modal-content {
  background: var(--theme-light, '#E5EBF1') !important;
  height: 100%;
  overflow-y: scroll;
  -o-border-image: none;
     border-image: none;
  border-width: 0 !important;
}
.create-project-review-step-modal .modal-content .step-title {
  margin-top: 0px;
}
.create-project-review-step-modal .modal-content .wripple-form {
  max-width: 630px !important;
  padding: 15px;
  background: linear-gradient(97.54deg, #2ED47A 1.33%, #109CF1 100%);
  margin: 0 auto;
}
.create-project-review-step-modal .modal-content .modal-body {
  padding: 0;
  padding-bottom: 50px;
}
.create-project-review-step-modal .modal-content .modal-body .form-container {
  width: 100%;
}
.create-project-review-step .bg-white {
  max-width: 1000px !important;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.create-project-review-step .table {
  width: 1000px !important;
}
.create-project-review-step .table thead {
  background: #323C47;
}
.create-project-review-step .table th {
  color: var(--theme-success, '#5ae399');
  text-transform: uppercase;
}
.create-project-review-step .table tr,
.create-project-review-step .table td {
  border: none;
}
.create-project-review-step .table td,
.create-project-review-step .table th {
  text-align: center;
  vertical-align: middle;
}
.create-project-review-step .table td {
  color: var(--theme-secondary, '#913ef0');
  font-size: 18px;
  font-weight: 500;
}
.create-project-review-step .table td.label-cell {
  text-align: left;
  width: 35%;
  color: #000000;
  font-size: 1rem;
}
.create-project-review-step .table td.actions-cell {
  text-align: right;
}
.create-project-review-step .table td.label-cell,
.create-project-review-step .table td.padding-cell {
  background: white;
}
.create-project-review-step .table tr.padding-row {
  background: white;
  height: 20px;
}
.create-project-review-step .table .btn.btn-link {
  color: #109CF1;
  text-align: right;
  font-size: 14px;
}
.create-project-review-step .estimates-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.create-project-review-step .estimates-container p {
  font-weight: 500;
  font-size: 20px;
}
.create-project-review-step .estimates-container .estimate-values p {
  color: var(--theme-secondary, '#913ef0');
  text-align: right;
}
.create-project-review-step > hr {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}
.project-modify-teams-dropdown > .dropdown-menu.show {
  left: auto !important;
  right: 0;
}
.project-sort-teams-dropdown {
  margin-left: 25px;
}
.project-sort-teams-dropdown > .dropdown-menu.show {
  left: auto !important;
  right: 0;
}
.project-modify-teams-dropdown > .dropdown-menu {
  background-color: white;
  min-width: 230px;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  /* Hide the browser's default checkbox */
}
.project-modify-teams-dropdown > .dropdown-menu li.project-modify-teams-dropdown-title {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  margin: 18px 0 5px;
}
.project-modify-teams-dropdown > .dropdown-menu li.project-modify-teams-dropdown-subtitle {
  font-size: 12px;
  color: #000000;
  margin-bottom: 8px;
  text-decoration: underline;
  font-family: Poppins, sans-serif;
}
.project-modify-teams-dropdown > .dropdown-menu .dropdown-divider {
  margin-top: 1.2rem;
  margin-bottom: 0.3rem;
}
.project-modify-teams-dropdown > .dropdown-menu button {
  font-size: 12px;
}
.project-modify-teams-dropdown > .dropdown-menu li.project-modify-teams-dropdown-item {
  color: #000000;
  font-weight: 500;
  display: block;
  position: relative;
  padding-left: 25px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  text-align: left;
}
.project-modify-teams-dropdown > .dropdown-menu li.project-modify-teams-dropdown-item label {
  margin-bottom: 0;
  cursor: pointer;
  white-space: nowrap;
}
.project-modify-teams-dropdown > .dropdown-menu li.project-modify-teams-dropdown-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.project-modify-teams-dropdown > .dropdown-menu .checkmark {
  color: white;
  position: absolute;
  top: 5px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 2px;
}
.project-modify-teams-dropdown > .dropdown-menu li.project-modify-teams-dropdown-item input:checked ~ .checkmark {
  background-color: #2ED47A;
  border: 1px solid #2ED47A;
}
.project-modify-teams-dropdown > .dropdown-menu .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.project-modify-teams-dropdown > .dropdown-menu li.project-modify-teams-dropdown-item input:checked ~ .checkmark:after {
  display: block;
}
.project-modify-teams-dropdown > .dropdown-menu li.project-modify-teams-dropdown-item .checkmark:after {
  left: 4px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.project-sort-teams-dropdown > .dropdown-menu {
  background-color: white;
  text-align: center;
}
.project-sort-teams-dropdown > .dropdown-menu .dropdown-item {
  color: #000000;
  background-color: transparent;
  margin-bottom: 5px;
}
.project-sort-teams-dropdown > .dropdown-menu .dropdown-item span {
  border-bottom: 1px solid transparent;
}
.project-sort-teams-dropdown > .dropdown-menu .dropdown-item.active {
  color: var(--theme-primary, '#5f3db1');
  pointer-events: none;
}
.project-sort-teams-dropdown > .dropdown-menu .dropdown-item.active span {
  border-bottom: 1px solid var(--theme-primary, '#5f3db1');
}
.project-sort-teams-dropdown > .dropdown-menu .dropdown-item:hover {
  color: var(--theme-primary, '#5f3db1');
}
.project-sort-teams-dropdown > .dropdown-menu .dropdown-item:hover span {
  border-bottom: 1px solid var(--theme-primary, '#5f3db1');
}
.teams-list-controls-container {
  justify-content: flex-end;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0px;
}
.positionFilterToggleButton {
  cursor: pointer;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.01em;
  color: var(--theme-secondary, '#913ef0');
}
.positionFilterToggleButton span {
  font-weight: 600;
}
.positionFilterToggleButton .text-black,
.positionFilterToggleButton:after {
  color: #000000;
}
.position-matches-title .btn {
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .position-matches-row .table-pagination .table-pagination-info {
    display: block;
  }
  .position-matches-row .table-pagination .table-pagination-info .pagination-children {
    margin: 0;
  }
  .position-matches-row .table-pagination .table-pagination-info .pagination-children .project-sort-teams-dropdown {
    margin: 0;
  }
}
.project-bidding-types-filter-container {
  margin-left: auto;
  justify-content: flex-end;
  display: flex;
}
.project-bidding-types-filter-container .interested-toggle {
  align-self: stretch;
  display: flex;
  align-items: center;
  margin: 0 10px;
}
.project-bidding-types-filter-container .interested-toggle label {
  font-size: 12px;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.project-bidding-types-filter-container .interested-toggle label span {
  margin-right: 7px;
}
.project-bidding-types-filter-container .interested-toggle i {
  line-height: 20px;
  text-align: center;
  margin-left: 6px;
  font-size: 9px;
  color: white;
}
.project-bidding-types-filter-container .candidate-interested-switch {
  font-family: Beatrice-Bold, sans-serif;
  color: white;
  margin: 0;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 10px;
}
.project-bidding-control-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  padding-bottom: 5px;
}
.project-bidding-control-menu .project-bidding-list-controls-options,
.project-bidding-control-menu .project-bidding-filter-controls-options {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.project-bidding-control-menu .project-bidding-list-controls-options {
  justify-content: flex-start;
  margin: 0 -10px 10px;
}
.project-bidding-control-menu .project-bidding-filter-controls-options {
  flex: 1;
  justify-content: flex-end;
  margin: 0 -10px;
}
.project-bidding-control-menu .project-bidding-filter-controls-options .dropdown {
  display: block;
}
.project-bidding-control-menu .project-bidding-filter-controls-options > div {
  margin: 0 10px 10px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
@media only screen and (max-width: 1128px) {
  .project-bidding-control-menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding-bottom: 0;
  }
  .project-bidding-control-menu .project-bidding-filter-controls-options {
    justify-content: space-evenly;
    margin-bottom: 35px;
  }
  .project-bidding-control-menu .project-bidding-filter-controls-options > div {
    align-items: center;
    justify-content: center;
  }
  .project-bidding-control-menu .project-bidding-list-controls-options {
    justify-content: center;
    margin-bottom: 25px;
  }
}
.project-bidding-step-header {
  flex: 1;
  margin: 2rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.project-bidding-step-header h3 {
  font-family: Beatrice, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 125%;
  margin-bottom: 0;
  margin-top: 0;
  font-style: italic;
}
.project-bidding-step-header h3 small {
  text-transform: uppercase;
  padding-right: 20px;
}
.project-bidding-step-header p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.01em;
}
hr.project-bidding-step-divider {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.bidding-proposal-title {
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
.bidding-proposal-title h3 {
  font-weight: 300;
  font-size: 28px;
  line-height: 125%;
  margin-bottom: 0;
}
.bidding-proposal-title p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.01em;
}
.bidding-proposal-subtitle {
  flex: 1;
}
.bidding-proposal-subtitle h5 {
  font-weight: 300;
  font-size: 18px;
  line-height: 125%;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
}
.bidding-proposal-subtitle h5 .tooltip-info span i {
  font-size: 15px;
  color: #000000;
  margin-left: 8px;
}
.position-matches-title {
  margin: 0;
  align-self: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
.position-matches-title .btn-link {
  margin: 0 15px;
  font-size: 14px;
}
.individual-role-list-filter {
  display: flex;
  flex-direction: row;
}
.individual-role-list-filter .btn-tab {
  font-size: 12px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  transition: all 200ms ease-in;
}
.individual-role-list-filter .btn-tab:disabled {
  border-color: #707683;
  color: #707683;
}
.individual-role-list-filter .btn-tab:not(:disabled):hover,
.individual-role-list-filter .btn-tab:not(:disabled):focus {
  background-color: black;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
  color: white;
}
.individual-role-list-filter .btn-tab:not(:disabled).active {
  background: #913ef0;
  border-color: #913ef0;
  color: white;
  box-shadow: none;
}
#project-bidding-teams-step-controls-container {
  flex-direction: row;
  align-items: center;
}
@media only screen and (max-width: 900px) {
  #project-bidding-teams-step-controls-container {
    flex-direction: column;
  }
  .project-bidding-types-filter-container {
    text-align: center;
  }
  .teams-list-controls-container {
    justify-content: space-between;
    padding: 0 2px;
  }
}
@media only screen and (max-width: 768px) {
  .teams-list-controls-container {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .project-modify-teams-dropdown > .dropdown-menu.show {
    left: 0 !important;
  }
}
.service-info-modal-content {
  padding: 40px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-info-modal-content .btn-primary {
  width: 190px;
}
@media only screen and (max-width: 768px) {
  .service-info-modal-content {
    padding: 30px;
  }
}
.proposed-team-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.proposed-team-panel .proposed-team-panel-content {
  display: flex;
  flex-flow: row wrap;
  background: transparent;
}
.proposed-team-panel .proposed-team-panel-content .team-info-section {
  background-color: white;
  box-shadow: none !important;
}
.proposed-team-panel .proposed-team-panel-content .team-cover-letter-section hr {
  display: none !important;
}
.proposed-team-panel .proposed-team-panel-content .cover-letter-container,
.proposed-team-panel .proposed-team-panel-content .mobile-cover-letter-container {
  height: 288px;
  overflow: hidden;
}
.proposed-team-panel .proposed-team-panel-content .mobile-cover-letter-container.no-cover-letter {
  text-align: center;
  color: #90a0b7;
  font-weight: 500;
}
.proposed-team-panel .proposed-team-panel-content .cover-letter-container.no-cover-letter {
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #90a0b7;
  font-weight: 500;
}
.proposed-team-panel .proposed-team-panel-content .summary-title-container p {
  margin-bottom: 35px;
}
.proposed-team-panel .proposed-team-panel-content .summary-title-container .btn {
  display: none !important;
}
.proposed-team-panel .proposed-team-panel-content .summary-stats-container hr {
  display: none !important;
}
@media only screen and (max-width: 1080px) {
  .team-cover-letter-section,
  .team-summary-section {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
@media only screen and (max-width: 991px) {
  .proposed-team-panel .cover-letter-container.no-cover-letter {
    display: none !important;
  }
}
@media only screen and (max-width: 900px) {
  .proposed-team-panel .proposed-team-panel-content {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    border: none;
  }
  .proposed-team-panel .summary-title-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .proposed-team-panel .summary-title-container p {
    margin-bottom: 0;
  }
  .proposed-team-panel .summary-title-container .btn {
    display: block !important;
  }
  .proposed-team-panel .team-info-section {
    box-shadow: none;
  }
  .proposed-team-panel .team-cover-letter-section hr {
    display: block !important;
  }
  .proposed-team-panel .cover-letter-container,
  .proposed-team-panel .mobile-cover-letter-container {
    height: auto;
  }
  .proposed-team-panel .summary-stats-container {
    height: 0px;
    overflow: hidden;
  }
  .proposed-team-panel .summary-stats-container hr {
    display: block !important;
  }
  .proposed-team-panel .summary-stats-container.open {
    height: auto;
  }
  .proposed-team-panel .proposal-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .proposed-team-panel .proposal-actions .btn-primary {
    width: 190px;
  }
}
.bidding-contract-step .download-sow-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-left: 15px;
  font-size: 13px;
}
.bidding-contract-step .download-sow-btn i {
  font-size: 23px;
}
.bidding-contract-step .contract-actions .btn-link-primary {
  font-size: 14px;
  margin-right: 20px!important;
}
.project-sow-total-filler {
  flex: 3;
}
@media only screen and (max-width: 768px) {
  .project-sow-deliverable-details-panel {
    flex-direction: column;
  }
  .project-sow-deliverable-details-panel div {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .project-sow-total-filler {
    flex: 1.5;
  }
}
.user-project-assignments-modal {
  max-width: 400px;
}
.user-project-assignments-form .wripple-form > div {
  padding-top: 0;
}
.user-project-assignments-form .wripple-form > div form .field-section {
  align-self: stretch;
}
.user-project-assignments-form .form-group,
.user-project-assignments-form .field {
  margin-bottom: 0 !important;
}
.user-project-assignments-form .col-form-label {
  display: none !important;
}
.user-project-assignments-form .field-element {
  text-align: center;
}
.user-project-assignments-form .field-element p {
  margin-bottom: 5px;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 500;
}
.user-project-assignments-form .field {
  width: 180px !important;
}
.wripple-estimate {
  height: 100px;
  background: #000000;
  color: white;
  font-size: 11px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  display: flex;
  min-width: 330px;
}
.wripple-estimate.navbar-estimate .est-header {
  border: none !important;
}
.wripple-estimate .pricing {
  flex: 2;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px 0;
}
.wripple-estimate .pricing .est-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  padding-bottom: 6px;
  border-bottom: 1px solid #343741;
}
.wripple-estimate .pricing .est-header img {
  width: 13px;
}
.wripple-estimate .pricing .est-header p {
  font-weight: 500;
  font-family: SimplonMono, sans-serif;
  font-size: 9px;
  line-height: 12px;
  margin: 0 6px;
  /* identical to box height, or 133% */
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
}
.wripple-estimate .pricing .est-header i {
  color: #C2CFE0;
  font-size: 11px;
  line-height: 13px;
}
.wripple-estimate .pricing .est-range {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
}
.wripple-estimate .pricing .est-range .range-row {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
}
.wripple-estimate .pricing .est-range .range-row h4 {
  color: white;
  font-size: 9px;
  line-height: 13px;
  /* identical to box height */
  text-align: center;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
}
.wripple-estimate .pricing .est-range .range-row .incomplete-scope {
  font-size: 9px;
  text-decoration: none;
  white-space: normal;
  color: white;
  line-height: 16px;
  text-align: center;
  padding: 2px 0 0 0;
  border-top: 1px solid var(--theme-primary, '#5f3db1');
  margin: 0 20px !important;
}
.wripple-estimate .pricing .est-range .range-row .range-price {
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  display: flex;
}
.wripple-estimate .pricing .est-range .range-row .range-price h2,
.wripple-estimate .pricing .est-range .range-row .range-price p {
  color: white;
  margin: 0;
  font-size: 24px;
  margin-top: 3px;
  /* identical to box height, or 45px */
  letter-spacing: 0.01em;
}
.wripple-estimate .pricing .est-range .range-row .range-price h2 sup,
.wripple-estimate .pricing .est-range .range-row .range-price p sup {
  margin-right: 3px;
  font-size: 11px;
  top: -8px;
}
.wripple-estimate .pricing .est-range .range-row .range-price a {
  font-family: Beatrice;
  font-style: normal;
  font-weight: 500;
  margin-top: 4px;
  font-size: 10px;
  line-height: 150%;
  margin-left: 6px;
  text-align: center;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: #109CF1;
}
.wripple-estimate .pricing .est-range .range-row .range-price a i {
  display: none;
}
.wripple-estimate .pricing .est-range .range-row .range-price a:hover span,
.wripple-estimate .pricing .est-range .range-row .range-price a:focus span {
  text-decoration: underline;
  font-weight: 500;
}
.wripple-estimate .pricing .est-range .range-row .range-price .base-price {
  font-size: 9px;
  margin: 0 3px;
  padding: 0 5px;
  letter-spacing: 0.16em;
}
.wripple-estimate .pricing .est-range .range-row .range-price-empty {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px;
}
.wripple-estimate .pricing .est-range .range-row .range-price-empty .range-price-placeholder {
  font-size: 10px;
  margin: 0 3px;
  line-height: 8px;
  padding: 0;
}
.wripple-estimate .pricing .est-range .est-divider {
  margin: 0 20px;
  width: 4px;
  background: var(--theme-primary, '#5f3db1');
  align-self: stretch;
}
.wripple-estimate.wripple-estimate-base-only .pricing .est-header img {
  display: none;
}
.wripple-estimate .est-range .range-row .edit-price a {
  display: none;
}
.wripple-estimate .budget {
  flex: 1;
  border-left: 1px solid #434A5C;
  flex-direction: column;
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
}
.wripple-estimate .budget h4 {
  font-size: 9px;
  line-height: 13px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
  color: white;
}
.wripple-estimate i.fa-info-circle {
  font-size: 13px;
  line-height: 13px;
}
.hide-desktop {
  display: none;
}
.project-nav-estimate .wripple-estimate.wripple-estimate-base-only .pricing {
  padding: 10px;
  background: var(--theme-success, '#5ae399');
}
.project-nav-estimate .wripple-estimate.wripple-estimate-base-only .pricing .est-header p,
.project-nav-estimate .wripple-estimate.wripple-estimate-base-only .pricing .est-header i,
.project-nav-estimate .wripple-estimate.wripple-estimate-base-only .pricing .est-range .range-row .range-price h2 {
  color: black;
}
.project-nav-estimate .wripple-estimate.wripple-estimate-base-only .pricing .est-range .range-row .edit-price a {
  font-size: 11px;
  text-decoration: underline;
  display: block;
  color: black;
}
.project-nav-estimate .wripple-estimate .pricing .est-range .range-row .range-price a {
  display: inline;
  font-size: 10px;
  margin-top: -10px;
  margin-left: 5px;
  text-decoration: underline;
  color: #109cf1;
}
.project-nav-estimate.hide-desktop {
  background-color: white;
  padding: 0.5rem 1rem;
}
.project-nav-estimate.hide-desktop * {
  color: black!important;
}
.project-nav {
  align-items: stretch;
  justify-content: center;
  background-color: #000000;
  flex-direction: row;
  display: flex;
  padding: 0;
}
.project-nav .project-nav-estimate {
  flex: 1;
  max-width: 33%;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-end;
}
.project-nav .project-nav-estimate .wripple-estimate {
  align-items: stretch;
  height: auto;
  min-width: 300px;
}
.project-nav .project-nav-type {
  justify-content: center;
  align-items: stretch;
  display: flex;
  max-width: 33%;
  flex: 1;
  flex-direction: column;
}
.project-nav .project-nav-type div {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0 15px;
}
.project-nav .project-nav-type div .project-type-label {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 9px;
  line-height: 13px;
  margin-bottom: 5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.project-nav .project-nav-type div .project-type-name {
  font-size: 15px;
  line-height: 150%;
  margin: 0;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
.project-nav .project-nav-type div:nth-child(2) {
  margin-top: 5px;
}
.project-nav-info {
  flex: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.project-nav-info > div {
  min-height: 40px;
}
.project-nav-info h2 {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-bottom: 3px;
  z-index: 50;
  justify-content: center;
}
.project-nav-info h2 span {
  margin: 0 5px;
}
.project-nav-info h2 a {
  margin: 0 5px;
  white-space: nowrap;
  color: #109CF1;
  font-size: 12px;
}
.project-nav-back {
  max-width: 33%;
  flex: 1;
  display: flex;
  margin: 0;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
.project-nav-back a {
  color: white;
  padding: 0 25px;
}
.position-progress-container {
  flex-direction: column;
  align-self: stretch;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.position-progress-container.position-progress-footer {
  border-top: 2px solid var(--theme-light, '#E5EBF1');
}
.position-progress-container .position-progress-nav {
  flex-direction: row;
  display: flex;
  justify-content: center;
  height: 64px;
  align-items: center;
  border-bottom: 2px solid var(--theme-light, '#E5EBF1');
}
.position-progress-container .position-progress-nav .nav-button {
  width: 160px;
}
.position-progress-container .position-progress-nav .nav-button button {
  width: 100%;
  height: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  display: flex;
  background-color: transparent;
  box-shadow: none;
  color: var(--theme-primary, '#5f3db1');
}
.position-progress-container .position-progress-nav .nav-button button span {
  font-weight: 400 !important;
}
.position-progress-container .position-progress-nav .nav-button button:hover span,
.position-progress-container .position-progress-nav .nav-button button:focus span {
  font-weight: 500 !important;
}
.position-progress-container .position-progress-nav .nav-button button:hover i,
.position-progress-container .position-progress-nav .nav-button button:focus i {
  font-weight: 900;
}
.position-progress-container .position-progress-nav .nav-button button:disabled {
  box-shadow: none !important;
  opacity: 0.5;
}
.position-progress-container .position-progress-nav .nav-button button:disabled span {
  font-weight: 400 !important;
}
.position-progress-container .position-progress-nav .nav-button button:disabled i {
  font-weight: 500;
  color: #C2CFE0;
}
.field {
  position: relative;
}
.field .invalid-feedback {
  position: absolute;
  left: 0;
  right: 0;
}
.position-form {
  margin-top: 15px;
  min-height: auto !important;
}
.position-form .form-footer {
  display: none;
}
.position-form .wripple-checkbox-field {
  align-self: center !important;
}
.position-form .estimated-total-hours {
  line-height: 20px;
  padding: 0.3rem 0.5rem;
  background-color: #d3d8dd;
  color: black;
  font-size: 13px;
  font-family: Beatrice, sans-serif;
  margin: 0;
  display: inline-block;
  flex-direction: row;
  align-items: center;
}
.position-form .estimated-total-hours b {
  margin-left: 0.3rem;
}
.position-form .skill-position-text-field {
  flex-direction: column;
  align-items: flex-start;
  border-bottom: none;
}
.position-form .panel-subtitle {
  font-weight: 500;
  font-size: 11px !important;
  margin-bottom: 0;
  line-height: 15px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--theme-primary, '#5f3db1');
}
.position-form .form-container {
  padding: 0;
}
.position-form .form-container form {
  width: 100%;
  align-items: center;
}
.position-form .form-container .section-input-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-around;
  align-self: stretch;
}
.position-form .form-container .section-input-group .form-group .input-group {
  margin-top: 15px;
}
.position-form .form-container .section-input-group .form-group .input-group .input-group-append,
.position-form .form-container .section-input-group .form-group .input-group .input-group-prepend {
  text-decoration: none !important;
  border-bottom: none !important;
  color: #808080 !important;
  font-size: 17px;
}
.position-form .form-container .section-input-group .form-group .input-group input.form-control {
  font-size: 17px;
  flex: unset !important;
  min-width: 65px !important;
  text-align: center !important;
  width: 1%;
}
.position-form .form-container .field-section-group {
  margin-top: 10px;
  flex-direction: column;
  position: relative;
  display: flex;
}
.position-form .form-container .field-section-group .field-section {
  flex-direction: row;
  justify-content: flex-end;
  align-self: stretch;
  display: flex;
  align-items: stretch;
}
.position-form .form-container .field-element .col-form-label,
.position-form .form-container .experience-radio-group .col-form-label {
  margin-bottom: 10px;
  color: black !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
  font-size: inherit!important;
  line-height: 1.6 !important;
}
.position-form .form-container .field-element .col-form-label.no-underline,
.position-form .form-container .experience-radio-group .col-form-label.no-underline {
  text-decoration: none !important;
}
.position-form .form-container .field-element .col-form-label .text-normal,
.position-form .form-container .experience-radio-group .col-form-label .text-normal {
  font-weight: normal !important;
}
.position-form .form-container .field-section {
  align-items: center;
}
.position-form .form-container .field-section .field,
.position-form .form-container .field-section .field-element {
  padding: 0 15px;
  margin-top: 10px !important;
}
.position-form .form-container .field-section .field textarea,
.position-form .form-container .field-section .field-element textarea {
  border: 0.5px solid rgba(50, 60, 71, 0.5) !important;
}
.position-form .form-container .field-section .field .form-group,
.position-form .form-container .field-section .field-element .form-group {
  position: relative;
}
.position-form .form-container .field-section .field .date-container label.form-control-label,
.position-form .form-container .field-section .field-element .date-container label.form-control-label {
  margin-bottom: 0 !important;
}
.position-form .form-container .field-section .field.position-text-field,
.position-form .form-container .field-section .field-element.position-text-field {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  border-bottom: none;
  margin-bottom: 0 !important;
  padding: 0;
  border-bottom: 1px solid #D3D8DD;
}
.position-form .form-container .field-section .field.position-text-field .form-group,
.position-form .form-container .field-section .field-element.position-text-field .form-group {
  margin: 0 !important;
}
.position-form .form-container .field-section .field.position-text-field .form-group input,
.position-form .form-container .field-section .field-element.position-text-field .form-group input {
  font-family: Simplon Mono, sans-serif;
  font-size: 28px !important;
  font-weight: 500 !important;
  white-space: pre;
  width: auto !important;
  border-bottom: none;
  pointer-events: none;
  flex-basis: auto !important;
}
.position-form .form-container .field-section .field.position-text-field .form-group .auto-size-input input,
.position-form .form-container .field-section .field-element.position-text-field .form-group .auto-size-input input {
  color: black;
  width: 100% !important;
}
.position-form .form-container .field-section .field.position-text-field .form-group .auto-size-input span,
.position-form .form-container .field-section .field-element.position-text-field .form-group .auto-size-input span {
  font-size: 28px !important;
  font-weight: 500 !important;
}
.position-form .form-container .field-section .field.position-text-field.is-editing .form-group,
.position-form .form-container .field-section .field-element.position-text-field.is-editing .form-group {
  width: 100% !important;
}
.position-form .form-container .field-section .field.position-text-field.is-editing .form-group input,
.position-form .form-container .field-section .field-element.position-text-field.is-editing .form-group input {
  width: 100% !important;
  pointer-events: auto;
  border-bottom-color: #D3D8DD;
  border-bottom-width: 1px;
}
.position-form .form-container .field-section .field.position-text-field.skill-position-text-field,
.position-form .form-container .field-section .field-element.position-text-field.skill-position-text-field {
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  border-bottom: none;
  flex-direction: column;
  align-items: flex-start;
}
.position-form .form-container .field-section .field.position-text-field.skill-position-text-field label,
.position-form .form-container .field-section .field-element.position-text-field.skill-position-text-field label {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500 !important;
  font-size: 18px !important;
  line-height: 120% !important;
  letter-spacing: 0.01em;
  color: #000000 !important;
  white-space: nowrap !important;
}
@media only screen and (max-width: 768px) {
  .position-form .form-container .field-section .field.position-text-field.skill-position-text-field label,
  .position-form .form-container .field-section .field-element.position-text-field.skill-position-text-field label {
    font-size: 14px !important;
    white-space: normal !important;
  }
}
.position-form .form-container .field-section .field.position-text-field.skill-position-text-field .form-group,
.position-form .form-container .field-section .field-element.position-text-field.skill-position-text-field .form-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 10px;
  border-bottom: none;
}
.position-form .form-container .field-section .field.position-text-field.skill-position-text-field .input-group,
.position-form .form-container .field-section .field-element.position-text-field.skill-position-text-field .input-group {
  background-color: #F5F6F8 !important;
  height: 43px !important;
  padding: 0 10px !important;
  align-items: stretch;
  flex-direction: revert;
}
.position-form .form-container .field-section .field.position-text-field.skill-position-text-field .input-group .input-group-prepend,
.position-form .form-container .field-section .field-element.position-text-field.skill-position-text-field .input-group .input-group-prepend {
  border: none;
}
.position-form .form-container .field-section .field.position-text-field.skill-position-text-field input,
.position-form .form-container .field-section .field-element.position-text-field.skill-position-text-field input {
  border: none !important;
  font-size: 13px !important;
  line-height: 160% !important;
  letter-spacing: 0.01em !important;
  transition: none !important;
  pointer-events: auto;
  height: inherit !important;
}
.position-form .form-container .field-section .field.position-text-field.skill-position-text-field input::-moz-placeholder, .position-form .form-container .field-section .field-element.position-text-field.skill-position-text-field input::-moz-placeholder {
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #707683 !important;
}
.position-form .form-container .field-section .field.position-text-field.skill-position-text-field input::placeholder,
.position-form .form-container .field-section .field-element.position-text-field.skill-position-text-field input::placeholder {
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #707683 !important;
}
.position-form .form-container .field-section .field.position-text-field.skill-position-text-field .auto-size-container,
.position-form .form-container .field-section .field-element.position-text-field.skill-position-text-field .auto-size-container {
  margin: 0 5px;
}
.position-form .form-container .field-section .field.position-text-field.skill-position-text-field .auto-size-input input,
.position-form .form-container .field-section .field-element.position-text-field.skill-position-text-field .auto-size-input input,
.position-form .form-container .field-section .field.position-text-field.skill-position-text-field .auto-size-input span,
.position-form .form-container .field-section .field-element.position-text-field.skill-position-text-field .auto-size-input span {
  font-family: Beatrice, sans-serif !important;
  font-weight: normal !important;
  padding: 0;
  line-height: 19px;
  letter-spacing: 0.01em;
  height: 30px;
  font-size: 14px !important;
}
.position-form .form-container .field-section .field.position-text-field.skill-position-text-field label,
.position-form .form-container .field-section .field-element.position-text-field.skill-position-text-field label {
  padding-top: 0;
  margin-top: 0;
}
.position-form .form-container .field-section .field.position-text-field.discipline-position-text-field .form-group input,
.position-form .form-container .field-section .field-element.position-text-field.discipline-position-text-field .form-group input {
  border: none;
  padding: 0 !important;
}
.position-form .form-container .field-section .field.position-text-field.discipline-position-text-field .form-group label,
.position-form .form-container .field-section .field-element.position-text-field.discipline-position-text-field .form-group label {
  margin-bottom: 0.5rem !important;
}
.position-form .form-container .field-section .field.position-text-field .edit-position-title,
.position-form .form-container .field-section .field-element.position-text-field .edit-position-title {
  background-color: transparent;
  padding: 0 8px;
  border: none !important;
}
.position-form .form-container .field-section .field.position-text-field .edit-position-title i,
.position-form .form-container .field-section .field-element.position-text-field .edit-position-title i {
  font-size: 14px !important;
  color: #C2CFE0;
}
.position-form .form-container .position-form-buttons {
  margin: 15px;
  width: unset !important;
  align-self: stretch;
}
.position-form.read-only .form-group * {
  pointer-events: none!important;
}
.position-form.read-only .react-autosuggest__container {
  display: none !important;
}
.position-form.read-only .form-group,
.position-form.read-only input,
.position-form.read-only .position-text-field {
  pointer-events: none !important;
  border-bottom-color: transparent !important;
}
.position-form.read-only .form-group .edit-position-title,
.position-form.read-only input .edit-position-title,
.position-form.read-only .position-text-field .edit-position-title {
  opacity: 0;
}
.position-form.read-only .form-container .field-section .field textarea {
  border: none !important;
}
.position-form.read-only .discipline-skills-container,
.position-form.read-only .skills-form-container {
  pointer-events: none;
}
.position-form.read-only .discipline-skills-container .skill .s-divider,
.position-form.read-only .skills-form-container .skill .s-divider,
.position-form.read-only .discipline-skills-container .skill i,
.position-form.read-only .skills-form-container .skill i {
  display: none !important;
}
.position-form.form-disabled .input-group.disabled {
  background-color: #ececec !important;
}
.position-form.form-disabled .input-group.disabled * {
  pointer-events: none !important;
}
.position-form.form-disabled .input-group.disabled .clickable {
  opacity: 0.7;
}
.position-form.form-disabled .project-discipline-skills-form,
.position-form.form-disabled .position-discipline-skills-form .btn-link-primary {
  pointer-events: none !important;
  opacity: 0.7;
}
.position-form.form-disabled .discipline-skills-container,
.position-form.form-disabled .skills-form-container {
  pointer-events: none !important;
}
.position-form.form-disabled .discipline-skills-container *,
.position-form.form-disabled .skills-form-container * {
  pointer-events: none !important;
}
.position-form.form-disabled .discipline-skills-container .skill,
.position-form.form-disabled .skills-form-container .skill {
  pointer-events: none;
  opacity: 0.7;
}
.position-form.form-disabled .discipline-skills-container .skill.skill-result,
.position-form.form-disabled .skills-form-container .skill.skill-result {
  border-top: none;
}
.position-form .project-skill-search-results,
.position-form .position-skill-search-results {
  min-height: unset;
}
.position-form .project-skill-search-results *,
.position-form .position-skill-search-results * {
  transition: all 250ms ease-in-out;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
}
.position-form .field-section-group .col-form-label {
  font-size: 14px !important;
  white-space: nowrap !important;
  margin-bottom: 5px !important;
}
.position-form .field-section-group .form-checkbox label {
  font-weight: 500;
  font-size: 12px !important;
}
.experience-selected-info {
  font-size: 13px;
  margin-top: 1rem;
  margin-bottom: -15px;
  font-family: Beatrice, sans-serif;
}
.position-wizard-progress,
.project-wizard-progress {
  width: 100%;
  z-index: 2;
  white-space: nowrap;
  overflow: visible;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  position: relative;
  padding: 20px 0;
}
.position-wizard-progress div:first-child,
.project-wizard-progress div:first-child {
  margin-left: 1%;
}
.position-wizard-progress div:last-child,
.project-wizard-progress div:last-child {
  margin-right: 1%;
}
.position-wizard-progress .position-progress-item,
.project-wizard-progress .position-progress-item {
  margin: 0 0 0 0.5%;
  height: 30px;
  position: relative;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 30px;
  transition: all 0.6s;
}
.position-wizard-progress .position-progress-item h5,
.project-wizard-progress .position-progress-item h5 {
  color: #67676a;
  font-family: Poppins, sans-serif;
  margin: 0;
  font-size: 14px;
  line-height: 30px;
}
@media only screen and (max-width: 800px) {
  .position-wizard-progress .position-progress-item h5,
  .project-wizard-progress .position-progress-item h5 {
    white-space: normal;
    font-size: 9px;
    line-height: normal;
    padding: 0 10px;
  }
}
.position-wizard-progress .position-progress-item:before,
.project-wizard-progress .position-progress-item:before,
.position-wizard-progress .position-progress-item:after,
.project-wizard-progress .position-progress-item:after {
  content: "";
  position: absolute;
  transition: all 0.6s;
  z-index: -1;
}
.position-wizard-progress .position-progress-item:before,
.project-wizard-progress .position-progress-item:before {
  height: 51.5%;
  width: 100%;
  top: 0;
  left: 0;
  background: #C2CFE0;
  transform: skew(45deg);
}
.position-wizard-progress .position-progress-item:after,
.project-wizard-progress .position-progress-item:after {
  height: 50.5%;
  width: 100%;
  top: 50%;
  left: 0;
  background: #C2CFE0;
  transform: skew(-45deg);
}
.position-wizard-progress .position-progress-item.complete:before,
.project-wizard-progress .position-progress-item.complete:before,
.position-wizard-progress .position-progress-item.complete:after,
.project-wizard-progress .position-progress-item.complete:after {
  background: var(--theme-success, '#5ae399');
}
.position-wizard-progress .position-progress-item.active h5,
.project-wizard-progress .position-progress-item.active h5 {
  font-weight: 600;
  color: black;
}
.position-wizard-progress .position-progress-item.active:before,
.project-wizard-progress .position-progress-item.active:before,
.position-wizard-progress .position-progress-item.active:after,
.project-wizard-progress .position-progress-item.active:after {
  background: var(--theme-success-darker);
}
.project-wizard-progress .position-progress-item h5 {
  font-size: 12px;
}
@media only screen and (max-width: 800px) {
  .project-wizard-progress .position-progress-item h5 {
    font-size: 8px;
  }
}
.btn-outline-primary:disabled {
  color: white !important;
  pointer-events: none !important;
}
.btn-outline-primary:disabled * {
  pointer-events: none !important;
}
.engagement-lead-control {
  display: flex;
  position: relative;
  white-space: nowrap;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
}
.engagement-lead-control .tooltip-info span i {
  color: #000;
  margin-left: 8px;
}
.engagement-lead-control .engagement-lead-selection {
  display: flex;
  position: relative;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  flex-grow: 1;
  padding-top: 15px;
}
.engagement-lead-control .engagement-lead-selection .selected-lead-control {
  display: flex;
  position: relative;
  white-space: nowrap;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
}
.engagement-lead-control .engagement-lead-selection .selected-lead-control .dropdown a {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  flex-direction: row;
  white-space: nowrap;
  align-items: center;
  justify-content: flex-start;
  text-align: right;
  letter-spacing: 0.01em;
  color: #000000;
}
.engagement-lead-control .engagement-lead-selection .selected-lead-control .selected-lead-image {
  margin-left: 10px;
  height: 85px;
  width: 85px;
  margin-right: 15px;
}
.engagement-lead-control .engagement-lead-selection .selected-lead-control .selected-lead-image img {
  height: 85px;
  width: 85px;
}
.engagement-lead-control .engagement-lead-selection .btn-outline-primary {
  white-space: nowrap;
  margin: 0 auto;
}
.engagement-lead-control .engagement-lead-selection .btn-outline-primary:hover,
.engagement-lead-control .engagement-lead-selection .btn-outline-primary:focus {
  background-color: var(--theme-secondary, '#913ef0') !important;
}
.engagement-lead-control .engagement-lead-form-switch {
  margin: 0 10px 0 5px;
  flex-grow: 1;
  padding-top: 15px;
}
.engagement-lead-control .engagement-lead-form-switch label {
  display: flex;
  margin-bottom: 0;
  flex-flow: row nowrap;
  justify-content: center;
}
.engagement-lead-control .engagement-lead-form-switch label span {
  margin-right: 4px;
  white-space: nowrap;
  margin-bottom: 0;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 13px;
  display: flex;
  align-items: center;
  text-align: right;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  color: #90A0B7;
}
.engagement-lead-control .engagement-lead-note {
  margin: 0 15px;
  flex-grow: 1;
  max-width: 40%;
  text-align: left;
  color: black;
  white-space: normal !important;
}
.engagement-modal .modal-title {
  text-align: center;
  font-size: 20px !important;
  margin-bottom: 5px;
}
.engagement-modal .modal-subtitle {
  font-size: 16px !important;
  text-align: center;
  margin-bottom: 20px;
}
.engagement-modal .modal-container {
  background: #E5EBF1;
}
.engagement-modal .modal-container div[id^='engagement-container-'] {
  padding: 0 5px;
}
.engagement-modal .modal-container .talent-panel {
  min-width: 320px !important;
  max-width: 320px !important;
  margin: 0 auto;
}
.engagement-modal .modal-container .talent-panel .talent-info-panel .top-info {
  padding: 8px 0;
}
.engagement-modal .modal-container .talent-panel .potential-talent-actions {
  height: unset;
  padding: 1.2rem;
}
.engagement-modal .modal-container .talent-panel .wripple-estimate {
  min-width: 320px !important;
}
.engagement-modal.has-pagination .modal-container {
  padding-bottom: 65px !important;
}
.position-greenlight-tax-class-modal .modal-container {
  max-width: 1000px;
  min-height: auto;
  min-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 529px) {
  .position-greenlight-tax-class-modal .modal-container {
    min-width: 100%;
  }
  .service-overview-form .form-container form .select-field {
    margin: 0;
  }
  .engagement-lead-control .engagement-lead-form-switch label span {
    text-align: left;
    white-space: normal;
  }
  .project-bidding-step-header h3 small:after {
    content: "\A";
    white-space: pre;
  }
  .zero-padding-mobile {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .hide-desktop {
    display: block;
  }
}
.position-step .position-timing-pricing-structure .form-check-label {
  white-space: normal;
}
.avg-bill-alert {
  background-color: rgba(154, 44, 255, 0.1);
  border: 1px solid rgba(154, 44, 255, 0.05);
}
.avg-bill-alert .ant-alert-icon {
  color: black;
}
.avg-bill-alert.default {
  background-color: rgba(211, 216, 221, 0.6);
  border: 1px solid #d3d8dd;
}
.opp-wizard-step {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: stretch;
  flex-direction: column;
  height: 60px;
  width: 20px;
}
.opp-wizard-step * {
  transition: all 500ms ease-in;
}
.opp-wizard-step .step-circle {
  position: absolute;
  bottom: 50%;
  margin: 0 auto;
  width: 18px;
  height: 18px;
  background-color: #707683;
  border-radius: 50%;
  margin-bottom: -9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.opp-wizard-step .step-circle * {
  font-size: 9px;
  line-height: 13px;
  text-align: center;
  letter-spacing: 0.01em;
}
.opp-wizard-step .step-circle span {
  font-weight: 600;
}
.opp-wizard-step .step-title {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
}
.opp-wizard-step .step-title h5 {
  transition: all 100ms ease-in;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: #707683;
  margin-bottom: 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.opp-wizard-step .step-title h5:hover,
.opp-wizard-step .step-title h5.underline {
  border-color: white;
  color: white;
  font-weight: 800;
}
.opp-wizard-step .step-title.active h5 {
  color: white;
  font-weight: 800;
}
.opp-wizard-step .step-title.active h5:hover,
.opp-wizard-step .step-title.active h5.underline {
  border-color: white;
}
.opp-wizard-step.active .step-circle {
  background-color: var(--theme-success, '#5ae399');
}
.opp-wizard-step.active .step-circle * {
  color: white;
}
@media only screen and (max-width: 767px) {
  .opp-wizard-step .step-title {
    max-width: unset !important;
  }
}
.opportunity-group-title {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--theme-primary, '#5f3db1');
  margin: 20px 0;
  display: flex;
  align-self: stretch;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.opportunity-group-title:before,
.opportunity-group-title:after {
  content: "";
  flex: 1 1;
  border-bottom: 1px solid;
  margin: 0 15px;
  padding: 0;
}
.opportunity-client-row {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
}
.opportunity-client-row .opportunity-client-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin-right: 15px;
}
.opportunity-client-row .opportunity-client-logo img {
  height: 65px;
  width: 65px;
}
.opportunity-client-row .client-name {
  display: flex;
  flex-grow: 1;
  align-self: stretch;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.opportunity-client-row .client-name p {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 125%;
  max-width: 140px;
  letter-spacing: 0.01em;
  color: #343741;
  margin: 0;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.opp-on-hold-panel,
.opp-unseen-update-panel {
  position: absolute;
  right: 0px;
  top: -3px;
  color: black;
  font-size: 13px;
  font-style: italic;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
.opp-on-hold-panel i,
.opp-unseen-update-panel i {
  font-style: normal;
  color: var(--theme-danger, '#E54963');
  font-size: 13px;
  line-height: normal;
  margin-right: 5px;
}
.opp-unseen-update-panel {
  position: absolute;
  right: -8px;
  top: -5px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.opp-unseen-update-panel > * {
  color: black;
  font-size: 13px;
  font-style: italic;
}
.opp-unseen-update-panel a {
  padding: 8px;
  font-size: 12px;
  display: flex;
  flex-flow: row;
  align-items: center;
  text-decoration: none;
}
.opp-unseen-update-panel a:hover {
  text-decoration: none;
}
.opp-unseen-update-panel a > span:first-child {
  margin-bottom: -3px;
}
.opp-unseen-update-panel .can-message-and-accept-interviews {
  gap: 5px;
}
.opp-unseen-update-panel .can-message-and-accept-interviews i {
  color: #707683;
  line-height: 18px;
  font-size: 22px;
  margin-right: 0;
}
.opp-unseen-update-panel .can-message-and-accept-interviews .badge {
  color: #fff !important;
  padding: 0.3em 0.5em;
  position: absolute;
  right: 2px;
  text-align: center;
  top: 2px;
  vertical-align: middle;
  font-weight: 600;
}
.opp-unseen-update-panel .can-message-and-accept-interviews .badge .ant-badge-count {
  box-shadow: none;
  font-size: 8px;
}
.opp-on-hold-panel i {
  font-size: 15px;
}
.opportunity-list {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 0 40px;
  flex-direction: row;
}
.opportunity-list .opportunity-group-container {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
}
.opportunity-list .opportunity-section-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.opportunity-list .card-list .opportunity-panel {
  width: 100%;
  min-width: 350px !important;
  margin: 0;
  display: block;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-title > a {
  display: -webkit-box;
  margin-top: 10px;
  height: 54px;
  text-overflow: ellipsis;
  white-space: normal;
  font-weight: 600;
  margin-bottom: 0;
  font-style: normal;
  font-size: 18px;
  line-height: 27px !important;
  letter-spacing: 0.01em;
  color: #000000;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-project-title {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  color: #343741;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-value {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.01em;
  margin-bottom: 7px;
  color: #000000;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-subvalue {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #343741;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-label {
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 2px;
  color: #343741;
}
.opportunity-list .card-list .opportunity-panel .opportunity-step-container {
  margin: 0 -1rem;
  padding: 15px 1.5rem 0;
  height: 155px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  background-color: #F5F6F8;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-steps-text {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 8px;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-steps-text b {
  margin-left: 3px;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-steps-text i {
  margin-left: 4px;
  font-size: 12px;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-steps-text.complete {
  color: #90A0B7;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-steps-text.complete b {
  color: #90A0B7;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-steps-btn {
  display: flex;
  align-self: stretch;
  margin-bottom: 8px;
  height: 42px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.opportunity-list .card-list .opportunity-panel .panel-status {
  display: flex;
  flex-direction: row;
}
.opportunity-list .card-list .opportunity-panel .panel-status > div {
  flex: 1;
  height: 20px;
  padding: 0;
  align-items: flex-end;
  justify-content: flex-end;
  display: flex;
}
.opportunity-list .card-list .opportunity-panel .panel-status > div h5 {
  margin: 0 auto;
  padding: 0;
  font-size: 11px;
  font-family: 'Beatrice', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
  text-align: center;
  line-height: 10px;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-footer {
  height: 60px;
  padding-top: 0.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-footer .opp-footer-type {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.01em;
  color: #343741;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-footer .btn-link {
  font-size: 16px !important;
  text-decoration: none!important;
  color: black;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-footer .btn-link:hover {
  color: black !important;
  text-decoration: underline !important;
}
.opportunity-list .card-list .opportunity-panel .panel-info {
  border-top: 10px solid var(--theme-primary, '#5f3db1');
  background-color: white;
  box-shadow: 6px 0 18px rgba(0, 0, 0, 0.06);
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-details {
  height: 120px;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-details .opportunity-panel-details-row {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-details .opportunity-panel-details-row .opportunity-panel-details-label {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #343741;
  margin: 0;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panel-details .opportunity-panel-details-row .opportunity-panel-details-value {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  text-align: right;
  letter-spacing: 0.01em;
  margin: 0;
  color: #343741;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panels-progress-info {
  background-color: #F5F6F8;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  height: 85px;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panels-progress-info .opportunity-panels-progress-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panels-progress-info .opportunity-panels-progress-section h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 5px;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panels-progress-info .opportunity-panels-progress-section .opportunity-panel-section-details {
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0;
  align-self: stretch;
  position: relative;
  display: flex;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panels-progress-info .opportunity-panels-progress-section .opportunity-panel-section-details p {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  text-align: left;
  text-overflow: ellipsis;
  margin: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #000000;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panels-progress-info .opportunity-panels-progress-section .opportunity-panel-section-details p i {
  line-height: 18px;
  margin-right: 8px;
  color: #90a0b7;
}
.opportunity-list .card-list .opportunity-panel .opportunity-panels-progress-info .opportunity-panels-progress-section .opportunity-panel-section-details p:nth-child(1) {
  margin-right: 15px;
}
@media only screen and (max-width: 720px) {
  .opportunity-list {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 0 5px 0;
    white-space: normal;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .opportunity-list .opportunity-group {
    display: block;
    width: 100% !important;
    margin: 0 auto;
    padding: 10px 0 0;
    flex-direction: column;
    align-items: stretch;
  }
  .opportunity-list .opportunity-group:last-child {
    padding-right: 0;
  }
  .opportunity-list .opportunity-group .opportunity-panel {
    margin: 0 auto 30px auto;
    max-width: 360px;
    width: 100% !important;
    display: block;
    float: none;
  }
}
.opportunity-admin-group-container {
  background-color: white;
  padding: 15px;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.opportunity-admin-group-container table {
  margin-top: 1rem;
}
.opportunity-admin-group-container table td {
  vertical-align: middle;
  font-size: 11px;
}
.opportunity-admin-group-container table td .btn-link-primary {
  text-decoration: underline;
}
.scope-status-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 5px;
}
.scope-status-btns .deliverable-scope-btn {
  height: 24px;
  margin-right: 10px;
  background: #C4C4C4;
  border-radius: 10px;
  width: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 200ms ease-in;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
.scope-status-btns .deliverable-scope-btn.active {
  pointer-events: none;
  background-color: var(--theme-success, '#5ae399');
  color: #0A0D10;
  font-weight: 500;
}
.project-members-overview .brief-member .profile-image-container {
  margin: 0 auto;
  height: 80px;
  width: 80px;
}
.project-brief-payout-section .brief-payout-footer {
  background-color: #F8F9FB;
  padding: 20px 30px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}
.project-brief-payout-section .brief-payout-footer .accordion-item__icon {
  top: unset;
  height: 100%;
  background-position: center;
}
.project-brief-payout-section .brief-payout-footer * {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.project-brief-payout-section .brief-payout-footer .summary-header {
  margin: 0;
  cursor: pointer;
  flex-grow: 1;
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #90a0b7;
  margin-bottom: 20px;
  text-align: left;
}
.project-brief-payout-section .brief-payout-footer .summary-footer {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  align-self: stretch;
  justify-content: space-between;
  margin: 0 -15px 0 0;
}
.project-brief-payout-section .brief-payout-footer .summary-footer .summary-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0 15px 15px 0;
  text-align: left;
  justify-content: flex-start;
  align-items: stretch;
}
.project-brief-payout-section .brief-payout-footer .summary-footer .summary-item .summary-item-label {
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 8px;
}
.project-brief-payout-section .brief-payout-footer .summary-footer .summary-item .summary-item-value {
  font-weight: normal;
  white-space: nowrap;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #109CF1;
}
.project-scope-overview .scope-panel {
  text-align: left;
  margin-top: 25px;
}
.project-scope-overview .scope-details-panel {
  padding-left: 10px;
}
.project-scope-overview .scope-label {
  background: var(--theme-light, '#E5EBF1');
  padding: 3px 10px;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 30px;
  font-weight: 500;
}
.project-scope-overview .scope-question-section,
.project-scope-overview .scope-answer-section {
  flex: 1;
  text-align: left;
  flex-basis: 45%;
  padding: 0 20px 0 0;
  margin-bottom: 15px;
}
.project-scope-overview .scope-question-section p,
.project-scope-overview .scope-answer-section p {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.project-scope-overview .scope-answer-section {
  padding: 0;
  flex-basis: 55%;
}
.project-scope-overview .question-title,
.project-scope-overview .answer-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  color: #334D6E;
}
.project-scope-overview .question-details {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #000000;
}
.project-scope-overview .answer-details {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: #000000;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
}
.project-scope-overview .answer-details i {
  color: var(--theme-secondary, '#913ef0');
  font-size: 13px;
  margin-right: 8px;
  line-height: 20px;
}
.project-scope-overview .answer-details span {
  font-weight: 500;
  line-height: 20px;
}
.talent-member-card .dropdown,
.project-deliverables-overview .dropdown,
.project-brief-section .dropdown,
.assessment-skills-container .dropdown {
  display: block;
  min-width: 80px;
}
.talent-member-card .dropdown > span:first-child,
.project-deliverables-overview .dropdown > span:first-child,
.project-brief-section .dropdown > span:first-child,
.assessment-skills-container .dropdown > span:first-child {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  pointer-events: all;
  min-width: 80px;
}
.talent-member-card .dropdown > span:first-child .skill:first-child,
.project-deliverables-overview .dropdown > span:first-child .skill:first-child,
.project-brief-section .dropdown > span:first-child .skill:first-child,
.assessment-skills-container .dropdown > span:first-child .skill:first-child,
.talent-member-card .dropdown > span:first-child .experience:first-child,
.project-deliverables-overview .dropdown > span:first-child .experience:first-child,
.project-brief-section .dropdown > span:first-child .experience:first-child,
.assessment-skills-container .dropdown > span:first-child .experience:first-child {
  z-index: 2;
  min-width: 80px;
}
.talent-member-card .dropdown .skill.skill-result,
.project-deliverables-overview .dropdown .skill.skill-result,
.project-brief-section .dropdown .skill.skill-result,
.assessment-skills-container .dropdown .skill.skill-result,
.talent-member-card .dropdown .experience.experience-result,
.project-deliverables-overview .dropdown .experience.experience-result,
.project-brief-section .dropdown .experience.experience-result,
.assessment-skills-container .dropdown .experience.experience-result {
  transition: all 0s linear !important;
  margin-top: -30px !important;
  background-color: white;
  margin-bottom: 15px;
  padding-top: 16px;
  height: 40px;
  z-index: 1;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  text-align: center;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: row;
  min-width: 80px;
}
.talent-member-card .dropdown .skill.skill-result i,
.project-deliverables-overview .dropdown .skill.skill-result i,
.project-brief-section .dropdown .skill.skill-result i,
.assessment-skills-container .dropdown .skill.skill-result i,
.talent-member-card .dropdown .experience.experience-result i,
.project-deliverables-overview .dropdown .experience.experience-result i,
.project-brief-section .dropdown .experience.experience-result i,
.assessment-skills-container .dropdown .experience.experience-result i,
.talent-member-card .dropdown .skill.skill-result p,
.project-deliverables-overview .dropdown .skill.skill-result p,
.project-brief-section .dropdown .skill.skill-result p,
.assessment-skills-container .dropdown .skill.skill-result p,
.talent-member-card .dropdown .experience.experience-result p,
.project-deliverables-overview .dropdown .experience.experience-result p,
.project-brief-section .dropdown .experience.experience-result p,
.assessment-skills-container .dropdown .experience.experience-result p {
  padding-left: 3px !important;
  padding-right: 3px !important;
}
.talent-member-card .dropdown.show > span:first-child,
.project-deliverables-overview .dropdown.show > span:first-child,
.project-brief-section .dropdown.show > span:first-child,
.assessment-skills-container .dropdown.show > span:first-child {
  display: unset;
}
.talent-member-card .dropdown.show > span:first-child .experience:first-child,
.project-deliverables-overview .dropdown.show > span:first-child .experience:first-child,
.project-brief-section .dropdown.show > span:first-child .experience:first-child,
.assessment-skills-container .dropdown.show > span:first-child .experience:first-child,
.talent-member-card .dropdown.show > span:first-child .skill:first-child,
.project-deliverables-overview .dropdown.show > span:first-child .skill:first-child,
.project-brief-section .dropdown.show > span:first-child .skill:first-child,
.assessment-skills-container .dropdown.show > span:first-child .skill:first-child {
  pointer-events: unset;
  z-index: 1001;
  min-width: 80px;
}
.talent-member-card .dropdown.show .experience:first-of-type,
.project-deliverables-overview .dropdown.show .experience:first-of-type,
.project-brief-section .dropdown.show .experience:first-of-type,
.assessment-skills-container .dropdown.show .experience:first-of-type,
.talent-member-card .dropdown.show .skill:first-of-type,
.project-deliverables-overview .dropdown.show .skill:first-of-type,
.project-brief-section .dropdown.show .skill:first-of-type,
.assessment-skills-container .dropdown.show .skill:first-of-type {
  transition: z-index 0s linear;
  z-index: 1001;
  background-color: white;
}
.talent-member-card .dropdown.show .experience:first-of-type.selected,
.project-deliverables-overview .dropdown.show .experience:first-of-type.selected,
.project-brief-section .dropdown.show .experience:first-of-type.selected,
.assessment-skills-container .dropdown.show .experience:first-of-type.selected,
.talent-member-card .dropdown.show .skill:first-of-type.selected,
.project-deliverables-overview .dropdown.show .skill:first-of-type.selected,
.project-brief-section .dropdown.show .skill:first-of-type.selected,
.assessment-skills-container .dropdown.show .skill:first-of-type.selected {
  background-color: var(--theme-secondary, '#913ef0');
}
.talent-member-card .dropdown.show .dropdown-menu,
.project-deliverables-overview .dropdown.show .dropdown-menu,
.project-brief-section .dropdown.show .dropdown-menu,
.assessment-skills-container .dropdown.show .dropdown-menu {
  background: var(--theme-primary-darker);
  right: 0;
  margin-right: 15px;
  padding-top: 15px;
  margin-top: -8px;
  border: 1px;
  padding-bottom: 0;
  min-width: unset;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  transform: translate3d(0px, 24px, 0px) !important;
}
.talent-member-card .dropdown.show .dropdown-menu .experience,
.project-deliverables-overview .dropdown.show .dropdown-menu .experience,
.project-brief-section .dropdown.show .dropdown-menu .experience,
.assessment-skills-container .dropdown.show .dropdown-menu .experience,
.talent-member-card .dropdown.show .dropdown-menu .skill,
.project-deliverables-overview .dropdown.show .dropdown-menu .skill,
.project-brief-section .dropdown.show .dropdown-menu .skill,
.assessment-skills-container .dropdown.show .dropdown-menu .skill {
  transition: none !important;
  margin: 0 !important;
  width: 100%;
  display: flex;
  background-color: transparent !important;
  border: none !important;
}
.talent-member-card .dropdown.show .dropdown-menu .experience *,
.project-deliverables-overview .dropdown.show .dropdown-menu .experience *,
.project-brief-section .dropdown.show .dropdown-menu .experience *,
.assessment-skills-container .dropdown.show .dropdown-menu .experience *,
.talent-member-card .dropdown.show .dropdown-menu .skill *,
.project-deliverables-overview .dropdown.show .dropdown-menu .skill *,
.project-brief-section .dropdown.show .dropdown-menu .skill *,
.assessment-skills-container .dropdown.show .dropdown-menu .skill * {
  transition: none !important;
  color: white;
}
.talent-member-card .dropdown.show .dropdown-menu .experience p,
.project-deliverables-overview .dropdown.show .dropdown-menu .experience p,
.project-brief-section .dropdown.show .dropdown-menu .experience p,
.assessment-skills-container .dropdown.show .dropdown-menu .experience p,
.talent-member-card .dropdown.show .dropdown-menu .skill p,
.project-deliverables-overview .dropdown.show .dropdown-menu .skill p,
.project-brief-section .dropdown.show .dropdown-menu .skill p,
.assessment-skills-container .dropdown.show .dropdown-menu .skill p {
  flex: 1;
  text-align: center;
}
.talent-member-card .dropdown.show .dropdown-menu .experience:active,
.project-deliverables-overview .dropdown.show .dropdown-menu .experience:active,
.project-brief-section .dropdown.show .dropdown-menu .experience:active,
.assessment-skills-container .dropdown.show .dropdown-menu .experience:active,
.talent-member-card .dropdown.show .dropdown-menu .skill:active,
.project-deliverables-overview .dropdown.show .dropdown-menu .skill:active,
.project-brief-section .dropdown.show .dropdown-menu .skill:active,
.assessment-skills-container .dropdown.show .dropdown-menu .skill:active,
.talent-member-card .dropdown.show .dropdown-menu .experience:focus,
.project-deliverables-overview .dropdown.show .dropdown-menu .experience:focus,
.project-brief-section .dropdown.show .dropdown-menu .experience:focus,
.assessment-skills-container .dropdown.show .dropdown-menu .experience:focus,
.talent-member-card .dropdown.show .dropdown-menu .skill:focus,
.project-deliverables-overview .dropdown.show .dropdown-menu .skill:focus,
.project-brief-section .dropdown.show .dropdown-menu .skill:focus,
.assessment-skills-container .dropdown.show .dropdown-menu .skill:focus {
  border: none !important;
}
.talent-member-card .dropdown.show .dropdown-menu .experience:active *,
.project-deliverables-overview .dropdown.show .dropdown-menu .experience:active *,
.project-brief-section .dropdown.show .dropdown-menu .experience:active *,
.assessment-skills-container .dropdown.show .dropdown-menu .experience:active *,
.talent-member-card .dropdown.show .dropdown-menu .skill:active *,
.project-deliverables-overview .dropdown.show .dropdown-menu .skill:active *,
.project-brief-section .dropdown.show .dropdown-menu .skill:active *,
.assessment-skills-container .dropdown.show .dropdown-menu .skill:active *,
.talent-member-card .dropdown.show .dropdown-menu .experience:focus *,
.project-deliverables-overview .dropdown.show .dropdown-menu .experience:focus *,
.project-brief-section .dropdown.show .dropdown-menu .experience:focus *,
.assessment-skills-container .dropdown.show .dropdown-menu .experience:focus *,
.talent-member-card .dropdown.show .dropdown-menu .skill:focus *,
.project-deliverables-overview .dropdown.show .dropdown-menu .skill:focus *,
.project-brief-section .dropdown.show .dropdown-menu .skill:focus *,
.assessment-skills-container .dropdown.show .dropdown-menu .skill:focus * {
  color: white !important;
}
.talent-member-card .dropdown.show .dropdown-menu .experience:hover *,
.project-deliverables-overview .dropdown.show .dropdown-menu .experience:hover *,
.project-brief-section .dropdown.show .dropdown-menu .experience:hover *,
.assessment-skills-container .dropdown.show .dropdown-menu .experience:hover *,
.talent-member-card .dropdown.show .dropdown-menu .skill:hover *,
.project-deliverables-overview .dropdown.show .dropdown-menu .skill:hover *,
.project-brief-section .dropdown.show .dropdown-menu .skill:hover *,
.assessment-skills-container .dropdown.show .dropdown-menu .skill:hover * {
  color: var(--theme-secondary, '#913ef0');
}
.talent-member-card .dropdown.show .dropdown-menu .experience .s-divider,
.project-deliverables-overview .dropdown.show .dropdown-menu .experience .s-divider,
.project-brief-section .dropdown.show .dropdown-menu .experience .s-divider,
.assessment-skills-container .dropdown.show .dropdown-menu .experience .s-divider,
.talent-member-card .dropdown.show .dropdown-menu .skill .s-divider,
.project-deliverables-overview .dropdown.show .dropdown-menu .skill .s-divider,
.project-brief-section .dropdown.show .dropdown-menu .skill .s-divider,
.assessment-skills-container .dropdown.show .dropdown-menu .skill .s-divider,
.talent-member-card .dropdown.show .dropdown-menu .experience i,
.project-deliverables-overview .dropdown.show .dropdown-menu .experience i,
.project-brief-section .dropdown.show .dropdown-menu .experience i,
.assessment-skills-container .dropdown.show .dropdown-menu .experience i,
.talent-member-card .dropdown.show .dropdown-menu .skill i,
.project-deliverables-overview .dropdown.show .dropdown-menu .skill i,
.project-brief-section .dropdown.show .dropdown-menu .skill i,
.assessment-skills-container .dropdown.show .dropdown-menu .skill i {
  display: none;
}
.talent-member-card .dropdown.show .dropdown-menu .dropdown-item,
.project-deliverables-overview .dropdown.show .dropdown-menu .dropdown-item,
.project-brief-section .dropdown.show .dropdown-menu .dropdown-item,
.assessment-skills-container .dropdown.show .dropdown-menu .dropdown-item {
  padding: 0 !important;
  width: 100%;
  border-bottom: 1px solid white !important;
}
.talent-member-card .dropdown.show .dropdown-menu .dropdown-item:last-child,
.project-deliverables-overview .dropdown.show .dropdown-menu .dropdown-item:last-child,
.project-brief-section .dropdown.show .dropdown-menu .dropdown-item:last-child,
.assessment-skills-container .dropdown.show .dropdown-menu .dropdown-item:last-child {
  border-width: 0;
  border-bottom: none !important;
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
}
.talent-member-card .dropdown.show .dropdown-menu .dropdown-item:focus,
.project-deliverables-overview .dropdown.show .dropdown-menu .dropdown-item:focus,
.project-brief-section .dropdown.show .dropdown-menu .dropdown-item:focus,
.assessment-skills-container .dropdown.show .dropdown-menu .dropdown-item:focus {
  outline: none;
}
.talent-member-card .discipline-skills-container,
.deliverable-category-container .discipline-skills-container,
.client-project-overview .discipline-skills-container,
.talent-skills .discipline-skills-container {
  display: flex;
  position: relative;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.talent-member-card .discipline-skills-container *,
.deliverable-category-container .discipline-skills-container *,
.client-project-overview .discipline-skills-container *,
.talent-skills .discipline-skills-container * {
  pointer-events: none !important;
}
.talent-member-card .discipline-skills-container .skill,
.deliverable-category-container .discipline-skills-container .skill,
.client-project-overview .discipline-skills-container .skill,
.talent-skills .discipline-skills-container .skill {
  height: unset;
  min-height: 30px;
}
.talent-member-card .discipline-skills-container .skill .s-divider,
.deliverable-category-container .discipline-skills-container .skill .s-divider,
.client-project-overview .discipline-skills-container .skill .s-divider,
.talent-skills .discipline-skills-container .skill .s-divider,
.talent-member-card .discipline-skills-container .skill i,
.deliverable-category-container .discipline-skills-container .skill i,
.client-project-overview .discipline-skills-container .skill i,
.talent-skills .discipline-skills-container .skill i {
  display: none !important;
}
.talent-member-card .discipline-skills-container .skill p,
.deliverable-category-container .discipline-skills-container .skill p,
.client-project-overview .discipline-skills-container .skill p,
.talent-skills .discipline-skills-container .skill p {
  pointer-events: unset;
}
.talent-member-card .discipline-skills-container .has-skill .skill.selected p::before,
.deliverable-category-container .discipline-skills-container .has-skill .skill.selected p::before,
.client-project-overview .discipline-skills-container .has-skill .skill.selected p::before,
.talent-skills .discipline-skills-container .has-skill .skill.selected p::before {
  content: "\2022";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: var(--theme-success, '#5ae399');
  /* Change the color */
  font-weight: bold;
  /* If you want it to be bold */
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 0.6em;
  /* Also needed for space (tweak if needed) */
  font-size: 33px;
  margin-left: -0.3em;
  /* Also needed for space (tweak if needed) */
  margin-top: -2px;
}
.project-deliverables-overview .deliverable-category-container .deliverable-cat-header,
.project-brief-section .deliverable-category-container .deliverable-cat-header,
.assessment-skills-container .deliverable-category-container .deliverable-cat-header,
.project-deliverables-overview .client-project-overview .deliverable-cat-header,
.project-brief-section .client-project-overview .deliverable-cat-header,
.assessment-skills-container .client-project-overview .deliverable-cat-header,
.project-deliverables-overview .talent-skills .deliverable-cat-header,
.project-brief-section .talent-skills .deliverable-cat-header,
.assessment-skills-container .talent-skills .deliverable-cat-header {
  text-align: left;
  font-weight: 500;
  font-size: 18px;
  margin-top: 25px;
}
.project-deliverables-overview .deliverable-category-container .deliverable-panel,
.project-brief-section .deliverable-category-container .deliverable-panel,
.assessment-skills-container .deliverable-category-container .deliverable-panel,
.project-deliverables-overview .client-project-overview .deliverable-panel,
.project-brief-section .client-project-overview .deliverable-panel,
.assessment-skills-container .client-project-overview .deliverable-panel,
.project-deliverables-overview .talent-skills .deliverable-panel,
.project-brief-section .talent-skills .deliverable-panel,
.assessment-skills-container .talent-skills .deliverable-panel {
  text-align: left;
  margin-top: 25px;
}
.project-deliverables-overview .deliverable-category-container .deliverable-details-panel,
.project-brief-section .deliverable-category-container .deliverable-details-panel,
.assessment-skills-container .deliverable-category-container .deliverable-details-panel,
.project-deliverables-overview .client-project-overview .deliverable-details-panel,
.project-brief-section .client-project-overview .deliverable-details-panel,
.assessment-skills-container .client-project-overview .deliverable-details-panel,
.project-deliverables-overview .talent-skills .deliverable-details-panel,
.project-brief-section .talent-skills .deliverable-details-panel,
.assessment-skills-container .talent-skills .deliverable-details-panel {
  padding-left: 10px;
}
.project-deliverables-overview .deliverable-category-container .deliverable-details-panel .detail-note,
.project-brief-section .deliverable-category-container .deliverable-details-panel .detail-note,
.assessment-skills-container .deliverable-category-container .deliverable-details-panel .detail-note,
.project-deliverables-overview .client-project-overview .deliverable-details-panel .detail-note,
.project-brief-section .client-project-overview .deliverable-details-panel .detail-note,
.assessment-skills-container .client-project-overview .deliverable-details-panel .detail-note,
.project-deliverables-overview .talent-skills .deliverable-details-panel .detail-note,
.project-brief-section .talent-skills .deliverable-details-panel .detail-note,
.assessment-skills-container .talent-skills .deliverable-details-panel .detail-note {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
.project-deliverables-overview .deliverable-category-container .deliverable-details-panel .detail-note .indicator,
.project-brief-section .deliverable-category-container .deliverable-details-panel .detail-note .indicator,
.assessment-skills-container .deliverable-category-container .deliverable-details-panel .detail-note .indicator,
.project-deliverables-overview .client-project-overview .deliverable-details-panel .detail-note .indicator,
.project-brief-section .client-project-overview .deliverable-details-panel .detail-note .indicator,
.assessment-skills-container .client-project-overview .deliverable-details-panel .detail-note .indicator,
.project-deliverables-overview .talent-skills .deliverable-details-panel .detail-note .indicator,
.project-brief-section .talent-skills .deliverable-details-panel .detail-note .indicator,
.assessment-skills-container .talent-skills .deliverable-details-panel .detail-note .indicator {
  width: 6px;
  height: 6px;
  margin-right: 3px;
}
.project-deliverables-overview .deliverable-category-container .deliverable-title,
.project-brief-section .deliverable-category-container .deliverable-title,
.assessment-skills-container .deliverable-category-container .deliverable-title,
.project-deliverables-overview .client-project-overview .deliverable-title,
.project-brief-section .client-project-overview .deliverable-title,
.assessment-skills-container .client-project-overview .deliverable-title,
.project-deliverables-overview .talent-skills .deliverable-title,
.project-brief-section .talent-skills .deliverable-title,
.assessment-skills-container .talent-skills .deliverable-title {
  background: var(--theme-light, '#E5EBF1');
  padding: 3px 10px;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 30px;
  font-weight: 500;
}
.project-deliverables-overview .deliverable-category-container .deliverable-title.active-scope,
.project-brief-section .deliverable-category-container .deliverable-title.active-scope,
.assessment-skills-container .deliverable-category-container .deliverable-title.active-scope,
.project-deliverables-overview .client-project-overview .deliverable-title.active-scope,
.project-brief-section .client-project-overview .deliverable-title.active-scope,
.assessment-skills-container .client-project-overview .deliverable-title.active-scope,
.project-deliverables-overview .talent-skills .deliverable-title.active-scope,
.project-brief-section .talent-skills .deliverable-title.active-scope,
.assessment-skills-container .talent-skills .deliverable-title.active-scope {
  background-color: var(--theme-success, '#5ae399');
  color: #0A0D10;
}
.project-deliverables-overview .deliverable-category-container .deliverable-section,
.project-brief-section .deliverable-category-container .deliverable-section,
.assessment-skills-container .deliverable-category-container .deliverable-section,
.project-deliverables-overview .client-project-overview .deliverable-section,
.project-brief-section .client-project-overview .deliverable-section,
.assessment-skills-container .client-project-overview .deliverable-section,
.project-deliverables-overview .talent-skills .deliverable-section,
.project-brief-section .talent-skills .deliverable-section,
.assessment-skills-container .talent-skills .deliverable-section {
  flex: 1;
  text-align: left;
  flex-basis: 40%;
  padding: 0 15px 0 0;
  margin-bottom: 15px;
}
.project-deliverables-overview .deliverable-category-container .deliverable-section p,
.project-brief-section .deliverable-category-container .deliverable-section p,
.assessment-skills-container .deliverable-category-container .deliverable-section p,
.project-deliverables-overview .client-project-overview .deliverable-section p,
.project-brief-section .client-project-overview .deliverable-section p,
.assessment-skills-container .client-project-overview .deliverable-section p,
.project-deliverables-overview .talent-skills .deliverable-section p,
.project-brief-section .talent-skills .deliverable-section p,
.assessment-skills-container .talent-skills .deliverable-section p {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.project-deliverables-overview .deliverable-category-container .deliverable-section.deliverable-section-list,
.project-brief-section .deliverable-category-container .deliverable-section.deliverable-section-list,
.assessment-skills-container .deliverable-category-container .deliverable-section.deliverable-section-list,
.project-deliverables-overview .client-project-overview .deliverable-section.deliverable-section-list,
.project-brief-section .client-project-overview .deliverable-section.deliverable-section-list,
.assessment-skills-container .client-project-overview .deliverable-section.deliverable-section-list,
.project-deliverables-overview .talent-skills .deliverable-section.deliverable-section-list,
.project-brief-section .talent-skills .deliverable-section.deliverable-section-list,
.assessment-skills-container .talent-skills .deliverable-section.deliverable-section-list {
  flex-basis: 30%;
  padding: 0 5px 0 0;
}
.project-deliverables-overview .deliverable-category-container .deliverable-section.deliverable-section-list ul,
.project-brief-section .deliverable-category-container .deliverable-section.deliverable-section-list ul,
.assessment-skills-container .deliverable-category-container .deliverable-section.deliverable-section-list ul,
.project-deliverables-overview .client-project-overview .deliverable-section.deliverable-section-list ul,
.project-brief-section .client-project-overview .deliverable-section.deliverable-section-list ul,
.assessment-skills-container .client-project-overview .deliverable-section.deliverable-section-list ul,
.project-deliverables-overview .talent-skills .deliverable-section.deliverable-section-list ul,
.project-brief-section .talent-skills .deliverable-section.deliverable-section-list ul,
.assessment-skills-container .talent-skills .deliverable-section.deliverable-section-list ul {
  margin-left: 15px;
}
.project-deliverables-overview .deliverable-category-container .deliverable-section.deliverable-section-list ul li,
.project-brief-section .deliverable-category-container .deliverable-section.deliverable-section-list ul li,
.assessment-skills-container .deliverable-category-container .deliverable-section.deliverable-section-list ul li,
.project-deliverables-overview .client-project-overview .deliverable-section.deliverable-section-list ul li,
.project-brief-section .client-project-overview .deliverable-section.deliverable-section-list ul li,
.assessment-skills-container .client-project-overview .deliverable-section.deliverable-section-list ul li,
.project-deliverables-overview .talent-skills .deliverable-section.deliverable-section-list ul li,
.project-brief-section .talent-skills .deliverable-section.deliverable-section-list ul li,
.assessment-skills-container .talent-skills .deliverable-section.deliverable-section-list ul li {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #323C47;
  margin-bottom: 13px;
}
.project-deliverables-overview .deliverable-category-container .deliverable-section.deliverable-section-list ul li::before,
.project-brief-section .deliverable-category-container .deliverable-section.deliverable-section-list ul li::before,
.assessment-skills-container .deliverable-category-container .deliverable-section.deliverable-section-list ul li::before,
.project-deliverables-overview .client-project-overview .deliverable-section.deliverable-section-list ul li::before,
.project-brief-section .client-project-overview .deliverable-section.deliverable-section-list ul li::before,
.assessment-skills-container .client-project-overview .deliverable-section.deliverable-section-list ul li::before,
.project-deliverables-overview .talent-skills .deliverable-section.deliverable-section-list ul li::before,
.project-brief-section .talent-skills .deliverable-section.deliverable-section-list ul li::before,
.assessment-skills-container .talent-skills .deliverable-section.deliverable-section-list ul li::before {
  content: "\2022";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: var(--theme-secondary, '#913ef0');
  /* Change the color */
  font-weight: bold;
  /* If you want it to be bold */
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 1em;
  /* Also needed for space (tweak if needed) */
  margin-left: -1em;
  /* Also needed for space (tweak if needed) */
}
.project-deliverables-overview .deliverable-category-container .deliverable-section:last-child,
.project-brief-section .deliverable-category-container .deliverable-section:last-child,
.assessment-skills-container .deliverable-category-container .deliverable-section:last-child,
.project-deliverables-overview .client-project-overview .deliverable-section:last-child,
.project-brief-section .client-project-overview .deliverable-section:last-child,
.assessment-skills-container .client-project-overview .deliverable-section:last-child,
.project-deliverables-overview .talent-skills .deliverable-section:last-child,
.project-brief-section .talent-skills .deliverable-section:last-child,
.assessment-skills-container .talent-skills .deliverable-section:last-child {
  padding: 0;
}
.project-deliverables-overview .deliverable-category-container .deliverable-section-title,
.project-brief-section .deliverable-category-container .deliverable-section-title,
.assessment-skills-container .deliverable-category-container .deliverable-section-title,
.project-deliverables-overview .client-project-overview .deliverable-section-title,
.project-brief-section .client-project-overview .deliverable-section-title,
.assessment-skills-container .client-project-overview .deliverable-section-title,
.project-deliverables-overview .talent-skills .deliverable-section-title,
.project-brief-section .talent-skills .deliverable-section-title,
.assessment-skills-container .talent-skills .deliverable-section-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 25px;
  color: #334D6E;
}
.project-deliverables-overview .deliverable-category-container .deliverable-section-description,
.project-brief-section .deliverable-category-container .deliverable-section-description,
.assessment-skills-container .deliverable-category-container .deliverable-section-description,
.project-deliverables-overview .client-project-overview .deliverable-section-description,
.project-brief-section .client-project-overview .deliverable-section-description,
.assessment-skills-container .client-project-overview .deliverable-section-description,
.project-deliverables-overview .talent-skills .deliverable-section-description,
.project-brief-section .talent-skills .deliverable-section-description,
.assessment-skills-container .talent-skills .deliverable-section-description {
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 1.5rem;
}
.project-deliverables-overview .deliverable-category-container .deliverable-section-description.deliverable-section-document,
.project-brief-section .deliverable-category-container .deliverable-section-description.deliverable-section-document,
.assessment-skills-container .deliverable-category-container .deliverable-section-description.deliverable-section-document,
.project-deliverables-overview .client-project-overview .deliverable-section-description.deliverable-section-document,
.project-brief-section .client-project-overview .deliverable-section-description.deliverable-section-document,
.assessment-skills-container .client-project-overview .deliverable-section-description.deliverable-section-document,
.project-deliverables-overview .talent-skills .deliverable-section-description.deliverable-section-document,
.project-brief-section .talent-skills .deliverable-section-description.deliverable-section-document,
.assessment-skills-container .talent-skills .deliverable-section-description.deliverable-section-document {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.project-deliverables-overview .deliverable-category-container .deliverable-section-description.deliverable-section-document i,
.project-brief-section .deliverable-category-container .deliverable-section-description.deliverable-section-document i,
.assessment-skills-container .deliverable-category-container .deliverable-section-description.deliverable-section-document i,
.project-deliverables-overview .client-project-overview .deliverable-section-description.deliverable-section-document i,
.project-brief-section .client-project-overview .deliverable-section-description.deliverable-section-document i,
.assessment-skills-container .client-project-overview .deliverable-section-description.deliverable-section-document i,
.project-deliverables-overview .talent-skills .deliverable-section-description.deliverable-section-document i,
.project-brief-section .talent-skills .deliverable-section-description.deliverable-section-document i,
.assessment-skills-container .talent-skills .deliverable-section-description.deliverable-section-document i {
  font-size: 40px;
  margin-bottom: 5px;
  color: var(--theme-danger, '#E54963');
}
.project-deliverables-overview .deliverable-category-container .deliverable-section-description.deliverable-section-document .btn-link,
.project-brief-section .deliverable-category-container .deliverable-section-description.deliverable-section-document .btn-link,
.assessment-skills-container .deliverable-category-container .deliverable-section-description.deliverable-section-document .btn-link,
.project-deliverables-overview .client-project-overview .deliverable-section-description.deliverable-section-document .btn-link,
.project-brief-section .client-project-overview .deliverable-section-description.deliverable-section-document .btn-link,
.assessment-skills-container .client-project-overview .deliverable-section-description.deliverable-section-document .btn-link,
.project-deliverables-overview .talent-skills .deliverable-section-description.deliverable-section-document .btn-link,
.project-brief-section .talent-skills .deliverable-section-description.deliverable-section-document .btn-link,
.assessment-skills-container .talent-skills .deliverable-section-description.deliverable-section-document .btn-link {
  color: black;
  font-size: 13px;
  font-family: Poppins, sans-serif;
}
.project-deliverables-overview .deliverable-category-container .deliverable-section-description.deliverable-section-document .btn-link:hover,
.project-brief-section .deliverable-category-container .deliverable-section-description.deliverable-section-document .btn-link:hover,
.assessment-skills-container .deliverable-category-container .deliverable-section-description.deliverable-section-document .btn-link:hover,
.project-deliverables-overview .client-project-overview .deliverable-section-description.deliverable-section-document .btn-link:hover,
.project-brief-section .client-project-overview .deliverable-section-description.deliverable-section-document .btn-link:hover,
.assessment-skills-container .client-project-overview .deliverable-section-description.deliverable-section-document .btn-link:hover,
.project-deliverables-overview .talent-skills .deliverable-section-description.deliverable-section-document .btn-link:hover,
.project-brief-section .talent-skills .deliverable-section-description.deliverable-section-document .btn-link:hover,
.assessment-skills-container .talent-skills .deliverable-section-description.deliverable-section-document .btn-link:hover,
.project-deliverables-overview .deliverable-category-container .deliverable-section-description.deliverable-section-document .btn-link:focus,
.project-brief-section .deliverable-category-container .deliverable-section-description.deliverable-section-document .btn-link:focus,
.assessment-skills-container .deliverable-category-container .deliverable-section-description.deliverable-section-document .btn-link:focus,
.project-deliverables-overview .client-project-overview .deliverable-section-description.deliverable-section-document .btn-link:focus,
.project-brief-section .client-project-overview .deliverable-section-description.deliverable-section-document .btn-link:focus,
.assessment-skills-container .client-project-overview .deliverable-section-description.deliverable-section-document .btn-link:focus,
.project-deliverables-overview .talent-skills .deliverable-section-description.deliverable-section-document .btn-link:focus,
.project-brief-section .talent-skills .deliverable-section-description.deliverable-section-document .btn-link:focus,
.assessment-skills-container .talent-skills .deliverable-section-description.deliverable-section-document .btn-link:focus {
  color: black!important;
  font-weight: 700;
}
.client-project-overview {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.client-project-overview .deliverable-details-panel .deliverable-section .deliverable-section-title {
  margin-bottom: 10px;
}
.client-project-overview .deliverable-client-overview .deliverable-section {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.client-project-overview .deliverable-client-overview .deliverable-section .deliverable-section-description {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.client-project-overview .deliverable-client-overview img {
  height: 45px;
  display: block;
  margin-right: 15px;
}
.client-project-overview .deliverable-client-overview h4 {
  font-size: 22px;
}
.client-project-overview .deliverable-client-overview > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.client-project-overview .summary-details-panel .deliverable-section {
  margin-bottom: 40px;
}
.team-status-modal {
  padding: 0 !important;
}
.team-status-modal .scrollarea {
  flex-direction: column;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  padding-top: 80px;
}
.team-status-modal .scrollarea .scrollarea-content {
  align-items: center;
}
.team-status-modal .scrollarea .modal-container {
  padding: 0 !important;
  min-height: unset !important;
  max-width: 1000px;
  width: 100%;
  min-width: unset;
}
.opportunity-team-status-modal .team-status-modal-header {
  height: 56px;
  background-color: #B5C7DD;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  padding: 0 15px;
}
.opportunity-team-status-modal .team-status-modal-header h3 {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #000000;
}
.opportunity-team-status-modal .team-status-modal-header h3 span {
  font-weight: 400;
  margin-left: 8px;
  font-size: 15px;
}
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-table th {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.01em;
  color: #343741;
  text-align: center;
  padding: 0.25rem 2rem;
  vertical-align: middle;
}
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-table th:first-child {
  text-align: left;
}
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-table tr {
  height: 50px;
}
@media only screen and (min-width: 640px) {
  .opportunity-team-status-modal .team-status-modal-container .team-status-modal-table tr td {
    padding: 0.25rem 2rem;
  }
}
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-table td.team-member-name,
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-table td.team-member-role,
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-table td.team-member-status {
  width: 25%;
  vertical-align: middle;
  text-align: center;
}
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-table td.team-member-name *,
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-table td.team-member-role *,
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-table td.team-member-status * {
  transition: all 250ms ease-in-out;
}
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-table td.team-member-name p,
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-table td.team-member-role p,
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-table td.team-member-status p {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 160%;
  align-items: center;
  letter-spacing: 0.01em;
  color: #343741;
  text-align: center;
  margin-bottom: 0;
}
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-table td.team-member-name {
  width: 50%;
  text-align: left;
}
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-table td.team-member-name p {
  text-align: left;
}
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-table td.team-member-status p {
  font-weight: bold;
}
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-table td.team-member-status button {
  white-space: nowrap;
  padding-top: 0;
  padding-bottom: 0;
  height: 35px;
}
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-table td.team-member-status button:disabled {
  color: #90A0B7 !important;
  background-color: #F5F6F8 !important;
  opacity: 1!important;
  border-color: #f5f6f8 !important;
}
@media only screen and (max-width: 767px) {
  .opportunity-team-status-modal .team-status-modal-container .team-status-modal-table td {
    width: unset!important;
  }
}
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-footer {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  padding: 5px 20px;
  margin-bottom: 1rem;
}
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-footer .modal-footer-title {
  flex: 1;
  text-align: center;
  margin-bottom: 8px;
}
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-footer.flex-row {
  align-items: center;
}
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-footer.flex-row .modal-footer-title {
  margin-bottom: 0;
}
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-footer button {
  align-self: flex-end;
}
.opportunity-team-status-modal .team-status-modal-container .team-status-modal-footer p {
  align-self: center;
  max-width: 650px;
  flex: 1;
  text-align: center;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: #000000 !important;
  margin: 0;
}
.opp-filter-dropdown {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 15px;
}
.opp-filter-dropdown * {
  z-index: 150;
}
.opp-unseen-update.deliverable-title,
.opp-unseen-update.deliverable-section-title {
  position: relative;
  display: inline-block;
}
.opp-unseen-update.deliverable-title:before,
.opp-unseen-update.deliverable-section-title:before {
  content: "Updated!";
  position: absolute;
  left: 100%;
  margin-left: 5px;
  font-weight: 500;
  top: 50%;
  margin-top: -8px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-danger, '#E54963');
  color: white;
  font-family: Beatrice, sans-serif;
  font-size: 10px;
  border-radius: 7px;
  padding: 0 6px;
}
.opp-unseen-nav {
  position: relative;
  display: inline-block;
}
.opp-unseen-nav:before {
  content: "\f06a";
  position: absolute;
  left: 100%;
  margin-left: 10px;
  font-weight: 900;
  top: 50%;
  margin-top: -5px;
  height: 10px;
  width: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-danger, '#E54963');
  font-family: "Font Awesome 5 Free";
  font-size: 13px;
  background-color: white;
  border-radius: 50%;
}
.opp-unseen-icon {
  font-size: 13px;
  color: var(--theme-danger, '#E54963') !important;
  line-height: normal!important;
  margin-left: 15px!important;
}
.profile-container .main-section {
  text-align: center;
}
.profile-container .profile-name {
  font-weight: 500;
  font-size: 30px;
  color: #192A3E;
}
.profile-container .profile-info-group {
  margin: 1rem;
  font-size: 14px;
}
.profile-container .profile-info-group .profile-info-icon {
  color: var(--theme-warning, '#FFB946');
  margin-right: 5px;
}
.profile-container .profile-details {
  margin-bottom: 3rem;
}
.profile-container .detail-label {
  color: #334D6E;
  font-weight: 500;
  font-size: 16px;
}
.profile-container .detail-value {
  color: #2ED47A;
  font-weight: 500;
  font-size: 16px;
}
.profile-container .top-members-grid,
.profile-container .other-members-grid {
  margin-left: -1rem;
  margin-right: -1rem;
}
.profile-container .member-panel {
  display: inline-block;
  text-align: center;
  vertical-align: top;
}
.profile-container .member-panel a {
  text-decoration: none!important;
}
.profile-container .member-panel p {
  margin-top: 5px;
  max-width: 150px;
}
.profile-container .member-panel p .user-name {
  color: #109CF1;
  font-size: 16px;
  font-weight: 500;
}
.profile-container .member-panel p .user-job-title {
  color: #334D6E;
  font-size: 12px;
}
.profile-container .member-panel p.user-highlight .user-name {
  color: var(--theme-success, '#5ae399');
}
.profile-container .member-panel p.user-highlight .user-job-title {
  color: #334D6E !important;
  text-decoration: none!important;
}
.profile-container .bg-gradient .section-title {
  color: white;
}
.profile-container .medium-skill-block {
  background: var(--theme-secondary, '#913ef0');
}
.profile-container .profile-about-link {
  color: #109CF1;
  font-weight: 500;
  font-size: 14px;
}
.top-skill-list,
.medium-skill-list,
.industry-experience-list {
  margin: 0 -10px;
}
.top-skill-block,
.medium-skill-block,
.industry-experience-block {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px;
  border-radius: 20px;
  font-weight: 500;
  color: white;
  padding: 8px 16px;
  font-size: 12px;
}
.top-skill-block,
.industry-experience-block {
  background: var(--theme-primary, '#5f3db1');
}
.team-info-panel-user-image {
  position: relative;
  align-items: center;
  align-self: center;
  height: 110px!important;
  width: 110px!important;
}
.team-info-panel-user-image .loading-user-image {
  height: 110px!important;
  width: 110px!important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-info-panel-user-image img {
  height: 110px!important;
  width: 110px!important;
  border-radius: 50%;
  z-index: 1;
}
.team-info-panel-user-image .talent-candidate-status {
  position: absolute;
  top: 1px;
  left: -1px;
  right: 0;
  bottom: 0;
  height: 111px!important;
  width: 111px!important;
  z-index: 2;
}
.faq-heading {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.faq-heading button {
  display: flex;
  width: 100%;
  color: #192A3E;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none!important;
  padding-left: 0;
  padding-right: 0;
}
.faq-heading button span {
  flex: 4;
  display: block;
  text-align: left;
}
.faq-heading button i {
  flex: 1;
  font-size: 13px;
}
.faq-body {
  color: #334D6E;
  font-size: 14px;
  line-height: 160%;
  padding-right: 7rem;
}
.faq-body p {
  flex: 4;
  text-align: left;
}
.profile-tabs .btn {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 0;
  box-shadow: none!important;
}
.profile-tabs .btn.active {
  background: white;
}
.team-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 15px;
  flex-direction: row;
}
.team-list.inline-team-list {
  position: relative;
  margin-top: 30px !important;
  margin-right: -20px;
}
.team-list.inline-team-list > div {
  position: relative;
  max-width: 100%;
}
.team-list.inline-team-list div[id^='candidates-scroller-'],
.team-list.inline-team-list div[id*=' candidates-scroller-'] {
  overflow-x: hidden;
  white-space: nowrap;
  width: 100%;
  display: inline-flex;
  align-items: stretch;
  flex-direction: row;
}
.team-list.inline-team-list div[id^='candidates-scroller-'] .talent-panel,
.team-list.inline-team-list div[id*=' candidates-scroller-'] .talent-panel {
  justify-content: space-evenly;
  position: relative;
  flex-direction: column;
  min-width: 350px !important;
  width: 350px !important;
  display: inline-flex;
  align-items: stretch;
  margin-right: 20px;
}
.team-list.inline-team-list div[class^='candidates-scroller'],
.team-list.inline-team-list div[class*=' candidates-scroller'] {
  bottom: -15px !important;
  right: 25px !important;
}
.talent-panel {
  background: #F5F6F8;
  border: 1px solid #E5E5E5;
}
.talent-panel .team-info-panel .top-info {
  height: 300px;
  flex: unset;
  padding: 20px 0;
}
.talent-panel .team-info-panel .top-info .team-bio {
  line-height: 23px;
  height: 46px;
  margin: 0 20px;
  display: block;
}
.talent-panel .team-info-panel .metric-container {
  border-top: 1.5px solid #C2CFE0;
}
.assigned-talent {
  box-shadow: 6px 2px 8px rgba(95, 61, 177, 0.3);
}
.assigned-talent .card {
  border: 4.5px solid var(--theme-primary, '#5f3db1') !important;
  border-top: none!important;
  box-sizing: border-box;
}
.assigned-talent .card .potential-talent-footer .btn-success {
  cursor: default!important;
}
.unassigned-talent .card {
  border: 3px solid transparent!important;
  box-sizing: border-box;
  box-shadow: 6px 0 18px rgba(0, 0, 0, 0.06);
}
.unassigned-talent .card > div {
  margin: 0 -3px;
}
.unassigned-talent .card .potential-talent-footer .btn-success {
  cursor: default!important;
}
.team-panel {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  min-width: 350px!important;
  margin: 0 0 20px;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.1);
}
.team-panel .team-panel-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.team-panel .panel-status {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.team-panel .panel-status > div {
  flex: 1;
  height: 20px;
  padding: 0;
  align-items: flex-end;
  justify-content: flex-end;
  display: flex;
}
.team-panel .panel-status > div h5 {
  margin: 0 auto;
  padding: 0;
  font-size: 11px;
  font-family: 'Beatrice', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
  text-align: center;
  line-height: 10px;
}
.team-panel .panel-info {
  margin-top: -1px;
  border-top: 10px solid var(--theme-primary, '#5f3db1');
  background-color: white;
  box-shadow: 6px 0 18px rgba(0, 0, 0, 0.06);
}
.team-panel .panel-btn {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: white;
  height: 42px;
  align-items: center;
  justify-content: center;
}
.team-panel .panel-links {
  padding: 0 20px;
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
}
.team-panel .panel-links .btn {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 42px;
  align-items: center;
  justify-content: center;
}
.team-info-panel {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.team-info-panel .top-info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 20px;
  height: 160px;
  flex: 1;
}
.team-info-panel .team-members-row {
  background: #f2f8fe;
  flex-direction: row;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 25px;
  color: #343741;
}
.team-info-panel .team-members-row .img-fluid {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
.team-info-panel .team-members-row .member-name {
  white-space: nowrap;
  overflow: hidden;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height */
  margin: 9px 0 0 0;
  text-align: center;
  letter-spacing: 0.01em;
}
.team-info-panel .team-members-row .truncating-text {
  font-weight: normal;
  font-size: 8px;
  line-height: 15px;
  /* identical to box height */
  text-align: center;
  letter-spacing: 0.01em;
  margin: 0;
}
.team-info-panel .team-title {
  position: relative;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.team-info-panel .team-title .new-indicator {
  line-height: 12px;
  font-size: 10px;
  color: white;
  border-radius: 12px;
  min-width: 16px;
  min-height: 16px;
  padding: 2.5px 4.5px;
  font-weight: 500;
  vertical-align: top;
  background-color: var(--theme-danger);
  display: inline-block;
  text-align: center;
  margin-left: 5px;
  position: absolute;
  left: 100%;
}
.team-info-panel .team-info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.team-info-panel .team-bio {
  font-size: 12px;
  line-height: 160%;
  /* or 26px */
  min-height: 20px;
  text-align: center;
  letter-spacing: 0.01em;
  margin: 16px 15px 20px;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  -o-ellipsis-lastline: 3;
}
.team-info-panel .details-link {
  font-weight: 600;
  font-size: 11px;
  line-height: 19px;
  /* identical to box height */
  text-align: center;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  /* C - 4 */
  color: var(--theme-secondary, '#913ef0');
  margin: 0;
}
.team-info-text {
  display: contents;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  white-space: nowrap;
  padding: 0;
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 0.01em;
}
.team-info-text p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 5px;
  padding: 0;
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 0.01em;
}
.team-info-text .fa {
  font-weight: 900;
  font-size: 10px;
  line-height: 14px;
  margin-right: 5px;
  color: #C2CFE0;
  letter-spacing: 0.01em;
}
.proposed-team-panel {
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
  flex-direction: column;
  min-height: 540px;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}
.proposed-team-panel.assigned-team-panel {
  border: 3px solid var(--theme-success, '#5ae399');
}
.proposed-team-panel .team-info-section {
  display: flex;
  min-width: 330px;
  flex-direction: column;
  flex: 2;
  align-self: stretch;
  z-index: 3;
  align-items: stretch;
  padding: 20px 0 10px!important;
  box-shadow: 6px 0px 18px rgba(0, 0, 0, 0.06);
}
.proposed-team-panel .team-info-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  align-items: stretch;
  justify-content: space-around;
}
.proposed-team-panel .team-info-panel .d-flex,
.proposed-team-panel .team-info-panel .top-info {
  height: auto;
  flex: 1;
}
.proposed-team-panel .team-info-panel .team-members-row {
  padding: 5px 30px;
  flex: 1;
}
.proposed-team-panel .team-info-panel .top-info {
  justify-content: space-around;
}
.proposed-team-panel .team-info-panel .details-link {
  margin-bottom: 5px;
}
.proposed-team-panel .team-cover-letter-section {
  min-width: 350px;
  z-index: 1;
  flex: 3;
  background: white;
  padding: 30px 40px;
  border-left: 1px solid #E5EBF1;
  border-right: 1px solid #E5EBF1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.proposed-team-panel .team-cover-letter-section .cover-letter-container {
  flex-grow: 1;
}
.proposed-team-panel .team-cover-letter-section p {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: #334D6E;
}
.proposed-team-panel .team-summary-section {
  min-width: 230px;
  flex: 1;
  background-color: #f8fafc;
  text-align: center;
  flex-direction: column;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 30px 20px 0;
}
.proposed-team-panel .team-summary-section hr {
  display: none;
}
.proposed-team-panel .team-summary-section .summary-stats-container {
  flex: 1;
  border-bottom: 1px solid #D3D8DD;
}
.proposed-team-panel .team-summary-section a {
  margin: 40px 0;
}
.proposed-team-panel .proposal-actions {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid #D3D8DD;
}
.proposed-team-panel .proposal-actions .btn {
  flex: 1;
  max-width: 250px;
  white-space: nowrap;
  margin: 3px 5px;
  padding-left: 1rem;
  padding-right: 1rem;
}
.proposed-team-panel .proposal-actions .btn-dark:disabled {
  box-shadow: none!important;
  background-color: #C2CFE0 !important;
  border-color: #C2CFE0 !important;
  opacity: 0.8 !important;
}
@media only screen and (max-width: 900px) {
  .proposed-team-panel {
    flex-direction: column!important;
    flex-wrap: nowrap;
    margin-left: auto;
    margin-right: auto;
    border: none;
  }
  .proposed-team-panel .team-info-panel {
    width: 100%;
  }
}
.potential-talent-footer-placeholder {
  border-top: 1px solid #C2CFE0;
  align-self: stretch;
}
.potential-talent-footer {
  background-color: #F5F6F8;
  display: flex;
  align-self: stretch;
  align-items: stretch;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid #C2CFE0;
  border-bottom: 1px solid #C2CFE0;
  padding: 0 22px;
  height: 105px;
}
.potential-talent-footer h4 {
  margin: 0 auto 8px;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  letter-spacing: 0.01em;
  color: #343741;
}
.potential-talent-footer h2 {
  margin: 0 auto;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 135%;
  text-align: center;
  letter-spacing: 0.01em;
  color: #343741;
}
.potential-talent-footer p {
  margin: 3px auto 0;
  font-family: Beatrice, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.01em;
  color: #343741;
}
.potential-talent-footer.rate-change {
  position: relative;
}
.potential-talent-footer.rate-change .rate-change-container {
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.potential-talent-footer.rate-change .rate-change-container h4 {
  font-size: 11px;
}
.potential-talent-footer.rate-change .rate-change-container h2 {
  font-size: 20px;
  position: relative;
  color: var(--theme-danger, '#E54963');
  text-decoration: line-through;
}
.potential-talent-footer.rate-change .rate-change-container h2 span {
  color: #343741;
}
.potential-talent-actions {
  background-color: white;
  padding: 0 1.2rem;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: space-evenly;
  height: 120px;
}
.potential-talent-actions .approved-candidate-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin: 0 -3px !important;
}
.potential-talent-actions .approved-candidate-actions button {
  flex: 1;
  width: unset!important;
  height: unset!important;
  margin: 0 3px!important;
  padding: 0.5rem 0 !important;
  white-space: normal!important;
}
.potential-talent-actions .approved-candidate-actions .btn-success {
  pointer-events: none;
}
.potential-talent-actions .btn-success {
  cursor: default!important;
}
.potential-talent-actions button:disabled {
  box-shadow: none!important;
  background-color: #C2CFE0 !important;
  border-color: #C2CFE0 !important;
  opacity: 0.8 !important;
  color: white!important;
}
.potential-talent-actions .project-invite-btn span {
  font-size: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  position: relative;
}
.potential-talent-actions .project-invite-btn span small {
  font-size: 11px;
}
.potential-talent-actions .project-invite-btn span span {
  margin-bottom: 5px;
}
.invited-candidate-actions {
  margin: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.invited-candidate-actions.shortlisted-actions {
  min-height: 37px;
}
.invited-candidate-actions i {
  font-size: 18px!important;
  margin-right: 0.6rem;
  line-height: 18px;
}
.invited-candidate-actions p {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  line-height: 18px;
  letter-spacing: 0.01em;
  white-space: normal;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}
.invited-candidate-actions.pending i {
  color: black;
}
.invited-candidate-actions.declined i {
  color: black;
}
.invited-candidate-actions.shortlisted i {
  color: var(--theme-success, '#5ae399');
}
.proposed-team-panel-list-actions {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid #D3D8DD;
}
.proposed-team-panel-list-actions .archive-team-button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.proposed-team-panel-list-actions .team-candidate-status {
  font-size: 14px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #334d6e;
  height: 33px;
  vertical-align: middle;
  text-transform: uppercase;
}
.proposed-team-panel-list-actions .team-candidate-status i {
  margin-right: 5px;
  font-size: 16pxClientProjectsController;
}
.team-horizontal-tile .message-btn {
  margin-left: auto;
}
.team-horizontal-tile .archive-btn,
.team-horizontal-tile .like-btn,
.team-horizontal-tile .interview-btn,
.team-horizontal-tile .message-btn {
  padding: 6px;
  position: relative;
}
.team-horizontal-tile .archive-btn i,
.team-horizontal-tile .like-btn i,
.team-horizontal-tile .interview-btn i,
.team-horizontal-tile .message-btn i {
  font-size: 22px;
}
.team-horizontal-tile .archive-btn i.fa-plus-circle,
.team-horizontal-tile .like-btn i.fa-plus-circle,
.team-horizontal-tile .interview-btn i.fa-plus-circle,
.team-horizontal-tile .message-btn i.fa-plus-circle {
  color: black;
}
.team-horizontal-tile .archive-btn i.fa-times-circle,
.team-horizontal-tile .like-btn i.fa-times-circle,
.team-horizontal-tile .interview-btn i.fa-times-circle,
.team-horizontal-tile .message-btn i.fa-times-circle {
  color: #93A0B5;
}
.team-horizontal-tile .archive-btn i.fa-thumbs-up,
.team-horizontal-tile .like-btn i.fa-thumbs-up,
.team-horizontal-tile .interview-btn i.fa-thumbs-up,
.team-horizontal-tile .message-btn i.fa-thumbs-up {
  color: #93A0B5;
}
.team-horizontal-tile .archive-btn i.fa-thumbs-up.fas,
.team-horizontal-tile .like-btn i.fa-thumbs-up.fas,
.team-horizontal-tile .interview-btn i.fa-thumbs-up.fas,
.team-horizontal-tile .message-btn i.fa-thumbs-up.fas {
  color: var(--theme-success, '#5ae399');
}
.team-horizontal-tile .archive-btn i.fa-calendar-alt,
.team-horizontal-tile .like-btn i.fa-calendar-alt,
.team-horizontal-tile .interview-btn i.fa-calendar-alt,
.team-horizontal-tile .message-btn i.fa-calendar-alt,
.team-horizontal-tile .archive-btn i.fa-comment-alt,
.team-horizontal-tile .like-btn i.fa-comment-alt,
.team-horizontal-tile .interview-btn i.fa-comment-alt,
.team-horizontal-tile .message-btn i.fa-comment-alt {
  color: #93A0B5;
  line-height: 18px;
}
.team-horizontal-tile .archive-btn .badge,
.team-horizontal-tile .like-btn .badge,
.team-horizontal-tile .interview-btn .badge,
.team-horizontal-tile .message-btn .badge {
  position: absolute;
  top: 2px;
  right: 2px;
}
.team-horizontal-tile .like-btn {
  margin-left: auto;
}
.team-horizontal-tile .like-btn .fa-heart {
  color: var(--theme-danger, '#E54963');
}
.team-horizontal-tile .fa-ellipsis-v {
  color: #93A0B5;
  padding: 6px;
  font-size: 23px;
}
.team-horizontal-tile .details-link {
  text-decoration: underline;
  letter-spacing: 0.01em;
  color: var(--theme-secondary, '#913ef0');
  font-size: 18px;
}
.matched-roles-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  min-height: 19px;
}
.matched-roles-teams .role2 {
  padding: 2px 8px;
  background: white;
  border-radius: 4px;
  margin: 0;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.01em;
  border: 1px solid #39178B;
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #39178B;
}
.team-horizontal-tile .more-roles {
  margin: 0;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  color: #4B80E7;
  cursor: default;
}
.potential-candidate-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #C2CFE0;
  padding: 1rem 1.2rem;
}
.potential-candidate-status.border-bottom-none {
  border-bottom: none;
}
.potential-candidate-status button:disabled {
  box-shadow: none!important;
  background-color: #C2CFE0 !important;
  border-color: #C2CFE0 !important;
  opacity: 0.8 !important;
  color: white!important;
}
.potential-candidate-status .candidate-status {
  margin: 0 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
}
.potential-candidate-status .candidate-status .fa-stack {
  min-width: 40px;
}
.potential-candidate-status .candidate-status .fa-stack .fa-file {
  font-size: 35px!important;
  color: var(--theme-success, '#5ae399');
}
.potential-candidate-status .candidate-status .fa-stack .fa-check,
.potential-candidate-status .candidate-status .fa-stack .fa-question,
.potential-candidate-status .candidate-status .fa-stack .fa-times {
  font-size: 14px;
  margin-top: 7px;
  color: white!important;
}
.potential-candidate-status .candidate-status.pending .fa-stack .fa-file {
  color: #D3D8DC;
}
.potential-candidate-status .candidate-status.approved .fa-stack .fa-file {
  color: var(--theme-success, '#5ae399');
}
.potential-candidate-status .candidate-status.rejected .fa-stack .fa-file,
.potential-candidate-status .candidate-status.withdrawn .fa-stack .fa-file {
  color: #656565;
}
.potential-candidate-status .candidate-status .status-info {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.potential-candidate-status .candidate-status .status-info p {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0.01em;
  white-space: normal;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.potential-candidate-status .candidate-status .status-info p .tooltip-info i {
  color: black;
}
.potential-candidate-status .potential-candidate-details {
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
  text-align: center;
  margin: 0;
  letter-spacing: 0.01em;
  color: #343741;
}
.potential-candidate-status .details-link {
  font-weight: 600;
  font-size: 11px;
  line-height: 19px;
  text-align: center;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: var(--theme-secondary, '#913ef0');
  margin: 0;
}
.potential-candidate-status.selected-candidate-status .potential-candidate-details.candidate-rate-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.potential-candidate-status.selected-candidate-status .potential-candidate-details.candidate-rate-details span {
  margin: 0 auto 3px;
  font-family: Beatrice-Bold, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  letter-spacing: 0.01em;
  color: #343741;
}
.potential-candidate-status.selected-candidate-status .potential-candidate-details.candidate-rate-details b {
  margin: 0 auto;
  font-family: Beatrice-Bold, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 19px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #343741;
}
.team-member-panel .top-panel {
  background: #F5F6F8;
  padding: 1rem 10px;
  text-decoration: none;
}
.team-member-panel .top-panel .profile-image {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}
.team-member-panel .top-panel .member-user-name {
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #212529;
  font-weight: normal;
}
.team-member-panel .top-panel .member-user-title {
  font-size: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #212529;
  font-weight: normal;
}
.team-member-panel .bottom-panel {
  padding: 10px;
}
.team-member-panel .bottom-panel .bottom-panel-label {
  color: #323C47;
  font-size: 10px;
  margin-bottom: 0;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.team-member-panel .bottom-panel .bottom-panel-value {
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.team-member-panel .bottom-panel .bottom-panel-link {
  color: #323C47;
  font-weight: 500;
  font-size: 12px;
}
.candidates-proposal-back-btn {
  margin: 20px 0;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: row nowrap;
}
.candidates-proposal-back-btn i {
  font-size: 22px;
}
.candidate-proposal-container {
  align-items: stretch;
}
.candidate-proposal-container .col-md-4 {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  padding: 0 6px;
}
.candidate-proposal-container .candidate-proposal-section {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-panel {
  padding: 2rem 1.5rem;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-panel .proposal-panel-header {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 20px;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-talent {
  padding: 0;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-talent .talent-panel {
  min-width: unset!important;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-talent .potential-candidate-status {
  height: 120px;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-cover-letter {
  flex-basis: 60%;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-cover-letter .proposal-panel-content .scrollarea.area {
  max-height: 330px!important;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-cover-letter .proposal-panel-content .scrollarea.area p {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #343741;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-documents {
  margin-top: 20px;
  flex-basis: 40%;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-documents .proposal-panel-content .scrollarea.area {
  max-height: 190px!important;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-documents .proposal-panel-content .scrollarea.area .talent-document-row {
  margin: 0 0 10px;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-documents .proposal-panel-content .scrollarea.area .talent-document-row i {
  font-size: 30px;
  margin-right: 25px;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-documents .proposal-panel-content .scrollarea.area .talent-document-row a {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #343741;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-details {
  flex-basis: 50%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-details .proposal-panel-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-details .proposal-panel-content .proposal-detail-section h4,
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-details .proposal-panel-content .proposal-detail-section p {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #343741;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-details .proposal-panel-content .proposal-detail-section p {
  font-weight: 600;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-next-steps {
  margin-top: 20px;
  flex-basis: 50%;
  background-color: #D3D8DD !important;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-next-steps .proposal-panel-content {
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-next-steps .proposal-panel-content .btn-light {
  background-color: white;
  border-color: white;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-next-steps .proposal-panel-content .btn-light:hover,
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-next-steps .proposal-panel-content .btn-light:focus {
  border-color: #000000;
  background-color: #000000;
  color: white;
}
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-next-steps .proposal-panel-content .btn-light:hover:disabled,
.candidate-proposal-container .candidate-proposal-section .candidate-proposal-next-steps .proposal-panel-content .btn-light:focus:disabled {
  background-color: white;
  border-color: white;
  color: black;
}
.talent-team-manage table.table td,
.talent-team-manage table.table th {
  vertical-align: center;
}
.talent-team-manage .ant-collapse-item {
  transition: all 200ms ease-in;
  background-color: white;
}
.talent-team-manage .ant-collapse-item.ant-collapse-item-active {
  background-color: rgba(252, 252, 253, 0.8);
}
.talent-team-manage .ant-collapse-item .ant-collapse-header-collapsible-only .ant-collapse-header-text {
  cursor: default;
  width: unset;
  flex-grow: 1;
}
.talent-team-manage .ant-collapse > .ant-collapse-item > .ant-collapse-header {
  align-items: center !important;
  padding: 0;
  border-bottom: 1px solid #E5EBF1;
}
.talent-team-manage .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
  margin-right: 0;
}
.talent-team-manage .ant-collapse > .ant-collapse-item .ant-collapse-content-box {
  padding: 0;
}
.talent-team-member-invite {
  position: relative;
}
.talent-team-member-invite .search-email-btn .ant-input-wrapper.ant-input-group {
  width: 100%;
}
.talent-team-member-invite .search-email-btn .ant-input-wrapper.ant-input-group input {
  max-width: 350px;
}
.talent-team-member-invite .search-email-btn .ant-input-wrapper.ant-input-group .ant-input-group-addon {
  display: inherit;
}
.talent-team-create input[type=text]:not(.ant-input),
.talent-team-create textarea {
  background-color: #F5F6F8;
  border-bottom: none;
}
.talent-team-create textarea {
  line-height: 1.5;
}
.talent-team-create .team-links-input {
  margin-bottom: 1rem;
}
.talent-team-create .team-links-input .form-group {
  margin-bottom: 0;
}
.form-links-input .ant-select-selection-item,
.team-links-input .ant-select-selection-item {
  display: flex;
  align-items: stretch;
}
.form-links-input button,
.team-links-input button {
  padding: 0 3px;
  height: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.form-links-input button i,
.team-links-input button i {
  font-size: 13px!important;
}
@media only screen and (max-width: 529px) {
  .profile-container .other-members-grid {
    margin: 0 auto;
  }
  .profile-container .other-members-grid .user-image-150 {
    height: 130px;
    width: 130px;
  }
}
.team-services-step .form-container {
  background-color: transparent !important;
  padding: 0;
}
.team-services-step input[type="text"] {
  background-color: #F5F6F8;
  border: none;
}
.team-services-step ::-moz-placeholder {
  color: #343741 !important;
  font-size: 12px;
  opacity: 0.6;
}
.team-services-step ::placeholder {
  color: #343741 !important;
  font-size: 12px;
  opacity: 0.6;
}
.team-member-table td,
.team-member-table th {
  vertical-align: middle;
}
.team-member-table .ant-table > .ant-table-container > .ant-table-content > table > tbody > tr > td {
  padding: 14px 10px;
}
.team-application-container .btn {
  min-width: unset;
}
.team-application-container .form-switch .col-form-label {
  display: block;
}
.team-application-container .editor .public-DraftEditor-content {
  min-height: 250px;
}
.team-application-container .talent-app-nav .step-title:not(.isActive):not(.disabled) {
  pointer-events: unset;
  cursor: pointer;
}
.team-application-container .talent-app-nav .step-title:not(.isActive):not(.disabled):hover {
  background-color: #f4f4f6;
  color: #000000;
  font-weight: 600;
}
.team-panel-bio {
  opacity: 0.5;
  text-align: left!important;
  -webkit-line-clamp: 2;
  height: 37px;
  -webkit-box-orient: vertical;
  font-style: normal;
  display: -webkit-box;
  overflow: hidden;
  font-size: 11px;
}
.team-panel-bio:not(.unstyled) {
  opacity: 1;
  margin-bottom: 6px;
  -webkit-line-clamp: 2;
  color: #67676a;
  font-weight: 500!important;
  font-family: "Beatrice", sans-serif !important;
}
.team-panel-bio:not(.unstyled) * {
  font-size: 11px;
  color: #67676a !important;
  font-weight: 500!important;
  font-family: "Beatrice", sans-serif !important;
  font-style: normal!important;
}
.team-stats {
  width: 40%;
}
.team-stats .ant-statistic-title {
  text-align: center;
}
.team-stats .ant-statistic-content {
  font-weight: 500;
  display: flex;
  justify-content: center;
  flex-flow: row nowrap;
  align-items: center;
}
.team-stats .ant-statistic-content .ant-statistic-content-value,
.team-stats .ant-statistic-content .ant-statistic-content-prefix {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.team-toggle-layout .ant-segmented .ant-segmented-item-label {
  display: flex;
  flex-direction: row;
  min-height: 28px;
  padding: 0 10px;
  line-height: unset;
  align-items: center;
}
.team-toggle-layout .ant-segmented .ant-segmented-item-label .ant-segmented-item-label {
  display: flex;
  flex-direction: row;
  min-height: 28px;
  gap: 0.5rem;
}
.team-toggle-layout .ant-segmented .ant-segmented-item-label .ant-segmented-item-label > span {
  font-size: 13px;
  line-height: unset;
}
.team-toggle-layout .ant-segmented .ant-segmented-item-label .ant-segmented-item-label .anticon {
  font-size: 24px;
  line-height: unset;
}
.opp-status-modal .ant-modal-header {
  background-color: #e5e7eb;
}
.opp-status-modal .ant-modal-content .ant-modal-footer {
  border: none!important;
  padding: 0.5rem 2.5rem 2rem;
}
.team-member-opp-status-table table thead tr > th {
  vertical-align: bottom;
}
.team-member-opp-status-table table tr.opp-lost td{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.team-member-opp-status-table table tr.opp-lost *:not(.ant-tag) {
  color: grey!important;
  opacity: 0.9;
}
.team-member-opp-status-table table tr.opp-lost button {
  display: none!important;
}
.team-scoping-documents-container {
  flex: 1;
  align-self: stretch;
}
.team-scoping-proposal-container,
.empty-team-scoping-proposal-container,
.team-scoping-documents-container {
  align-items: stretch;
  background: #F5F6F8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 0;
  margin: 15px 0;
}
.team-scoping-proposal-container .proposal-header-container,
.empty-team-scoping-proposal-container .proposal-header-container,
.team-scoping-documents-container .proposal-header-container {
  padding: 0px 20px;
  margin-bottom: 15px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: space-between;
}
.team-scoping-proposal-container .proposal-header-container h2,
.empty-team-scoping-proposal-container .proposal-header-container h2,
.team-scoping-documents-container .proposal-header-container h2 {
  color: black;
  text-decoration: underline;
  font-weight: 500;
  font-size: 18px;
}
.team-scoping-proposal-container .proposal-document-header,
.empty-team-scoping-proposal-container .proposal-document-header,
.team-scoping-documents-container .proposal-document-header {
  padding: 0 20px !important;
  margin-bottom: 15px;
  border-bottom: 1px solid #D3D8DD !important;
  min-height: unset !important;
  background-color: transparent !important;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: space-between;
}
.team-scoping-proposal-container .proposal-document-header h3,
.empty-team-scoping-proposal-container .proposal-document-header h3,
.team-scoping-documents-container .proposal-document-header h3 {
  color: black;
  font-weight: 500;
  font-size: 15px;
}
.team-scoping-proposal-container .proposal-document-header p,
.empty-team-scoping-proposal-container .proposal-document-header p,
.team-scoping-documents-container .proposal-document-header p {
  font-family: Poppins, sans-serif;
  font-style: normal;
  line-height: 22px !important;
  margin-top: unset !important;
  letter-spacing: 0.01em;
  color: #000000;
  font-size: 14px !important;
}
.team-scoping-proposal-container .proposal-document-header p .tooltip-info span i,
.empty-team-scoping-proposal-container .proposal-document-header p .tooltip-info span i,
.team-scoping-documents-container .proposal-document-header p .tooltip-info span i {
  color: #000000;
  line-height: 22px;
  font-size: 11px;
}
.team-scoping-document-upload-form {
  padding: 0 20px;
  background-color: transparent !important;
}
.team-scoping-document-upload-form .btn-file {
  align-self: center;
  background-color: white;
  min-width: 450px;
  max-width: 500px;
  margin: 15px auto;
}
.empty-team-scoping-documents-container,
.empty-team-scoping-proposal-container {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
}
.profile-nav {
  position: fixed;
  z-index: 50;
  width: 100%;
}
.profile-container {
  background: #D3D8DD;
  flex-grow: 1;
  background: white;
}
.profile-container .profile-info-group {
  margin-bottom: 0px !important;
}
.profile-container .profile-header {
  flex-wrap: wrap;
  display: flex;
  height: 450px;
  align-items: stretch;
  flex-direction: column;
  width: 100%;
}
.profile-container .profile-info {
  z-index: 10;
  background: #D3D8DD;
  display: flex;
  flex: 1;
  min-width: 300px;
  max-width: 300px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.profile-container .profile-info > div {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.profile-container .profile-info > div h3 {
  max-width: 300px;
  white-space: normal;
}
.profile-container .profile-info .fa-file-alt {
  color: #90a0b7;
  font-size: 27px;
}
.profile-container .profile-info .fa-linkedin {
  font-size: 30px;
  color: var(--theme-info, '#4B80E7');
}
.profile-container .profile-info .profile-info {
  flex: 0;
}
.profile-container .profile-info .img-grayscale {
  border: 4px solid #FFFFFF;
  box-sizing: border-box;
  border-radius: 122px;
  margin-top: 20px;
}
.profile-container .profile-info .profile-link-container {
  display: flex;
  left: 0;
  right: 0;
  bottom: -19px;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
}
.profile-container .profile-info .profile-link-container .profile-link {
  color: white;
  text-decoration: none !important;
  margin: 0 10px;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 35px;
  font-size: 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: inline-flex;
}
.profile-container .profile-banner {
  flex: 3;
  display: flex;
  flex-direction: column;
  min-width: 500px;
  align-items: center;
  justify-content: flex-end;
}
.profile-container .profile-banner .profile-banner-image {
  flex: 1;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.profile-container .profile-tabs {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  background: #D3D8DD;
  padding-left: 300px;
}
.profile-container .profile-tabs .btn {
  flex: 1;
}
.profile-container .profile-tabs .btn.active {
  margin-bottom: -1px;
}
.profile-container .profile-content {
  background: transparent;
  display: block;
  align-self: stretch;
  position: relative;
  margin: 0 auto;
  padding-left: 300px;
}
.profile-container .profile-content .section-group {
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  position: relative;
}
.profile-container .profile-content .section-group > .section {
  padding: 25px 40px 10px;
}
.profile-container .profile-content .section-group > .section > p > strong {
  font-weight: bold !important;
}
.profile-container .profile-content .bg-gradient {
  width: 100%;
  min-height: 300px;
}
.profile-container .profile-content .bg-gradient .section {
  padding: 40px 40px 40px 0;
}
@media only screen and (max-width: 767px) {
  .profile-container .profile-content {
    padding-left: 0;
  }
}
.profile-container p {
  font-weight: 300;
  font-size: 16px;
}
.profile-container p > b {
  font-weight: 600;
}
.profile-container p.section-subtitle {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0;
}
.profile-container p.section-title {
  color: #192A3E;
  font-size: 20px;
  font-weight: 500;
}
.profile-container .section-title-switch {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
.profile-container .section-title-switch p {
  color: #192A3E;
  font-size: 20px;
  font-weight: 500;
  margin-right: 35px;
}
.profile-container .section-title-switch .form-group {
  margin-bottom: 1rem;
}
.profile-container .section-title-switch .form-group label {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-bottom: 0;
  pointer-events: none;
}
.profile-container .section-title-switch .form-group label > span {
  pointer-events: none;
  touch-action: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 20px;
  margin-right: 6px;
  font-size: 12px;
  color: black;
  font-weight: 500;
}
.profile-container .section-title-switch .form-group label .react-switch {
  pointer-events: all;
}
.profile-container p.section-description {
  font-weight: normal;
  font-size: 12px;
  text-align: left;
  margin-bottom: 0;
}
.profile-container .scroller.profile-jobs-container-scroller {
  right: auto;
  left: -2px;
}
.profile-container .scroller.profile-jobs-container-pagination {
  right: auto;
  left: -12px;
}
.profile-container .profile-job-panel {
  margin-bottom: 50px;
  padding-right: 10px;
}
.profile-container .pills-section .section-title {
  margin-bottom: 0px;
}
.profile-container hr.section-divider {
  width: 65%;
  align-self: center;
  margin-left: 0;
}
.profile-container .profile-exp-item {
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  color: black;
}
.profile-container .profile-exp-item > a {
  color: var(--theme-secondary, '#913ef0');
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}
.profile-container .profile-exp-item > a:hover,
.profile-container .profile-exp-item > a:focus {
  text-decoration: underline;
}
.profile-container .profile-content.match-profile-content .section-group > .section {
  padding: 10px 40px;
}
.profile-container .profile-content.match-profile-content .section-heading-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.profile-container .profile-content.match-profile-content .highest-rank-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  margin-bottom: 15px;
}
.profile-container .profile-content.match-profile-content .highest-rank-label p {
  font-weight: 700;
  margin: 0 0 0 5px;
  font-size: 15px;
  line-height: 40px;
}
.profile-container .profile-content.match-profile-content .highest-rank-label .highest-rank {
  height: 40px;
  width: 40px;
}
.profile-container .profile-content.match-profile-content .match-metric-section .section-subtitle {
  font-weight: normal;
}
.profile-container .profile-content.match-profile-content .match-metric-section .section-info {
  font-size: 12px;
  margin: 8px 0;
  font-style: italic;
}
.profile-container .profile-content.match-profile-content .match-metric-section.disabled {
  opacity: 0.6;
}
.profile-container .profile-content.match-profile-content .match-metric-section.disabled .section-subtitle {
  font-style: italic;
}
.profile-container .profile-content.match-profile-content .match-metric-section.disabled .circle-progress-text p {
  font-size: 11px;
}
.profile-container .profile-banner .profile-banner-image {
  min-height: 250px;
}
.profile-content .section-group > .section .metric-circle {
  margin: 0 15px 0 -0.3rem;
  width: 80px;
}
.profile-content .section-group > .section .metric-circle .circle-progress-text span {
  display: flex;
}
.profile-content .section-group > .section .metric-circle .circle-progress-text span span {
  margin-top: -5px;
  font-size: 16px;
  line-height: normal;
  font-weight: bold;
}
.profile-content .section-group > .section .metric-circle .circle-progress-text span span:first-child {
  margin-top: -0.35em;
}
.profile-content .section-group > .section .metric-circle .circle-progress-text span span:last-child {
  font-size: 55%;
  font-weight: 400;
}
.profile-content .section-group > .section .metric-circle .circle-progress-text .highest-rank {
  display: none;
}
.profile-content .section-group > .section .overall-match-score-text {
  font-weight: 600;
  font-size: 22px;
  line-height: 134.3%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #000000;
  margin: 10px 0;
}
.profile-content .section-group > .section .talent-skills h5 {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: #192A3E;
  margin-bottom: 12px;
}
.profile-content .section-group > .section .profile-exp-table {
  background-color: #F5F6F8;
  margin-bottom: 35px;
}
.profile-content .section-group > .section .profile-exp-table th,
.profile-content .section-group > .section .profile-exp-table td {
  padding: 30px 20px;
  vertical-align: middle;
}
.profile-content .section-group > .section .profile-exp-table tr > th,
.profile-content .section-group > .section .profile-exp-table tr > td {
  text-align: left;
}
.profile-content .section-group > .section .profile-exp-table tr > th:last-child,
.profile-content .section-group > .section .profile-exp-table tr > td:last-child {
  width: 25%;
}
.profile-content .section-group > .section .profile-exp-table th {
  border-top: none;
}
.profile-content .section-group > .section .profile-exp-table tr > td:last-child,
.profile-content .section-group > .section .profile-exp-table tr > th:last-child {
  text-align: center;
}
.profile-content .section-group > .section .profile-exp-table .team-member {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}
.profile-content .section-group > .section .profile-exp-table .team-member img {
  border-radius: 50%;
  height: 60px;
  width: 60px;
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
  margin-right: 20px;
}
.profile-content .section-group > .section .profile-exp-table .team-member span {
  white-space: nowrap;
}
.profile-content .section-group > .section.match-metric-section .profile-exp-table tr > th,
.profile-content .section-group > .section.match-metric-section .profile-exp-table tr > td {
  text-align: left;
}
.profile-content .section-group > .section.match-metric-section .profile-exp-table tr > th:first-child,
.profile-content .section-group > .section.match-metric-section .profile-exp-table tr > td:first-child {
  width: 180px;
}
@media only screen and (max-width: 529px) {
  .profile-content .section-group > .section.match-metric-section .profile-exp-table tr > th:first-child,
  .profile-content .section-group > .section.match-metric-section .profile-exp-table tr > td:first-child {
    width: 40%;
  }
}
.profile-content .section-group > .section.match-metric-section .profile-exp-table tr > th:last-child,
.profile-content .section-group > .section.match-metric-section .profile-exp-table tr > td:last-child {
  width: unset;
}
.profile-content .section-group > .section.match-metric-section .profile-exp-table tr > td:first-child,
.profile-content .section-group > .section.match-metric-section .profile-exp-table tr > th:first-child {
  text-align: center;
}
.meets-criteria {
  margin: 0 auto;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
.meets-criteria i {
  font-size: 14px;
  color: var(--theme-success, '#5ae399');
}
.hr-wrapper {
  padding: 0 25px;
}
.profile-hr {
  border-top-color: #D3D8DD;
  border-width: 1.5px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.section-heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 0 20px;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.01em;
}
.section-heading p,
.section-heading h2 {
  color: #334D6E;
}
.section-heading h2 {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #334D6E;
}
.section-heading h2 span {
  margin-right: 6px;
}
.profile-match-progressbar {
  width: 100%;
  max-width: 450px;
}
.profile-match-progressbar .RSPBprogressBar {
  border-radius: 0;
}
.profile-match-progressbar .RSPBprogressBar .RSPBprogression {
  border-radius: 0;
}
.experience-tile-group {
  display: flex;
  flex-direction: row;
  margin: 0 -8px 1.5rem;
}
.experience-tile {
  background: #E5E5E5;
  border: 4px solid #e5e5e5;
  box-sizing: border-box;
  border-radius: 15px;
  padding: 9px 10px;
  flex: 1;
  margin: 40px 8px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  transition: all 200ms ease-in;
}
.experience-tile .meets-criteria {
  margin: 0 15px 0 10px;
  background-color: white;
}
.experience-tile .exp-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.experience-tile .exp-text p {
  margin-bottom: 0;
  font-family: Beatrice, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: normal;
  line-height: 19px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  color: #000000;
}
.experience-tile .exp-text h4 {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 1px;
}
.experience-tile.active {
  background: #E5E5E5;
  border: 3.5px solid var(--theme-success, '#5ae399');
  opacity: 1;
}
.experience-tile.active p {
  font-weight: 500;
}
.experience-tile.active h4 {
  font-weight: 700;
}
.experience-tile.selected::before {
  content: "\f107";
  font-weight: 900;
  position: absolute;
  top: -21px;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 32px;
  left: 50%;
  margin-left: -10px;
  color: black;
  font-family: "Font Awesome 5 Free" !important;
}
.experience-tile.disabled {
  opacity: 0.7;
}
.experience-tile.is-invalid {
  border: 1px solid var(--theme-danger, '#E54963');
}
.experience-tile-select {
  border: 1px solid #D8D8D8;
  border-radius: 8px;
}
.experience-tile-select i {
  color: #D8D8D8;
  font-size: 16px;
}
.experience-tile-select p {
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #3F434A;
}
.experience-tile-select h6 {
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.01em;
  color: #3F434A;
}
.experience-tile-select.active {
  background: rgba(20, 166, 87, 0.1);
  border-color: #5AE399;
}
.experience-tile-select.selected {
  background: rgba(20, 166, 87, 0.1);
  border-color: #5AE399;
}
@media only screen and (min-width: 991px) {
  .profile-link-container {
    position: absolute;
    top: 0;
    padding-top: 60px;
  }
  .profile-container > .profile-header > .profile-info {
    position: fixed;
    height: 450px;
  }
  .profile-nav {
    position: fixed;
    width: 300px;
  }
  .profile-nav .row > a {
    flex: none !important;
  }
  .profile-banner {
    padding-left: 300px;
  }
}
@media only screen and (max-width: 990px) {
  .profile-container > .profile-header {
    height: auto;
  }
  .profile-container > .profile-header > .profile-info {
    padding: 55px 0;
  }
  .profile-container .profile-content .section-group > .section {
    width: 100%;
  }
}
@media only screen and (max-width: 799px) {
  .profile-container .profile-content,
  .profile-container .profile-tabs {
    padding-left: 0;
  }
  .profile-container .profile-banner {
    min-width: auto;
  }
}
@media only screen and (max-width: 529px) {
  .profile-container .profile-content.match-profile-content .section-group > .section {
    padding: 10px 15px;
  }
  .profile-container .profile-content .section-group > .section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .profile-container .profile-content .section-group > .section .profile-exp-table th,
  .profile-container .profile-content .section-group > .section .profile-exp-table td {
    padding: 8px;
  }
  .profile-container .profile-content .section-group > .section .profile-exp-table .team-member {
    flex-direction: column;
  }
  .profile-container .profile-content .section-group > .section .profile-exp-table .team-member img {
    margin: 0;
  }
  .experience-tile-group {
    padding-left: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .profile-nav {
    padding-left: 8px;
  }
}
@media only screen and (min-width: 800px) and (max-width: 896px), screen and (max-width: 600px) {
  .experience-tile-group {
    flex-direction: column;
  }
  .experience-tile-group .experience-tile {
    margin: 16px 8px 0;
  }
  .experience-tile-group .experience-tile.selected::before {
    top: unset;
    left: -18px;
    transform: rotate(270deg);
  }
}
.profile-main-nav .ant-tabs-ink-bar {
  background-color: white;
  bottom: 8px!important;
  height: 12px;
  scale: 0.7 1;
}
.profile-main-nav .ant-tabs-nav {
  margin-bottom: 1px;
}
.profile-main-nav .ant-tabs-nav-wrap {
  background-color: var(--theme-secondary, '#913ef0');
  padding: 0 10px;
}
.profile-main-nav .ant-tabs-nav-list {
  flex: 1;
  background-color: var(--theme-secondary, '#913ef0');
}
.profile-main-nav .ant-tabs-nav-list .ant-tabs-tab {
  flex: 1;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: white!important;
}
.profile-main-nav .ant-tabs-nav-list .ant-tabs-tab .ant-tabs-tab-btn {
  color: white!important;
}
.profile-main-nav .ant-tabs-nav-list .ant-tabs-tab:hover,
.profile-main-nav .ant-tabs-nav-list .ant-tabs-tab:focus {
  font-weight: 600;
  color: white!important;
}
.profile-main-nav .ant-tabs-nav-list .ant-tabs-tab:hover .ant-tabs-tab-btn,
.profile-main-nav .ant-tabs-nav-list .ant-tabs-tab:focus .ant-tabs-tab-btn {
  color: white;
}
.profile-main-nav .ant-tabs-nav-list .ant-tabs-tab.ant-tabs-tab-active {
  font-weight: 600;
}
.profile-main-nav .ant-tabs-nav-list .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
  color: white;
}
.profile-main-nav > .ant-segmented {
  padding: 0;
  background-color: var(--theme-secondary, '#913ef0');
  margin-bottom: 0.5rem;
}
.profile-main-nav > .ant-segmented:focus,
.profile-main-nav > .ant-segmented:hover {
  background-color: var(--theme-secondary, '#913ef0');
}
.profile-main-nav > .ant-segmented .ant-segmented-item {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.profile-main-nav > .ant-segmented .ant-segmented-item .ant-segmented-item-label {
  color: white;
  font-weight: 500;
  min-height: unset;
  font-size: 16px;
  line-height: unset;
}
.profile-main-nav > .ant-segmented .ant-segmented-item-selected {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
}
.profile-main-nav > .ant-segmented .ant-segmented-item-selected .ant-segmented-item-label {
  display: inline-block;
  color: white;
  border-bottom: 2px solid white;
  font-weight: 600;
}
.profile-sub-nav {
  display: flex;
  align-items: stretch;
  flex-direction: row;
}
.profile-sub-nav .ant-segmented {
  flex: 1;
  background-color: rgba(0, 0, 0, 0.08);
}
.profile-sub-nav .ant-segmented:hover,
.profile-sub-nav .ant-segmented:focus {
  background-color: rgba(0, 0, 0, 0.08);
}
.profile-sub-nav .ant-segmented .ant-segmented-item-label {
  font-size: 14px!important;
}
.positions-form-container {
  max-width: 1200px !important;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}
.byo-position-nav-label {
  color: var(--theme-primary, '#5f3db1');
  font-size: 1rem;
  font-weight: 400;
}
.byo-position-nav-label .current-position {
  font-weight: 900;
}
.bidding-step-container {
  padding-bottom: 0 !important;
  padding-top: 1rem;
}
.bidding-step-container .wizard-form-container {
  max-width: 100%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.bidding-step-container .position-form {
  padding-bottom: 0;
  border-bottom: none;
}
.bidding-step-container .position-form > div form .field {
  margin-top: 0;
}
.bidding-step-container .position-form > div form .field-section {
  padding: 0 20px;
}
.bidding-step-container .position-form.read-only > div form .position-discipline-input,
.bidding-step-container .position-form.read-only > div form .skill-importance-container {
  pointer-events: none;
}
.bidding-step-container .position-form.read-only > div form .position-discipline-input *,
.bidding-step-container .position-form.read-only > div form .skill-importance-container * {
  pointer-events: none;
}
.bidding-step-container .position-form.read-only > div form .position-discipline-input .role-name button,
.bidding-step-container .position-form.read-only > div form .skill-importance-container .role-name button {
  display: none;
}
.bidding-step-container form > .position-form {
  margin-top: 20px !important;
  border-top: 1px solid #F5F6F8;
  align-items: stretch;
  padding: 35px 1rem;
}
.bidding-step-container form > .position-form .skills-form {
  min-height: 55px;
}
.position-step,
.visibility-step {
  background-color: white;
  padding: 32px;
  gap: 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.position-step .col-form-label,
.visibility-step .col-form-label {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
  color: #8C9298;
  padding: 0;
  margin-bottom: 8px;
}
.position-step .form-group,
.visibility-step .form-group {
  transition: all 150ms ease-in;
  display: flex;
  flex-direction: column;
}
.position-step .form-group .invalid-feedback,
.visibility-step .form-group .invalid-feedback {
  display: block;
  opacity: 1;
  transition: all ease-in;
}
.position-step .form-check-label,
.visibility-step .form-check-label {
  white-space: nowrap;
}
.position-step.isReadOnly .form-group,
.visibility-step.isReadOnly .form-group {
  pointer-events: none;
}
.position-step.isReadOnly .form-group *,
.visibility-step.isReadOnly .form-group * {
  pointer-events: none;
}
.position-step.isReadOnly input,
.visibility-step.isReadOnly input {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.project-visibility-settings .visibility-main-radio .ant-space {
  gap: 1rem !important;
  align-items: stretch;
}
.project-visibility-settings .visibility-main-radio .ant-space .ant-space-item {
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.project-visibility-settings .visibility-main-radio .ant-radio-wrapper {
  align-items: center;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.project-visibility-settings .visibility-main-radio .ant-radio-wrapper .ant-radio {
  top: unset;
}
.project-visibility-settings .visibility-main-radio .ant-radio-wrapper * {
  transition: all 150ms ease-in;
}
.project-visibility-settings .visibility-main-radio .ant-radio-wrapper.ant-radio-wrapper-checked {
  border-color: var(--theme-secondary, '#913ef0');
  background-color: var(--theme-secondary, '#913ef0');
}
.project-visibility-settings .visibility-main-radio .ant-radio-wrapper.ant-radio-wrapper-checked p,
.project-visibility-settings .visibility-main-radio .ant-radio-wrapper.ant-radio-wrapper-checked i {
  color: white;
}
.project-visibility-settings .visibility-main-radio .ant-radio-wrapper.ant-radio-wrapper-checked .ant-radio-checked .ant-radio-inner {
  background-color: white;
  border-color: white;
}
.project-visibility-settings .visibility-main-radio .ant-radio-wrapper.ant-radio-wrapper-checked .ant-radio-checked .ant-radio-inner::after {
  border-color: var(--theme-secondary, '#913ef0');
}
.project-visibility-settings .visibility-main-radio .ant-radio-wrapper.ant-radio-wrapper-checked .ant-badge-count {
  color: black;
}
.project-visibility-settings .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-header-text {
  flex: 1;
  width: unset;
}
.project-visibility-settings .ant-collapse-content > .ant-collapse-content-box {
  padding-right: 0;
}
.project-visibility-settings .visibility-tier-1-options .visibility-tier-1-option {
  margin-left: 28px;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
  padding: 1rem;
}
.visibility-collapse {
  padding: 0;
}
.visibility-collapse .ant-collapse-item > .ant-collapse-header {
  padding: 0;
}
.visibility-collapse .ant-collapse-item > .ant-collapse-header .ant-collapse-expand-icon {
  align-self: center;
  display: flex;
}
.visibility-collapse .ant-collapse-item > .ant-collapse-header .ant-collapse-expand-icon .anticon {
  font-size: 16px;
  color: black;
}
.template-collapsable-overview .ant-collapse {
  border: none;
  background-color: transparent;
}
.template-collapsable-overview .ant-collapse .ant-collapse-item {
  border: none;
}
.template-collapsable-overview .ant-collapse-content {
  border: unset;
  color: unset;
  background-color: unset;
  /* border-style: solid; */
}
.role-templates-collapse .ant-collapse-item .ant-collapse-header {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background-color: white;
  padding: 24px 32px;
  gap: 32px;
}
.role-templates-collapse .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
  font-size: 18px;
  margin-right: 0;
}
.role-templates-collapse .ant-collapse-item .ant-collapse-content {
  background: #F5F6F8;
  /* Wripple Primary Light Gray */
  border: 1px solid #EEEEEE;
}
.role-templates-collapse .role-template-header {
  display: flex;
  flex-flow: row nowrap;
  align-self: stretch;
  align-items: center;
  flex: 1;
  gap: 32px;
}
.role-templates-collapse .role-template-header h6 {
  font-family: 'Beatrice', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: #000000;
}
.role-templates-collapse .role-template-header p {
  flex-grow: 1;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.01em;
  color: #000000;
  margin: 0;
}
.role-templates-collapse .role-template-header .category-match {
  margin-left: auto;
  padding: 4px 8px;
  background-color: #8563D7;
  border-radius: 12px;
  font-family: 'Beatrice', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  line-height: 18px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}
.tag-search-container {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: stretch;
}
.tag-search-container .react-autosuggest__container .input-group {
  background-color: #F5F6F8;
  padding: 8px 12px;
  align-items: stretch;
  flex-direction: row;
  display: flex;
}
.tag-search-container .react-autosuggest__container .input-group input {
  max-width: unset;
  width: unset;
  flex-grow: 1;
  border: none;
  font-size: 13px;
  line-height: 160%;
  letter-spacing: 0.01em;
  transition: none;
  pointer-events: auto;
  height: inherit;
  padding: 0;
}
.tag-search-container .react-autosuggest__container .input-group input:focus {
  border: none;
  box-shadow: none;
}
.tag-search-container .react-autosuggest__container .input-group input::-moz-placeholder {
  font-weight: 500;
  font-size: 13px;
  line-height: 160%;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  color: #343741;
}
.tag-search-container .react-autosuggest__container .input-group input::placeholder {
  font-weight: 500;
  font-size: 13px;
  line-height: 160%;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  color: #343741;
}
.tag-search-container .react-autosuggest__container .input-group .input-group-prepend {
  border: none;
  background-color: transparent;
}
.role-template-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px;
  gap: 32px;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  flex: 1;
  transition: all 200ms ease-in;
}
.role-template-card h6 {
  font-family: 'Beatrice', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.01em;
  color: #000000;
}
.role-template-card p {
  font-family: 'Beatrice', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #334D6E;
}
.role-template-card button {
  margin-top: auto;
  background-color: #8563D7;
  border-color: #8563D7;
  color: white;
}
.role-template-card button:hover,
.role-template-card button:focus {
  color: white;
  background: #5230A4;
}
.role-template-card button:disabled,
.role-template-card button.disabled {
  box-shadow: none;
  background-color: #C2CFE0;
  border-color: #C2CFE0;
  opacity: 0.8;
}
.role-template-card.selected {
  background: rgba(133, 99, 215, 0.1);
  border: 1px solid #8563D7;
}
.role-template-card.selected i {
  color: #8563D7;
}
.role-template-card.selected button {
  margin-top: auto;
  background-color: white;
  border-color: #8563D7;
  color: #8563D7;
}
.role-template-card.selected button:hover,
.role-template-card.selected button:focus {
  background-color: #fcfcfc;
  border-color: #5230A4;
  color: #5230A4;
}
.role-template-card.selected button:disabled {
  box-shadow: none;
  background-color: #C2CFE0;
  border-color: #C2CFE0;
  opacity: 0.8;
}
.discipline-section-mobile {
  border-top: 1px solid #E5EBF1;
  padding: 35px 0;
}
.discipline-section-mobile:last-child {
  border-bottom: 1px solid #E5EBF1;
}
.discipline-section-mobile .discipline-title {
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.discipline-section-mobile .discipline-title span {
  border-bottom: 1px solid #E5EBF1;
}
.discipline-section-mobile .discipline-name {
  font-family: "Beatrice Medium", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #323C47;
}
.discipline-section-mobile .discipline-description {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  margin: 0 !important;
  letter-spacing: 0.01em;
  color: black;
}
.discipline-section-mobile .discipline-price {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  margin: 0 !important;
  letter-spacing: 0.01em;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}
.select-skills-header {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 50px;
  border-bottom: 1px solid #E5EBF1;
}
.select-skills-header .header-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
}
.select-skills-header .header-section h3 {
  width: 100%;
  font-style: normal;
  font-weight: 900;
  font-size: 11px;
  line-height: 14px;
  margin-bottom: 0;
  /* identical to box height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-right: 1px solid #E5EBF1;
}
.select-skills-header .cat-header {
  flex: 1;
}
.select-skills-header .header-row {
  flex: 3;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.select-skills-header .header-row .discipline-header {
  flex-basis: 45%;
}
.select-skills-header .header-row .skill-header {
  flex-basis: 55%;
}
.select-skills-header .header-row .skill-header h3 {
  border-right: none;
}
.select-skills-header .header-row .skill-header,
.select-skills-header .header-row .discipline-header {
  text-align: center;
}
.select-skills-header .header-row .skill-header.active-section,
.select-skills-header .header-row .discipline-header.active-section {
  background-color: rgba(136, 90, 248, 0.045);
}
.select-skills-header .header-row .skill-header.active-section h3,
.select-skills-header .header-row .discipline-header.active-section h3 {
  border-top: 6px solid var(--theme-secondary, '#913ef0');
}
.select-skills-container {
  display: flex;
  align-self: stretch;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}
.select-skills-container .select-skills-nav {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background-color: #F5F6F8;
  flex: 1;
}
.select-skills-container .select-skills-nav .select-skill-nav-item {
  border-bottom: 1px solid #E5EBF1;
  border-right: 1px solid #E5EBF1;
  min-height: 65px;
  align-items: center;
  justify-content: flex-start;
  display: flex;
  cursor: pointer;
}
.select-skills-container .select-skills-nav .select-skill-nav-item p {
  font-size: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  /* identical to box height */
  margin: 10px 40px 10px 25px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 15px !important;
  text-align: left;
}
.select-skills-container .select-skills-nav .select-skill-nav-item p i {
  font-size: 12px;
  line-height: 15px !important;
  margin-left: 5px;
}
.select-skills-container .select-skills-nav .select-skill-nav-item p small {
  display: none;
}
.select-skills-container .select-skills-nav .select-skill-nav-item.active {
  background-color: white;
}
.select-skills-container .select-skills-nav .select-skill-nav-item.active p {
  font-weight: 600;
}
.select-skills-container .select-skills-nav .select-skill-nav-item.active p small {
  display: block;
  font-weight: normal;
  margin-top: 5px;
}
.select-skills-container .select-skills-nav .select-skill-nav-item.active p small::before {
  display: block;
  clear: both;
  content: "";
}
.select-skills-container .active-skill-category-container {
  flex: 3;
  flex-direction: column;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0 0 25px;
}
.select-skills-container .active-skill-category-container .category-name {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #000000;
}
.select-skills-container .active-skill-category-container .category-description {
  font-weight: 300;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.01em;
  margin: 0 0 15px;
}
.select-skills-container .active-skill-category-container .category-disciplines {
  flex-direction: column;
  display: flex;
  align-items: stretch;
  flex: 1;
  width: 100%;
}
.select-skills-container .active-skill-category-container .category-disciplines .discipline-section {
  border-bottom: 1px solid #D3D8DD;
  flex-direction: column;
  display: flex;
  align-self: stretch;
  align-items: stretch;
  justify-content: center;
}
.select-skills-container .active-skill-category-container .category-disciplines .discipline-section .accordion-item {
  display: flex;
  align-self: stretch;
  flex: 1;
  flex-direction: column;
}
.select-skills-container .active-skill-category-container .category-disciplines .discipline-section .accordion-item__icon {
  right: 30px;
  top: 17px;
}
.select-skills-container .active-skill-category-container .category-disciplines .discipline-section .accordion-item__icon.offset {
  display: inline-block;
  position: relative;
  right: auto;
  top: auto;
}
.select-skills-container .active-skill-category-container .category-disciplines .discipline-section .discipline-name {
  font-family: "Beatrice Medium", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 0;
  align-items: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #323C47;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.select-skills-container .active-skill-category-container .category-disciplines .discipline-section .discipline-description {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  margin: 0 !important;
  letter-spacing: 0.01em;
  color: black;
}
.select-skills-container .active-skill-category-container .category-disciplines .discipline-row,
.select-skills-container .active-skill-category-container .category-disciplines .discipline-header {
  display: flex;
  flex: 1;
  width: 100%;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
}
.select-skills-container .active-skill-category-container .category-disciplines .discipline-row button:not(.discipline-name),
.select-skills-container .active-skill-category-container .category-disciplines .discipline-header button:not(.discipline-name) {
  margin-top: 30px !important;
}
.select-skills-container .active-skill-category-container .category-disciplines .discipline-row .discipline-info,
.select-skills-container .active-skill-category-container .category-disciplines .discipline-header .discipline-info {
  flex-basis: 45%;
  border-right: 1px solid var(--theme-light, '#E5EBF1');
  padding: 0;
  flex-direction: column;
}
.select-skills-container .active-skill-category-container .category-disciplines .discipline-row .skills-info,
.select-skills-container .active-skill-category-container .category-disciplines .discipline-header .skills-info,
.select-skills-container .active-skill-category-container .category-disciplines .discipline-row .headerSpacer,
.select-skills-container .active-skill-category-container .category-disciplines .discipline-header .headerSpacer {
  flex-basis: 55%;
  padding: 0 30px;
}
.select-skills-container .active-skill-category-container .category-disciplines .discipline-row .skills-info,
.select-skills-container .active-skill-category-container .category-disciplines .discipline-header .skills-info {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.select-skills-container .active-skill-category-container .category-disciplines .discipline-row .skills-info,
.select-skills-container .active-skill-category-container .category-disciplines .discipline-header .skills-info,
.select-skills-container .active-skill-category-container .category-disciplines .discipline-row .discipline-info,
.select-skills-container .active-skill-category-container .category-disciplines .discipline-header .discipline-info {
  align-self: stretch;
}
.select-skills-container .active-skill-category-container .category-disciplines .discipline-row .skills-info.active-section,
.select-skills-container .active-skill-category-container .category-disciplines .discipline-header .skills-info.active-section,
.select-skills-container .active-skill-category-container .category-disciplines .discipline-row .discipline-info.active-section,
.select-skills-container .active-skill-category-container .category-disciplines .discipline-header .discipline-info.active-section {
  background-color: rgba(136, 90, 248, 0.045);
}
.select-skills-container .active-skill-category-container .category-disciplines .discipline-row .discipline-info {
  padding: 15px 30px;
  display: flex;
  align-items: flex-start;
}
.select-skills-container .active-skill-category-container .category-disciplines .discipline-row .discipline-info:last-of-type {
  width: 110px;
  padding: 15px 0;
  text-align: center;
}
.select-skills-container .active-skill-category-container .category-disciplines .discipline-header .discipline-info {
  padding: 20px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.select-skills-container .active-skill-category-container .category-disciplines .discipline-header .discipline-info.active-section,
.select-skills-container .active-skill-category-container .category-disciplines .discipline-header .headerSpacer.active-section {
  background-color: rgba(136, 90, 248, 0.045);
}
.skill,
.tag {
  opacity: 1;
  border: 1px solid var(--theme-secondary, '#913ef0');
  box-sizing: border-box;
  border-radius: 46px;
  display: inline-flex;
  flex-direction: row;
  height: 30px;
  cursor: pointer;
  padding: 4px 0;
  margin-right: 15px;
  margin-top: 15px;
  align-items: stretch;
  position: relative;
  justify-content: space-between;
  transition: all 200ms ease-in-out;
}
.skill *,
.tag * {
  transition: all 200ms ease-in-out;
}
.skill p,
.tag p {
  font-size: 11px;
  line-height: 15px;
  font-weight: 500;
  padding: 0 12px !important;
  margin: 0 auto !important;
  color: var(--theme-secondary, '#913ef0');
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.skill.skill-result p,
.tag.skill-result p {
  margin: 0 !important;
}
.skill .s-divider,
.tag .s-divider {
  width: 1px;
  margin: 0;
  background-color: var(--theme-secondary, '#913ef0');
  display: flex;
  align-items: center;
  justify-content: center;
}
.skill i,
.tag i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-secondary, '#913ef0');
  font-size: 10px;
  padding: 0 12px !important;
}
.skill.selected,
.tag.selected {
  background-color: var(--theme-secondary, '#913ef0');
}
.skill.selected p,
.tag.selected p,
.skill.selected i,
.tag.selected i {
  color: white;
}
.skill.selected .s-divider,
.tag.selected .s-divider {
  background-color: white;
}
.skill.add-btn,
.tag.add-btn {
  border: 1px solid var(--theme-success, '#5ae399');
  background-color: var(--theme-success, '#5ae399');
}
.skill.add-btn p,
.tag.add-btn p,
.skill.add-btn i,
.tag.add-btn i {
  color: #000000;
}
.skill.add-btn .s-divider,
.tag.add-btn .s-divider {
  background-color: #000000;
}
.skill.disabled,
.tag.disabled {
  pointer-events: none;
}
.skill.disabled *,
.tag.disabled * {
  pointer-events: none;
}
.unmatched-skill span > div {
  background-color: #d3d8dd;
}
.unmatched-skill .skill,
.unmatched-skill .tag {
  border-color: #d3d8dd;
}
.unmatched-skill .skill-result.skill p {
  color: #a0a0a0;
}
.unmatched-skill p {
  color: #6d6d6d;
}
.unselected-skill span > div {
  background-color: #d3d8dd !important;
}
.unselected-skill .skill,
.unselected-skill .tag {
  border-color: #d3d8dd !important;
}
.unselected-skill .skill-result.skill p {
  color: #a0a0a0 !important;
}
.unselected-skill p {
  color: #6d6d6d !important;
}
.tag {
  border-color: var(--theme-primary, '#5f3db1');
  height: 33px;
}
.tag p {
  color: var(--theme-primary, '#5f3db1');
  font-size: 12px;
  text-align: center;
}
.tag i {
  font-size: 14px;
  color: var(--theme-primary, '#5f3db1');
}
.tag.selected {
  background-color: var(--theme-primary, '#5f3db1');
}
.tag.selected p,
.tag.selected i {
  color: white;
}
.discipline-skills-container,
.skills-form-container,
.tags-form-container,
.disabled-tags-container {
  position: relative;
  align-self: stretch;
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
}
.discipline-skills-container.skill-importance-container .dropdown,
.skills-form-container.skill-importance-container .dropdown,
.tags-form-container.skill-importance-container .dropdown,
.disabled-tags-container.skill-importance-container .dropdown {
  min-width: 115px;
}
.discipline-skills-container.skill-importance-container .dropdown > span:first-child,
.skills-form-container.skill-importance-container .dropdown > span:first-child,
.tags-form-container.skill-importance-container .dropdown > span:first-child,
.disabled-tags-container.skill-importance-container .dropdown > span:first-child {
  min-width: 115px;
  text-align: center;
}
.discipline-skills-container.skill-importance-container .dropdown > span:first-child .skill:first-child,
.skills-form-container.skill-importance-container .dropdown > span:first-child .skill:first-child,
.tags-form-container.skill-importance-container .dropdown > span:first-child .skill:first-child,
.disabled-tags-container.skill-importance-container .dropdown > span:first-child .skill:first-child {
  min-width: 115px;
}
.discipline-skills-container.skill-importance-container .dropdown .skill.skill-result,
.skills-form-container.skill-importance-container .dropdown .skill.skill-result,
.tags-form-container.skill-importance-container .dropdown .skill.skill-result,
.disabled-tags-container.skill-importance-container .dropdown .skill.skill-result {
  min-width: 115px;
  text-align: center;
}
.discipline-skills-container.skill-importance-container .dropdown .dropdown-menu p,
.skills-form-container.skill-importance-container .dropdown .dropdown-menu p,
.tags-form-container.skill-importance-container .dropdown .dropdown-menu p,
.disabled-tags-container.skill-importance-container .dropdown .dropdown-menu p {
  font-size: 10px !important;
}
.discipline-skills-container.skill-importance-container .dropdown.show > span:first-child .skill:first-child,
.skills-form-container.skill-importance-container .dropdown.show > span:first-child .skill:first-child,
.tags-form-container.skill-importance-container .dropdown.show > span:first-child .skill:first-child,
.disabled-tags-container.skill-importance-container .dropdown.show > span:first-child .skill:first-child {
  min-width: 115px;
}
.discipline-skills-container.skill-importance-container .dropdown.show .dropdown-menu,
.skills-form-container.skill-importance-container .dropdown.show .dropdown-menu,
.tags-form-container.skill-importance-container .dropdown.show .dropdown-menu,
.disabled-tags-container.skill-importance-container .dropdown.show .dropdown-menu {
  min-width: unset;
}
.skills-form-container {
  margin-bottom: 10px;
}
.discipline-skills-container {
  align-self: flex-start;
}
.discipline-skills-container .skill {
  margin-top: 0 !important;
  margin-bottom: 15px;
}
.position-section {
  align-items: stretch !important;
  background-color: white;
}
.top-position-form {
  border-bottom: 1px solid #D3D8DD;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding-bottom: 30px;
}
.top-position-form .field-section {
  margin-left: 25px;
  margin-right: 25px;
}
.top-position-form .form-footer {
  margin-top: 0 !important;
}
.top-position-form .select-skills-search {
  width: 78%;
  margin: 0 auto 40px !important;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  align-self: stretch;
}
.top-position-form .select-skills-search .skills-form {
  width: 100%;
  position: relative;
  flex-direction: column;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.bottom-position-form {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  margin-top: 0 !important;
}
.bottom-position-form.disabled {
  pointer-events: none;
}
.bottom-position-form.disabled .select-skills-container {
  opacity: 0.5;
  background-color: #F5F6F8;
}
.hide-skill-input .form-group input {
  display: none;
}
.position-form-buttons {
  margin-top: 15px;
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.position-form-buttons p {
  margin: 10px 15px;
  white-space: nowrap;
}
.position-form-buttons * {
  white-space: nowrap;
}
.disabled-skills-container,
.disabled-tags-container {
  pointer-events: none;
}
.disabled-skills-container *,
.disabled-tags-container * {
  pointer-events: none;
}
.disabled-skills-container .skill,
.disabled-tags-container .skill,
.disabled-skills-container .tag,
.disabled-tags-container .tag {
  border-color: #D3D8DD;
}
.disabled-skills-container .skill p,
.disabled-tags-container .skill p,
.disabled-skills-container .tag p,
.disabled-tags-container .tag p,
.disabled-skills-container .skill i,
.disabled-tags-container .skill i,
.disabled-skills-container .tag i,
.disabled-tags-container .tag i {
  color: #D3D8DD;
}
.disabled-skills-container .skill .s-divider,
.disabled-tags-container .skill .s-divider,
.disabled-skills-container .tag .s-divider,
.disabled-tags-container .tag .s-divider {
  background-color: #D3D8DD;
}
.disabled-skills-container .skill.selected,
.disabled-tags-container .skill.selected,
.disabled-skills-container .tag.selected,
.disabled-tags-container .tag.selected {
  opacity: 0.5;
}
.help-element {
  margin-top: 5px;
  margin-bottom: 0;
}
.help-element p {
  font-family: Beatrice, sans-serif;
  transition: all 350ms ease-in-out;
  transition-delay: 400ms;
  font-size: 13px !important;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #90A0B7;
  margin-bottom: 0;
}
.select-candidates-header {
  background-color: white;
  padding: 25px 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.select-candidates-header h3 {
  margin: 0;
  flex: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.select-candidates-header .btn-link {
  font-size: 13px;
}
.select-candidates-header .position-fill-status {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 125%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 0 35px;
  width: 200px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.select-candidates-header .position-fill-status span {
  margin-top: 1.5px;
}
.select-candidates-header .position-fill-status .indicator {
  width: 12px;
  height: 12px;
}
.select-candidates-header .position-fill-status.filled {
  color: var(--theme-success, '#5ae399');
}
.select-candidates-header .position-fill-status.filled .indicator {
  background-color: var(--theme-success, '#5ae399');
}
.select-candidates-header .position-fill-status.not-filled {
  color: var(--theme-danger, '#E54963');
}
.select-candidates-header .position-fill-status.not-filled .indicator {
  background-color: var(--theme-danger, '#E54963');
}
.select-candidates-footer {
  background-color: #F8F9FB;
  padding: 20px 40px;
  flex-direction: column;
  align-items: flex-start;
}
.select-candidates-footer .accordion-item__icon {
  top: unset;
  height: 100%;
  background-position: center;
}
.select-candidates-footer .summary-header {
  margin: 0;
  font-size: 15px;
  line-height: 160%;
  cursor: pointer;
  flex-grow: 1;
  letter-spacing: 0.01em;
  color: #90a0b7;
}
.select-candidates-footer .summary-footer {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: -25px;
  margin-right: -25px;
}
.select-candidates-footer .summary-footer .summary-item {
  display: flex;
  flex-shrink: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin: 20px 25px 0;
}
.select-candidates-footer .summary-footer .summary-item .summary-item-label {
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  line-height: 150%;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000000;
}
.select-candidates-footer .summary-footer .summary-item .summary-item-value {
  margin: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #109CF1;
}
.pt-select-container {
  display: flex;
  margin-top: 15px;
  flex-direction: column;
  position: relative;
  padding-bottom: 60px;
}
.pt-select-container > .flex-shrink {
  min-height: 275px;
}
.pt-select-container .scroll-cat-container {
  overflow: hidden;
  align-self: stretch;
  display: flex;
}
.pt-select-container .scroll-cat-menu {
  width: 100%;
  display: flex;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
.pt-select-container .scroll-menu-arrow {
  text-align: center;
}
.pt-select-container .scroll-menu-arrow i {
  padding: 0;
  margin: 0 !important;
  width: 40px;
}
.pt-select-container .scroll-menu-arrow--disabled {
  visibility: hidden;
}
.position-template-category {
  padding-right: 15px;
  outline: none;
  min-width: 90px;
}
.position-template-category > div {
  padding: 10px 12px;
  border: 1px solid #E5E5E5;
  display: flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease-in;
  cursor: pointer;
  margin-bottom: -1px;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 19px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #738094;
}
.position-template-category:hover > div {
  color: #000;
  border-color: #000;
}
.position-template-category.active > div {
  color: white;
  background-color: var(--theme-primary, '#5f3db1');
  border-color: var(--theme-primary, '#5f3db1');
}
.position-template-info {
  flex-grow: 1;
  flex-basis: 65%;
  font-weight: 500;
  margin-bottom: 20px;
  flex-wrap: nowrap;
}
.position-template-info h1 {
  font-size: 26px;
  margin: 0;
}
.position-template-info p {
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height */
  letter-spacing: 0.01em;
  max-width: 460px;
  margin: 0;
}
.position-template-panel {
  position: relative;
  flex-direction: column;
  float: none;
  display: inline-flex;
  align-items: center;
  max-width: 300px;
  min-width: 300px;
  padding: 1.5em 1em;
  transition: all 250ms ease-in;
  opacity: 0;
  height: 300px;
  background: var(--theme-light-semitrans, '#E5EBF155');
  margin-right: 10px;
}
.position-template-panel > * {
  transition: all 250ms ease-in;
}
.position-template-panel > div,
.position-template-panel > button {
  margin: 5px auto;
}
.position-template-panel button.get-started {
  margin-top: auto;
  height: 42px;
  padding: 11px 17px;
}
.position-template-panel .position-template-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 40px;
  color: var(--theme-success, '#5ae399');
  margin-bottom: 5px;
}
.position-template-panel .position-template-name {
  text-align: center;
  font-weight: 500;
  max-width: 250px;
  font-size: 16px;
  white-space: normal;
  margin: 5px 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
.position-template-panel .position-template-name small {
  font-size: 10px !important;
  margin-top: 5px;
}
.position-template-panel .position-template-description {
  font-size: 11px;
  margin-top: 5px;
  padding: 0 5px;
  text-align: center;
  letter-spacing: 0.01em;
  white-space: normal;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
.wizard-position-step .position-form-container .skill-search-form {
  padding: 0;
}
.wizard-position-step .position-form-container .skill-search-form .form-container {
  padding: 0;
}
.wizard-position-step .position-form-container .skill-search-form .form-container .position-skill-search-form,
.wizard-position-step .position-form-container .skill-search-form .form-container .project-discipline-skills-form,
.wizard-position-step .position-form-container .skill-search-form .form-container .position-discipline-skills-form,
.wizard-position-step .position-form-container .skill-search-form .form-container .project-skill-search-results,
.wizard-position-step .position-form-container .skill-search-form .form-container .position-skill-search-results {
  margin: 0 !important;
}
.position-discipline-input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 0px;
}
.position-discipline-input h4 {
  font-family: Beatrice, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0.01em;
  font-style: normal;
  color: #90A0B7;
  margin: 0 15px 0 0;
}
.position-discipline-input .role-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.position-discipline-input .role-row .role-name {
  height: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0 0 0 16px;
  background-color: var(--theme-success, '#5ae399');
}
.position-discipline-input .role-row .role-name p {
  color: #000;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  margin: 0 40px 0 0;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
.position-discipline-input .role-row .role-name button {
  outline: none;
  border-width: 0;
  border-radius: 0;
  padding: 0 10px;
  display: flex;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
.position-discipline-input .role-row .role-name button i {
  color: #000;
  font-size: 18px;
}
.position-discipline-input .role-row .template-name h3 {
  margin-left: 15px;
  font-size: 18px;
  margin-bottom: 0;
}
.position-skill-search-form,
.position-discipline-skills-form,
.project-discipline-skills-form,
.project-skill-search-results,
.position-skill-search-results {
  background-color: var(--theme-light-semitrans, '#E5EBF155');
  padding: 20px 25px !important;
  width: unset !important;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.position-skill-search-form > div form .field label,
.position-discipline-skills-form > div form .field label,
.project-discipline-skills-form > div form .field label,
.project-skill-search-results > div form .field label,
.position-skill-search-results > div form .field label {
  color: #000 !important;
}
.position-skill-search-form .form-container,
.position-discipline-skills-form .form-container,
.project-discipline-skills-form .form-container,
.project-skill-search-results .form-container,
.position-skill-search-results .form-container {
  padding-top: 35px;
  padding-bottom: 35px;
  background-color: unset !important;
}
.position-skill-search-form .position-skill-label,
.position-discipline-skills-form .position-skill-label,
.project-discipline-skills-form .position-skill-label,
.project-skill-search-results .position-skill-label,
.position-skill-search-results .position-skill-label {
  margin-top: 25px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 10px !important;
}
.position-skill-search-form .field .form-group,
.position-discipline-skills-form .field .form-group,
.project-discipline-skills-form .field .form-group,
.project-skill-search-results .field .form-group,
.position-skill-search-results .field .form-group {
  padding: 0;
}
.position-form .position-skill-divider {
  background-color: var(--theme-primary, '#5f3db1');
  height: 3px;
  margin: 10px 0;
  align-self: stretch;
}
.position-skill-search-form .form-group {
  margin-top: 20px;
}
.position-skill-search-form .form-group .input-group {
  padding: 4px 15px !important;
  background: #FFFFFF !important;
}
.position-skill-search-form .form-group .input-group .input-group-prepend {
  border: none !important;
}
.position-skill-search-form .form-group .input-group input {
  border: none;
  box-shadow: none !important;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px !important;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em !important;
  padding-left: 0;
  color: #000000;
}
.position-skill-search-form .form-group .input-group ::-moz-placeholder {
  color: #707683 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  opacity: 1;
}
.position-skill-search-form .form-group .input-group ::placeholder {
  color: #707683 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  opacity: 1;
}
.position-skill-search-form .form-group .input-group :-ms-input-placeholder,
.position-skill-search-form .form-group .input-group ::-ms-input-placeholder {
  color: #707683 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}
.position-skill-search-results,
.project-skill-search-results {
  min-height: 250px;
  justify-content: flex-start;
}
.position-skill-search-results .discipline-skills-container.skill-importance-container,
.project-skill-search-results .discipline-skills-container.skill-importance-container {
  align-self: stretch !important;
}
.position-form .form-container .field-element .feedback-banner,
.project-discipline-skills-form .feedback-banner,
.position-discipline-skills-form .feedback-banner {
  min-height: 125px;
}
.position-form .form-container .field-element .discipline-skills-container,
.project-discipline-skills-form .discipline-skills-container,
.position-discipline-skills-form .discipline-skills-container {
  margin-top: 20px;
}
.position-form .form-container .field-element .position-skill-role-label,
.project-discipline-skills-form .position-skill-role-label,
.position-discipline-skills-form .position-skill-role-label {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: flex-start;
  margin: 25px 0 35px;
}
.position-form .form-container .field-element .position-skill-role-label .col-form-label,
.project-discipline-skills-form .position-skill-role-label .col-form-label,
.position-discipline-skills-form .position-skill-role-label .col-form-label {
  margin-right: 15px;
  align-self: center;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  line-height: 0.9;
  text-decoration: none !important;
}
.position-form .form-container .field-element .position-skill-role-label .position-skill-role-name,
.project-discipline-skills-form .position-skill-role-label .position-skill-role-name,
.position-discipline-skills-form .position-skill-role-label .position-skill-role-name,
.position-form .form-container .field-element .position-skill-role-label .position-skill-role-select,
.project-discipline-skills-form .position-skill-role-label .position-skill-role-select,
.position-discipline-skills-form .position-skill-role-label .position-skill-role-select {
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 5px 15px;
  text-align: center;
}
.position-form .form-container .field-element .position-skill-role-label .position-skill-role-name,
.project-discipline-skills-form .position-skill-role-label .position-skill-role-name,
.position-discipline-skills-form .position-skill-role-label .position-skill-role-name {
  border: 1px solid black;
  border-right: none;
}
.position-form .form-container .field-element .position-skill-role-label .position-skill-role-name p,
.project-discipline-skills-form .position-skill-role-label .position-skill-role-name p,
.position-discipline-skills-form .position-skill-role-label .position-skill-role-name p {
  margin-bottom: 0;
  font-weight: bold;
  color: var(--theme-secondary, '#913ef0');
  font-size: 14px;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
.position-form .form-container .field-element .position-skill-role-label .position-skill-role-select,
.project-discipline-skills-form .position-skill-role-label .position-skill-role-select,
.position-discipline-skills-form .position-skill-role-label .position-skill-role-select {
  background-color: var(--theme-secondary, '#913ef0');
  border: 1px solid black;
}
.position-form .form-container .field-element .position-skill-role-label .position-skill-role-select p,
.project-discipline-skills-form .position-skill-role-label .position-skill-role-select p,
.position-discipline-skills-form .position-skill-role-label .position-skill-role-select p {
  margin-bottom: 3px;
  font-size: 13px;
  color: white;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
.position-form .form-container .field-element .position-skill-role-label .position-skill-role-select .btn-link-primary,
.project-discipline-skills-form .position-skill-role-label .position-skill-role-select .btn-link-primary,
.position-discipline-skills-form .position-skill-role-label .position-skill-role-select .btn-link-primary {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: white;
  cursor: pointer !important;
}
.position-form .form-container .field-element .position-skill-role-label .position-skill-role-select .btn-link-primary:hover,
.project-discipline-skills-form .position-skill-role-label .position-skill-role-select .btn-link-primary:hover,
.position-discipline-skills-form .position-skill-role-label .position-skill-role-select .btn-link-primary:hover {
  color: white !important;
  font-weight: 600 !important;
}
.position-discipline-skills-form .feedback-banner,
.project-discipline-skills-form .feedback-banner {
  min-height: 125px;
}
.position-discipline-skills-form .discipline-skills-container,
.project-discipline-skills-form .discipline-skills-container {
  margin-top: 20px;
}
.position-discipline-skills-form .position-skill-role-label,
.project-discipline-skills-form .position-skill-role-label {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: flex-start;
  margin: 25px 0 35px;
}
.position-discipline-skills-form .position-skill-role-label .col-form-label,
.project-discipline-skills-form .position-skill-role-label .col-form-label {
  margin-right: 15px;
  align-self: center;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  line-height: 0.9;
  text-decoration: none !important;
}
.position-discipline-skills-form .position-skill-role-label .position-skill-role-name,
.project-discipline-skills-form .position-skill-role-label .position-skill-role-name,
.position-discipline-skills-form .position-skill-role-label .position-skill-role-select,
.project-discipline-skills-form .position-skill-role-label .position-skill-role-select {
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 5px 15px;
  text-align: center;
}
.position-discipline-skills-form .position-skill-role-label .position-skill-role-name,
.project-discipline-skills-form .position-skill-role-label .position-skill-role-name {
  border: 1px solid black;
  border-right: none;
}
.position-discipline-skills-form .position-skill-role-label .position-skill-role-name p,
.project-discipline-skills-form .position-skill-role-label .position-skill-role-name p {
  margin-bottom: 0;
  font-weight: bold;
  color: var(--theme-secondary, '#913ef0');
  font-size: 14px;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
.position-discipline-skills-form .position-skill-role-label .position-skill-role-select,
.project-discipline-skills-form .position-skill-role-label .position-skill-role-select {
  background-color: var(--theme-secondary, '#913ef0');
  border: 1px solid black;
}
.position-discipline-skills-form .position-skill-role-label .position-skill-role-select p,
.project-discipline-skills-form .position-skill-role-label .position-skill-role-select p {
  margin-bottom: 3px;
  font-size: 13px;
  color: white;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
.position-discipline-skills-form .position-skill-role-label .position-skill-role-select .btn-link-primary,
.project-discipline-skills-form .position-skill-role-label .position-skill-role-select .btn-link-primary {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: white;
  cursor: pointer !important;
}
.position-discipline-skills-form .position-skill-role-label .position-skill-role-select .btn-link-primary:hover,
.project-discipline-skills-form .position-skill-role-label .position-skill-role-select .btn-link-primary:hover {
  color: white !important;
  font-weight: 600 !important;
}
.bidding-candidates-header {
  align-items: stretch;
  margin-top: 35px;
  margin-bottom: 20px;
}
.bidding-candidates-header > div {
  align-items: stretch;
  display: flex;
  flex-direction: column;
}
.bidding-candidates-header .bidding-candidates-header-panel {
  padding: 1.5rem 1rem;
  flex: 1;
  display: block;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}
.bidding-candidates-header .bidding-candidates-header-panel h5 {
  margin-bottom: 20px;
}
.bidding-candidates-header .bidding-candidates-header-panel ul {
  margin-left: 14px;
}
.bidding-candidates-header .bidding-candidates-header-panel ul li {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: #000000;
}
.bidding-candidates-header .bidding-candidates-header-panel .btn-link-primary {
  font-style: normal;
  font-weight: normal;
  margin-left: auto;
  font-size: 16px;
  line-height: 125%;
  margin-top: 0;
  letter-spacing: 0.01em;
  color: #5F42AF;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.bidding-candidates-header .bidding-candidates-header-panel .btn-link-primary i {
  font-size: 18px;
}
.bidding-candidates-header .bidding-candidates-header-panel .btn-primary {
  margin-top: 15px !important;
}
.bidding-candidates-header .bidding-candidates-header-panel .btn-primary:disabled {
  color: black !important;
}
.request-sow-modal > .scrollarea .scrollarea-content,
.assign-candidate-modal > .scrollarea .scrollarea-content {
  align-items: center;
  justify-content: center;
  margin-left: auto !important;
  margin-right: auto !important;
}
.request-sow-modal > .scrollarea .scrollarea-content .modal-container,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container {
  min-width: unset !important;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container,
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container p,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container p,
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container p,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container p {
  white-space: pre-line;
  text-align: left;
}
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container .assign-candidate-note,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container .assign-candidate-note,
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .assign-candidate-note,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .assign-candidate-note {
  font-size: 15px;
}
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container .est-brief-info,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container .est-brief-info,
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .est-brief-info,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .est-brief-info {
  justify-content: space-evenly;
  margin-bottom: 20px;
}
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container .request-sow-header,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container .request-sow-header,
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .request-sow-header,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .request-sow-header,
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container .assign-candidate-header,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container .assign-candidate-header,
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .assign-candidate-header,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .assign-candidate-header {
  font-size: 16px;
}
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container .request-sow-actions,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container .request-sow-actions,
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .request-sow-actions,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .request-sow-actions,
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container .assign-candidate-actions,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container .assign-candidate-actions,
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .assign-candidate-actions,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .assign-candidate-actions {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container .request-sow-actions button,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container .request-sow-actions button,
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .request-sow-actions button,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .request-sow-actions button,
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container .assign-candidate-actions button,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .request-sow-container .assign-candidate-actions button,
.request-sow-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .assign-candidate-actions button,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .assign-candidate-actions button {
  min-width: 150px;
}
.assign-candidate-modal > .scrollarea .scrollarea-content {
  padding-top: 135px;
}
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .sow-approval-brief .sow-approval-brief-info,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .est-brief .sow-approval-brief-info,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .sow-approval-brief .est-brief-info,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .est-brief .est-brief-info {
  justify-content: space-evenly;
  margin-bottom: 20px;
}
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .request-sow-actions,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .assign-candidate-actions {
  margin: auto -1rem 0;
  align-items: center;
  justify-content: flex-end;
}
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .request-sow-actions button,
.assign-candidate-modal > .scrollarea .scrollarea-content .modal-container .assign-candidate-container .assign-candidate-actions button {
  min-width: 150px;
  margin: 0 1rem;
}
/* For Safari!!! */
.scroller.position-template-container-pagination,
.scroller.services-container-pagination,
.scroller.engagement-container-pagination {
  max-width: none;
  width: auto;
}
@media only screen and (max-width: 992px) {
  .modal-scroll .modal-table {
    border: none !important;
  }
}
@media only screen and (max-width: 529px) {
  .select-candidates-header {
    display: block;
    padding: 25px 16px;
  }
  .select-candidates-footer {
    padding: 20px 16px;
  }
  .bidding-step-container .position-form > div form .field-section {
    padding: 0;
  }
  .discipline-section-mobile .discipline-price span {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .select-candidates-header {
    display: block;
  }
  .select-candidates-header .position-fill-status {
    margin: 0;
    display: block;
    padding-top: 6px;
  }
}
.share-form .form-container {
  padding: 1.5rem 0 0;
}
.share-form .form-container .field-section {
  margin-bottom: 1rem;
  align-items: flex-start;
}
.share-form .form-container .field-section .field {
  padding: 0 15px;
}
.share-form .share-checkbox-group {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  max-height: 300px !important;
}
.share-form .share-checkbox-group.loading {
  height: 300px;
  align-items: center;
}
.share-form .share-checkbox-group .scrollarea {
  max-height: 300px !important;
  margin-bottom: 0;
  background-color: #fafafa;
  padding: 0 0.5rem;
}
.share-form .share-checkbox-group .scrollarea p {
  margin-bottom: 0;
}
.share-form .share-checkbox-group .scrollarea p.disabled {
  pointer-events: all;
  cursor: default !important;
}
.share-form .share-checkbox-group .scrollarea p.checkbox-group-header {
  margin: 0.6rem 0 0.4rem;
  font-size: 14px;
  font-weight: 500;
  font-family: Beatrice, sans-serif;
  text-decoration: underline;
  color: black;
}
.share-form .share-checkbox-group .scrollarea p.checkbox-group-header.Shortlisted {
  color: var(--theme-primary, '#5f3db1');
  opacity: 1;
}
.share-form .share-checkbox-group .scrollarea p i {
  font-size: 13px;
  margin-top: -2px;
}
.share-form .talent-selection-legend {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  align-items: stretch;
  justify-content: space-between;
  border: 1px solid hsl(0, 0%, 80%);
  padding: 0.5rem;
}
.share-form .talent-selection-legend h3 {
  font-family: 'Beatrice', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 150%;
  text-align: left;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #000000;
  text-decoration: underline;
  margin-bottom: 0.7rem;
}
.share-form .talent-selection-legend .legend-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.5rem;
}
.share-form .talent-selection-legend .legend-row p {
  font-family: 'Beatrice', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 0;
}
.share-form .talent-selection-legend .legend-row i {
  font-size: 16px;
}
.share-form .talent-selection-legend .legend-row .legend-label {
  width: 80px;
}
.share-form .talent-selection-legend .legend-row .legend-value {
  flex: 1;
}
.share-talent-modal.modal-overlay .modal-container {
  padding: 10px 1rem;
}
.sharable-position-container {
  position: relative;
}
.sharable-position-container .submit-loading {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 55px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}
.sharable-position-container.is-submitting .share-form {
  opacity: 0.5;
}
.sharable-position-container.is-submitting * {
  pointer-events: none;
}
.sharable-position-container > h3 {
  padding: 0 15px 10px;
  border-bottom: 2px solid var(--theme-primary, '#5f3db1');
  margin: 0 -1rem;
  font-weight: 500;
  font-size: 24px;
}
.sharable-position-container label.form-check-label {
  font-size: 14px;
}
.sharable-position-container .share-top-row {
  display: flex;
  flex-wrap: wrap;
}
.sharable-position-container .share-top-row .talent-select-container,
.sharable-position-container .share-top-row .options-container,
.sharable-position-container .share-top-row .email-container {
  border: 1px solid #cccccc;
  margin: 0 -15px;
  padding: 15px;
}
.sharable-position-container .share-top-row .field-section-group {
  flex-grow: 1;
  padding: 0 15px;
}
.sharable-position-container .share-top-row .field-section-group .field {
  margin-top: 15px;
}
.sharable-position-container .share-top-row .field-section-group .form-group {
  margin-bottom: 1.3rem;
}
.sharable-position-container .share-top-row > .field-section-group:first-child {
  flex-basis: 40%;
}
.sharable-position-container .share-top-row > .field-section-group:last-child {
  flex-basis: 60%;
}
.sharable-position-container .share-top-row .talent-options-label {
  margin: 0.2rem 0 0;
  padding: 0;
  font-size: 12px;
  white-space: nowrap;
}
.sharable-position-container .share-top-row .talent-options label {
  font-size: 12px;
  color: black;
}
.sharable-position-container .share-top-row .form-checkbox label {
  white-space: nowrap;
}
.sharable-position-container .share-top-row [type="checkbox"]:checked + label:before {
  color: black;
}
.sharable-position-container .field .form-group textarea,
.sharable-position-container .field .form-group input {
  border-color: hsl(0, 0%, 80%);
  border-radius: 4px !important;
  border-width: 1px;
  border-style: solid;
  font-size: 12px;
  padding: 2px 8px;
}
.sharable-position-container .field .form-group textarea:focus,
.sharable-position-container .field .form-group input:focus {
  box-shadow: 0 0 0 1px var(--theme-info, '#4B80E7');
  border: none;
}
.sharable-position-container .field .form-group.react-select-container input {
  border-color: none !important;
  border: none !important;
}
.sharable-position-container .field .form-group.react-select-container input:focus {
  box-shadow: none !important;
  border: none !important;
}
.sharable-position-container .field .form-group.text-danger input,
.sharable-position-container .field .form-group.text-danger textarea {
  border-color: var(--theme-danger, '#E54963');
}
.sharable-position-container .field .form-group.text-danger input:focus,
.sharable-position-container .field .form-group.text-danger textarea:focus {
  box-shadow: 0 0 0 1px var(--theme-danger, '#E54963');
  border: none;
}
.sharable-position-container .from-inputs {
  margin: 0 -15px 0rem;
  flex-direction: row;
  align-items: center;
  display: flex;
}
.sharable-position-container .from-inputs .field {
  flex-basis: unset !important;
  width: unset !important;
  flex-grow: 1;
  margin-top: 0 !important;
}
.sharable-position-container .from-inputs .field input {
  padding: 2px 8px !important;
}
.sharable-position-container .share-step-label {
  color: black;
  font-weight: 500;
  margin-bottom: 15px;
  align-self: flex-start;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}
.sharable-position-container .share-step-label span:first-child {
  padding: 0.3rem 0;
  height: 30px;
  line-height: 30px;
  width: 30px;
  margin-right: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  color: white;
}
.sharable-position-container .share-step-label span:last-child {
  padding: 0.3rem 0.5rem;
  background-color: #eeeeee;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  height: 30px;
  line-height: 30px;
  white-space: nowrap;
  flex-grow: 1;
}
.sharable-position-container label.col-form-label.share-input-label,
.sharable-position-container .share-input-label {
  white-space: nowrap;
  background-color: transparent !important;
  font-weight: bolder;
  font-size: 13px !important;
  color: black !important;
  margin-bottom: 0.5rem !important;
  padding: 0 !important;
}
.sharable-position-container label.col-form-label.share-input-label.recipient-label,
.sharable-position-container .share-input-label.recipient-label {
  font-weight: normal;
  display: flex;
  flex-flow: row nowrap;
}
.sharable-position-container label.col-form-label.share-input-label.recipient-label strong,
.sharable-position-container .share-input-label.recipient-label strong {
  font-weight: bolder;
}
.sharable-position-container .intro-message-container {
  width: 100%;
  padding-right: 20px;
}
.sharable-position-container .intro-message-container .field {
  margin: 10px 0 0;
}
.sharable-position-container .intro-message-container .field textarea {
  padding-top: 10px;
  border-color: hsl(0, 0%, 80%);
  border-radius: 4px !important;
  border-width: 1px;
  border-style: solid;
  font-size: 12px;
}
.position-contract-drawer-form .ant-upload-list-item {
  height: 36px;
  margin-top: 0;
}
.position-contract-drawer-form .ant-upload-list-item-info {
  background-color: #f5f5f5;
}
.position-contract-drawer-form .ant-upload-text-icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 5px;
  width: 18px;
}
.position-contract-drawer-form .ant-upload-list-item-card-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.position-contract-drawer-form .ant-upload-list-item-card-actions-btn {
  opacity: 1 !important;
}
.position-contract-drawer-form .ant-upload-list-item-name {
  color: var(--theme-info, '#4B80E7');
}
.position-cost-row {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  padding: 20px 16px;
  transition: all 150ms ease-in;
  gap: 24px;
  margin-bottom: 24px;
  border: 1px solid #D3D8DD;
}
.position-cost-row .form-container {
  padding: 0;
}
.position-cost-row .form-group {
  margin-bottom: 1rem;
}
.position-cost-row .candidate-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.position-cost-row .candidate-info .img-fluid {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.position-cost-row .candidate-info button {
  margin-left: auto;
}
.position-cost-row .position-label {
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height */
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
  margin: 0;
  color: #8C9298;
}
.position-cost-row .position-prop {
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
  margin: 0;
  color: #3F434A;
}
.position-cost-row .dates {
  margin-top: 45px;
  height: 13px;
  border-radius: 37px;
  align-self: stretch;
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  background: #E8E9EB;
}
.position-cost-row .dates .date-bar {
  position: relative;
  border-radius: inherit;
}
.position-cost-row .dates .date-bar.isActive {
  background: var(--theme-warning, '#FFB946');
}
.position-cost-row .dates .date-bar .date-start-label,
.position-cost-row .dates .date-bar .date-end-label {
  position: absolute;
  bottom: 100%;
  margin-bottom: 8px;
  width: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.position-cost-row .dates .date-bar .date-start-label p,
.position-cost-row .dates .date-bar .date-end-label p {
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  /* identical to box height */
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
  color: #3F434A;
  margin: 0;
}
.position-cost-row .dates .date-bar .date-start-label p:last-child,
.position-cost-row .dates .date-bar .date-end-label p:last-child {
  font-size: 12px;
  line-height: 18px;
}
.position-cost-row .dates .date-bar .date-start-label {
  left: 0;
}
.position-cost-row .dates .date-bar .date-start-label.offset {
  left: -23px;
}
.position-cost-row .dates .date-bar .date-end-label {
  right: 0;
}
.position-cost-row .dates .date-bar .date-end-label.offset {
  right: -23px;
}
.position-cost-row .position-cost-form.position-dates .form-group {
  margin-bottom: 0.5rem;
}
.metric-container {
  height: 195px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.metric-container .details-link {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: #913ef0;
  margin: 0;
}
.metric {
  text-align: center;
  flex-basis: 33.33%;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
  padding: 0 5px;
}
.metric .metric-label {
  font-size: 12px;
  line-height: 15px;
  margin-bottom: 0.5rem;
}
.metric .metric-score {
  font-size: 13px;
  margin: 0;
}
.metric .metric-bar {
  background-color: #d3d8dd;
  height: 30px;
  width: 100%;
  margin: 2px 1px 1px;
}
.metric .metric-bar.full {
  background-color: #334d6e;
}
.highest-rank {
  background-image: url('/images/highest-rank.png');
  background-size: cover;
  background-color: white;
  background-position: center center;
}
.metric-circle {
  text-align: center;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  flex-direction: column;
  align-self: stretch;
  position: relative;
  padding: 0.3rem;
}
.metric-circle .circle-progress-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  height: 100%;
  width: 100%;
}
.metric-circle .circle-progress-text p {
  flex-direction: column;
  display: flex;
  align-items: center;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: normal;
  padding: 0 10px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #000000;
  fill: #000000;
  margin-bottom: 0;
  z-index: 1;
  justify-content: center;
}
.metric-circle .circle-progress-text p small {
  font-weight: 600;
  font-size: 65%;
  margin-bottom: -0.35em;
}
.metric-circle .circle-progress-text p span {
  flex-direction: column!important;
  margin: 0!important;
}
.metric-circle .circle-progress-text p.has-rank {
  margin-top: -5px;
}
.metric-circle .circle-progress-text .highest-rank {
  position: absolute;
  border-radius: 50%;
  bottom: -15px;
  width: 40px;
  margin-left: -20px;
  left: 50%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.metric-match {
  text-align: center;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  flex-direction: column;
  padding: 0.2em 6px;
  flex: 1;
}
.metric-match p {
  font-size: 14px;
  white-space: normal;
  line-height: 19px;
  height: 38px;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #334D6E;
}
.metric-match p span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.metric-match.disabled {
  opacity: 0.6;
}
.metric-match.disabled .metric-circle .circle-progress-text p {
  font-size: 10px;
}
.talent-matching,
.talent-match-details {
  position: relative;
}
.talent-matching .overall-matching,
.talent-match-details .overall-matching {
  margin-bottom: 15px;
  padding: 0 25px!important;
}
.talent-matching .metric-container,
.talent-match-details .metric-container {
  border-top: none!important;
  align-items: stretch;
  justify-content: space-evenly;
  height: unset;
  padding: 0 15px;
  position: relative;
  margin-bottom: 8px;
}
.talent-matching .metric-container .metric-match p,
.talent-match-details .metric-container .metric-match p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 13px;
  margin-bottom: 5px;
}
.talent-matching .metric-container .metric-match p span,
.talent-match-details .metric-container .metric-match p span {
  margin-bottom: 0;
}
.talent-matching .metric-container .metric-match .metric-circle p,
.talent-match-details .metric-container .metric-match .metric-circle p {
  margin-bottom: 0;
}
.talent-matching .metric-container .metric-match.disabled .circle-progress-text p,
.talent-match-details .metric-container .metric-match.disabled .circle-progress-text p {
  white-space: normal;
  max-width: 140px;
  line-height: normal;
  font-size: 11px;
  padding: 0 12px;
}
.talent-matching .metric-container .metric-match .section-body,
.talent-match-details .metric-container .metric-match .section-body {
  margin-top: 10px;
  padding: 0 10px;
  text-align: left;
}
.talent-matching .metric-container .metric-match .section-body p,
.talent-match-details .metric-container .metric-match .section-body p {
  height: inherit;
  text-align: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  line-height: 19px;
  font-weight: 100;
  margin: 0 0 2px;
  font-size: 12px;
}
.talent-matching .metric-container .metric-match .section-body strong,
.talent-match-details .metric-container .metric-match .section-body strong {
  font-weight: bold;
}
.talent-matching .metric-container .metric-match.team-match p,
.talent-match-details .metric-container .metric-match.team-match p {
  font-size: 12px;
}
.talent-matching .metric-container .match-hover-container,
.talent-match-details .metric-container .match-hover-container {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.talent-matching .metric-container .match-hover-container p,
.talent-match-details .metric-container .match-hover-container p {
  margin-top: 50px;
  background-color: #000000;
  border-radius: 20px;
  padding: 0.7rem 1.2rem;
  margin-bottom: 0;
  font-size: 13px;
  font-family: Beatrice, sans-serif;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.talent-matching .metric-container:hover .match-hover-container,
.talent-match-details .metric-container:hover .match-hover-container {
  opacity: 1;
  pointer-events: all;
}
.talent-matching .metric-container:hover .match-hover-container p,
.talent-match-details .metric-container:hover .match-hover-container p {
  cursor: pointer;
}
.talent-matching p.overall-progress,
.talent-match-details p.overall-progress {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 134.3%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 5px;
}
.talent-matching .RSPBprogressBar,
.talent-match-details .RSPBprogressBar,
.talent-matching .RSPBprogressBar .RSPBprogression,
.talent-match-details .RSPBprogressBar .RSPBprogression {
  border-radius: 0!important;
}
.match-details-modal .scrollarea .scrollarea-content {
  min-width: unset!important;
  max-width: 1050px;
  width: 100%;
  margin-left: auto!important;
  margin-right: auto!important;
  padding: 30px 25px;
}
.match-details-modal .scrollarea .scrollarea-content .modal-container {
  min-height: unset!important;
  padding: 0;
}
.match-details-modal .talent-match-details .talent-match-title,
.match-proposal-tab .talent-match-details .talent-match-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
.match-details-modal .talent-match-details .talent-match-title h4,
.match-proposal-tab .talent-match-details .talent-match-title h4 {
  padding: 0 25px;
  margin-bottom: 0;
  font-size: 30px;
  color: #334D6E;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-family: Beatrice, sans-serif;
}
.match-details-modal .talent-match-details .talent-match-title .talent-match-banner,
.match-proposal-tab .talent-match-details .talent-match-title .talent-match-banner,
.match-details-modal .talent-match-details .talent-match-title .team-match-banner,
.match-proposal-tab .talent-match-details .talent-match-title .team-match-banner {
  height: 120px;
  width: 120px;
  padding: 8px;
  background-color: #F5F6F8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.match-details-modal .talent-match-details .talent-match-title .talent-match-banner .img-fluid,
.match-proposal-tab .talent-match-details .talent-match-title .talent-match-banner .img-fluid,
.match-details-modal .talent-match-details .talent-match-title .team-match-banner .img-fluid,
.match-proposal-tab .talent-match-details .talent-match-title .team-match-banner .img-fluid {
  width: 45px;
  height: 45px;
  border-radius: 20px;
  margin-bottom: 5px;
}
.match-details-modal .talent-match-details .talent-match-title .talent-match-banner h5,
.match-proposal-tab .talent-match-details .talent-match-title .talent-match-banner h5,
.match-details-modal .talent-match-details .talent-match-title .team-match-banner h5,
.match-proposal-tab .talent-match-details .talent-match-title .team-match-banner h5 {
  font-size: 14px;
  letter-spacing: 0.01em;
  font-family: Beatrice, sans-serif;
  margin-bottom: 3px;
}
.match-details-modal .talent-match-details .talent-match-title .talent-match-banner p,
.match-proposal-tab .talent-match-details .talent-match-title .talent-match-banner p,
.match-details-modal .talent-match-details .talent-match-title .team-match-banner p,
.match-proposal-tab .talent-match-details .talent-match-title .team-match-banner p {
  font-size: 10px;
  letter-spacing: 0.01em;
  font-family: "Poppins SemiBold";
  margin-bottom: 0;
}
.match-details-modal .talent-match-details .talent-match-title .team-match-banner img,
.match-proposal-tab .talent-match-details .talent-match-title .team-match-banner img {
  width: 60px;
  height: 60px;
  border-radius: 20px;
}
.match-details-modal .talent-match-details .talent-match-title .team-match-banner h5,
.match-proposal-tab .talent-match-details .talent-match-title .team-match-banner h5 {
  margin-bottom: 0;
}
.match-details-modal .talent-match-details .metric-container,
.match-proposal-tab .talent-match-details .metric-container {
  padding-top: 20px;
}
.match-details-modal .talent-match-details .metric-container .metric-match,
.match-proposal-tab .talent-match-details .metric-container .metric-match {
  justify-content: normal;
  align-items: center;
}
.match-details-modal .talent-match-details .metric-container .metric-match p,
.match-proposal-tab .talent-match-details .metric-container .metric-match p {
  white-space: nowrap;
}
.match-details-modal .talent-match-details .metric-container .metric-match p span,
.match-proposal-tab .talent-match-details .metric-container .metric-match p span {
  flex-direction: row;
  margin: 0 2px;
}
.match-details-modal .talent-match-details .metric-container .metric-match .metric-detail-row,
.match-proposal-tab .talent-match-details .metric-container .metric-match .metric-detail-row {
  margin-bottom: 9px;
}
.match-details-modal .talent-match-details .metric-container .metric-match .metric-detail-row .col-8 p,
.match-proposal-tab .talent-match-details .metric-container .metric-match .metric-detail-row .col-8 p {
  white-space: normal;
  font-weight: 500;
  line-height: 19px;
}
.match-details-modal .talent-match-details .metric-container .metric-match .metric-detail-row .col-auto:last-child,
.match-proposal-tab .talent-match-details .metric-container .metric-match .metric-detail-row .col-auto:last-child {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}
.match-details-modal .talent-match-details .metric-container .metric-match .metric-detail-row .col-auto:last-child p:first-child,
.match-proposal-tab .talent-match-details .metric-container .metric-match .metric-detail-row .col-auto:last-child p:first-child {
  line-height: 19px;
}
.match-details-modal .talent-match-details .metric-container .metric-match .circle-progress-text p,
.match-proposal-tab .talent-match-details .metric-container .metric-match .circle-progress-text p {
  font-size: 115%;
}
.match-details-modal .talent-match-details .metric-container .metric-match .circle-progress-text .highest-rank,
.match-proposal-tab .talent-match-details .metric-container .metric-match .circle-progress-text .highest-rank {
  bottom: -25px;
  width: 66px;
  margin-left: -33px;
  height: 66px;
}
.match-details-modal .talent-match-details .metric-container .metric-match .metric-circle,
.match-proposal-tab .talent-match-details .metric-container .metric-match .metric-circle {
  max-height: 150px;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 25px;
}
.match-details-modal .talent-match-details .metric-container .metric-match .section-heading,
.match-proposal-tab .talent-match-details .metric-container .metric-match .section-heading {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
.match-details-modal .talent-match-details .metric-container .metric-match .section-body .row,
.match-proposal-tab .talent-match-details .metric-container .metric-match .section-body .row {
  padding: 0;
  flex-wrap: nowrap;
}
.match-details-modal .talent-match-details .metric-container .metric-match .section-body .row > .row,
.match-proposal-tab .talent-match-details .metric-container .metric-match .section-body .row > .row {
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.match-details-modal .talent-match-details .metric-container .metric-match .section-body p,
.match-proposal-tab .talent-match-details .metric-container .metric-match .section-body p {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #334D6E;
}
.match-details-modal .talent-match-details .metric-container .metric-match .section-body p strong,
.match-proposal-tab .talent-match-details .metric-container .metric-match .section-body p strong {
  text-align: center;
  font-weight: 700;
}
.match-details-modal .talent-match-details .metric-container .metric-match .section-body p.col,
.match-proposal-tab .talent-match-details .metric-container .metric-match .section-body p.col {
  padding: 0!important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px 0 -5px;
  width: 20px;
}
.match-details-modal .talent-match-details .metric-container .metric-match .section-body ul,
.match-proposal-tab .talent-match-details .metric-container .metric-match .section-body ul {
  color: #334D6E;
}
.match-details-modal .talent-match-details .metric-container .metric-match .section-body ul li,
.match-proposal-tab .talent-match-details .metric-container .metric-match .section-body ul li {
  padding: 2px;
  font-size: 13px;
}
.match-details-modal .talent-match-details .match-footer,
.match-proposal-tab .talent-match-details .match-footer {
  padding: 20px 25px;
  background-color: #F5F6F8;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #C2CFE0;
}
.match-details-modal .talent-match-details .match-footer .btn-primary,
.match-proposal-tab .talent-match-details .match-footer .btn-primary {
  white-space: nowrap;
}
.potential-candidate-actions {
  padding: 0 1.2rem;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: space-evenly;
}
.potential-candidate-actions .shortlisted-status {
  margin: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.potential-candidate-actions .shortlisted-status i {
  font-size: 18px!important;
  margin-right: 0.6rem;
  line-height: 18px;
}
.potential-candidate-actions .shortlisted-status p {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  line-height: 18px;
  letter-spacing: 0.01em;
  white-space: normal;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}
.potential-candidate-actions .shortlisted-status.pending i {
  color: black;
}
.potential-candidate-actions .shortlisted-status.declined i {
  color: black;
}
.potential-candidate-actions .shortlisted-status.shortlisted i {
  color: var(--theme-success, '#5ae399');
}
.potential-candidate-actions .approved-candidate-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin: 0 -3px !important;
}
.potential-candidate-actions .approved-candidate-actions button {
  flex: 1;
  width: unset!important;
  height: unset!important;
  margin: 0 3px!important;
  padding: 0.5rem 0 !important;
  white-space: normal!important;
}
.potential-candidate-actions .approved-candidate-actions .btn-success {
  pointer-events: none;
}
.potential-candidate-actions .btn-success {
  cursor: default!important;
}
.potential-candidate-actions button:disabled {
  box-shadow: none!important;
  background-color: #C2CFE0 !important;
  border-color: #C2CFE0 !important;
  opacity: 0.8 !important;
  color: white!important;
}
.potential-candidate-actions .project-invite-btn span {
  font-size: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  position: relative;
}
.potential-candidate-actions .project-invite-btn span small {
  font-size: 11px;
}
.potential-candidate-actions .project-invite-btn span span {
  margin-bottom: 5px;
}
.candidate-actions .approved-candidate-actions {
  margin: 0!important;
}
.candidate-actions:not(.hideRates) .potential-candidate-actions button {
  border-width: 0;
  margin: 0!important;
  font-size: 13px;
  padding: 0.55rem 0 !important;
}
.candidate-actions .potential-candidate-actions button {
  transition: all 250ms ease-in-out;
}
.candidate-actions .potential-candidate-actions .btn-outline-dark {
  background-color: #dadada !important;
  border-color: #dadada !important;
  color: black!important;
}
.candidate-actions .potential-candidate-actions .btn-outline-dark:hover,
.candidate-actions .potential-candidate-actions .btn-outline-dark:focus {
  background-color: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}
.candidate-panel {
  transition: all 400ms ease-in-out;
  will-change: contents;
  width: 100%;
  min-width: 342px !important;
  background-color: #FFFFFF;
  margin: 0 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  position: relative;
}
.candidate-panel.no-min-width {
  min-width: unset !important;
}
.candidate-panel.assigned {
  box-shadow: 2px 1px 6px rgba(95, 61, 177, 0.3);
  border: 2px solid var(--theme-primary, '#5f3db1');
  box-sizing: border-box;
}
.candidate-panel.assigned .btn-success {
  cursor: default!important;
}
.candidate-panel .candidate-status-header {
  text-align: center;
  padding: 0 0.7rem;
  height: 38px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  display: flex;
  border-bottom: none;
  background-color: #F5F6F8;
}
.candidate-panel .candidate-status-header p,
.candidate-panel .candidate-status-header span,
.candidate-panel .candidate-status-header button {
  letter-spacing: 0.05em;
  margin: 0;
  font-size: 12px;
  color: black;
  font-weight: 500;
}
.candidate-panel .candidate-status-header p {
  margin-top: 1px;
  display: flex;
  align-items: center;
}
.candidate-panel .candidate-status-header button {
  text-align: right;
  padding: 0;
  align-self: stretch;
  transition: color 200ms ease-in;
  color: black!important;
  text-decoration: underline;
}
.candidate-panel .candidate-status-header button:hover,
.candidate-panel .candidate-status-header button:focus {
  font-weight: 600!important;
  text-decoration: underline;
}
.candidate-panel .candidate-status-header.placeholder {
  background-color: #F5F6F8;
  border-bottom: none;
  opacity: 0.6;
}
.candidate-panel .candidate-status-header.pending {
  pointer-events: none;
  justify-content: space-between;
  background-color: #D3D8DC;
  border-color: #D3D8DC;
}
.candidate-panel .candidate-status-header.pending * {
  pointer-events: none;
  color: var(--theme-primary, '#5f3db1');
}
.candidate-panel .candidate-status-header.pending .text-bold {
  font-weight: 600;
}
.candidate-panel .candidate-status-header.declined {
  background-color: #656565;
  border-color: #656565;
  color: white;
  justify-content: center;
  align-items: stretch;
}
.candidate-panel .candidate-status-header.declined * {
  color: white;
}
.candidate-panel .candidate-status-header.declined .archive-and-remove {
  position: relative;
}
.candidate-panel .candidate-status-header.interested {
  justify-content: space-between;
  background-color: var(--theme-success, '#5ae399');
  border-color: var(--theme-success, '#5ae399');
  pointer-events: unset;
}
.candidate-panel .candidate-status-header.interested * {
  color: black;
  pointer-events: unset;
}
.candidate-panel .candidate-status-header.shortlisted {
  background-color: var(--theme-secondary-darker);
  border-color: var(--theme-secondary-darker);
}
.candidate-panel .candidate-status-header.shortlisted * {
  color: white;
}
.candidate-panel .candidate-status-header.shortlisted button {
  color: white!important;
}
.candidate-panel .candidate-status-header.blocked {
  background-color: #b5bdce;
  border-color: #b5bdce;
}
.candidate-panel .candidate-status-header.blocked * {
  color: #424242;
}
.candidate-panel .candidate-status-header.blocked button {
  color: #424242 !important;
}
.candidate-panel .candidate-status-header i.fa-circle {
  font-size: 11px;
  margin-top: 1px;
}
.candidate-panel .candidate-top-contents {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.candidate-panel .candidate-top-contents .new-indicator {
  line-height: 12px;
  font-size: 10px;
  color: white;
  border-radius: 12px;
  min-width: 16px;
  min-height: 16px;
  padding: 2.5px 4.5px;
  font-weight: 500;
  vertical-align: top;
  background-color: var(--theme-danger);
  display: inline-block;
  text-align: center;
  margin-left: 5px;
  position: absolute;
  left: 100%;
}
.candidate-panel .candidate-top-contents .content-row {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin: 0 -6px;
}
.candidate-panel .candidate-top-contents .content-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.candidate-panel .candidate-top-contents .content-col p {
  font-family: 'Beatrice', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #343741;
  margin-bottom: 0;
}
.candidate-panel .candidate-top-contents .content-col .candidate-bio {
  min-height: 36px;
}
.candidate-panel .candidate-top-contents .content-col .line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.candidate-panel .candidate-top-contents .content-col .matched-roles {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  min-height: 19px;
}
.candidate-panel .candidate-top-contents .content-col .matched-roles .role {
  padding: 2px 8px;
  background: var(--theme-primary, '#5f3db1');
  border-radius: 12px;
  margin: 0;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  max-width: 117px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.candidate-panel .candidate-top-contents .content-col .matched-roles .role2 {
  padding: 2px 8px;
  background: white;
  border-radius: 4px;
  margin: 0;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.01em;
  border: 1px solid #39178B;
  max-width: 117px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #39178B;
}
.candidate-panel .candidate-top-contents .content-col .matched-roles .more-roles {
  white-space: nowrap;
  margin: 0;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  color: #4B80E7;
  cursor: default;
}
.candidate-panel .candidate-top-contents .candidate-card-image {
  height: 105px;
  width: 105px;
  margin: 0 6px;
  position: relative;
}
.candidate-panel .candidate-top-contents .candidate-card-image .loading-user-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 105px;
  width: 105px;
  background-color: white;
  border-radius: 50%;
}
.candidate-panel .candidate-top-contents .candidate-card-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 1;
}
.candidate-panel .candidate-top-contents .candidate-card-image .candidate-img-status {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  height: 105px!important;
  z-index: 2;
}
.candidate-panel .candidate-top-contents .candidate-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 6px;
  position: relative;
  overflow: hidden;
  gap: 8px;
}
.candidate-panel .candidate-top-contents .candidate-name p,
.candidate-panel .candidate-top-contents .candidate-name h5 {
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 0.01em;
  color: #000000;
}
.candidate-panel .candidate-top-contents .candidate-name h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 125%;
}
.candidate-panel .candidate-top-contents .candidate-name p:not(.job-title) {
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
}
.candidate-panel .candidate-top-contents .candidate-name i {
  color: #C2CFE0;
  font-size: 12px;
  line-height: 14px;
  width: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -1px;
}
.candidate-panel .candidate-top-contents .candidate-bio {
  white-space: normal;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #343741;
  margin-bottom: 0;
  min-height: 36px;
}
.candidate-panel .candidate-top-contents .details-link {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: #913ef0;
  margin: 0;
}
.candidate-panel .talent-matching {
  margin-top: 8px;
  margin-bottom: 8px;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
}
.candidate-panel .talent-matching .overall-matching,
.candidate-panel .talent-matching .metric-container {
  padding: 0!important;
}
.candidate-panel .candidate-status-actions {
  min-height: 30px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.candidate-panel .candidate-status-actions .message-btn {
  margin-left: auto;
}
.candidate-panel .candidate-status-actions .archive-btn,
.candidate-panel .candidate-status-actions .like-btn,
.candidate-panel .candidate-status-actions .interview-btn,
.candidate-panel .candidate-status-actions .message-btn {
  padding: 6px;
  position: relative;
}
.candidate-panel .candidate-status-actions .archive-btn i,
.candidate-panel .candidate-status-actions .like-btn i,
.candidate-panel .candidate-status-actions .interview-btn i,
.candidate-panel .candidate-status-actions .message-btn i {
  font-size: 22px;
}
.candidate-panel .candidate-status-actions .archive-btn i.fa-plus-circle,
.candidate-panel .candidate-status-actions .like-btn i.fa-plus-circle,
.candidate-panel .candidate-status-actions .interview-btn i.fa-plus-circle,
.candidate-panel .candidate-status-actions .message-btn i.fa-plus-circle {
  color: black;
}
.candidate-panel .candidate-status-actions .archive-btn i.fa-times-circle,
.candidate-panel .candidate-status-actions .like-btn i.fa-times-circle,
.candidate-panel .candidate-status-actions .interview-btn i.fa-times-circle,
.candidate-panel .candidate-status-actions .message-btn i.fa-times-circle {
  color: #93A0B5;
}
.candidate-panel .candidate-status-actions .archive-btn i.fa-thumbs-up,
.candidate-panel .candidate-status-actions .like-btn i.fa-thumbs-up,
.candidate-panel .candidate-status-actions .interview-btn i.fa-thumbs-up,
.candidate-panel .candidate-status-actions .message-btn i.fa-thumbs-up {
  color: #93A0B5;
}
.candidate-panel .candidate-status-actions .archive-btn i.fa-thumbs-up.fas,
.candidate-panel .candidate-status-actions .like-btn i.fa-thumbs-up.fas,
.candidate-panel .candidate-status-actions .interview-btn i.fa-thumbs-up.fas,
.candidate-panel .candidate-status-actions .message-btn i.fa-thumbs-up.fas {
  color: var(--theme-success, '#5ae399');
}
.candidate-panel .candidate-status-actions .archive-btn i.fa-calendar-alt,
.candidate-panel .candidate-status-actions .like-btn i.fa-calendar-alt,
.candidate-panel .candidate-status-actions .interview-btn i.fa-calendar-alt,
.candidate-panel .candidate-status-actions .message-btn i.fa-calendar-alt,
.candidate-panel .candidate-status-actions .archive-btn i.fa-comment-alt,
.candidate-panel .candidate-status-actions .like-btn i.fa-comment-alt,
.candidate-panel .candidate-status-actions .interview-btn i.fa-comment-alt,
.candidate-panel .candidate-status-actions .message-btn i.fa-comment-alt {
  color: #93A0B5;
  line-height: 18px;
}
.candidate-panel .candidate-status-actions .archive-btn .badge,
.candidate-panel .candidate-status-actions .like-btn .badge,
.candidate-panel .candidate-status-actions .interview-btn .badge,
.candidate-panel .candidate-status-actions .message-btn .badge {
  position: absolute;
  top: 2px;
  right: 2px;
}
.candidate-panel .candidate-status-actions .like-btn {
  margin-left: auto;
}
.candidate-panel .candidate-status-actions .like-btn .fa-heart {
  color: var(--theme-danger, '#E54963');
}
.candidate-panel .candidate-status-actions .fa-ellipsis-v {
  color: #93A0B5;
  padding: 6px;
  font-size: 23px;
}
.candidate-panel .potential-candidate-actions {
  padding: 0 1.2rem;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: space-evenly;
  height: 110px;
}
.candidate-panel .potential-candidate-actions .shortlisted-status {
  margin: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.candidate-panel .potential-candidate-actions .shortlisted-status i {
  font-size: 18px!important;
  margin-right: 0.6rem;
  line-height: 18px;
}
.candidate-panel .potential-candidate-actions .shortlisted-status p {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  line-height: 18px;
  letter-spacing: 0.01em;
  white-space: normal;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}
.candidate-panel .potential-candidate-actions .shortlisted-status.pending i {
  color: black;
}
.candidate-panel .potential-candidate-actions .shortlisted-status.declined i {
  color: black;
}
.candidate-panel .potential-candidate-actions .shortlisted-status.shortlisted i {
  color: var(--theme-success, '#5ae399');
}
.candidate-panel .potential-candidate-actions .approved-candidate-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin: 0 -3px !important;
}
.candidate-panel .potential-candidate-actions .approved-candidate-actions button {
  flex: 1;
  width: unset!important;
  height: unset!important;
  margin: 0 3px!important;
  padding: 0.5rem 0 !important;
  white-space: normal!important;
}
.candidate-panel .potential-candidate-actions .approved-candidate-actions .btn-success {
  pointer-events: none;
}
.candidate-panel .potential-candidate-actions .btn-success {
  cursor: default!important;
}
.candidate-panel .potential-candidate-actions button:disabled {
  box-shadow: none!important;
  background-color: #C2CFE0 !important;
  border-color: #C2CFE0 !important;
  opacity: 0.8 !important;
  color: white!important;
}
.candidate-panel .potential-candidate-actions .project-invite-btn span {
  font-size: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  position: relative;
}
.candidate-panel .potential-candidate-actions .project-invite-btn span small {
  font-size: 11px;
}
.candidate-panel .potential-candidate-actions .project-invite-btn span span {
  margin-bottom: 5px;
}
.candidate-panel .rating-button .ant-rate-disabled .ant-rate-star {
  cursor: pointer;
}
.candidate-panel.bulk-enabled .archive-checkbox:not(.ant-checkbox-wrapper-checked) {
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease-in, transform 150ms ease-in;
  transform: scale(0, 0);
}
.candidate-panel.bulk-enabled .archive-checkbox .ant-checkbox-inner {
  border-width: 2px;
  height: 20px;
  width: 20px;
  border-color: #ababab;
}
.candidate-panel.bulk-enabled .archive-checkbox.ant-checkbox-wrapper-checked .ant-checkbox-inner {
  border-color: #913ef0;
}
.candidate-panel.bulk-enabled .archive-checkbox {
  background-color: #F5F6F8;
}
.candidate-panel.bulk-enabled:hover,
.candidate-panel.bulk-enabled.selected {
  filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.06)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.15));
}
.candidate-panel.bulk-enabled:hover .archive-checkbox:not(.ant-checkbox-wrapper-checked) {
  opacity: 1;
  pointer-events: all;
  transform: scale(1, 1);
}
.candidate-rate-section {
  background: #f2f8fe;
  display: flex;
  align-self: stretch;
  align-items: stretch;
  flex-direction: column;
  justify-content: center;
  padding: 20px 10px;
}
.candidate-rate-section h4 {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  letter-spacing: 0.01em;
  color: #39178B;
}
.candidate-rate-section h2 {
  margin: 0 auto;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 18px;
  padding-top: 8px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #39178B;
}
.candidate-rate-section h2.currency-sup:first-letter {
  font-size: 14px;
  vertical-align: super;
}
.candidate-rate-section h2 span {
  font-size: 14px;
}
.candidate-rate-section p {
  margin: 3px auto 10px;
  font-family: Beatrice, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.01em;
  color: #343741;
}
.candidate-rate-section.preferred-candidate-rate {
  background: #F5F1FD;
}
.candidate-rate-section.preferred-candidate-rate p,
.candidate-rate-section.preferred-candidate-rate h4,
.candidate-rate-section.preferred-candidate-rate h2 {
  font-weight: 600;
  font-style: italic;
  color: var(--theme-secondary, '#913ef0');
}
.candidate-rate-section.rate-change {
  position: relative;
}
.candidate-rate-section.rate-change .rate-change-container {
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.candidate-rate-section.rate-change .rate-change-container h4 {
  font-size: 11px;
}
.candidate-rate-section.rate-change .rate-change-container h2 {
  font-size: 20px;
  position: relative;
  color: var(--theme-danger, '#E54963');
  text-decoration: line-through;
}
.candidate-rate-section.rate-change .rate-change-container h2 span {
  color: #343741;
  font-size: 20px;
}
.signup-banner {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  min-height: 100vh;
  flex: 1;
}
.signup-banner .signup-form {
  min-width: 450px;
}
.signup-banner .branding {
  padding: 0 5%;
  flex-grow: 1;
}
@media only screen and (max-width: 1128px) {
  .signup-banner .branding {
    flex: 2 0 35%;
    min-width: 300px;
    padding: 45px 0;
  }
  .signup-banner .wripple-form {
    min-width: 300px !important;
    flex: 1 0 60% !important;
  }
}
.opp-talent-proposal-form .branding,
.signup-banner .branding,
.talent-application .branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--theme-light, '#E5EBF1');
}
.opp-talent-proposal-form .branding > *,
.signup-banner .branding > *,
.talent-application .branding > * {
  margin: 0 25px;
}
.opp-talent-proposal-form .branding .logo-heading,
.signup-banner .branding .logo-heading,
.talent-application .branding .logo-heading {
  align-items: flex-start;
  justify-content: center;
  display: flex;
  flex-direction: column;
  height: 36px;
  align-self: stretch;
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.opp-talent-proposal-form .branding .heading,
.signup-banner .branding .heading,
.talent-application .branding .heading {
  width: 60%;
  color: var(--theme-secondary, '#913ef0');
}
.opp-talent-proposal-form .branding .subheading,
.signup-banner .branding .subheading,
.talent-application .branding .subheading {
  margin-top: 15px;
  font-size: 12px;
  color: #000000;
}
.opp-talent-proposal-form .talent-app-tooltip i,
.signup-banner .talent-app-tooltip i,
.talent-application .talent-app-tooltip i {
  color: black;
}
.opp-talent-proposal-form .talent-app-tooltip *,
.signup-banner .talent-app-tooltip *,
.talent-application .talent-app-tooltip * {
  text-align: left;
}
.opp-talent-proposal-form .wripple-form,
.signup-banner .wripple-form,
.talent-application .wripple-form {
  flex: unset;
}
.opp-talent-proposal-form .wripple-form .form-title-section,
.signup-banner .wripple-form .form-title-section,
.talent-application .wripple-form .form-title-section {
  margin-bottom: 5px;
}
.opp-talent-proposal-form .wripple-form .form-title-section .form-subtitle,
.signup-banner .wripple-form .form-title-section .form-subtitle,
.talent-application .wripple-form .form-title-section .form-subtitle {
  margin-top: 10px;
  text-transform: none;
  letter-spacing: normal;
  font-size: 12px !important;
  color: black;
}
.opp-talent-proposal-form .wripple-form .form-title-section .form-subtitle a,
.signup-banner .wripple-form .form-title-section .form-subtitle a,
.talent-application .wripple-form .form-title-section .form-subtitle a {
  font-size: 12px !important;
  color: black;
  font-weight: 600;
  text-decoration: underline;
}
.opp-talent-proposal-form .wripple-form .form-container,
.signup-banner .wripple-form .form-container,
.talent-application .wripple-form .form-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 30px;
}
.opp-talent-proposal-form .wripple-form .form-container form,
.signup-banner .wripple-form .form-container form,
.talent-application .wripple-form .form-container form {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.opp-talent-proposal-form .wripple-form .form-container form .invalid-feedback,
.signup-banner .wripple-form .form-container form .invalid-feedback,
.talent-application .wripple-form .form-container form .invalid-feedback {
  white-space: nowrap;
  margin-bottom: 10px;
}
@media only screen and (max-width: 529px) {
  .opp-talent-proposal-form .wripple-form .form-container form .invalid-feedback,
  .signup-banner .wripple-form .form-container form .invalid-feedback,
  .talent-application .wripple-form .form-container form .invalid-feedback {
    font-size: 8px;
  }
}
.opp-talent-proposal-form .wripple-form .form-container form .field,
.signup-banner .wripple-form .form-container form .field,
.talent-application .wripple-form .form-container form .field {
  margin-bottom: 15px;
}
.opp-talent-proposal-form .wripple-form .form-container form .field,
.signup-banner .wripple-form .form-container form .field,
.talent-application .wripple-form .form-container form .field,
.opp-talent-proposal-form .wripple-form .form-container form .field-element,
.signup-banner .wripple-form .form-container form .field-element,
.talent-application .wripple-form .form-container form .field-element {
  margin-top: 5px;
}
.opp-talent-proposal-form .wripple-form .form-container form .field .form-group,
.signup-banner .wripple-form .form-container form .field .form-group,
.talent-application .wripple-form .form-container form .field .form-group,
.opp-talent-proposal-form .wripple-form .form-container form .field-element .form-group,
.signup-banner .wripple-form .form-container form .field-element .form-group,
.talent-application .wripple-form .form-container form .field-element .form-group {
  margin-bottom: 0;
}
.opp-talent-proposal-form .wripple-form .form-container form .field .form-group label,
.signup-banner .wripple-form .form-container form .field .form-group label,
.talent-application .wripple-form .form-container form .field .form-group label,
.opp-talent-proposal-form .wripple-form .form-container form .field-element .form-group label,
.signup-banner .wripple-form .form-container form .field-element .form-group label,
.talent-application .wripple-form .form-container form .field-element .form-group label {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  mix-blend-mode: normal;
  margin-bottom: 10px;
  min-height: 18px;
  font-weight: 500 !important;
  font-size: 12px !important;
  white-space: nowrap;
  line-height: 18px !important;
  letter-spacing: 0.01em !important;
  color: #343741 !important;
}
@media only screen and (max-width: 767px) {
  .opp-talent-proposal-form .wripple-form .form-container form .field .form-group label,
  .signup-banner .wripple-form .form-container form .field .form-group label,
  .talent-application .wripple-form .form-container form .field .form-group label,
  .opp-talent-proposal-form .wripple-form .form-container form .field-element .form-group label,
  .signup-banner .wripple-form .form-container form .field-element .form-group label,
  .talent-application .wripple-form .form-container form .field-element .form-group label {
    white-space: normal;
  }
}
.opp-talent-proposal-form .wripple-form .form-container form .field .form-group select,
.signup-banner .wripple-form .form-container form .field .form-group select,
.talent-application .wripple-form .form-container form .field .form-group select,
.opp-talent-proposal-form .wripple-form .form-container form .field-element .form-group select,
.signup-banner .wripple-form .form-container form .field-element .form-group select,
.talent-application .wripple-form .form-container form .field-element .form-group select,
.opp-talent-proposal-form .wripple-form .form-container form .field .form-group input:not(.ant-select-selection-search-input),
.signup-banner .wripple-form .form-container form .field .form-group input:not(.ant-select-selection-search-input),
.talent-application .wripple-form .form-container form .field .form-group input:not(.ant-select-selection-search-input),
.opp-talent-proposal-form .wripple-form .form-container form .field-element .form-group input:not(.ant-select-selection-search-input),
.signup-banner .wripple-form .form-container form .field-element .form-group input:not(.ant-select-selection-search-input),
.talent-application .wripple-form .form-container form .field-element .form-group input:not(.ant-select-selection-search-input),
.opp-talent-proposal-form .wripple-form .form-container form .field .form-group textarea,
.signup-banner .wripple-form .form-container form .field .form-group textarea,
.talent-application .wripple-form .form-container form .field .form-group textarea,
.opp-talent-proposal-form .wripple-form .form-container form .field-element .form-group textarea,
.signup-banner .wripple-form .form-container form .field-element .form-group textarea,
.talent-application .wripple-form .form-container form .field-element .form-group textarea {
  padding: 4px 10px !important;
  background: #F5F6F8;
  border: none;
  box-shadow: none !important;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px !important;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  color: #000000;
}
.opp-talent-proposal-form .wripple-form .form-container form .field .form-group select,
.signup-banner .wripple-form .form-container form .field .form-group select,
.talent-application .wripple-form .form-container form .field .form-group select,
.opp-talent-proposal-form .wripple-form .form-container form .field-element .form-group select,
.signup-banner .wripple-form .form-container form .field-element .form-group select,
.talent-application .wripple-form .form-container form .field-element .form-group select {
  width: 100%;
}
.opp-talent-proposal-form .wripple-form .form-container form .field .form-group textarea,
.signup-banner .wripple-form .form-container form .field .form-group textarea,
.talent-application .wripple-form .form-container form .field .form-group textarea,
.opp-talent-proposal-form .wripple-form .form-container form .field-element .form-group textarea,
.signup-banner .wripple-form .form-container form .field-element .form-group textarea,
.talent-application .wripple-form .form-container form .field-element .form-group textarea {
  padding: 10px 10px !important;
}
.opp-talent-proposal-form .wripple-form .form-container form .field .form-group.text-danger label .required-symbol,
.signup-banner .wripple-form .form-container form .field .form-group.text-danger label .required-symbol,
.talent-application .wripple-form .form-container form .field .form-group.text-danger label .required-symbol,
.opp-talent-proposal-form .wripple-form .form-container form .field-element .form-group.text-danger label .required-symbol,
.signup-banner .wripple-form .form-container form .field-element .form-group.text-danger label .required-symbol,
.talent-application .wripple-form .form-container form .field-element .form-group.text-danger label .required-symbol {
  color: var(--theme-danger, '#E54963') !important;
}
.opp-talent-proposal-form .wripple-form .form-container form .field .form-group.text-danger select,
.signup-banner .wripple-form .form-container form .field .form-group.text-danger select,
.talent-application .wripple-form .form-container form .field .form-group.text-danger select,
.opp-talent-proposal-form .wripple-form .form-container form .field-element .form-group.text-danger select,
.signup-banner .wripple-form .form-container form .field-element .form-group.text-danger select,
.talent-application .wripple-form .form-container form .field-element .form-group.text-danger select,
.opp-talent-proposal-form .wripple-form .form-container form .field .form-group.text-danger input:not(.ant-select-selection-search-input),
.signup-banner .wripple-form .form-container form .field .form-group.text-danger input:not(.ant-select-selection-search-input),
.talent-application .wripple-form .form-container form .field .form-group.text-danger input:not(.ant-select-selection-search-input),
.opp-talent-proposal-form .wripple-form .form-container form .field-element .form-group.text-danger input:not(.ant-select-selection-search-input),
.signup-banner .wripple-form .form-container form .field-element .form-group.text-danger input:not(.ant-select-selection-search-input),
.talent-application .wripple-form .form-container form .field-element .form-group.text-danger input:not(.ant-select-selection-search-input),
.opp-talent-proposal-form .wripple-form .form-container form .field .form-group.text-danger textarea,
.signup-banner .wripple-form .form-container form .field .form-group.text-danger textarea,
.talent-application .wripple-form .form-container form .field .form-group.text-danger textarea,
.opp-talent-proposal-form .wripple-form .form-container form .field-element .form-group.text-danger textarea,
.signup-banner .wripple-form .form-container form .field-element .form-group.text-danger textarea,
.talent-application .wripple-form .form-container form .field-element .form-group.text-danger textarea,
.opp-talent-proposal-form .wripple-form .form-container form .field .form-group.text-danger .input-group,
.signup-banner .wripple-form .form-container form .field .form-group.text-danger .input-group,
.talent-application .wripple-form .form-container form .field .form-group.text-danger .input-group,
.opp-talent-proposal-form .wripple-form .form-container form .field-element .form-group.text-danger .input-group,
.signup-banner .wripple-form .form-container form .field-element .form-group.text-danger .input-group,
.talent-application .wripple-form .form-container form .field-element .form-group.text-danger .input-group {
  border-bottom-width: 1px;
}
.opp-talent-proposal-form .wripple-form .form-container form .field .form-group.text-danger .input-group *,
.signup-banner .wripple-form .form-container form .field .form-group.text-danger .input-group *,
.talent-application .wripple-form .form-container form .field .form-group.text-danger .input-group *,
.opp-talent-proposal-form .wripple-form .form-container form .field-element .form-group.text-danger .input-group *,
.signup-banner .wripple-form .form-container form .field-element .form-group.text-danger .input-group *,
.talent-application .wripple-form .form-container form .field-element .form-group.text-danger .input-group * {
  border-bottom: none !important;
}
.opp-talent-proposal-form .wripple-form .form-container form .field .form-group select,
.signup-banner .wripple-form .form-container form .field .form-group select,
.talent-application .wripple-form .form-container form .field .form-group select,
.opp-talent-proposal-form .wripple-form .form-container form .field-element .form-group select,
.signup-banner .wripple-form .form-container form .field-element .form-group select,
.talent-application .wripple-form .form-container form .field-element .form-group select,
.opp-talent-proposal-form .wripple-form .form-container form .field .form-group input:not(.ant-select-selection-search-input),
.signup-banner .wripple-form .form-container form .field .form-group input:not(.ant-select-selection-search-input),
.talent-application .wripple-form .form-container form .field .form-group input:not(.ant-select-selection-search-input),
.opp-talent-proposal-form .wripple-form .form-container form .field-element .form-group input:not(.ant-select-selection-search-input),
.signup-banner .wripple-form .form-container form .field-element .form-group input:not(.ant-select-selection-search-input),
.talent-application .wripple-form .form-container form .field-element .form-group input:not(.ant-select-selection-search-input),
.opp-talent-proposal-form .wripple-form .form-container form .field .form-group .help-element,
.signup-banner .wripple-form .form-container form .field .form-group .help-element,
.talent-application .wripple-form .form-container form .field .form-group .help-element,
.opp-talent-proposal-form .wripple-form .form-container form .field-element .form-group .help-element,
.signup-banner .wripple-form .form-container form .field-element .form-group .help-element,
.talent-application .wripple-form .form-container form .field-element .form-group .help-element {
  line-height: 18px;
  height: 43px;
}
.opp-talent-proposal-form .wripple-form .form-container .form-footer,
.signup-banner .wripple-form .form-container .form-footer,
.talent-application .wripple-form .form-container .form-footer,
.opp-talent-proposal-form .wripple-form .form-container .form-buttons,
.signup-banner .wripple-form .form-container .form-buttons,
.talent-application .wripple-form .form-container .form-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.opp-talent-proposal-form .wripple-form .form-container .form-footer .btn,
.signup-banner .wripple-form .form-container .form-footer .btn,
.talent-application .wripple-form .form-container .form-footer .btn,
.opp-talent-proposal-form .wripple-form .form-container .form-buttons .btn,
.signup-banner .wripple-form .form-container .form-buttons .btn,
.talent-application .wripple-form .form-container .form-buttons .btn {
  margin-top: 15px;
  align-self: stretch;
  height: 45px;
}
.opp-talent-proposal-form select.not-selected,
.signup-banner select.not-selected,
.talent-application select.not-selected {
  color: #90a0b7 !important;
}
.opp-talent-proposal-form select.not-selected option,
.signup-banner select.not-selected option,
.talent-application select.not-selected option {
  color: #000000 !important;
}
.opp-talent-proposal-form ::-moz-placeholder, .signup-banner ::-moz-placeholder, .talent-application ::-moz-placeholder {
  color: #90a0b7 !important;
  font-weight: 400 !important;
  opacity: 1;
}
.opp-talent-proposal-form ::placeholder,
.signup-banner ::placeholder,
.talent-application ::placeholder {
  color: #90a0b7 !important;
  font-weight: 400 !important;
  opacity: 1;
}
.opp-talent-proposal-form :-ms-input-placeholder,
.signup-banner :-ms-input-placeholder,
.talent-application :-ms-input-placeholder,
.opp-talent-proposal-form ::-ms-input-placeholder,
.signup-banner ::-ms-input-placeholder,
.talent-application ::-ms-input-placeholder {
  color: #90a0b7 !important;
}
.opp-talent-proposal-form .form-header,
.signup-banner .form-header,
.talent-application .form-header {
  margin: 25px 0 5px;
  padding: 0 15px;
  font-family: Roboto Mono, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  /* identical to box height */
  letter-spacing: 0.2em;
  text-transform: uppercase;
  /* Table black */
  color: #323c47;
}
.opp-talent-proposal-form .form-subheader,
.signup-banner .form-subheader,
.talent-application .form-subheader {
  margin: 10px 0;
  padding: 0 15px;
  font-size: 12px;
  color: #323c47;
}
.talent-application-container .wp-sidebar-nav {
  background-color: white;
  z-index: 50;
  position: relative;
  /* Position them relative to the browser window */
  top: 0;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
  width: 0;
  /* Set a specific width */
  text-decoration: none;
  /* Remove underline */
  border-radius: 0 5px 5px 0;
  /* Rounded corners on the top right and bottom right side */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.talent-application-container .wp-sidebar-nav:not(.open) {
  transition: all 800ms ease-in-out;
  /* Add transition on hover */
}
.talent-application-container .wp-sidebar-nav:not(.open) .settings-icon {
  transition: all 800ms ease-in-out;
}
.talent-application-container .wp-sidebar-nav:not(.open) > div:not(.settings-icon) {
  padding: 0!important;
}
.talent-application-container .wp-sidebar-nav:not(.open) > .wp-sidebar-container {
  overflow: hidden;
  opacity: 0;
  transition: opacity 100ms ease-in-out;
  transition-delay: 0ms;
}
.talent-application-container .wp-sidebar-nav > .wp-sidebar-container {
  width: 100%;
  transition: opacity 100ms ease-in-out;
  transition-delay: 800ms;
}
.talent-application-container .wp-sidebar-nav .settings-icon {
  z-index: 50;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
  border-radius: 0 0 5px 0;
  /* Rounded corners on the top right and bottom right side */
  background-color: white;
  width: 30px;
  font-size: 13px;
  margin: 0;
  color: #334D6E;
  align-self: flex-end;
  position: absolute;
  top: 0;
  height: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0;
  opacity: 1;
}
.talent-application-container .wp-sidebar-nav .settings-icon .fa-sliders-h,
.talent-application-container .wp-sidebar-nav .settings-icon .fa-caret-right {
  color: #90A0B7;
}
.talent-application-container .wp-sidebar-nav .settings-icon .fa-times,
.talent-application-container .wp-sidebar-nav .settings-icon .fa-caret-left {
  height: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 100ms ease-in-out;
  transition-delay: 800ms;
}
.talent-application-container .wp-sidebar-nav.open {
  background-color: #fff;
  transition: all ease-in-out 800ms;
}
.talent-application-container .wp-sidebar-nav.open .settings-icon {
  opacity: 1;
  box-shadow: 1px 2px 0 0 rgba(52, 55, 65, 0.24);
  height: 45px;
  width: 30px;
  margin: 0;
  left: 100%;
  transition: all ease-in-out 800ms;
  transition-delay: 0;
}
.talent-application-container .wp-sidebar-nav.open .settings-icon .fa-times,
.talent-application-container .wp-sidebar-nav.open .settings-icon .fa-caret-left {
  height: unset;
  width: unset;
  overflow: unset;
  opacity: 1;
  transition-delay: 800ms;
}
.talent-application-container .wp-sidebar-nav.open .settings-icon .fa-sliders-h,
.talent-application-container .wp-sidebar-nav.open .settings-icon .fa-caret-right {
  display: none;
}
.talent-application-container .wp-sidebar-nav.open .settings-icon p {
  display: none;
}
.talent-application-container .wp-sidebar-nav.open > .wp-sidebar-container {
  opacity: 1;
}
#terms-modal {
  padding: 0 10px;
}
#terms-modal * {
  font-size: 11px;
}
#terms-modal ol,
#terms-modal ul {
  padding-left: 20px;
  margin-top: 5px;
}
#terms-modal ol li,
#terms-modal ul li {
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .talent-application .wripple-form .form-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .talent-application .wripple-form .form-container .form-title-section {
    margin-top: 15px;
  }
  .talent-application .wripple-form .form-container .field {
    padding: 0 !important;
  }
  .signup-banner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .signup-banner .branding {
    flex: unset;
    padding: 45px 0;
  }
  .signup-banner .branding .heading {
    width: unset;
  }
  .signup-banner .signup-form {
    min-width: unset;
  }
  .signup-banner .wripple-form .form-container {
    padding: 15px;
  }
  .signup-banner .wripple-form .form-container .field-section {
    padding: 0 5px;
  }
}
.signup-banner .wripple-form .form-container form .invalid-feedback {
  margin-bottom: 5px;
  display: inline-block;
  white-space: normal;
  max-width: -moz-fit-content;
  max-width: fit-content;
  position: relative;
}
.signup-banner .wripple-form .form-container form .field {
  margin-bottom: 10px;
}
.talent-application-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: calc(100vh - 60px) !important;
}
.talent-application-container .flex-1 {
  flex: 1;
}
.talent-application-container .talent-application-progress {
  height: 30px;
  position: relative;
  background-color: #F5F6F8;
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.talent-application-container .talent-application-progress .RSPBprogression {
  border-radius: 0 !important;
  transition: width 1s ease-in-out;
}
.talent-application-container .talent-application-progress .talent-app-progress-title {
  transition: right 1s ease-in-out;
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  text-align: right;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #343741;
  margin-bottom: 0;
  position: absolute;
  margin-right: 4px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.talent-application-container .talent-application-progress .talent-app-progress-title.talent-supplier-resource {
  font-family: "Beatrice", sans-serif;
  font-weight: normal;
}
.talent-application-container .talent-application-form-container {
  display: flex;
  align-items: stretch;
  flex: 1;
}
.talent-application-container .talent-application-form-container .ant-tag-pink {
  border-color: #ffadd2;
}
.talent-application-container .talent-application-form-container .ant-tag-magenta {
  border-color: #ffadd2;
}
.talent-application-container .talent-application-form-container .ant-tag-red {
  border-color: #ffa39e;
}
.talent-application-container .talent-application-form-container .ant-tag-volcano {
  border-color: #ffbb96;
}
.talent-application-container .talent-application-form-container .ant-tag-orange {
  border-color: #ffd591;
}
.talent-application-container .talent-application-form-container .ant-tag-yellow {
  border-color: #fffb8f;
}
.talent-application-container .talent-application-form-container .ant-tag-gold {
  border-color: #ffe58f;
}
.talent-application-container .talent-application-form-container .ant-tag-cyan {
  border-color: #87e8de;
}
.talent-application-container .talent-application-form-container .ant-tag-lime {
  border-color: #eaff8f;
}
.talent-application-container .talent-application-form-container .ant-tag-green {
  border-color: #b7eb8f;
}
.talent-application-container .talent-application-form-container .ant-tag-blue {
  border-color: #91d5ff;
}
.talent-application-container .talent-application-form-container .ant-tag-geekblue {
  border-color: #adc6ff;
}
.talent-application-container .talent-application-form-container .ant-tag-purple {
  border-color: #d3adf7;
}
.talent-application-container.review-application {
  justify-content: center;
  min-height: unset !important;
}
.talent-application-container.review-application .talent-application-form-container {
  justify-content: center;
}
.talent-application-container .btn {
  min-width: 100px;
}
.removable-list {
  display: flex;
  align-self: stretch;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  padding: 25px 15px;
  margin-top: 10px;
  border-top: 1px solid #c6c6c6;
}
.removable-list h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #343741;
  margin-bottom: 0;
}
.removable-list .removable-list-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.removable-list .removable-list-section h4 {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 17px;
  color: var(--theme-primary, '#5f3db1');
}
.removable-list .removable-list-section .removable-list-item {
  display: inline-flex;
  flex-direction: column;
  align-self: flex-start;
  align-items: stretch;
  justify-content: space-between;
  background-color: #f5f6f8;
  padding: 10px 15px;
  margin: 5px 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.12);
}
.removable-list .removable-list-section .removable-list-item p {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 170%;
  letter-spacing: 0.01em;
  color: #343741;
  margin-bottom: 0;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  cursor: default;
}
.removable-list .removable-list-section .removable-list-item p .clickable {
  font-size: 17px;
  margin-left: auto;
  padding: 1px 3px;
}
.talent-start {
  padding: 35px 0 45px;
  display: flex;
  flex: 1;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
}
.talent-start .start-tile-container {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin: 15px;
  flex: 0 auto;
}
.talent-start .start-tile-container .start-info h5 {
  font-size: 17px;
  font-weight: 300;
  margin: 15px 20px 20px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.01em;
  align-items: center;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
}
.talent-start .start-tile-container .profile-tile {
  margin: 5px;
  padding: 0 20px;
  background-color: #F5F6F8;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.talent-start .start-tile-container .start-tile {
  flex: 1 0 31%;
  margin: 5px;
  padding: 0 20px;
  background-color: #F5F6F8;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 20vh;
}
.talent-start .start-tile-container .start-tile h5 {
  white-space: nowrap;
  margin-top: 2px;
  font-weight: 600;
  font-size: 20px;
  line-height: 125%;
  letter-spacing: 0.01em;
  /* Dark text */
  color: #343741;
}
.talent-start .start-tile-container .start-tile p {
  font-style: normal;
  /* or 20px */
  text-align: center;
  letter-spacing: 0.01em;
  color: #343741;
  font-size: 11px;
  line-height: 18px;
  height: 40px;
  font-weight: 400;
  margin-bottom: 0;
}
.talent-start .white-panel {
  padding: 20px 30px 40px;
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: column;
}
.talent-start .white-panel .start-tile-container {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin: 15px -10px;
  flex: 0 auto;
}
.talent-start .start-title {
  font-size: 25px;
  line-height: 35px;
  text-align: center;
  display: flex;
  flex: 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  margin-bottom: 0;
  font-weight: 400;
  border-bottom: 1px solid #d3d8dd;
}
@media only screen and (max-width: 767px) {
  .talent-start {
    margin-right: auto;
    margin-left: auto;
  }
  .talent-start .white-panel {
    padding: 15px 15px 25px;
    margin: 0 auto;
  }
}
.talent-application {
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 30px 35px 50px;
  width: 100%;
}
.talent-application .form-subtitle {
  margin-bottom: 20px;
}
.talent-application .wripple-form .form-container {
  padding: 30px 25px 40px;
  background: rgba(255, 255, 255, 0.9) !important;
}
.talent-application .wripple-form form .field-section:first-child .field-element .form-header {
  margin: 0 0 5px;
}
.talent-application .wripple-form form .field-section {
  align-items: stretch;
}
.talent-application .wripple-form form .field-section .field .form-group,
.talent-application .wripple-form form .field-section .field-element .form-group {
  position: relative;
}
.talent-application .wripple-form form .field-section .field .form-group .input-group-prepend,
.talent-application .wripple-form form .field-section .field-element .form-group .input-group-prepend {
  padding: 0 8px !important;
  font-size: 11px !important;
  background: #F5F6F8;
  border: none;
  line-height: 25px !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-self: stretch;
}
.talent-application .wripple-form form .field-section .field .form-group .form-control:disabled,
.talent-application .wripple-form form .field-section .field-element .form-group .form-control:disabled,
.talent-application .wripple-form form .field-section .field .form-group .input-group.disabled .input-group-prepend,
.talent-application .wripple-form form .field-section .field-element .form-group .input-group.disabled .input-group-prepend,
.talent-application .wripple-form form .field-section .field .form-group .form-control:disabled + .input-group-prepend,
.talent-application .wripple-form form .field-section .field-element .form-group .form-control:disabled + .input-group-prepend,
.talent-application .wripple-form form .field-section .field .form-group select:disabled,
.talent-application .wripple-form form .field-section .field-element .form-group select:disabled {
  opacity: 1 !important;
  background-color: #F5F6F8 !important;
  border: none;
}
.talent-application .wripple-form form .field-section .field .form-group .input-group.disabled .input-group-prepend:last-child,
.talent-application .wripple-form form .field-section .field-element .form-group .input-group.disabled .input-group-prepend:last-child {
  display: none;
}
.talent-application .wripple-form form .field-section .ant-select .ant-select-selector {
  line-height: 43px;
  height: 43px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 0;
  background: #F5F6F8;
  border: none;
  box-shadow: none !important;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
}
.talent-application .wripple-form form .field-section .ant-select .ant-select-selector input {
  height: 43px;
  line-height: 43px;
}
.talent-application .wripple-form form .field-section .ant-select .ant-select-selection-placeholder {
  color: #90a0b7;
  font-weight: 400;
}
@media only screen and (max-width: 900px) {
  .talent-application .wripple-form form .field-section-select {
    flex-direction: row!important;
  }
  .talent-application .wripple-form form .field-section-select .select-field {
    padding-right: 15px!important;
  }
}
@media only screen and (max-width: 529px) {
  .talent-application .wripple-form form .field-section-select {
    flex-direction: column!important;
  }
  .talent-application .wripple-form form .field-section-select .select-field {
    max-width: unset!important;
    padding: 0!important;
  }
}
.talent-application .wripple-form form:disabled .field-section .field .form-group .input-group .input-group-prepend:nth-child(2),
.talent-application .wripple-form form:disabled .field-element .form-group .input-group .input-group-prepend:nth-child(2) {
  display: none;
}
.talent-application .talent-role-form,
.talent-application .talent-interest-form {
  margin-bottom: 25px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
}
.talent-application .talent-role-form.inactive-edit form .field-section .field,
.talent-application .talent-interest-form.inactive-edit form .field-section .field,
.talent-application .talent-role-form.inactive-edit form .field-section .field-element,
.talent-application .talent-interest-form.inactive-edit form .field-section .field-element {
  pointer-events: none !important;
}
.talent-application .talent-role-form.inactive-edit form .field-section .field *,
.talent-application .talent-interest-form.inactive-edit form .field-section .field *,
.talent-application .talent-role-form.inactive-edit form .field-section .field-element *,
.talent-application .talent-interest-form.inactive-edit form .field-section .field-element * {
  pointer-events: none !important;
}
.talent-application .talent-role-form.inactive-edit form .field-section .field .form-checkbox.disabled-checkbox,
.talent-application .talent-interest-form.inactive-edit form .field-section .field .form-checkbox.disabled-checkbox,
.talent-application .talent-role-form.inactive-edit form .field-section .field-element .form-checkbox.disabled-checkbox,
.talent-application .talent-interest-form.inactive-edit form .field-section .field-element .form-checkbox.disabled-checkbox {
  opacity: 1 !important;
}
.talent-application .talent-role-form.inactive-edit form .field-section .field .form-control:disabled,
.talent-application .talent-interest-form.inactive-edit form .field-section .field .form-control:disabled,
.talent-application .talent-role-form.inactive-edit form .field-section .field-element .form-control:disabled,
.talent-application .talent-interest-form.inactive-edit form .field-section .field-element .form-control:disabled {
  pointer-events: none !important;
  color: #000000 !important;
}
.talent-application .talent-role-form.inactive-edit form .field-section .field .input-group.disabled .input-group-prepend:last-child,
.talent-application .talent-interest-form.inactive-edit form .field-section .field .input-group.disabled .input-group-prepend:last-child,
.talent-application .talent-role-form.inactive-edit form .field-section .field-element .input-group.disabled .input-group-prepend:last-child,
.talent-application .talent-interest-form.inactive-edit form .field-section .field-element .input-group.disabled .input-group-prepend:last-child {
  color: transparent;
  cursor: not-allowed !important;
  display: block !important;
}
.talent-application .talent-role-form.inactive-edit form .field-section .field .input-group.disabled,
.talent-application .talent-interest-form.inactive-edit form .field-section .field .input-group.disabled,
.talent-application .talent-role-form.inactive-edit form .field-section .field-element .input-group.disabled,
.talent-application .talent-interest-form.inactive-edit form .field-section .field-element .input-group.disabled {
  cursor: not-allowed;
  pointer-events: none;
}
.talent-application .talent-role-form.inactive-edit form .field-section .field .input-group.disabled .input-group-prepend,
.talent-application .talent-interest-form.inactive-edit form .field-section .field .input-group.disabled .input-group-prepend,
.talent-application .talent-role-form.inactive-edit form .field-section .field-element .input-group.disabled .input-group-prepend,
.talent-application .talent-interest-form.inactive-edit form .field-section .field-element .input-group.disabled .input-group-prepend,
.talent-application .talent-role-form.inactive-edit form .field-section .field .input-group.disabled .form-control,
.talent-application .talent-interest-form.inactive-edit form .field-section .field .input-group.disabled .form-control,
.talent-application .talent-role-form.inactive-edit form .field-section .field-element .input-group.disabled .form-control,
.talent-application .talent-interest-form.inactive-edit form .field-section .field-element .input-group.disabled .form-control {
  pointer-events: none;
}
.talent-application .talent-role-form.inactive-edit form .field-section .txt-editor .editor,
.talent-application .talent-interest-form.inactive-edit form .field-section .txt-editor .editor {
  background-color: #F5F6F8 !important;
  box-shadow: none!important;
  border: none!important;
}
.talent-application .talent-role-form.inactive-edit form .field-section .txt-editor .editor-counter,
.talent-application .talent-interest-form.inactive-edit form .field-section .txt-editor .editor-counter {
  display: none;
}
.talent-application .talent-role-form.inactive-edit form .field-section .txt-editor .t16lpgj,
.talent-application .talent-interest-form.inactive-edit form .field-section .txt-editor .t16lpgj {
  display: none;
}
.talent-application .talent-role-form.inactive-edit form .field-section .ant-select-arrow,
.talent-application .talent-interest-form.inactive-edit form .field-section .ant-select-arrow,
.talent-application .talent-role-form.inactive-edit form .field-section .file-edit-action,
.talent-application .talent-interest-form.inactive-edit form .field-section .file-edit-action,
.talent-application .talent-role-form.inactive-edit form .field-section .file-remove-action,
.talent-application .talent-interest-form.inactive-edit form .field-section .file-remove-action {
  display: none;
}
.talent-application .talent-role-form.add-talent-form .wripple-form .form-container,
.talent-application .talent-interest-form.add-talent-form .wripple-form .form-container {
  padding-bottom: 0;
}
.talent-application .talent-role-form .form-title-section,
.talent-application .talent-interest-form .form-title-section {
  width: unset;
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  margin: 0;
}
.talent-application .talent-role-form .form-title-section .step-title-content,
.talent-application .talent-interest-form .form-title-section .step-title-content {
  padding: 0 15px;
  min-height: unset;
}
.talent-application .talent-role-form .form-title-section .step-title-content h3,
.talent-application .talent-interest-form .form-title-section .step-title-content h3 {
  font-size: 16px;
}
.talent-application .talent-role-form .form-title-section .step-title-content h3.interest-title,
.talent-application .talent-interest-form .form-title-section .step-title-content h3.interest-title {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #343741;
  margin-bottom: 0;
}
.talent-application .talent-role-form .react-autosuggest__suggestions-container,
.talent-application .talent-interest-form .react-autosuggest__suggestions-container {
  max-height: 200px;
}
.talent-application .talent-role-form .wripple-form .form-container,
.talent-application .talent-interest-form .wripple-form .form-container {
  padding-bottom: 30px;
  padding-top: 20px;
  justify-content: space-between;
}
.talent-application .talent-role-form .wripple-form .form-container .role-form-footer,
.talent-application .talent-interest-form .wripple-form .form-container .role-form-footer {
  margin: 15px -30px 0;
  display: flex;
  align-self: stretch;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  border-top: 1px solid #ececec;
}
.talent-application .talent-role-form .wripple-form .form-container .role-form-footer .edit-btn-row,
.talent-application .talent-interest-form .wripple-form .form-container .role-form-footer .edit-btn-row {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
  flex: 1;
}
.talent-application .talent-role-form .wripple-form .form-container .role-form-footer .btn-link,
.talent-application .talent-interest-form .wripple-form .form-container .role-form-footer .btn-link {
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .talent-application .talent-role-form .wripple-form .form-container .role-form-footer,
  .talent-application .talent-interest-form .wripple-form .form-container .role-form-footer {
    margin: 10px 0;
  }
  .talent-application .talent-role-form .wripple-form .form-container .form-footer,
  .talent-application .talent-interest-form .wripple-form .form-container .form-footer {
    margin: 0;
  }
}
.talent-application .talent-role-form.no-edit,
.talent-application .talent-interest-form.no-edit {
  opacity: 0.5;
  pointer-events: none;
}
.talent-application .talent-role-form.inactive-edit form .field-section .field,
.talent-application .talent-interest-form.inactive-edit form .field-section .field,
.talent-application .talent-role-form.inactive-edit form .field-section .field-element,
.talent-application .talent-interest-form.inactive-edit form .field-section .field-element {
  pointer-events: none !important;
}
.talent-application .talent-role-form.inactive-edit form .field-section .field *,
.talent-application .talent-interest-form.inactive-edit form .field-section .field *,
.talent-application .talent-role-form.inactive-edit form .field-section .field-element *,
.talent-application .talent-interest-form.inactive-edit form .field-section .field-element * {
  pointer-events: none !important;
}
.talent-application .talent-role-form.inactive-edit form .field-section .field .form-checkbox.disabled-checkbox,
.talent-application .talent-interest-form.inactive-edit form .field-section .field .form-checkbox.disabled-checkbox,
.talent-application .talent-role-form.inactive-edit form .field-section .field-element .form-checkbox.disabled-checkbox,
.talent-application .talent-interest-form.inactive-edit form .field-section .field-element .form-checkbox.disabled-checkbox {
  opacity: 1 !important;
}
.talent-application .talent-role-form.inactive-edit form .field-section .field .form-control:disabled,
.talent-application .talent-interest-form.inactive-edit form .field-section .field .form-control:disabled,
.talent-application .talent-role-form.inactive-edit form .field-section .field-element .form-control:disabled,
.talent-application .talent-interest-form.inactive-edit form .field-section .field-element .form-control:disabled {
  pointer-events: none !important;
  color: #000000 !important;
}
.talent-application .talent-role-form.inactive-edit form .field-section .field .input-group.disabled .input-group-prepend:last-child,
.talent-application .talent-interest-form.inactive-edit form .field-section .field .input-group.disabled .input-group-prepend:last-child,
.talent-application .talent-role-form.inactive-edit form .field-section .field-element .input-group.disabled .input-group-prepend:last-child,
.talent-application .talent-interest-form.inactive-edit form .field-section .field-element .input-group.disabled .input-group-prepend:last-child {
  color: transparent;
  cursor: not-allowed !important;
  display: block !important;
}
.talent-application .talent-role-form.inactive-edit form .field-section .field .input-group.disabled,
.talent-application .talent-interest-form.inactive-edit form .field-section .field .input-group.disabled,
.talent-application .talent-role-form.inactive-edit form .field-section .field-element .input-group.disabled,
.talent-application .talent-interest-form.inactive-edit form .field-section .field-element .input-group.disabled {
  cursor: not-allowed;
  pointer-events: none;
}
.talent-application .talent-role-form.inactive-edit form .field-section .field .input-group.disabled .input-group-prepend,
.talent-application .talent-interest-form.inactive-edit form .field-section .field .input-group.disabled .input-group-prepend,
.talent-application .talent-role-form.inactive-edit form .field-section .field-element .input-group.disabled .input-group-prepend,
.talent-application .talent-interest-form.inactive-edit form .field-section .field-element .input-group.disabled .input-group-prepend,
.talent-application .talent-role-form.inactive-edit form .field-section .field .input-group.disabled .form-control,
.talent-application .talent-interest-form.inactive-edit form .field-section .field .input-group.disabled .form-control,
.talent-application .talent-role-form.inactive-edit form .field-section .field-element .input-group.disabled .form-control,
.talent-application .talent-interest-form.inactive-edit form .field-section .field-element .input-group.disabled .form-control {
  pointer-events: none;
}
.talent-application .talent-role-form.inactive-edit form .field-section .txt-editor .editor,
.talent-application .talent-interest-form.inactive-edit form .field-section .txt-editor .editor {
  background-color: #F5F6F8 !important;
  box-shadow: none!important;
  border: none!important;
}
.talent-application .talent-role-form.inactive-edit form .field-section .txt-editor .editor-counter,
.talent-application .talent-interest-form.inactive-edit form .field-section .txt-editor .editor-counter {
  display: none;
}
.talent-application .talent-role-form.inactive-edit form .field-section .txt-editor .t16lpgj,
.talent-application .talent-interest-form.inactive-edit form .field-section .txt-editor .t16lpgj {
  display: none;
}
.talent-application .talent-role-form.inactive-edit form .field-section .ant-select-arrow,
.talent-application .talent-interest-form.inactive-edit form .field-section .ant-select-arrow,
.talent-application .talent-role-form.inactive-edit form .field-section .file-edit-action,
.talent-application .talent-interest-form.inactive-edit form .field-section .file-edit-action,
.talent-application .talent-role-form.inactive-edit form .field-section .file-remove-action,
.talent-application .talent-interest-form.inactive-edit form .field-section .file-remove-action {
  display: none;
}
.talent-application .talent-role-form .discipline-skills-container,
.talent-application .talent-interest-form .discipline-skills-container {
  display: flex;
  position: relative;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.talent-application .talent-role-form .discipline-skills-container .skill,
.talent-application .talent-interest-form .discipline-skills-container .skill {
  height: unset;
  min-height: 30px;
}
.talent-application .talent-role-form .discipline-skills-container .skill p,
.talent-application .talent-interest-form .discipline-skills-container .skill p {
  pointer-events: unset;
}
.talent-application .step-title-content {
  display: flex;
  flex-flow: row wrap-reverse;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 50px;
  padding-left: 0;
}
.talent-application .step-title-content > div {
  flex: 1 0 50%;
}
.talent-application .step-title-content .form-title {
  flex: 0 1 auto;
  align-self: flex-start;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: #343741;
}
.talent-application .step-title-content .form-subtitle {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 170%;
  /* or 24px */
  letter-spacing: 0.01em;
  /* Dark text */
  color: #343741;
}
.talent-application .step-title-content .btn {
  flex: 0 1 auto;
  align-self: flex-end;
}
.talent-application .step-title-content .header-last-updated {
  padding-left: 24px;
}
.talent-application .step-title-content .header-last-updated p {
  white-space: nowrap;
  line-height: 20px;
  font-size: 11.5px;
  color: #90a0b7;
  letter-spacing: 0.01em;
}
.talent-application .step-title-content .header-last-updated p i {
  color: #90a0b7;
}
.talent-application .step-title-content .header-last-updated p.text-danger {
  color: var(--theme-danger, '#E54963');
}
.talent-application .step-title-content .header-last-updated p.text-danger i {
  color: var(--theme-danger, '#E54963');
}
@media only screen and (max-width: 767px) {
  .talent-application .step-title-content {
    padding-left: 0px !important;
  }
}
.talent-application .terms-panel {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: stretch;
  padding: 40px 40px;
}
.talent-application .terms-panel .form-header {
  margin: 0 0 20px;
  padding: 0;
  font-family: Roboto Mono, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #323c47;
}
.talent-application .terms-panel .form-subheader {
  padding: 0;
}
.talent-application .terms-panel hr {
  margin-top: 0.3rem;
}
.talent-application .terms-panel p {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  /* "Black" */
  color: #000000;
}
.talent-application .terms-panel .terms-container {
  height: 150px;
}
.talent-application .terms-panel .terms-container p {
  line-height: 24px;
}
.talent-application .terms-panel .form-checkbox [type="checkbox"] + label {
  flex-wrap: wrap;
  transition: all 200ms ease-in !important;
}
.talent-application .terms-panel .form-checkbox [type="checkbox"] + label span {
  color: var(--theme-primary, '#5f3db1') !important;
  pointer-events: all !important;
  transition: all 150ms ease-in !important;
}
.talent-application .terms-panel .form-checkbox [type="checkbox"]:checked + label {
  background-color: unset !important;
  font-weight: 500;
}
.talent-application .terms-panel .form-checkbox [type="checkbox"]:checked + label:before {
  color: var(--theme-primary, '#5f3db1');
}
.talent-application .terms-panel .form-checkbox [type="checkbox"]:checked + label span {
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .talent-application .modal-overlay .defaultScroll .scrollarea-content {
    padding: 25px 35px;
  }
  .talent-application .modal-overlay .modal-container {
    padding: 15px 20px;
  }
}
.talent-application .search-brand-input {
  margin-bottom: 0;
}
.talent-app-nav {
  align-items: stretch;
  background: white;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.talent-app-nav .profile-tree-link {
  font-synthesis: none;
  font-weight: bold;
}
.talent-app-nav h3 {
  font-size: 14px;
  margin: 20px auto 10px auto;
  max-width: 200px;
}
.talent-app-nav .btn-resume-upload {
  margin: 8px 0;
  font-size: 13px;
  padding: 0.5rem;
}
.talent-app-nav .step-title {
  white-space: nowrap;
  padding: 0;
  height: 35px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  letter-spacing: 0.01em;
  font-size: 11px;
  color: #343741;
  text-transform: uppercase;
  pointer-events: none;
}
.talent-app-nav .step-title span {
  margin: 0 18px;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #C2CFE0;
  border: 2px solid #C2CFE0;
}
.talent-app-nav .step-title i.fas,
.talent-app-nav .step-title i.far {
  margin: -1px 18px 0;
  font-size: 14px;
}
.talent-app-nav .step-title i.fas.fa-check-circle,
.talent-app-nav .step-title i.far.fa-check-circle {
  color: var(--theme-success, '#5ae399');
}
.talent-app-nav .step-title i.fas.fa-times-circle,
.talent-app-nav .step-title i.far.fa-times-circle {
  color: var(--theme-danger, '#E54963');
}
.talent-app-nav .step-title i.fas.fa-arrow-alt-circle-right,
.talent-app-nav .step-title i.far.fa-arrow-alt-circle-right {
  color: #b5bdce;
}
.talent-app-nav .step-title.importActive,
.talent-app-nav .step-title.isCompleted {
  cursor: pointer;
  pointer-events: unset;
}
.talent-app-nav .step-title.importActive:hover,
.talent-app-nav .step-title.isCompleted:hover {
  background-color: #f4f4f6;
  color: #000000;
  font-weight: 600;
}
.talent-app-nav .step-title.isCompleted span {
  background-color: var(--theme-success, '#5ae399');
  border: 2px solid var(--theme-success, '#5ae399');
}
.talent-app-nav .step-title.canGoToNext {
  cursor: pointer;
  pointer-events: unset;
}
.talent-app-nav .step-title.isNext {
  cursor: none;
  pointer-events: none;
}
.talent-app-nav .step-title.isActive {
  background-color: #f4f4f6;
  color: #000000;
  font-weight: 600;
  cursor: none;
  pointer-events: none;
}
.talent-app-nav .step-title.isActive span {
  background-color: transparent;
  border: 2px solid var(--theme-success, '#5ae399');
}
.talent-app-nav .step-title.isApproved {
  pointer-events: unset;
  cursor: pointer;
}
.talent-app-nav .step-title.isApproved:hover {
  background-color: #f4f4f6;
  color: #000000;
  font-weight: 600;
}
.talent-app-nav .step-title.disabled {
  cursor: not-allowed;
  pointer-events: unset;
}
.talent-app-nav .step-title.disabled span {
  background-color: transparent;
  border: 2px solid #000000;
}
.talent-app-nav .step-title.sub-step-title {
  height: unset;
  font-size: 12px!important;
  text-transform: none;
  padding-right: 20px;
}
.talent-app-nav .step-title.sub-step-title i.fas,
.talent-app-nav .step-title.sub-step-title i.far {
  margin: -1px 8px 0;
}
.talent-app-nav .step-linkedin-resume {
  background-color: #F5F6F8;
  padding: 0px 18px;
}
.talent-app-nav .step-linkedin-resume .d-flex {
  padding: 12px 0;
}
.talent-app-nav .step-linkedin-resume .d-flex:first-of-type {
  border-bottom: 1px dashed #979797;
}
.talent-app-nav .step-linkedin-resume .d-flex:first-of-type p {
  padding: 0;
}
.talent-app-nav .step-linkedin-resume .fa-linkedin,
.talent-app-nav .step-linkedin-resume .fa-file-excel,
.talent-app-nav .step-linkedin-resume .fa-file-alt {
  font-size: 32px;
  margin-right: 8px;
}
.talent-app-nav .step-linkedin-resume .fa-file-excel {
  color: var(--theme-danger, '#E54963');
}
.talent-app-nav .step-linkedin-resume .fa-file-alt,
.talent-app-nav .step-linkedin-resume .success {
  color: var(--theme-success, '#5ae399');
}
.talent-app-nav .step-linkedin-resume .default {
  color: var(--theme-primary, '#5f3db1');
}
.talent-app-nav .step-linkedin-resume p {
  margin: 0;
  line-height: 12px;
  padding: 0 0 4px 4px;
  font-size: 13px;
  color: #343741;
}
.talent-app-nav .step-linkedin-resume .btn.btn-link {
  min-width: auto;
  font-size: 13px;
  padding: 3px 4px;
  line-height: 12px;
  display: block;
  font-weight: 400;
}
.talent-app-step {
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 20px 40px;
  flex-direction: column;
}
.talent-app-step .wripple-form {
  box-shadow: 6px 0 18px rgba(0, 0, 0, 0.06);
  padding-bottom: 25px;
}
.talent-app-footer {
  background-color: white;
  border: 1px solid #E5EBF1;
  padding: 20px 35px;
}
.talent-app-footer .flex-1 {
  flex: 1;
}
.talent-app-footer .save-and-exit {
  align-items: flex-start;
  margin-left: auto;
  background: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  white-space: nowrap;
}
.talent-app-footer .save-and-exit-mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .talent-app-footer {
    padding-bottom: 10px;
  }
  .talent-app-footer .save-and-exit {
    display: none;
  }
  .talent-app-footer .save-and-exit + .btn-primary {
    margin-left: auto !important;
  }
  .talent-app-footer .save-and-exit-mobile {
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 20px auto 5px;
  }
}
.resume-upload-modal .scrollarea .modal-container {
  min-width: unset;
  align-self: center;
}
.resume-upload-modal .scrollarea .modal-container .wripple-form p {
  max-width: 500px;
}
.resume-upload-modal .scrollarea .modal-container .wripple-form .file-upload-container .btn-file {
  align-self: center;
}
.resume-upload-modal .scrollarea .modal-container .wripple-form .file-upload-container .btn-file .file-upload-preview {
  align-self: center;
}
.resume-upload-modal .scrollarea .modal-container .wripple-form .file-upload-container .btn-file p {
  padding: 0 12px;
}
.resume-container {
  position: relative;
}
.resume-container .resume-instructions-header small {
  color: gray;
  font-size: 14px;
}
.resume-container .resume-instructions-header .alert.alert-danger {
  padding: 0.5rem 1rem;
  border-color: var(--theme-danger-dark);
  border-width: 1px;
  border-radius: 8px;
}
.resume-container .resume-instructions-header .alert.alert-danger p {
  margin: 0;
  font-size: 13px;
  color: var(--theme-danger-darkest);
  font-style: italic;
}
.resume-container .resume-loader {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.resume-container .resume-form {
  background-color: pink;
}
.resume-container .resume-form .form-container {
  padding: 0;
}
.resume-container .resume-form .form-container .field-section:first-of-type {
  background-color: #F5F6F8;
}
.resume-container .resume-form .form-container .field-section:first-of-type .field {
  margin-top: 15px;
  margin-bottom: 25px;
}
.resume-container .resume-form .file-upload-container.text-danger small {
  color: black;
}
.resume-container .resume-form .file-upload-container .invalid-feedback {
  text-align: center;
}
.resume-container .resume-container .scrollarea .modal-container .wripple-form p {
  background-color: pink !important;
}
.resume-container .linkedin-upload-instructions {
  padding: 20px 0;
}
.resume-container .linkedin-upload-instructions .instructions-title {
  font-size: 18px;
  font-weight: bold;
}
.resume-container .linkedin-upload-instructions ol {
  list-style: none;
  counter-reset: item;
}
.resume-container .linkedin-upload-instructions li {
  counter-increment: item;
  margin-bottom: 5px;
  padding: 2px 0;
}
.resume-container .linkedin-upload-instructions li:before {
  margin-right: 10px;
  content: counter(item);
  background: var(--theme-primary, '#5f3db1');
  border-radius: 100%;
  color: white;
  height: 30px;
  width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-family: Beatrice, sans-serif;
  line-height: 1px;
}
.resume-container .linkedin-upload-instructions .linkedin-btn {
  display: inline-block;
  border: 1px solid gray;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 50px;
  margin: 0 12px;
  display: inline-flex;
  align-items: center;
}
.resume-container .linkedin-upload-instructions .linkedin-btn.square {
  border-radius: 0;
}
.resume-container .linkedin-upload-instructions .linkedin-btn.blue {
  border-color: #0072b1;
}
.resume-container .linkedin-upload-instructions .linkedin-btn.blue p {
  color: #0072b1;
}
.resume-container .linkedin-upload-instructions .linkedin-btn.filled {
  background-color: #e4f5ff;
}
.resume-container .linkedin-upload-instructions .linkedin-btn.no-border {
  border: none;
  background-color: unset;
  font-weight: bold;
}
.resume-container .linkedin-upload-instructions .linkedin-btn p {
  margin: 0;
  color: gray;
  padding-top: 1px;
}
.resume-container .linkedin-upload-instructions .linkedin-btn .arrow-down {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #0072b1;
}
.resume-container .resume-selection-table table {
  min-width: 100%;
}
.resume-container .resume-selection-table table tr td:first-child {
  vertical-align: top;
}
.resume-container .resume-selection-table table tr td:first-child .form-checkbox {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.resume-container .resume-selection-table table tr td:first-child .form-checkbox label::before {
  font-size: 20px;
}
.resume-container .resume-selection-table table tr td:first-child .form-checkbox [type="checkbox"]:checked + label {
  background-color: transparent;
}
.resume-container .resume-selection-table table tr td:first-child .form-checkbox [type="checkbox"]:checked + label::before {
  color: var(--theme-info, '#4B80E7');
}
.resume-container .resume-selection-table table tr td:first-child .form-checkbox [type="checkbox"]:disabled + label::before {
  color: var(--theme-info, '#4B80E7');
  opacity: 0.5;
}
.resume-container .resume-selection-table table tr th,
.resume-container .resume-selection-table table tr td {
  padding: 0.75rem;
}
.resume-container .resume-selection-table .resume-item-container {
  margin-top: 35px;
  padding: 0 0 0 45px;
}
.resume-container .resume-selection-table .resume-item-container .section-title {
  font-size: 20px;
  margin: 0 0 30px -45px;
  color: var(--theme-secondary, '#913ef0');
}
.resume-container .resume-selection-table .resume-item-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.resume-container .resume-selection-table .resume-item-panel .flex-center-row {
  padding-bottom: 0.5rem;
}
.resume-container .resume-selection-table .resume-item-panel .flex-center-row .resume-item-img {
  padding: 0;
  margin-right: 0.75rem;
  margin-top: -0.75rem;
  width: 100px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
}
.resume-container .resume-selection-table .resume-item-panel .flex-center-row .resume-item-img img {
  width: 80px;
  height: 80px;
}
.resume-container .resume-selection-table .resume-item-panel .flex-center-row .resume-item-img i {
  font-size: 45px;
  color: #343741;
  opacity: 0.6;
}
.resume-container .resume-selection-table .resume-item-panel .flex-center-row .resume-item-info {
  flex: 1;
}
.resume-container .resume-selection-table .resume-item-panel .flex-center-row .resume-item-info p {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
  color: #343741;
}
.resume-container .resume-selection-table .resume-item-panel .resume-item-invalid ul {
  padding: 0 0 0 1.75rem;
  margin-top: -0.5rem;
  margin-left: 100px;
}
.resume-container .resume-selection-table .resume-item-panel .resume-item-invalid ul li {
  font-size: 12px;
  font-weight: 600;
  font-style: italic;
  color: var(--theme-danger, '#E54963');
}
@media only screen and (max-width: 767px) {
  .talent-app-nav .step-title {
    max-width: unset !important;
  }
  .talent-application-container .flex-1 {
    flex-direction: column;
    display: flex;
    position: relative;
    align-items: stretch;
    max-width: 100%;
    min-width: 340px;
  }
  .talent-application-container .flex-1 > * {
    flex-direction: column;
    display: flex;
    position: relative;
    align-items: stretch;
    max-width: 100%;
  }
  .talent-application-container .flex-1 .talent-application {
    padding: 15px 15px 35px;
  }
  .talent-application-container .flex-1 .talent-application .terms-panel {
    padding: 15px 10px;
  }
  .talent-application-container .flex-1 .talent-role-form .wripple-form {
    min-width: unset !important;
  }
  .talent-application-container .flex-1 .talent-role-form .wripple-form .form-container {
    padding: 20px 10px 30px;
  }
  .talent-application-container .flex-1 .talent-role-form .wripple-form .form-container .field-section {
    padding: 0 5px;
  }
  .talent-application-container .flex-1 .talent-role-form .wripple-form .form-container .field-section .field,
  .talent-application-container .flex-1 .talent-role-form .wripple-form .form-container .field-section .form-header {
    padding: 0 5px !important;
  }
  .talent-application-container .flex-1 .talent-role-form .wripple-form .form-container .field-section .field .form-group label,
  .talent-application-container .flex-1 .talent-role-form .wripple-form .form-container .field-section .form-header .form-group label {
    white-space: normal;
  }
}
.talent-form-warning {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 3px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.talent-form-warning i {
  font-size: 16px;
  margin-right: 4px;
}
.talent-role-form {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .talent-role-form {
    padding: 0 7px;
  }
}
.talent-role-panel,
.talent-interest-panel {
  padding: 30px 40px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
.talent-role-panel.no-edit,
.talent-interest-panel.no-edit {
  opacity: 0.5;
  pointer-events: none;
}
.modal-scroll .modal-table {
  border: 1px solid #E5EBF1;
  width: 100%;
}
.btn-form-modal {
  cursor: pointer;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  height: unset;
  padding: 0;
  margin: 0;
  font-weight: 600;
  font-size: 11px;
  line-height: 160%;
  letter-spacing: 0.1em;
  text-decoration-line: underline !important;
  text-transform: uppercase;
  color: var(--theme-primary-darker) !important;
  background-color: unset;
  background: unset;
  border: none;
  box-shadow: none;
  margin-top: 5px;
}
.btn-form-modal:hover,
.btn-form-modal:active,
.btn-form-modal:active {
  background-color: unset;
  background: unset;
  border: none;
  box-shadow: none;
  color: var(--theme-primary-darkest) !important;
}
.btn-form-modal-success {
  color: var(--theme-success, '#5ae399') !important;
}
.industries-table {
  justify-content: space-around;
  padding: 40px 30px;
}
.industries-table div {
  align-items: center;
}
.industries-table div p {
  margin: 10px 0;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.industries-table div p span:first-child {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  color: #323c47;
}
.review-step {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: space-between;
  width: 100% !important;
  padding: 30px 15px;
  border-bottom: 1px solid #E5EBF1;
}
.review-step img {
  width: 150px;
  height: 150px;
}
.review-step:last-child {
  border-bottom: none;
}
@media only screen and (max-width: 767px) {
  .review-step {
    padding: 30px 15px;
  }
}
.review-step .review-step-nav-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}
.review-step .review-step-nav-item .btn-link {
  margin-bottom: 25px;
}
.review-step .review-step-nav-item h3 {
  white-space: nowrap;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #343741;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .review-step .review-step-nav-item h3 {
    font-size: 24px;
    margin: 0 auto !important;
  }
  .review-step .review-step-nav-item .btn-link {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.review-step .review-step-nav-item a.btn-link {
  margin-top: 3px;
  height: 35px;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600 !important;
  font-size: 13px !important;
  line-height: 19px !important;
  text-align: center;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: #90a0b7;
}
.review-step .review-display {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 275px;
  padding-right: 40px;
}
.review-step .review-prop-container {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  margin-bottom: 35px;
}
.review-step .review-prop-container:last-child {
  margin-bottom: 0;
}
.review-step .review-prop-container .review-label {
  white-space: nowrap;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  color: #343741;
  margin-bottom: 10px;
}
.review-step .review-prop-container .review-prop {
  white-space: pre-line;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.01em;
  color: #707683;
  margin-top: 10px;
  margin-bottom: 5px;
}
.review-step .review-prop-container .review-sub-container {
  margin-top: 5px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border-bottom: 1px solid #E5EBF1;
  padding-bottom: 10px;
}
.review-step .review-prop-container .review-sub-container:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.review-step .review-prop-container .review-sub-container .review-sub-label {
  white-space: pre-line;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.01em;
  color: #707683;
  margin-bottom: 3px;
}
.review-step .review-prop-container .review-sub-container .review-sub-prop {
  white-space: pre-line;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.01em;
  color: #707683;
  margin-bottom: 0;
}
.under-review-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  min-height: 375px;
  background-color: white;
  margin-top: 30px;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
}
.under-review-panel h3 {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 28px;
  line-height: 125%;
  text-align: center;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 20px;
  max-width: 450px;
}
.under-review-panel p {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #343741;
  margin-bottom: 20px;
  max-width: 400px;
}
.under-review-panel button.btn-outline-dark {
  white-space: nowrap !important;
  margin: 0 auto;
  height: 60px;
  font-weight: 600;
  font-size: 14px;
  width: 220px;
}
.under-review-panel button.exit-btn {
  white-space: nowrap !important;
  margin: 20px auto 0;
}
@media only screen and (max-width: 767px) {
  .talent-application .form-header {
    padding: 0;
  }
  .talent-app-progress-title {
    left: 5%;
  }
  .metric-match {
    padding: 15px 6px;
  }
  .browse-talent-matching {
    padding-bottom: 20px;
  }
}
.switch-panel {
  height: 1400px;
  display: flex;
  width: 100vw;
  overflow: hidden;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  justify-content: center;
}
.switch-fade-enter .switch-panel {
  opacity: 0;
  transform: translateX(-100%);
}
.switch-fade-enter-active .switch-panel {
  opacity: 1;
  transform: translateX(0%);
}
.switch-fade-exit .switch-panel {
  opacity: 1;
  transform: translateX(0%);
}
.switch-fade-exit-active .switch-panel {
  opacity: 0;
  transform: translateX(100%);
}
.switch-fade-enter-active .switch-panel,
.switch-fade-exit-active .switch-panel {
  transition: opacity 500ms, transform 500ms;
}
.talent-info-placeholder {
  background: #d3d8dd;
}
.talent-proposal-back-btn {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: row nowrap;
  padding: 0 1.5rem 1rem 0;
  z-index: 5;
}
.talent-proposal-back-btn i {
  font-size: 17px;
}
.talent-proposal-container {
  align-items: stretch;
}
.talent-proposal-container .col-md-4 {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  padding: 0 6px;
}
.talent-proposal-container .talent-proposal-chat {
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
}
.talent-proposal-container .talent-proposal-section {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-panel {
  padding: 1.2rem 1rem;
  flex: 1;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-panel .proposal-panel-header {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 10px;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-panel .confirmed-availability-note {
  background: var(--theme-success, '#5ae399');
  margin: -15px -1rem 1.5rem;
  padding: 0.7rem 1rem;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-panel .confirmed-availability-note p {
  margin-bottom: 0;
  font-size: 12px;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-panel .service-category-tabs {
  margin: 0 -1rem 25px;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-panel .service-category-tabs .talent-proposal-tab {
  white-space: nowrap;
  margin: 0;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-panel .scrollarea.area {
  max-height: 330px!important;
  margin-bottom: 15px;
  background-color: #fafafa;
  padding: 0.5rem;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-panel .scrollarea.area p {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #343741;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-talent {
  position: relative;
  padding: 1.5rem 0 0;
  max-width: 350px;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-talent .talent-panel {
  min-width: unset!important;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-talent .potential-candidate-status {
  height: 120px;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-documents {
  margin-top: 20px;
  flex-basis: 40%;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-documents .proposal-panel-content .scrollarea.area {
  max-height: 190px!important;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-documents .proposal-panel-content .scrollarea.area .talent-document-row {
  margin: 0 0 10px;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-documents .proposal-panel-content .scrollarea.area .talent-document-row i {
  font-size: 30px;
  margin-right: 25px;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-documents .proposal-panel-content .scrollarea.area .talent-document-row a {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #343741;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-details {
  flex-basis: 50%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-details .proposal-panel-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-details .proposal-panel-content .proposal-detail-section h4,
.talent-proposal-container .talent-proposal-section .talent-proposal-details .proposal-panel-content .proposal-detail-section p {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #343741;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-details .proposal-panel-content .proposal-detail-section p {
  font-weight: 600;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-next-steps {
  margin-top: 20px;
  flex-basis: 50%;
  background-color: #D3D8DD !important;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-next-steps .proposal-panel-content {
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-next-steps .proposal-panel-content .btn-light {
  background-color: white;
  border-color: white;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-next-steps .proposal-panel-content .btn-light:hover,
.talent-proposal-container .talent-proposal-section .talent-proposal-next-steps .proposal-panel-content .btn-light:focus {
  border-color: #000000;
  background-color: #000000;
  color: white;
}
.talent-proposal-container .talent-proposal-section .talent-proposal-next-steps .proposal-panel-content .btn-light:hover:disabled,
.talent-proposal-container .talent-proposal-section .talent-proposal-next-steps .proposal-panel-content .btn-light:focus:disabled {
  background-color: white;
  border-color: white;
  color: black;
}
.talent-exp-resource {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  height: 30px;
  margin-bottom: 30px;
  position: relative;
}
.talent-exp-resource .exp {
  position: absolute;
  z-index: 0;
  border: 1px solid var(--theme-secondary, '#913ef0');
  border-radius: 0 0 0.75rem 0.75rem;
  width: 100%;
  background-color: white;
  padding: 0.375rem 0.625rem;
  padding-top: 15px;
  color: var(--theme-secondary, '#913ef0');
  text-align: center;
  font-size: 0.625rem;
  height: 35px;
  top: 15px;
}
.talent-exp-resource .name {
  z-index: 1;
  background-color: var(--theme-secondary, '#913ef0');
  padding: 0.375rem 0.625rem;
  border-radius: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
}
@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 80%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}
.skeleton-purple {
  animation: skeleton-purple-loading 1s linear infinite alternate;
}
@keyframes skeleton-purple-loading {
  0% {
    background-color: var(--theme-primary, '#5f3db1');
  }
  100% {
    background-color: var(--theme-secondary-light);
  }
}
.talent-interview-preview .ant-modal-body {
  padding: 0;
  background: transparent;
}
.talent-interview-preview video {
  height: auto;
}
.ant-image-preview-img {
  display: inline-block;
  height: 80%;
}
.ant-image.ant-image-error {
  width: 100%;
}
.talent-profile-redesign .ant-back-top {
  right: 45px;
}
.key-client-row .rich-text-display p {
  margin-bottom: 0.3rem !important;
}
.talent-portal-container {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  flex: 1;
  justify-content: center !important;
  flex-direction: row !important;
}
.talent-portal-page-container {
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  max-width: 1200px;
  flex: 1 0 78%;
}
.talent-portal-page-container.portal-full {
  max-width: 1300px;
}
.talent-contracts-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 30px;
  min-height: 375px;
  background-color: white;
  margin-top: 30px;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
}
.talent-contracts-panel h3 {
  color: #90a0b7;
  font-size: 16px;
}
.talent-contracts-panel .contracts-container {
  flex: 1;
  align-self: stretch;
}
.talent-contracts-panel .master-contract-container,
.talent-contracts-panel .empty-project-contracts-container {
  align-items: center;
  background: #F5F6F8;
  display: flex;
}
.talent-contracts-panel .empty-project-contracts-container {
  justify-content: center;
}
.talent-contracts-panel .project-contracts-container > .table > thead > tr > th {
  background: #F5F6F8;
  text-align: center;
  padding: 1.5rem 0;
}
.talent-contracts-panel .project-contracts-container > .table td {
  padding: 0.75rem 1.25rem;
  vertical-align: middle;
}
.opp-proposal-documents-tab,
.talent-project-documents-panel,
.talent-project-contracts-panel,
.talent-project-team-status-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 45px;
  min-height: 375px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
}
.opp-proposal-documents-tab h3,
.talent-project-documents-panel h3,
.talent-project-contracts-panel h3,
.talent-project-team-status-panel h3 {
  color: #90a0b7;
  font-size: 16px;
}
.opp-proposal-documents-tab .documents-panel-due,
.talent-project-documents-panel .documents-panel-due,
.talent-project-contracts-panel .documents-panel-due,
.talent-project-team-status-panel .documents-panel-due {
  text-align: right;
}
.opp-proposal-documents-tab .panel-header,
.talent-project-documents-panel .panel-header,
.talent-project-contracts-panel .panel-header,
.talent-project-team-status-panel .panel-header {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 160%;
  text-align: center;
  margin-top: -25px;
  letter-spacing: 0.01em;
  color: #90A0B7;
  margin-bottom: 3px;
}
.opp-proposal-documents-tab .panel-subheader,
.talent-project-documents-panel .panel-subheader,
.talent-project-contracts-panel .panel-subheader,
.talent-project-team-status-panel .panel-subheader {
  line-height: 160%;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  max-width: 650px;
  margin: 0 auto 20px;
}
.opp-proposal-documents-tab .talent-documents-container,
.talent-project-documents-panel .talent-documents-container,
.talent-project-contracts-panel .talent-documents-container,
.talent-project-team-status-panel .talent-documents-container {
  flex: 1;
  align-self: stretch;
}
.opp-proposal-documents-tab .talent-project-proposal-container,
.talent-project-documents-panel .talent-project-proposal-container,
.talent-project-contracts-panel .talent-project-proposal-container,
.talent-project-team-status-panel .talent-project-proposal-container,
.opp-proposal-documents-tab .empty-project-proposal-container,
.talent-project-documents-panel .empty-project-proposal-container,
.talent-project-contracts-panel .empty-project-proposal-container,
.talent-project-team-status-panel .empty-project-proposal-container,
.opp-proposal-documents-tab .talent-documents-container,
.talent-project-documents-panel .talent-documents-container,
.talent-project-contracts-panel .talent-documents-container,
.talent-project-team-status-panel .talent-documents-container {
  align-items: stretch;
  background: #F5F6F8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 0;
  margin: 15px 0;
}
.opp-proposal-documents-tab .talent-project-proposal-container .proposal-header-container,
.talent-project-documents-panel .talent-project-proposal-container .proposal-header-container,
.talent-project-contracts-panel .talent-project-proposal-container .proposal-header-container,
.talent-project-team-status-panel .talent-project-proposal-container .proposal-header-container,
.opp-proposal-documents-tab .empty-project-proposal-container .proposal-header-container,
.talent-project-documents-panel .empty-project-proposal-container .proposal-header-container,
.talent-project-contracts-panel .empty-project-proposal-container .proposal-header-container,
.talent-project-team-status-panel .empty-project-proposal-container .proposal-header-container,
.opp-proposal-documents-tab .talent-documents-container .proposal-header-container,
.talent-project-documents-panel .talent-documents-container .proposal-header-container,
.talent-project-contracts-panel .talent-documents-container .proposal-header-container,
.talent-project-team-status-panel .talent-documents-container .proposal-header-container {
  padding: 0px 20px;
  margin-bottom: 15px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: space-between;
}
.opp-proposal-documents-tab .talent-project-proposal-container .proposal-header-container h2,
.talent-project-documents-panel .talent-project-proposal-container .proposal-header-container h2,
.talent-project-contracts-panel .talent-project-proposal-container .proposal-header-container h2,
.talent-project-team-status-panel .talent-project-proposal-container .proposal-header-container h2,
.opp-proposal-documents-tab .empty-project-proposal-container .proposal-header-container h2,
.talent-project-documents-panel .empty-project-proposal-container .proposal-header-container h2,
.talent-project-contracts-panel .empty-project-proposal-container .proposal-header-container h2,
.talent-project-team-status-panel .empty-project-proposal-container .proposal-header-container h2,
.opp-proposal-documents-tab .talent-documents-container .proposal-header-container h2,
.talent-project-documents-panel .talent-documents-container .proposal-header-container h2,
.talent-project-contracts-panel .talent-documents-container .proposal-header-container h2,
.talent-project-team-status-panel .talent-documents-container .proposal-header-container h2 {
  color: black;
  text-decoration: underline;
  font-weight: 500;
  font-size: 18px;
}
.opp-proposal-documents-tab .talent-project-proposal-container .proposal-document-header,
.talent-project-documents-panel .talent-project-proposal-container .proposal-document-header,
.talent-project-contracts-panel .talent-project-proposal-container .proposal-document-header,
.talent-project-team-status-panel .talent-project-proposal-container .proposal-document-header,
.opp-proposal-documents-tab .empty-project-proposal-container .proposal-document-header,
.talent-project-documents-panel .empty-project-proposal-container .proposal-document-header,
.talent-project-contracts-panel .empty-project-proposal-container .proposal-document-header,
.talent-project-team-status-panel .empty-project-proposal-container .proposal-document-header,
.opp-proposal-documents-tab .talent-documents-container .proposal-document-header,
.talent-project-documents-panel .talent-documents-container .proposal-document-header,
.talent-project-contracts-panel .talent-documents-container .proposal-document-header,
.talent-project-team-status-panel .talent-documents-container .proposal-document-header {
  padding: 0 20px !important;
  margin-bottom: 15px;
  border-bottom: 1px solid #D3D8DD !important;
  min-height: unset !important;
  background-color: transparent !important;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: space-between;
}
.opp-proposal-documents-tab .talent-project-proposal-container .proposal-document-header h3,
.talent-project-documents-panel .talent-project-proposal-container .proposal-document-header h3,
.talent-project-contracts-panel .talent-project-proposal-container .proposal-document-header h3,
.talent-project-team-status-panel .talent-project-proposal-container .proposal-document-header h3,
.opp-proposal-documents-tab .empty-project-proposal-container .proposal-document-header h3,
.talent-project-documents-panel .empty-project-proposal-container .proposal-document-header h3,
.talent-project-contracts-panel .empty-project-proposal-container .proposal-document-header h3,
.talent-project-team-status-panel .empty-project-proposal-container .proposal-document-header h3,
.opp-proposal-documents-tab .talent-documents-container .proposal-document-header h3,
.talent-project-documents-panel .talent-documents-container .proposal-document-header h3,
.talent-project-contracts-panel .talent-documents-container .proposal-document-header h3,
.talent-project-team-status-panel .talent-documents-container .proposal-document-header h3 {
  color: black;
  font-weight: 500;
  font-size: 15px;
}
.opp-proposal-documents-tab .talent-project-proposal-container .proposal-document-header p,
.talent-project-documents-panel .talent-project-proposal-container .proposal-document-header p,
.talent-project-contracts-panel .talent-project-proposal-container .proposal-document-header p,
.talent-project-team-status-panel .talent-project-proposal-container .proposal-document-header p,
.opp-proposal-documents-tab .empty-project-proposal-container .proposal-document-header p,
.talent-project-documents-panel .empty-project-proposal-container .proposal-document-header p,
.talent-project-contracts-panel .empty-project-proposal-container .proposal-document-header p,
.talent-project-team-status-panel .empty-project-proposal-container .proposal-document-header p,
.opp-proposal-documents-tab .talent-documents-container .proposal-document-header p,
.talent-project-documents-panel .talent-documents-container .proposal-document-header p,
.talent-project-contracts-panel .talent-documents-container .proposal-document-header p,
.talent-project-team-status-panel .talent-documents-container .proposal-document-header p {
  font-family: Poppins, sans-serif;
  font-style: normal;
  line-height: 22px !important;
  margin-top: unset !important;
  letter-spacing: 0.01em;
  color: #000000;
  font-size: 14px !important;
}
.opp-proposal-documents-tab .talent-project-proposal-container .proposal-document-header p .tooltip-info span i,
.talent-project-documents-panel .talent-project-proposal-container .proposal-document-header p .tooltip-info span i,
.talent-project-contracts-panel .talent-project-proposal-container .proposal-document-header p .tooltip-info span i,
.talent-project-team-status-panel .talent-project-proposal-container .proposal-document-header p .tooltip-info span i,
.opp-proposal-documents-tab .empty-project-proposal-container .proposal-document-header p .tooltip-info span i,
.talent-project-documents-panel .empty-project-proposal-container .proposal-document-header p .tooltip-info span i,
.talent-project-contracts-panel .empty-project-proposal-container .proposal-document-header p .tooltip-info span i,
.talent-project-team-status-panel .empty-project-proposal-container .proposal-document-header p .tooltip-info span i,
.opp-proposal-documents-tab .talent-documents-container .proposal-document-header p .tooltip-info span i,
.talent-project-documents-panel .talent-documents-container .proposal-document-header p .tooltip-info span i,
.talent-project-contracts-panel .talent-documents-container .proposal-document-header p .tooltip-info span i,
.talent-project-team-status-panel .talent-documents-container .proposal-document-header p .tooltip-info span i {
  color: #000000;
  line-height: 22px;
  font-size: 11px;
}
.opp-proposal-documents-tab .talent-project-proposal-container .talent-opp-proposal-fields .form-footer,
.talent-project-documents-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-footer,
.talent-project-contracts-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-footer,
.talent-project-team-status-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-footer,
.opp-proposal-documents-tab .empty-project-proposal-container .talent-opp-proposal-fields .form-footer,
.talent-project-documents-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-footer,
.talent-project-contracts-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-footer,
.talent-project-team-status-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-footer,
.opp-proposal-documents-tab .talent-documents-container .talent-opp-proposal-fields .form-footer,
.talent-project-documents-panel .talent-documents-container .talent-opp-proposal-fields .form-footer,
.talent-project-contracts-panel .talent-documents-container .talent-opp-proposal-fields .form-footer,
.talent-project-team-status-panel .talent-documents-container .talent-opp-proposal-fields .form-footer {
  display: none;
}
.opp-proposal-documents-tab .talent-project-proposal-container .talent-opp-proposal-fields .form-container,
.talent-project-documents-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-container,
.talent-project-contracts-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-container,
.talent-project-team-status-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-container,
.opp-proposal-documents-tab .empty-project-proposal-container .talent-opp-proposal-fields .form-container,
.talent-project-documents-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-container,
.talent-project-contracts-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-container,
.talent-project-team-status-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-container,
.opp-proposal-documents-tab .talent-documents-container .talent-opp-proposal-fields .form-container,
.talent-project-documents-panel .talent-documents-container .talent-opp-proposal-fields .form-container,
.talent-project-contracts-panel .talent-documents-container .talent-opp-proposal-fields .form-container,
.talent-project-team-status-panel .talent-documents-container .talent-opp-proposal-fields .form-container {
  padding: 0 !important;
}
.opp-proposal-documents-tab .talent-project-proposal-container .talent-opp-proposal-fields .form-group,
.talent-project-documents-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group,
.talent-project-contracts-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group,
.talent-project-team-status-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group,
.opp-proposal-documents-tab .empty-project-proposal-container .talent-opp-proposal-fields .form-group,
.talent-project-documents-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group,
.talent-project-contracts-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group,
.talent-project-team-status-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group,
.opp-proposal-documents-tab .talent-documents-container .talent-opp-proposal-fields .form-group,
.talent-project-documents-panel .talent-documents-container .talent-opp-proposal-fields .form-group,
.talent-project-contracts-panel .talent-documents-container .talent-opp-proposal-fields .form-group,
.talent-project-team-status-panel .talent-documents-container .talent-opp-proposal-fields .form-group {
  position: relative;
}
.opp-proposal-documents-tab .talent-project-proposal-container .talent-opp-proposal-fields .form-group .field,
.talent-project-documents-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group .field,
.talent-project-contracts-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group .field,
.talent-project-team-status-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group .field,
.opp-proposal-documents-tab .empty-project-proposal-container .talent-opp-proposal-fields .form-group .field,
.talent-project-documents-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group .field,
.talent-project-contracts-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group .field,
.talent-project-team-status-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group .field,
.opp-proposal-documents-tab .talent-documents-container .talent-opp-proposal-fields .form-group .field,
.talent-project-documents-panel .talent-documents-container .talent-opp-proposal-fields .form-group .field,
.talent-project-contracts-panel .talent-documents-container .talent-opp-proposal-fields .form-group .field,
.talent-project-team-status-panel .talent-documents-container .talent-opp-proposal-fields .form-group .field {
  margin: 0 !important;
}
.opp-proposal-documents-tab .talent-project-proposal-container .talent-opp-proposal-fields .form-group label,
.talent-project-documents-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group label,
.talent-project-contracts-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group label,
.talent-project-team-status-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group label,
.opp-proposal-documents-tab .empty-project-proposal-container .talent-opp-proposal-fields .form-group label,
.talent-project-documents-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group label,
.talent-project-contracts-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group label,
.talent-project-team-status-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group label,
.opp-proposal-documents-tab .talent-documents-container .talent-opp-proposal-fields .form-group label,
.talent-project-documents-panel .talent-documents-container .talent-opp-proposal-fields .form-group label,
.talent-project-contracts-panel .talent-documents-container .talent-opp-proposal-fields .form-group label,
.talent-project-team-status-panel .talent-documents-container .talent-opp-proposal-fields .form-group label {
  margin-bottom: 0;
}
.opp-proposal-documents-tab .talent-project-proposal-container .talent-opp-proposal-fields .form-group .react-date-picker__button,
.talent-project-documents-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group .react-date-picker__button,
.talent-project-contracts-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group .react-date-picker__button,
.talent-project-team-status-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group .react-date-picker__button,
.opp-proposal-documents-tab .empty-project-proposal-container .talent-opp-proposal-fields .form-group .react-date-picker__button,
.talent-project-documents-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group .react-date-picker__button,
.talent-project-contracts-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group .react-date-picker__button,
.talent-project-team-status-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group .react-date-picker__button,
.opp-proposal-documents-tab .talent-documents-container .talent-opp-proposal-fields .form-group .react-date-picker__button,
.talent-project-documents-panel .talent-documents-container .talent-opp-proposal-fields .form-group .react-date-picker__button,
.talent-project-contracts-panel .talent-documents-container .talent-opp-proposal-fields .form-group .react-date-picker__button,
.talent-project-team-status-panel .talent-documents-container .talent-opp-proposal-fields .form-group .react-date-picker__button {
  padding: 2px 6px;
}
.opp-proposal-documents-tab .talent-project-proposal-container .talent-opp-proposal-fields .form-group .react-date-picker__button i,
.talent-project-documents-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group .react-date-picker__button i,
.talent-project-contracts-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group .react-date-picker__button i,
.talent-project-team-status-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group .react-date-picker__button i,
.opp-proposal-documents-tab .empty-project-proposal-container .talent-opp-proposal-fields .form-group .react-date-picker__button i,
.talent-project-documents-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group .react-date-picker__button i,
.talent-project-contracts-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group .react-date-picker__button i,
.talent-project-team-status-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group .react-date-picker__button i,
.opp-proposal-documents-tab .talent-documents-container .talent-opp-proposal-fields .form-group .react-date-picker__button i,
.talent-project-documents-panel .talent-documents-container .talent-opp-proposal-fields .form-group .react-date-picker__button i,
.talent-project-contracts-panel .talent-documents-container .talent-opp-proposal-fields .form-group .react-date-picker__button i,
.talent-project-team-status-panel .talent-documents-container .talent-opp-proposal-fields .form-group .react-date-picker__button i {
  font-size: 22px;
}
.opp-proposal-documents-tab .talent-project-proposal-container .talent-opp-proposal-fields .form-group .input-group-prepend,
.talent-project-documents-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group .input-group-prepend,
.talent-project-contracts-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group .input-group-prepend,
.talent-project-team-status-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group .input-group-prepend,
.opp-proposal-documents-tab .empty-project-proposal-container .talent-opp-proposal-fields .form-group .input-group-prepend,
.talent-project-documents-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group .input-group-prepend,
.talent-project-contracts-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group .input-group-prepend,
.talent-project-team-status-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group .input-group-prepend,
.opp-proposal-documents-tab .talent-documents-container .talent-opp-proposal-fields .form-group .input-group-prepend,
.talent-project-documents-panel .talent-documents-container .talent-opp-proposal-fields .form-group .input-group-prepend,
.talent-project-contracts-panel .talent-documents-container .talent-opp-proposal-fields .form-group .input-group-prepend,
.talent-project-team-status-panel .talent-documents-container .talent-opp-proposal-fields .form-group .input-group-prepend,
.opp-proposal-documents-tab .talent-project-proposal-container .talent-opp-proposal-fields .form-group .input-group-append,
.talent-project-documents-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group .input-group-append,
.talent-project-contracts-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group .input-group-append,
.talent-project-team-status-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group .input-group-append,
.opp-proposal-documents-tab .empty-project-proposal-container .talent-opp-proposal-fields .form-group .input-group-append,
.talent-project-documents-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group .input-group-append,
.talent-project-contracts-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group .input-group-append,
.talent-project-team-status-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group .input-group-append,
.opp-proposal-documents-tab .talent-documents-container .talent-opp-proposal-fields .form-group .input-group-append,
.talent-project-documents-panel .talent-documents-container .talent-opp-proposal-fields .form-group .input-group-append,
.talent-project-contracts-panel .talent-documents-container .talent-opp-proposal-fields .form-group .input-group-append,
.talent-project-team-status-panel .talent-documents-container .talent-opp-proposal-fields .form-group .input-group-append {
  border: none !important;
}
.opp-proposal-documents-tab .talent-project-proposal-container .talent-opp-proposal-fields .form-group input,
.talent-project-documents-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group input,
.talent-project-contracts-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group input,
.talent-project-team-status-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group input,
.opp-proposal-documents-tab .empty-project-proposal-container .talent-opp-proposal-fields .form-group input,
.talent-project-documents-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group input,
.talent-project-contracts-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group input,
.talent-project-team-status-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group input,
.opp-proposal-documents-tab .talent-documents-container .talent-opp-proposal-fields .form-group input,
.talent-project-documents-panel .talent-documents-container .talent-opp-proposal-fields .form-group input,
.talent-project-contracts-panel .talent-documents-container .talent-opp-proposal-fields .form-group input,
.talent-project-team-status-panel .talent-documents-container .talent-opp-proposal-fields .form-group input,
.opp-proposal-documents-tab .talent-project-proposal-container .talent-opp-proposal-fields .form-group textarea,
.talent-project-documents-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group textarea,
.talent-project-contracts-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group textarea,
.talent-project-team-status-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group textarea,
.opp-proposal-documents-tab .empty-project-proposal-container .talent-opp-proposal-fields .form-group textarea,
.talent-project-documents-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group textarea,
.talent-project-contracts-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group textarea,
.talent-project-team-status-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group textarea,
.opp-proposal-documents-tab .talent-documents-container .talent-opp-proposal-fields .form-group textarea,
.talent-project-documents-panel .talent-documents-container .talent-opp-proposal-fields .form-group textarea,
.talent-project-contracts-panel .talent-documents-container .talent-opp-proposal-fields .form-group textarea,
.talent-project-team-status-panel .talent-documents-container .talent-opp-proposal-fields .form-group textarea {
  background-color: white;
  border: 1px solid rgba(50, 60, 71, 0.5);
  border-radius: 0 !important;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  padding: 4px 6px;
}
.opp-proposal-documents-tab .talent-project-proposal-container .talent-opp-proposal-fields .form-group input:focus,
.talent-project-documents-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group input:focus,
.talent-project-contracts-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group input:focus,
.talent-project-team-status-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group input:focus,
.opp-proposal-documents-tab .empty-project-proposal-container .talent-opp-proposal-fields .form-group input:focus,
.talent-project-documents-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group input:focus,
.talent-project-contracts-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group input:focus,
.talent-project-team-status-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group input:focus,
.opp-proposal-documents-tab .talent-documents-container .talent-opp-proposal-fields .form-group input:focus,
.talent-project-documents-panel .talent-documents-container .talent-opp-proposal-fields .form-group input:focus,
.talent-project-contracts-panel .talent-documents-container .talent-opp-proposal-fields .form-group input:focus,
.talent-project-team-status-panel .talent-documents-container .talent-opp-proposal-fields .form-group input:focus,
.opp-proposal-documents-tab .talent-project-proposal-container .talent-opp-proposal-fields .form-group textarea:focus,
.talent-project-documents-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group textarea:focus,
.talent-project-contracts-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group textarea:focus,
.talent-project-team-status-panel .talent-project-proposal-container .talent-opp-proposal-fields .form-group textarea:focus,
.opp-proposal-documents-tab .empty-project-proposal-container .talent-opp-proposal-fields .form-group textarea:focus,
.talent-project-documents-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group textarea:focus,
.talent-project-contracts-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group textarea:focus,
.talent-project-team-status-panel .empty-project-proposal-container .talent-opp-proposal-fields .form-group textarea:focus,
.opp-proposal-documents-tab .talent-documents-container .talent-opp-proposal-fields .form-group textarea:focus,
.talent-project-documents-panel .talent-documents-container .talent-opp-proposal-fields .form-group textarea:focus,
.talent-project-contracts-panel .talent-documents-container .talent-opp-proposal-fields .form-group textarea:focus,
.talent-project-team-status-panel .talent-documents-container .talent-opp-proposal-fields .form-group textarea:focus {
  box-shadow: 0 0 0 0.05rem rgba(139, 62, 240, 0.25);
}
.opp-proposal-documents-tab .talent-project-proposal-container .talent-opp-proposal-fields .cover-letter-form-btns,
.talent-project-documents-panel .talent-project-proposal-container .talent-opp-proposal-fields .cover-letter-form-btns,
.talent-project-contracts-panel .talent-project-proposal-container .talent-opp-proposal-fields .cover-letter-form-btns,
.talent-project-team-status-panel .talent-project-proposal-container .talent-opp-proposal-fields .cover-letter-form-btns,
.opp-proposal-documents-tab .empty-project-proposal-container .talent-opp-proposal-fields .cover-letter-form-btns,
.talent-project-documents-panel .empty-project-proposal-container .talent-opp-proposal-fields .cover-letter-form-btns,
.talent-project-contracts-panel .empty-project-proposal-container .talent-opp-proposal-fields .cover-letter-form-btns,
.talent-project-team-status-panel .empty-project-proposal-container .talent-opp-proposal-fields .cover-letter-form-btns,
.opp-proposal-documents-tab .talent-documents-container .talent-opp-proposal-fields .cover-letter-form-btns,
.talent-project-documents-panel .talent-documents-container .talent-opp-proposal-fields .cover-letter-form-btns,
.talent-project-contracts-panel .talent-documents-container .talent-opp-proposal-fields .cover-letter-form-btns,
.talent-project-team-status-panel .talent-documents-container .talent-opp-proposal-fields .cover-letter-form-btns {
  padding: 0 15px;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-end;
}
.opp-proposal-documents-tab .talent-project-proposal-container .talent-opp-proposal-fields.no-edit .form-container .form-group input,
.talent-project-documents-panel .talent-project-proposal-container .talent-opp-proposal-fields.no-edit .form-container .form-group input,
.talent-project-contracts-panel .talent-project-proposal-container .talent-opp-proposal-fields.no-edit .form-container .form-group input,
.talent-project-team-status-panel .talent-project-proposal-container .talent-opp-proposal-fields.no-edit .form-container .form-group input,
.opp-proposal-documents-tab .empty-project-proposal-container .talent-opp-proposal-fields.no-edit .form-container .form-group input,
.talent-project-documents-panel .empty-project-proposal-container .talent-opp-proposal-fields.no-edit .form-container .form-group input,
.talent-project-contracts-panel .empty-project-proposal-container .talent-opp-proposal-fields.no-edit .form-container .form-group input,
.talent-project-team-status-panel .empty-project-proposal-container .talent-opp-proposal-fields.no-edit .form-container .form-group input,
.opp-proposal-documents-tab .talent-documents-container .talent-opp-proposal-fields.no-edit .form-container .form-group input,
.talent-project-documents-panel .talent-documents-container .talent-opp-proposal-fields.no-edit .form-container .form-group input,
.talent-project-contracts-panel .talent-documents-container .talent-opp-proposal-fields.no-edit .form-container .form-group input,
.talent-project-team-status-panel .talent-documents-container .talent-opp-proposal-fields.no-edit .form-container .form-group input,
.opp-proposal-documents-tab .talent-project-proposal-container .talent-opp-proposal-fields.no-edit .form-container .form-group textarea,
.talent-project-documents-panel .talent-project-proposal-container .talent-opp-proposal-fields.no-edit .form-container .form-group textarea,
.talent-project-contracts-panel .talent-project-proposal-container .talent-opp-proposal-fields.no-edit .form-container .form-group textarea,
.talent-project-team-status-panel .talent-project-proposal-container .talent-opp-proposal-fields.no-edit .form-container .form-group textarea,
.opp-proposal-documents-tab .empty-project-proposal-container .talent-opp-proposal-fields.no-edit .form-container .form-group textarea,
.talent-project-documents-panel .empty-project-proposal-container .talent-opp-proposal-fields.no-edit .form-container .form-group textarea,
.talent-project-contracts-panel .empty-project-proposal-container .talent-opp-proposal-fields.no-edit .form-container .form-group textarea,
.talent-project-team-status-panel .empty-project-proposal-container .talent-opp-proposal-fields.no-edit .form-container .form-group textarea,
.opp-proposal-documents-tab .talent-documents-container .talent-opp-proposal-fields.no-edit .form-container .form-group textarea,
.talent-project-documents-panel .talent-documents-container .talent-opp-proposal-fields.no-edit .form-container .form-group textarea,
.talent-project-contracts-panel .talent-documents-container .talent-opp-proposal-fields.no-edit .form-container .form-group textarea,
.talent-project-team-status-panel .talent-documents-container .talent-opp-proposal-fields.no-edit .form-container .form-group textarea {
  pointer-events: none !important;
  border: none !important;
}
.opp-proposal-documents-tab .talent-project-proposal-container .talent-opp-proposal-fields .talent-opp-target-rate-note,
.talent-project-documents-panel .talent-project-proposal-container .talent-opp-proposal-fields .talent-opp-target-rate-note,
.talent-project-contracts-panel .talent-project-proposal-container .talent-opp-proposal-fields .talent-opp-target-rate-note,
.talent-project-team-status-panel .talent-project-proposal-container .talent-opp-proposal-fields .talent-opp-target-rate-note,
.opp-proposal-documents-tab .empty-project-proposal-container .talent-opp-proposal-fields .talent-opp-target-rate-note,
.talent-project-documents-panel .empty-project-proposal-container .talent-opp-proposal-fields .talent-opp-target-rate-note,
.talent-project-contracts-panel .empty-project-proposal-container .talent-opp-proposal-fields .talent-opp-target-rate-note,
.talent-project-team-status-panel .empty-project-proposal-container .talent-opp-proposal-fields .talent-opp-target-rate-note,
.opp-proposal-documents-tab .talent-documents-container .talent-opp-proposal-fields .talent-opp-target-rate-note,
.talent-project-documents-panel .talent-documents-container .talent-opp-proposal-fields .talent-opp-target-rate-note,
.talent-project-contracts-panel .talent-documents-container .talent-opp-proposal-fields .talent-opp-target-rate-note,
.talent-project-team-status-panel .talent-documents-container .talent-opp-proposal-fields .talent-opp-target-rate-note {
  display: flex;
  align-self: stretch;
  align-items: stretch;
  justify-content: flex-start;
  border: 1px solid #707683;
  padding: 2px 4px;
  margin-left: 19.5px;
}
.opp-proposal-documents-tab .talent-project-proposal-container .talent-opp-proposal-fields .talent-opp-target-rate-note p,
.talent-project-documents-panel .talent-project-proposal-container .talent-opp-proposal-fields .talent-opp-target-rate-note p,
.talent-project-contracts-panel .talent-project-proposal-container .talent-opp-proposal-fields .talent-opp-target-rate-note p,
.talent-project-team-status-panel .talent-project-proposal-container .talent-opp-proposal-fields .talent-opp-target-rate-note p,
.opp-proposal-documents-tab .empty-project-proposal-container .talent-opp-proposal-fields .talent-opp-target-rate-note p,
.talent-project-documents-panel .empty-project-proposal-container .talent-opp-proposal-fields .talent-opp-target-rate-note p,
.talent-project-contracts-panel .empty-project-proposal-container .talent-opp-proposal-fields .talent-opp-target-rate-note p,
.talent-project-team-status-panel .empty-project-proposal-container .talent-opp-proposal-fields .talent-opp-target-rate-note p,
.opp-proposal-documents-tab .talent-documents-container .talent-opp-proposal-fields .talent-opp-target-rate-note p,
.talent-project-documents-panel .talent-documents-container .talent-opp-proposal-fields .talent-opp-target-rate-note p,
.talent-project-contracts-panel .talent-documents-container .talent-opp-proposal-fields .talent-opp-target-rate-note p,
.talent-project-team-status-panel .talent-documents-container .talent-opp-proposal-fields .talent-opp-target-rate-note p {
  margin-bottom: 0;
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  color: black;
  font-size: 12px;
}
.opp-proposal-documents-tab .talent-document-upload-form,
.talent-project-documents-panel .talent-document-upload-form,
.talent-project-contracts-panel .talent-document-upload-form,
.talent-project-team-status-panel .talent-document-upload-form {
  padding: 0 20px;
  background-color: transparent !important;
}
.opp-proposal-documents-tab .talent-document-upload-form .btn-file,
.talent-project-documents-panel .talent-document-upload-form .btn-file,
.talent-project-contracts-panel .talent-document-upload-form .btn-file,
.talent-project-team-status-panel .talent-document-upload-form .btn-file {
  align-self: center;
  background-color: white;
  min-width: 450px;
  max-width: 500px;
  margin: 15px auto;
}
.opp-proposal-documents-tab .empty-talent-project-documents-container,
.talent-project-documents-panel .empty-talent-project-documents-container,
.talent-project-contracts-panel .empty-talent-project-documents-container,
.talent-project-team-status-panel .empty-talent-project-documents-container,
.opp-proposal-documents-tab .empty-project-proposal-container,
.talent-project-documents-panel .empty-project-proposal-container,
.talent-project-contracts-panel .empty-project-proposal-container,
.talent-project-team-status-panel .empty-project-proposal-container {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
}
.opp-proposal-documents-tab .dzu-previewContainer span,
.talent-project-documents-panel .dzu-previewContainer span,
.talent-project-contracts-panel .dzu-previewContainer span,
.talent-project-team-status-panel .dzu-previewContainer span {
  font-family: Beatrice, sans-serif;
}
.opp-proposal-documents-tab .RSPBprogressBarText,
.talent-project-documents-panel .RSPBprogressBarText,
.talent-project-contracts-panel .RSPBprogressBarText,
.talent-project-team-status-panel .RSPBprogressBarText {
  color: #000000 !important;
  font-family: Poppins, sans-serif;
}
.opp-proposal-documents-tab {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 !important;
  min-height: 315px;
  background-color: unset !important;
  box-shadow: none !important;
}
.opp-proposal-documents-tab .empty-talent-project-documents-container {
  margin-top: 20px;
}
.talent-document-row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin: 0 15px;
}
.talent-document-row > div {
  padding: 10px 5px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #343741;
  flex: 1;
}
.talent-document-row > div i {
  margin-right: 10px;
}
.talent-document-row > div:first-child {
  flex: 2;
  font-size: 13px;
}
.talent-document-row > div:first-child > div {
  flex: 1;
  text-align: left;
}
.talent-document-row > div i {
  font-size: 22px;
  color: var(--theme-danger, '#E54963');
}
.talent-project-contracts-panel .talent-opp-contract-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.talent-project-contracts-panel .talent-opp-contract-container .talent-opp-contract-form .form-container {
  padding: 10px 0;
}
.talent-project-contracts-panel .talent-opp-contract-container .talent-opp-contract-form .form-container form .field-section {
  flex-direction: row;
}
.talent-project-contracts-panel .talent-opp-contract-container .talent-opp-contract-form .form-container form .field-section input {
  background: rgba(47, 117, 236, 0.04);
  border: 1px solid #707683;
  box-sizing: border-box;
  padding: 14px 18px;
  height: unset;
  color: #202124 !important;
}
.talent-project-contracts-panel .talent-opp-contract-container .talent-opp-contract-form .form-container form .field-section input.is-invalid {
  border-color: var(--theme-danger, '#E54963');
}
.talent-project-contracts-panel .talent-opp-contract-container .talent-opp-contract-form .form-container form .field-section .input-group-append {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}
.talent-project-contracts-panel .talent-opp-contract-container .talent-opp-contract-form .form-container form .field-section .input-group-append i {
  font-size: 22px;
}
.talent-project-contracts-panel .talent-opp-contract-container .talent-opp-contract-form .form-container .field {
  padding: 0;
}
.talent-project-contracts-panel .talent-opp-contract-container .talent-opp-contract-form .confirm-signature-hint {
  margin-bottom: 0;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #252631;
}
.talent-project-contracts-panel .talent-opp-contract-container .talent-opp-contract-form .confirm-signature-hint .text-bold {
  font-weight: 600;
}
.talent-project-contracts-panel .talent-opp-contract-container .talent-opp-contract-btns {
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.talent-portal-page {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
}
.talent-portal-page .talent-portal-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  flex-basis: 60%;
  flex-grow: 1;
}
.talent-portal-page .talent-portal-nav .talent-portal-nav-item {
  font-family: Poppins, sans-serif;
  font-style: normal;
  padding: 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
.talent-portal-page .talent-portal-nav .talent-portal-nav-item:focus,
.talent-portal-page .talent-portal-nav .talent-portal-nav-item:hover,
.talent-portal-page .talent-portal-nav .talent-portal-nav-item.active {
  color: #FFFFFF;
  text-decoration: underline;
}
.talent-portal-page .talent-portal-nav .talent-portal-nav-item.active {
  pointer-events: none;
}
.talent-portal-page .talent-portal-nav .talent-portal-nav-item.feature-disabled {
  opacity: 50%;
  cursor: default;
}
.talent-portal-page .project-nav-info {
  flex-grow: 1;
  max-width: 80%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.talent-portal-page .project-nav-info .opportunity-title-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  min-height: 30px;
  margin-top: 10px;
}
.talent-portal-page .project-nav-info .opportunity-title-container .opportunity-mobile-back-btn {
  color: #F5F6F8;
  align-self: center;
  margin-right: 5px;
}
.talent-portal-page .project-nav-info .opportunity-title-container .opportunity-nav-title {
  color: #ffffff;
  text-align: center;
  font-size: 17px;
  font-family: Beatrice, sans-serif;
}
.talent-portal-page .project-nav-info .opportunity-nav {
  flex-basis: unset;
  flex-grow: unset;
  min-height: unset;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #5581E0;
}
.talent-portal-page .project-nav-info .opp-details-badge .fas {
  color: white !important;
}
.talent-portal-page .project-nav-back {
  max-width: 18%;
}
.talent-portal-page .project-nav-talent-info {
  padding: 0 10px;
}
.talent-portal-page .project-nav-talent-info * {
  color: white;
}
.talent-portal-page .project-nav-type {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  flex-grow: 1;
  max-width: 18%;
}
.talent-portal-page .project-nav-type div {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: center;
  margin: 0 15px;
}
.talent-portal-page .project-nav-type div .project-type-label {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 9px;
  line-height: 13px;
  /* identical to box height */
  letter-spacing: 0.16em;
  text-transform: uppercase;
  /* White */
  color: #FFFFFF;
}
.talent-portal-page .project-nav-type div .project-type-name {
  font-size: 16px;
  line-height: 150%;
  margin: 0;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
.talent-portal-page .dashboard-home-btn,
.talent-portal-page .dashboard-logout-btn {
  width: 130px;
}
.talent-portal-page .dashboard-logout-btn {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  padding: 0 20px;
}
.talent-portal-page .dashboard-logout-btn button {
  margin: 0 !important;
}
.talent-portal-page .dashboard-home-btn {
  color: #fff;
  border-color: #913ef0;
  background: #913ef0;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
  border-color: var(--theme-primary-dark) !important;
  color: white !important;
  text-decoration: none !important;
  box-shadow: none;
  border-width: 1px;
  align-self: stretch;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--theme-primary, '#5f3db1');
  padding: 0 15px;
}
.talent-portal-page .dashboard-home-btn > a:only-child {
  color: currentcolor;
}
.talent-portal-page .dashboard-home-btn > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.talent-portal-page .dashboard-home-btn:hover,
.talent-portal-page .dashboard-home-btn:focus {
  color: #fff;
  border-color: #b36afc;
  background: #b36afc;
}
.talent-portal-page .dashboard-home-btn:hover > a:only-child,
.talent-portal-page .dashboard-home-btn:focus > a:only-child {
  color: currentcolor;
}
.talent-portal-page .dashboard-home-btn:hover > a:only-child::after,
.talent-portal-page .dashboard-home-btn:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.talent-portal-page .dashboard-home-btn:active {
  color: #fff;
  border-color: #6f2ac9;
  background: #6f2ac9;
}
.talent-portal-page .dashboard-home-btn:active > a:only-child {
  color: currentcolor;
}
.talent-portal-page .dashboard-home-btn:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.talent-portal-page .dashboard-home-btn[disabled],
.talent-portal-page .dashboard-home-btn[disabled]:hover,
.talent-portal-page .dashboard-home-btn[disabled]:focus,
.talent-portal-page .dashboard-home-btn[disabled]:active {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  background: #f5f5f5;
  text-shadow: none;
  box-shadow: none;
}
.talent-portal-page .dashboard-home-btn[disabled] > a:only-child,
.talent-portal-page .dashboard-home-btn[disabled]:hover > a:only-child,
.talent-portal-page .dashboard-home-btn[disabled]:focus > a:only-child,
.talent-portal-page .dashboard-home-btn[disabled]:active > a:only-child {
  color: currentcolor;
}
.talent-portal-page .dashboard-home-btn[disabled] > a:only-child::after,
.talent-portal-page .dashboard-home-btn[disabled]:hover > a:only-child::after,
.talent-portal-page .dashboard-home-btn[disabled]:focus > a:only-child::after,
.talent-portal-page .dashboard-home-btn[disabled]:active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.talent-portal-page .dashboard-home-btn:hover,
.talent-portal-page .dashboard-home-btn:focus {
  color: white !important;
  background: var(--theme-primary-dark) !important;
  box-shadow: 0 4px 10px rgba(139, 62, 240, 0.24) !important;
}
.talent-portal-page .dashboard-home-btn:disabled {
  box-shadow: none !important;
  background-color: #C2CFE0 !important;
  border-color: #C2CFE0 !important;
  opacity: 0.8 !important;
}
.talent-portal-page .dashboard-home-btn:disabled.text-disabled-primary {
  color: var(--theme-primary, '#5f3db1') !important;
  font-weight: 600 !important;
}
.talent-portal-page .dashboard-home-btn * {
  color: white;
}
.talent-portal-page .dashboard-home-btn i {
  font-weight: 900;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.01em;
}
.talent-portal-page .dashboard-home-btn p {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 0.01em;
}
.talent-portal-page .nav-container {
  min-height: 75px;
  align-items: stretch;
  padding: 0;
}
.talent-portal-page .nav-container .nav-info {
  margin: 0;
  justify-content: space-between;
}
.talent-portal-page .nav-container .nav-info .btn-outline-light {
  margin: 0 20px;
}
.talent-portal-page .nav-container .nav-info .dashboard-logout-button {
  width: 130px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.talent-portal-page .nav-container .nav-info .dashboard-logout-button button {
  margin: 0 !important;
}
.talent-portal-page .nav-container .nav-info .nav-welcome {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.talent-portal-page .nav-container .nav-info .nav-welcome p {
  color: white;
  margin: 0;
  font-size: 30px;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .talent-portal-welcome .welcome-bottom .spacer:first-of-type {
    display: none;
  }
}
@media only screen and (max-width: 529px) {
  .talent-portal-welcome .welcome-bottom {
    flex-direction: column;
  }
  .talent-portal-welcome .welcome-bottom .welcome-text {
    padding-bottom: 16px;
  }
}
.talent-portal-dashboard {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  padding: 40px 20px;
  max-width: 1450px;
  margin: 0 auto;
}
.talent-portal-dashboard .container {
  margin-top: 30px;
}
.talent-portal-dashboard .row > div {
  flex-grow: 1;
  padding: 0 12px;
  margin-bottom: 25px;
}
.talent-portal-dashboard .talent-dashboard-panel {
  position: relative;
  background-color: white;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
  height: 100%;
  min-height: 375px;
  min-width: 280px;
  padding: 32px 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.talent-portal-dashboard .talent-dashboard-panel.min-width-unset {
  min-width: unset;
}
.talent-portal-dashboard .talent-dashboard-panel.min-height-unset {
  min-height: unset;
}
.talent-portal-dashboard .talent-dashboard-panel .header-content {
  flex-direction: row;
  display: flex;
  position: relative;
  min-height: 52px;
}
.talent-portal-dashboard .talent-dashboard-panel .header-content .header-last-updated {
  padding: 0;
  position: absolute;
  top: -18px;
  right: 0;
}
.talent-portal-dashboard .talent-dashboard-panel .header-content .header-last-updated p {
  white-space: nowrap;
  margin-bottom: 0;
  line-height: 20px;
  font-size: 11.5px;
  color: #90a0b7;
  letter-spacing: 0.01em;
}
.talent-portal-dashboard .talent-dashboard-panel .header-content .header-last-updated p i {
  color: #90a0b7;
}
.talent-portal-dashboard .talent-dashboard-panel .header-content .header-last-updated p.text-danger {
  color: var(--theme-danger, '#E54963');
}
.talent-portal-dashboard .talent-dashboard-panel .header-content .header-last-updated p.text-danger i {
  color: var(--theme-danger, '#E54963');
}
.talent-portal-dashboard .talent-dashboard-panel .dashboard-title {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  flex: 1;
  padding-right: 15px;
  font-size: 24px;
  line-height: 135%;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
  color: #343741;
}
.talent-portal-dashboard .talent-dashboard-panel .message {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 170%;
  text-align: center;
  letter-spacing: 0.01em;
  color: #343741;
  margin: 25px 0;
}
.talent-portal-dashboard .talent-dashboard-panel.disabled .corner,
.talent-portal-dashboard .talent-dashboard-panel.inactive .corner {
  width: 0;
  height: 0;
  border-top: 130px solid var(--theme-success, '#5ae399');
  border-bottom: 130px solid transparent;
  border-left: 130px solid transparent;
  position: absolute;
  right: 0;
  top: 0;
}
.talent-portal-dashboard .talent-dashboard-panel.disabled .corner span,
.talent-portal-dashboard .talent-dashboard-panel.inactive .corner span {
  position: absolute;
  top: -120px;
  width: 85px;
  right: 5px;
  text-align: center;
  font-size: 11px;
  color: black;
  font-weight: bold;
  display: block;
}
.talent-portal-dashboard .talent-dashboard-panel.disabled .message,
.talent-portal-dashboard .talent-dashboard-panel.inactive .message {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 170%;
  text-align: center;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 0;
  margin-top: 20px;
}
.talent-portal-dashboard .talent-dashboard-panel.disabled {
  pointer-events: none;
  opacity: 0.7;
}
.talent-portal-dashboard .talent-dashboard-panel.disabled .corner {
  border-top: 130px solid #d3d8dd;
}
.talent-portal-dashboard .talent-dashboard-panel.disabled .header-content {
  text-align: center;
}
.talent-portal-dashboard .talent-dashboard-panel .panel-progress {
  margin: 0 0 25px;
  position: relative;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  max-width: 400px;
}
.talent-portal-dashboard .talent-dashboard-panel .panel-progress .progress-title {
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Beatrice, sans-serif;
  font-weight: 600;
}
.talent-portal-dashboard .talent-dashboard-panel .panel-progress .RSPBprogressBar {
  border-radius: 1px;
}
.talent-portal-dashboard .talent-dashboard-panel .panel-progress .RSPBprogressBar .RSPBprogression {
  border-radius: 1px;
}
.talent-portal-dashboard .talent-dashboard-panel.has-message,
.talent-portal-dashboard .talent-dashboard-panel.disabled {
  align-items: center;
  justify-content: center;
}
.talent-portal-dashboard .talent-dashboard-panel.inactive {
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  opacity: 0.7;
  box-shadow: 6px 0 18px rgba(0, 0, 0, 0.06);
}
.talent-portal-dashboard .talent-dashboard-panel.inactive .corner {
  border-top: 130px solid var(--theme-success, '#5ae399');
}
.talent-portal-dashboard .talent-dashboard-panel.inactive .dashboard-title {
  text-align: center;
}
.talent-portal-dashboard .talent-dashboard-panel .profile-overview {
  background-color: #F5F6F8;
  padding: 11px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0;
}
.talent-portal-dashboard .talent-dashboard-panel .profile-overview > div {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: center;
}
.talent-portal-dashboard .talent-dashboard-panel .profile-overview > div p:first-child {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.01em;
  color: #343741;
  margin-bottom: 0;
}
.talent-portal-dashboard .talent-dashboard-panel .profile-overview > div p:last-child {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #707683;
  margin-bottom: 0;
}
.talent-portal-dashboard .talent-dashboard-panel .profile-overview i {
  font-size: 22px;
  color: #90a0b7;
}
.talent-portal-dashboard .talent-dashboard-panel .next-step .next-step-subtitle {
  padding: 6px 10px;
  border-bottom: 0.5px solid #D3D8DD;
}
.talent-portal-dashboard .talent-dashboard-panel .next-step .next-step-subtitle p {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.01em;
  color: #707683;
  margin-bottom: 0;
}
.talent-portal-dashboard .talent-dashboard-panel .next-step .next-step-title {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #343741;
  margin: 10px;
}
.talent-portal-dashboard .talent-dashboard-panel .talent-panel-content-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex: 1;
}
.talent-portal-dashboard .talent-dashboard-panel .profile-panel-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.talent-portal-dashboard .talent-dashboard-panel .profile-panel-btns > div {
  margin-bottom: 0 !important;
}
.talent-portal-dashboard .talent-dashboard-panel .profile-panel-btns > div:first-child {
  flex-grow: unset;
}
.talent-portal-dashboard .talent-dashboard-panel .profile-panel-btns > div:last-child .btn {
  margin-left: auto;
}
.talent-portal-dashboard .talent-dashboard-panel .profile-panel-btns .btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.2rem;
  font-weight: 600;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0.01em;
  min-height: 30px;
  white-space: nowrap;
  text-align: center;
  margin-bottom: 0;
  max-width: 180px;
}
.talent-portal-dashboard .talent-dashboard-panel .profile-panel-btns .btn span {
  font-size: 9px;
}
.talent-portal-dashboard .talent-dashboard-panel .profile-panel-btns .btn-gray {
  color: white !important;
  background: #C4C4C4 !important;
  opacity: 1 !important;
  min-height: 60px !important;
}
.talent-portal-dashboard .talent-dashboard-panel p.message {
  max-width: 240px;
  margin-left: 0;
  margin-right: 0;
}
.talent-portal-dashboard .talent-dashboard-panel .talent-panel-section {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}
.talent-portal-dashboard .talent-dashboard-panel .dashboard-panel-link {
  text-align: left;
  font-family: Beatrice, sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: #707683;
  margin: 0;
  padding: 2px 0;
}
.talent-portal-dashboard .talent-dashboard-panel .dashboard-panel-label {
  margin-bottom: 0;
  align-self: flex-end;
  font-family: Roboto Mono, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #323C47;
}
.talent-portal-dashboard .talent-dashboard-panel.talent-dashboard-feed {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 45px;
  background-color: black;
  justify-content: center;
}
.talent-portal-dashboard .talent-dashboard-panel.talent-dashboard-feed * {
  color: white;
}
.talent-portal-dashboard .talent-dashboard-panel.talent-dashboard-feed .talent-panel-content-container {
  justify-content: center;
}
.talent-portal-dashboard .talent-dashboard-panel.talent-dashboard-feed div,
.talent-portal-dashboard .talent-dashboard-panel.talent-dashboard-feed p,
.talent-portal-dashboard .talent-dashboard-panel.talent-dashboard-feed a {
  color: white;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 170%;
  text-align: center;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
.talent-portal-dashboard .talent-dashboard-panel.talent-dashboard-feed a:not(.text-black) {
  text-decoration: underline !important;
  color: white !important;
}
.talent-portal-dashboard .talent-dashboard-panel.talent-dashboard-feed a:not(.text-black):hover,
.talent-portal-dashboard .talent-dashboard-panel.talent-dashboard-feed a:not(.text-black):focus,
.talent-portal-dashboard .talent-dashboard-panel.talent-dashboard-feed a:not(.text-black):visited,
.talent-portal-dashboard .talent-dashboard-panel.talent-dashboard-feed a:not(.text-black):active {
  color: white !important;
  font-weight: 500;
}
.talent-portal-dashboard .talent-dashboard-panel.talent-dashboard-feed #default-scroll-container {
  flex: 1;
}
.talent-portal-dashboard .talent-dashboard-panel.talent-dashboard-feed #default-scroll-container .default-scroll-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.talent-portal-dashboard .talent-dashboard-panel.talent-dashboard-feed .scroller {
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.talent-portal-dashboard .talent-dashboard-panel.talent-dashboard-feed .scroller button {
  border: none !important;
}
.talent-portal-dashboard .col-job-preferences {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: column;
}
.talent-portal-dashboard .col-job-preferences .talent-dashboard-panel {
  min-height: unset;
  min-width: unset;
}
.talent-portal-dashboard .col-job-preferences .talent-dashboard-panel .talent-panel-content {
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.talent-portal-dashboard .col-job-preferences .talent-dashboard-panel .talent-panel-content p {
  font-size: 12px !important;
}
.talent-portal-dashboard .col-job-preferences .talent-dashboard-panel .talent-panel-content .lds-ring {
  align-self: center;
}
.talent-portal-dashboard .col-job-preferences .talent-dashboard-panel .talent-panel-content .talent-job-panel-links {
  font-size: 12px !important;
  white-space: pre-line;
  line-height: 28px;
  align-self: stretch;
}
.talent-portal-dashboard .col-job-preferences .talent-dashboard-panel .talent-panel-content .talent-job-panel-links p.job-links {
  white-space: pre-line;
  margin-bottom: 0;
  display: inline;
  font-size: 12px !important;
}
.talent-portal-dashboard .col-job-preferences .talent-dashboard-panel .talent-panel-content .talent-job-panel-links p.job-links .btn {
  font-size: 12px !important;
  padding: 0 !important;
}
.talent-portal-dashboard .col-job-preferences .talent-dashboard-panel .talent-panel-content .talent-job-panel-links p.job-links a {
  display: inline;
}
@media only screen and (max-width: 1199px) {
  .talent-portal-dashboard .col-job-preferences .talent-dashboard-panel .talent-panel-content p {
    font-size: 15px !important;
  }
  .talent-portal-dashboard .col-job-preferences .talent-dashboard-panel .talent-panel-content .talent-job-panel-links p.job-links {
    white-space: normal;
    font-size: 15px !important;
  }
  .talent-portal-dashboard .col-job-preferences .talent-dashboard-panel .talent-panel-content .talent-job-panel-links p.job-links span:first-child {
    margin-left: 3px;
  }
  .talent-portal-dashboard .col-job-preferences .talent-dashboard-panel .talent-panel-content .talent-job-panel-links p.job-links .btn {
    font-size: 15px !important;
  }
}
@media only screen and (max-width: 991px) {
  .talent-portal-dashboard .col-job-preferences .talent-dashboard-panel .talent-panel-content p {
    font-size: 13px !important;
  }
  .talent-portal-dashboard .col-job-preferences .talent-dashboard-panel .talent-panel-content .talent-job-panel-links p.job-links {
    white-space: normal;
    font-size: 13px !important;
  }
  .talent-portal-dashboard .col-job-preferences .talent-dashboard-panel .talent-panel-content .talent-job-panel-links p.job-links span:first-child {
    margin-left: 3px;
  }
  .talent-portal-dashboard .col-job-preferences .talent-dashboard-panel .talent-panel-content .talent-job-panel-links p.job-links .btn {
    font-size: 13px !important;
  }
}
.talent-portal-dashboard .col-job-preferences .talent-dashboard-panel .talent-panel-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .talent-portal-dashboard {
    padding: 30px 25px;
  }
}
@media only screen and (max-width: 529px) {
  .talent-portal-dashboard {
    padding: 15px 0;
  }
}
.talent-portal-welcome {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 30px 50px 15px;
}
.talent-portal-welcome .welcome-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background: white;
  box-shadow: 6px 0 18px rgba(0, 0, 0, 0.06);
}
.talent-portal-welcome .welcome-panel .welcome-top {
  padding: 30px 20px 10px;
  overflow: hidden;
  text-align: center;
}
.talent-portal-welcome .welcome-panel .welcome-top h1 {
  font-weight: 900;
  font-size: 32px;
  margin-bottom: 15px;
}
.talent-portal-welcome .welcome-panel .welcome-top h4 {
  font-size: 23px;
  margin-bottom: 15px;
}
.talent-portal-welcome .welcome-panel .welcome-top > p {
  margin: 15px 0;
}
.talent-portal-welcome .welcome-panel .welcome-top .welcome-teamwork-img {
  width: 450px;
  margin-top: -25px;
}
.talent-portal-welcome .welcome-panel .welcome-top .panel-progress {
  max-width: 400px;
  margin: 0 auto;
}
.talent-portal-welcome .welcome-panel .welcome-top .panel-progress .RSPBprogressBar,
.talent-portal-welcome .welcome-panel .welcome-top .panel-progress .RSPBprogression {
  border-radius: 0;
}
.talent-portal-welcome .welcome-panel .welcome-top .welcome-icons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 20px 0;
  align-items: stretch;
  max-width: 850px;
  margin: 0 auto;
}
.talent-portal-welcome .welcome-panel .welcome-top .welcome-icons-container > div {
  align-items: stretch;
  flex-direction: row;
}
.talent-portal-welcome .welcome-panel .welcome-top .welcome-icons-container > div .welcome-icon-card {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.talent-portal-welcome .welcome-panel .welcome-top .welcome-icons-container > div .welcome-icon-card img {
  height: 80px;
  width: 80px;
  margin-bottom: 10px;
}
.talent-portal-welcome .welcome-panel .welcome-top .welcome-icons-container > div .welcome-icon-card p {
  font-size: 15px;
  font-weight: bold;
  margin: 0 5px 0;
  white-space: pre-line;
}
.talent-portal-welcome .welcome-panel .welcome-top .welcome-icons-container > div .welcome-icon-card p.icon-card-subtitle {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: normal;
  font-size: 13px;
}
.talent-portal-welcome .welcome-panel .winning-work-actions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}
.talent-portal-welcome .welcome-panel .winning-work-actions .divider {
  margin: 40px 0;
  width: 5px;
  background-color: #d3d8dd;
}
@media only screen and (max-width: 767px) {
  .talent-portal-welcome .welcome-panel .winning-work-actions .divider {
    display: none;
  }
}
.talent-portal-welcome .welcome-panel .winning-work-actions .welcome-actions-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  position: relative;
}
.talent-portal-welcome .welcome-panel .winning-work-actions .welcome-actions-section p {
  font-size: 14px;
}
.talent-portal-welcome .welcome-panel .winning-work-actions .welcome-actions-section .actions-hint {
  padding-top: 15px;
  text-align: center;
  font-family: "Beatrice Semibold", sans-serif;
  font-size: 18px;
}
.talent-portal-welcome .welcome-panel .winning-work-actions .welcome-actions-section img {
  height: 220px;
  margin: 25px 0;
}
.talent-portal-welcome .welcome-panel .welcome-bottom {
  border-top: 1px solid #E5EBF1;
  display: flex;
  align-items: center;
  padding: 20px;
}
.talent-portal-welcome .welcome-panel .welcome-bottom .progress-title {
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Beatrice, sans-serif;
  font-weight: 600;
}
.talent-portal-welcome .welcome-panel .welcome-bottom .RSPBprogressBar {
  max-width: 300px;
  border-radius: 3px;
}
.talent-portal-welcome .welcome-panel .welcome-bottom .RSPBprogressBar .RSPBprogression {
  border-radius: 3px;
}
.talent-portal-welcome .welcome-panel .welcome-text {
  font-size: 24px;
  margin-bottom: 0;
}
.talent-portal-welcome .welcome-panel .welcome-text.bold {
  font-family: Beatrice-Bold, sans-serif;
}
.talent-portal-welcome .welcome-panel .btn {
  min-width: 200px;
}
.talent-portal-welcome .welcome-panel.platform-features-panel .welcome-top h1 {
  font-family: 'Beatrice Semibold', sans-serif;
  font-size: 26px;
  margin: 15px;
  line-height: 35px;
}
.talent-portal-welcome .new-tag {
  background: #E64963;
  color: white;
  display: inline-block;
  border-radius: 50%;
  padding: 6px 12px;
  bottom: 5px;
  left: -70%;
  font-size: 14px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .talent-portal-welcome {
    padding: 30px 25px;
  }
}
@media only screen and (max-width: 529px) {
  .talent-portal-welcome {
    padding: 15px 0;
  }
}
@media screen and (min-width: 1455px) {
  .talent-portal-dashboard .talent-dashboard-panel p.message {
    max-width: 280px;
  }
}
.profile-card-image {
  height: 90px;
  width: 90px;
  margin: 15px 0;
}
.profile-panel-name-title {
  margin-left: 15px;
  align-items: flex-start;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.profile-panel-name-title p {
  white-space: normal;
}
.profile-panel-name-title p:first-child {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.01em;
  color: #343741;
  margin-bottom: 5px;
}
.profile-panel-name-title p:last-child {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #707683;
  margin-bottom: 0;
}
.profile-steps-row {
  align-items: stretch;
  margin: 0 -10px !important;
  align-self: stretch;
  flex: 1;
  justify-content: space-around;
}
.profile-steps-row .profile-steps-progress {
  flex-grow: unset !important;
  padding: 0 !important;
  padding-right: 5px !important;
  padding-left: 5px !important;
  display: flex;
  align-self: stretch;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0 !important;
}
.profile-steps-row .profile-steps-progress .profile-section-item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  height: 20px;
  justify-content: flex-start;
}
.profile-steps-row .profile-steps-progress .profile-section-item i {
  font-size: 20px;
  line-height: 24px;
  margin-right: 10px;
}
.profile-steps-row .profile-steps-progress .profile-section-item a {
  font-size: 14px !important;
  line-height: 24px;
  white-space: nowrap;
  color: black;
  margin: 0;
  text-decoration: none !important;
  font-weight: normal !important;
}
.profile-steps-row .profile-steps-progress .profile-section-item a:hover,
.profile-steps-row .profile-steps-progress .profile-section-item a:focus,
.profile-steps-row .profile-steps-progress .profile-section-item a:active {
  text-decoration: underline !important;
  font-weight: 500 !important;
}
.talent-availability-form-table {
  align-self: stretch;
  display: block;
  flex-flow: row wrap;
  align-items: center;
  justify-content: stretch;
}
.talent-availability-form-table.is-loading {
  pointer-events: none !important;
  opacity: 0.5 !important;
}
.talent-availability-form-table.is-loading * {
  pointer-events: none;
}
.talent-availability-form-table .availability-week-group {
  flex-grow: 1;
  max-width: 300px !important;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  flex-basis: 50%;
}
.talent-availability-form-table .availability-week-group .availability-week-row {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 15px;
}
.talent-availability-form-table .availability-week-group .availability-week-row:nth-child(odd) {
  background-color: #F5F6F8;
}
.talent-availability-form-table .availability-week-group .availability-week-row .availability-weekname {
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  font-family: 'SimplonMono', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  flex-basis: 35%;
  color: #707683;
}
.availability-form .form-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.availability-form .form-container input:focus {
  box-shadow: none !important;
  outline: none !important;
}
.availability-form .form-group.availability-toggle {
  margin: 1rem 0;
}
.availability-form .form-group.availability-toggle label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
.availability-form .form-group.availability-toggle label span {
  margin-right: 12px;
}
.availability-form .availability-footer {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.availability-form .availability-footer .edit-availability-default {
  display: flex;
  align-self: center;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.availability-form .availability-footer .edit-availability-default .input-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.availability-form .availability-footer .edit-availability-default .input-container span {
  margin-right: 0.5rem;
  font-size: 14px;
}
.availability-form .availability-footer .edit-availability-default .input-container .form-group {
  margin-bottom: 0;
}
.availability-form .availability-footer .edit-availability-default .input-container .form-group input {
  font-weight: 300 !important;
  font-size: 17px !important;
  letter-spacing: 0.01em !important;
  color: black !important;
  line-height: 27px !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  width: 45px !important;
  height: 30px !important;
  position: relative !important;
  border-top: 1px solid transparent !important;
  border-bottom: 1px solid #C2CFE0 !important;
  background-color: transparent !important;
}
.availability-form .availability-footer .edit-availability-default .input-container .form-group input:disabled {
  background-color: var(--theme-success, '#5ae399') !important;
  border-bottom-color: transparent !important;
  cursor: not-allowed;
  opacity: 1 !important;
}
.availability-form .availability-footer .edit-availability-default .input-container .form-group input.is-invalid {
  background-image: none !important;
  border-bottom-color: var(--theme-danger, '#E54963') !important;
}
.availability-form .availability-footer .edit-availability-default .input-container .form-group input:focus {
  border-top: 0 solid transparent !important;
  border-bottom: 2px solid var(--theme-secondary, '#913ef0') !important;
}
.availability-form .availability-footer .edit-availability-default .input-container .form-group input.is-invalid {
  background-image: none !important;
  border-bottom-color: var(--theme-danger, '#E54963') !important;
}
.availability-form .availability-footer .edit-availability-default .btn-link-primary {
  color: var(--theme-secondary, '#913ef0') !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  text-align: left;
  align-self: flex-start;
  text-decoration: underline;
  font-size: 12px;
}
.availability-form .availability-footer .edit-availability-button {
  margin: 0;
}
.availability-form .form-footer {
  display: none;
}
.availability-form .availability-calendar {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  /* Calendar */
}
.availability-form .availability-calendar .calendar .row .col {
  flex-basis: calc(100% / 10);
  width: calc(100% / 10);
}
.availability-form .availability-calendar .calendar .row .col.input {
  flex-basis: calc((100% / 10) * 3);
  width: calc((100% / 10) * 3);
}
.availability-form .availability-calendar .calendar .row:last-child {
  border-bottom: none;
}
.availability-form .availability-calendar .calendar .header .col-months {
  border-bottom: none;
  margin-bottom: 0;
}
.availability-form .availability-calendar .calendar .header .col-months > div {
  width: 100%;
}
.availability-form .availability-calendar .calendar .header .col-months > div .scroller {
  right: -90px;
}
@media only screen and (max-width: 529px) {
  .availability-form .availability-calendar .calendar .header .col-months > div .scroller {
    right: -70px;
  }
}
.availability-form .availability-calendar .calendar .header .col-scrollbar {
  flex-basis: calc((100% / 10) * 2);
  width: calc((100% / 10) * 2);
}
.availability-form .availability-calendar .calendar .header .col {
  flex-basis: calc(((100% / 10) * 5) / 4);
  width: calc(((100% / 10) * 5) / 4);
}
.availability-form .availability-calendar .calendar .header .col span:hover {
  background-color: var(--theme-success-darker);
}
.availability-form .availability-calendar .calendar .header .col.selected span {
  background-color: var(--theme-success, '#5ae399');
  text-decoration: underline;
}
.availability-form .availability-calendar .calendar .header .col.header-info {
  flex-basis: calc((100% / 10) * 3);
  width: calc((100% / 10) * 3);
}
.availability-form .availability-calendar .calendar .body .cell:last-child {
  border-right: none;
  border-left: 2px solid #eee;
}
.availability-form .availability-calendar .calendar .body .selected {
  background-color: rgba(90, 227, 153, 0.3);
}
.availability-form .availability-calendar .calendar .body .selected .bg {
  transition: 0.5s ease-in;
}
.availability-form .availability-calendar .calendar .body .disabled {
  color: #ccc;
  pointer-events: none;
}
.availability-form .availability-calendar .calendar .days .col:last-child {
  border-right: none;
  border-left: 2px solid #eee;
}
.availability-form .availability-calendar .calendar .days .col.day-info {
  flex-basis: calc((100% / 10) * 3);
  width: calc((100% / 10) * 3);
}
.availability-form .availability-calendar .calendar .year-header {
  border-bottom: none;
}
.availability-form .availability-calendar .calendar .year-header .col.year {
  border-bottom: none;
  flex-basis: 70.4%;
  width: 70.4%;
  padding: 5px 12px 0;
  margin-bottom: -6px;
  font-size: 12px;
  border-right: 3px solid #eee;
  color: #303030;
}
.availability-form .availability-calendar .calendar .year-header .col.spacer {
  flex-basis: 29.6%;
  width: 29.6%;
  margin-bottom: -6px;
  padding: 5px 12px 0;
}
.availability-form .availability-calendar .week-hours-input {
  width: 80px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  border: 1px solid #a0a096;
}
.availability-form .availability-calendar .week-hours-input > div {
  text-align: center;
  padding: 0.75em 0.5em;
  background: none;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0.01em;
}
.availability-form .availability-calendar .week-hours-input > div:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 27.59px;
  text-decoration: underline;
  font-size: 13px;
}
.availability-form .availability-calendar .react-calendar {
  width: unset !important;
}
.availability-form .availability-calendar .react-calendar .react-calendar__month-view__weekdays__weekday abbr {
  text-decoration: none;
  border-bottom: 1px solid #000000;
  font-size: 13px;
}
.availability-form .availability-calendar .react-calendar .react-calendar__tile--now {
  background-color: var(--theme-secondary-lighter);
}
.availability-form .availability-calendar .react-calendar .react-calendar__month-view__days__day--neighboringMonth {
  opacity: 0.5;
}
.edit-availability-button {
  margin: 0 0 8px 8px;
}
.edit-availability-button button {
  font-size: 12px;
  padding: 0.5rem 0.5rem;
}
.edit-availability-button button.btn-link-primary {
  color: var(--theme-secondary, '#913ef0') !important;
  font-weight: 600 !important;
}
.opportunity-list {
  display: flex;
  align-self: stretch;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  padding: 5 0 15px;
  margin: 5px 0 0 !important;
}
.opportunity-list.full-card-list {
  min-height: 658px;
}
.opportunity-list .card-list-container .card-list {
  max-width: 1300px;
}
.opportunity-list .opportunity-list-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
  width: 100%;
}
.opportunity-list .opportunity-list-section .opportunity-status-row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  margin-bottom: 10px;
}
.opportunity-list .opportunity-list-section .opportunity-status-row .opportunity-status-tab {
  min-height: 20px;
  border-width: 0;
  align-self: flex-start;
  transition: all 250ms ease-in;
  font-style: normal;
  font-weight: 600;
  font-size: 9px;
  line-height: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 5px 7px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #C4CACC;
  border-radius: 15px;
  padding: 0 7px;
  min-width: unset;
}
.opportunity-list .opportunity-list-section .opportunity-status-row .opportunity-status-tab:disabled {
  opacity: 0.5;
}
.opportunity-list .opportunity-list-section .opportunity-status-row .opportunity-status-tab.active {
  background-color: var(--theme-secondary, '#913ef0');
}
.opportunity-list .opportunity-list-section .opportunity-list-items {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
  width: 100%;
}
.opportunity-list .opportunity-list-section .opportunity-list-items .feedback-banner {
  min-height: 200px;
}
.opportunity-list .opportunity-list-section .opportunity-list-items .scrollarea.area {
  max-height: 200px;
  min-height: 200px;
}
.opportunity-list .opportunity-list-section .opportunity-list-items .opportunity-list-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  background-color: #F5F6F8;
  padding: 0.5rem 0;
  margin: 10px 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  width: 100%;
}
.opportunity-list .opportunity-list-section .opportunity-list-items .opportunity-list-item .opportunity-detail {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0 0.5rem;
  font-size: 12px;
}
.opportunity-list .opportunity-list-section .opportunity-list-items .opportunity-list-item .opportunity-detail .badge {
  vertical-align: middle;
}
.opportunity-list .opportunity-list-section .opportunity-list-items .opportunity-list-item .opp-item-details {
  padding: 0 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}
.opportunity-list .opportunity-list-section .opportunity-list-items .opportunity-list-item .opp-item-details .opp-item-info {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  flex-basis: 50%;
  width: 50%;
  position: relative;
  overflow: hidden;
}
.opportunity-list .opportunity-list-section .opportunity-list-items .opportunity-list-item .opp-item-details .opp-item-info p {
  white-space: pre;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  height: 17px;
  line-height: 17px;
  letter-spacing: 0.01em;
  color: #343741;
  text-overflow: ellipsis;
  max-width: 100%;
  text-decoration: none;
}
.opportunity-list .opportunity-list-section .opportunity-list-items .opportunity-list-item .opp-item-details .opp-links {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-end;
  justify-content: space-between;
}
.opportunity-list .opportunity-list-section .opportunity-list-items .opportunity-list-item .opp-item-details .opp-links .btn-link {
  font-style: normal;
  font-weight: normal;
  white-space: nowrap;
  font-size: 10px;
  height: 19px;
  line-height: normal;
  letter-spacing: 0.01em;
  max-width: 100%;
  margin: 0;
  padding: 0;
  color: var(--theme-info, '#4B80E7');
}
.opportunity-list .opportunity-list-section .opportunity-list-items .opportunity-list-item .opp-item-details .opp-links .btn-link:hover,
.opportunity-list .opportunity-list-section .opportunity-list-items .opportunity-list-item .opp-item-details .opp-links .btn-link:focus {
  color: var(--theme-info-darker) !important;
}
.talent-profile-form {
  align-self: stretch;
  display: flex;
  margin: 0 !important;
  padding: 0 45px !important;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.talent-profile-form h3 {
  margin: 0;
}
.talent-profile-form .profile-form-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-end;
  margin: 0 -10px;
}
.talent-profile-form .profile-form-btns .btn {
  margin: 5px 10px;
  display: flex;
  max-width: 300px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.talent-profile-form .profile-form-btns .btn:disabled {
  pointer-events: none;
}
.job-brief_NEW {
  width: 100%;
  min-height: unset !important;
}
@media only screen and (max-width: 767px) {
  .talent-opportunity-dashboard-container {
    padding: 15px;
  }
  .talent-opportunity-dashboard .job-brief {
    max-width: none !important;
  }
  .talent-opportunity-container .proposal-tabs {
    margin-bottom: 15px;
  }
  .talent-opportunity-container .proposal-tabs .proposal-tab {
    flex: 1;
  }
  .talent-opportunity-container .job-brief {
    margin-bottom: 0 !important;
  }
}
.talent-opportunity-container {
  max-width: 1375px;
}
.talent-opportunity-container.talent-opportunity-dashboard-container {
  max-width: unset;
}
.talent-opportunity-container .talent-opp-wizard-header {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  margin: 0 10px 30px;
}
.talent-opportunity-container .talent-opp-wizard-header h2 {
  margin-bottom: 0;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 22px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
}
.talent-opportunity-container .talent-opp-wizard-header.talent-opportunity-brief-btns .opp-unseen-info {
  text-transform: none;
  font-size: 12px;
  font-style: italic;
  margin-bottom: 0;
}
.talent-opportunity-container .talent-opp-wizard-header.talent-opportunity-brief-btns .opp-unseen-info i {
  font-size: 13px;
  color: var(--theme-danger, '#E54963') !important;
  line-height: normal !important;
  margin-left: 15px !important;
}
.talent-opportunity-container .talent-opp-wizard-header.talent-opportunity-brief-btns p,
.talent-opportunity-container .talent-opp-wizard-header.talent-opportunity-brief-btns button {
  margin: 0 0 0 10px;
  white-space: nowrap;
}
.talent-opportunity-container .talent-opp-wizard-header.talent-opportunity-brief-btns button {
  font-style: normal;
  font-size: 13px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.01em;
  height: 30px;
  padding-top: 0;
  padding-bottom: 0;
}
.talent-opportunity-container .talent-opp-wizard-header.talent-opportunity-brief-btns p {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #424242;
}
.talent-opportunity-container .form-checkbox [type="checkbox"] + label {
  flex-wrap: wrap;
  transition: all 200ms ease-in !important;
  font-weight: 500;
}
.talent-opportunity-container .form-checkbox [type="checkbox"] + label:before {
  font-size: 21px;
}
.talent-opportunity-container .form-checkbox [type="checkbox"] + label span {
  color: var(--theme-primary, '#5f3db1') !important;
  pointer-events: all !important;
  transition: all 150ms ease-in !important;
}
.talent-opportunity-container .form-checkbox [type="checkbox"]:checked + label {
  background-color: unset !important;
  font-weight: 500;
}
.talent-opportunity-container .form-checkbox [type="checkbox"]:checked + label:before {
  color: var(--theme-primary, '#5f3db1');
}
.talent-opportunity-container .form-checkbox [type="checkbox"]:checked + label span {
  font-weight: 600;
}
.talent-opportunity-container .brief-steps-menu {
  display: flex;
  flex-direction: column;
  background-color: #F5F6F8;
  padding: 0;
}
.talent-opportunity-container .brief-steps-menu .brief-step-btn {
  text-align: left;
  font-weight: 500;
  height: 55px;
  border-radius: 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  font-size: 13px;
  line-height: 18px;
  padding-left: 1rem;
  padding-right: 1rem;
}
.talent-opportunity-container .brief-steps-menu .brief-step-btn i {
  color: #885AF8;
  vertical-align: middle;
  line-height: 18px;
}
.talent-opportunity-container .brief-steps-menu .brief-step-btn i.fa-dot-circle,
.talent-opportunity-container .brief-steps-menu .brief-step-btn i.fa-circle {
  font-size: 8px;
}
.talent-opportunity-container .brief-steps-menu .brief-step-btn.active {
  background-color: white;
}
@media only screen and (max-width: 640px) {
  .talent-opportunity-container .brief-step-section {
    padding: 35px 16px 100px !important;
  }
}
.talent-opportunity-container .brief-step-section {
  text-align: center;
  padding: 35px 50px 100px;
  background-color: white;
  transition: all 250ms ease-in;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.talent-opportunity-container .brief-step-section .panel-header {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.01em;
  color: black;
  margin-bottom: 5px;
  text-decoration: underline;
}
.talent-opportunity-container .brief-step-section .panel-subheader {
  max-width: 450px;
  align-self: center;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: bolder;
  font-size: 13px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.01em;
  color: black;
  margin-bottom: 10px;
}
.talent-opportunity-container .brief-step-section .brief-section-title {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 0;
  font-weight: 600;
  margin-top: 10px;
}
.talent-opportunity-container .brief-step-section .brief-section-subtitle {
  font-family: Poppins, sans-serif;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #000000;
  max-width: 550px;
  margin: 0 auto 30px;
}
.talent-opportunity-container .brief-step-section .project-brief-section {
  text-align: left;
}
.talent-opportunity-container .brief-step-section .brief-members-team-title {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  /* identical to box height, or 30px */
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  /* Table "Black" */
  color: #323C47;
}
.talent-opportunity-container .brief-step-section .brief-section-btns {
  padding-top: 2rem;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: row;
}
.talent-opportunity-container .proposal-tab-content,
.talent-opportunity-container .proposal-subject {
  display: flex;
  flex-direction: column;
}
.talent-portal-page .talent-opportunity-dashboard {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief {
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 24px 32px;
  flex-grow: 0;
  box-shadow: none;
  background: transparent;
  min-width: 300px;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief .job-client-logo {
  width: 80px;
  height: 80px;
  background-size: cover;
  background-position: center;
  background-color: transparent;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  align-self: flex-start;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief h4 {
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #000000;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief hr {
  margin: 0;
  border-top: 1px solid #CECECE;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief .btn {
  margin: 0 0 20px;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief .position-title {
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #000000;
  margin: 0;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief .position-description {
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #000000;
  margin: 0;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief .position-description .btn.btn-link {
  display: inline;
  align-self: start;
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 500!important;
  font-size: 14px!important;
  line-height: 160% !important;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: var(--theme-secondary, '#913ef0');
  padding: 0!important;
  margin: 0!important;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief .position-document-section {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  border-bottom: 1px solid #90a0b7;
  margin-bottom: 0;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief .position-document-section p {
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #000000;
  margin: 0;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief .position-document-section .position-document {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief .position-document-section .position-document i {
  font-size: 18px;
  color: var(--theme-danger, '#E54963');
  margin-right: 10px;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief .position-document-section .position-document a {
  margin-bottom: 0;
  font-size: 10px;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief .position-info-section {
  gap: 4px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief .position-info-section .info-label {
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #707683;
  margin: 0;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief .position-info-section .info-value {
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.01em;
  color: #000000;
  margin: 0;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief .position-info-section .info-value .payout {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 -5px -5px;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief .position-info-section .info-value .payout span {
  padding: 0.2rem 0;
  white-space: nowrap;
  margin: 0 5px 5px;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief .position-info-section .info-value .payout span.payout-info {
  padding: 0.2rem 0.4rem;
  font-style: italic;
  border: 1px solid #8c8c8c;
  font-size: 10px;
  line-height: 18px;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief .position-info-section .info-value .payout span.payout-info strong {
  font-style: normal;
}
.talent-portal-page .talent-opportunity-dashboard .job-brief .position-info-section .info-value .payout span.difference-warning {
  flex-basis: 100%;
  white-space: normal;
  color: var(--theme-danger, '#E54963');
  margin-top: 5px;
  font-size: 10px;
  font-style: italic;
  font-weight: 400;
}
.talent-portal-page .talent-opportunity-dashboard .opp-dashboard-panel {
  background-color: white;
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  gap: 24px;
  position: relative;
  align-items: stretch;
  justify-content: space-between;
  min-height: 210px;
}
.talent-portal-page .talent-opportunity-dashboard .opp-dashboard-panel h3 {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  padding-right: 32px;
  font-size: 18px;
  line-height: 135%;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
  color: #343741;
}
.talent-portal-page .talent-opportunity-dashboard .opp-dashboard-panel div[class^="alert-"] {
  display: inline-flex;
  align-self: center;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  line-height: 20px;
  font-size: 12px;
  margin: 0 auto 10px;
  padding: 0.6rem 1.5rem;
}
.talent-portal-page .talent-opportunity-dashboard .opp-dashboard-panel div[class^="alert-"] * {
  font-size: 12px;
  line-height: 20px;
}
.talent-portal-page .talent-opportunity-dashboard .opp-dashboard-panel div[class^="alert-"] p {
  margin: 2px 15px 0 4px;
}
.talent-portal-page .talent-opportunity-dashboard .opp-dashboard-panel div[class^="alert-"] .btn-link {
  margin-left: auto;
  line-height: 20px;
  font-size: 12px;
  color: inherit !important;
}
.talent-portal-page .talent-opportunity-dashboard .empty-message {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: black;
  opacity: 0.5;
}
.talent-portal-page .talent-opportunity-dashboard .brief-document {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.talent-portal-page .talent-opportunity-dashboard .brief-document .opp-unseen-update-panel {
  right: 7px;
  top: 7px;
  font-size: 11px;
}
.talent-portal-page .talent-opportunity-dashboard .brief-document .opp-unseen-update-panel i {
  font-size: 10px;
}
.talent-portal-page .talent-opportunity-dashboard .brief-document .document-link {
  padding: 0.5rem 1rem;
  transition: all 200ms ease-in;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}
.talent-portal-page .talent-opportunity-dashboard .brief-document .document-link i {
  transition: all 200ms ease-in;
  font-size: 60px;
  color: black;
  text-align: center;
}
.talent-portal-page .talent-opportunity-dashboard .brief-document .document-link:hover {
  opacity: 1;
}
.talent-portal-page .talent-opportunity-dashboard .brief-document .brief-status {
  margin-top: 0.5rem;
  margin-bottom: 5px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.talent-portal-page .talent-opportunity-dashboard .brief-document .brief-status i {
  line-height: 20px;
}
.talent-portal-page .talent-opportunity-dashboard .brief-document .brief-status p {
  letter-spacing: 0.01em;
  text-align: center;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
  font-size: 14px;
}
.talent-portal-page .talent-opportunity-dashboard .opportunity-progress-info {
  position: relative;
  min-width: 50%;
}
.talent-portal-page .talent-opportunity-dashboard .opportunity-progress-info .RSPBprogressBar,
.talent-portal-page .talent-opportunity-dashboard .opportunity-progress-info .RSPBprogression {
  border-radius: 0;
  transition: width 800ms ease-in;
  transition-delay: 100ms;
}
.talent-portal-page .talent-opportunity-dashboard .opportunity-progress-info .withdraw-btn {
  pointer-events: all;
  z-index: 5;
  font-size: 12px;
}
.talent-portal-page .talent-opportunity-dashboard .opp-progress-label {
  flex: 1;
  font-size: 14px;
  text-align: center;
  transition: all 800ms ease-in;
  transition-delay: 100ms;
  margin-bottom: 8px;
}
.talent-portal-page .talent-opportunity-dashboard .opp-progress-label.active {
  font-weight: 600;
}
@media only screen and (max-width: 400px) {
  .talent-portal-page .talent-opportunity-dashboard .opp-progress-label {
    transform: scale(0.8);
  }
}
.talent-portal-page .talent-opportunity-dashboard .progress-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.talent-portal-page .talent-opportunity-dashboard .proposal-title {
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 600;
  font-size: 21px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #000000;
  margin: 0;
}
.talent-portal-page .talent-opportunity-dashboard .opportunity-proposal .proposal-info .nav-tabs {
  padding: 0;
}
.talent-portal-page .talent-opportunity-dashboard .opportunity-proposal .proposal-info .nav-tabs .nav-item .nav-link {
  border-width: 0;
}
.talent-portal-page .talent-opportunity-dashboard .opportunity-proposal .proposal-tab-content .proposal-messages {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .talent-portal-page .talent-opportunity-dashboard {
    display: block;
  }
  .talent-portal-page .talent-opportunity-dashboard .job-brief_NEW {
    padding: 24px 16px 0px;
  }
}
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container {
  margin: 55px auto 0;
  max-width: 800px;
  min-height: unset;
  min-width: unset;
  width: 100%;
  padding: 0;
}
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container .modal-title {
  background-color: var(--theme-info, '#4B80E7');
  padding: 10px 15px;
  font-size: 16px;
  color: white;
}
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container .opp-reject-feedback-form {
  padding: 0 25px;
}
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container .opp-reject-feedback-form .form-container {
  padding: 0;
}
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container .opp-reject-feedback-form .form-container .field-section {
  align-items: flex-start;
}
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container .opp-reject-feedback-form .form-container .field-section .field {
  margin-top: 0 !important;
}
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container .opp-reject-feedback-form .form-container .field-section .field .reject-reason-input > .col-form-label {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 27px !important;
  letter-spacing: 0.01em !important;
  color: #000000 !important;
}
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container .opp-reject-feedback-form .form-container .field-section .field .reject-reason-input .form-check label {
  margin-bottom: 0;
}
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container .opp-reject-feedback-form .form-container .field-section .field.reject-reason-notes-input label {
  display: none;
}
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container .opp-reject-feedback-form .form-container .field-section .field.reject-reason-notes-input textarea {
  margin-top: 0.5rem !important;
}
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container .opp-reject-feedback-form .form-container .field-section .field.reject-reason-notes-input ::-moz-placeholder {
  color: #707683 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  opacity: 1 !important;
}
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container .opp-reject-feedback-form .form-container .field-section .field.reject-reason-notes-input ::placeholder {
  color: #707683 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  opacity: 1 !important;
}
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container .opp-reject-feedback-form .form-container .field-section .field.reject-reason-notes-input :-ms-input-placeholder,
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container .opp-reject-feedback-form .form-container .field-section .field.reject-reason-notes-input ::-ms-input-placeholder {
  color: #707683 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  opacity: 1 !important;
}
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container .opp-reject-feedback-form .reject-reason-actions {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  border-top: 1px solid #90a0b7;
  padding: 20px 0;
}
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container .opp-reject-feedback-form .reject-reason-actions .btn-link-danger {
  color: var(--theme-danger, '#E54963') !important;
}
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container .opp-reject-feedback-form .reject-reason-actions .btn-link-danger:hover,
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container .opp-reject-feedback-form .reject-reason-actions .btn-link-danger:focus,
.opp-reject-feedback-modal .scrollarea .scrollarea-content .modal-container .opp-reject-feedback-form .reject-reason-actions .btn-link-danger:active {
  color: var(--theme-danger-dark) !important;
}
@media only screen and (max-width: 768px) {
  .brief-steps-menu {
    margin-top: -20px;
  }
  .project-sow-deliverable-details-panel {
    flex-direction: column;
  }
  .project-sow-deliverable-details-panel div {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .project-sow-total-filler {
    flex: 1.5;
  }
  .talent-portal-welcome .winning-work .divider {
    background-color: #E5EBF1;
    height: 3px;
    width: 50%;
    margin: 50px auto;
  }
}
.talent-manager-talent-table th {
  font-size: 12px !important;
  white-space: normal;
}
.talent-manager-talent-table td.status p,
.talent-manager-talent-table th.status p {
  font-weight: 500;
}
.talent-manager-talent-table td.status .btn,
.talent-manager-talent-table th.status .btn {
  padding: 3px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px !important;
  white-space: nowrap !important;
  font-size: 9px !important;
  margin: 0 !important;
}
.talent-manager-talent-table td.profile p,
.talent-manager-talent-table th.profile p {
  white-space: nowrap;
}
.talent-manager-talent-table td.registered-at,
.talent-manager-talent-table th.registered-at {
  white-space: nowrap !important;
}
.talent-manager-talent-table td.hr-assessment,
.talent-manager-talent-table th.hr-assessment,
.talent-manager-talent-table td.capability-assessment,
.talent-manager-talent-table th.capability-assessment {
  width: 200px;
}
.talent-manager-talent-table td.project-interests,
.talent-manager-talent-table td.industries,
.talent-manager-talent-table td.roles,
.talent-manager-talent-table td.skills {
  font-size: 15px;
  text-align: center;
}
.talent-manager-user-row .img-fluid {
  max-height: 80px;
  min-width: 60px;
}
.talent-manager-user-row .user-info-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.talent-manager-user-row .user-info-details h5 {
  font-size: 16px;
  font-weight: 500;
}
.talent-manager-user-row .user-info-details p {
  margin-bottom: 4px;
}
.talent-manager-user-row .user-info-details a,
.talent-manager-user-row .user-info-details p {
  font-size: 11px;
  white-space: normal;
}
.talent-manager-user-row .hr-assessment,
.talent-manager-user-row .capability-assessment {
  vertical-align: top;
}
.interview-assessment-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  margin: 0 -5px;
}
.interview-assessment-actions p {
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}
.interview-assessment-actions p > span:first-child {
  margin-right: 5px;
  font-weight: bold;
}
.interview-assessment-actions p i {
  margin-right: 2px;
}
.interview-assessment-actions button {
  height: 30px;
  align-self: stretch;
  white-space: nowrap;
  font-size: 11px;
  padding: 3px 5px;
  margin-top: 10px;
}
.interview-assessment-actions button.btn-link {
  padding: 0px 5px;
  margin-top: 5px;
}
.hr-assessment-modal > .scrollarea > .scrollarea-content {
  margin-left: auto !important;
  margin-right: auto !important;
  align-items: center;
}
.hr-assessment-modal > .scrollarea > .scrollarea-content .modal-container {
  max-width: 1100px;
  min-width: 80%;
}
.talent-assessment-modal .assessment-modal-header {
  height: 56px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
}
.talent-assessment-modal .assessment-modal-header h3 {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #000000;
}
.talent-assessment-modal .assessment-modal-header h3 span {
  font-weight: 400;
  margin-left: 8px;
  font-size: 15px;
}
.talent-assessment-modal .dashboard-title {
  font-size: 18px;
  text-decoration: underline;
}
.talent-assessment-modal .assessment-modal-container .field-section {
  flex-direction: row;
  display: flex;
  justify-content: center;
  margin-top: 5px !important;
}
.talent-assessment-modal .assessment-modal-container .field-section .field {
  margin-top: 0 !important;
}
.talent-assessment-modal .assessment-modal-container .field-section .field .form-group > label.mb-3 {
  margin-bottom: 0 !important;
}
.talent-assessment-modal .assessment-modal-container .field-section .field textarea {
  font-size: 12px;
}
.talent-assessment-modal .assessment-modal-container .field-section .select-field .form-group {
  flex-direction: column;
  display: flex;
}
.talent-assessment-modal .assessment-modal-container .user-info {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.talent-assessment-modal .assessment-modal-container .user-info .user-details {
  display: flex;
  flex-grow: 1;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: center;
}
.talent-assessment-modal .assessment-modal-container .user-info .user-details .user-info-image {
  align-items: center;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
  height: 90px !important;
  width: 90px !important;
}
.talent-assessment-modal .assessment-modal-container .user-info .user-details .user-info-image .img-fluid {
  height: 90px !important;
  width: 90px !important;
  margin-right: 15px;
}
.talent-assessment-modal .assessment-modal-container .user-info .user-details .user-info-details {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  margin-right: 30px;
  max-width: calc(100% - 135px);
}
.talent-assessment-modal .assessment-modal-container .user-info .user-details .user-info-details p {
  font-size: 12px;
  margin-bottom: 4px;
}
.talent-assessment-modal .assessment-modal-container .user-info .user-instructions {
  border: 2px solid #303030;
  flex-basis: 50%;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
}
.talent-assessment-modal .assessment-modal-container .user-info .user-instructions p {
  font-size: 12px;
  margin-bottom: 0;
}
.talent-assessment-modal .assessment-modal-container .user-info .user-instructions h4 {
  font-size: 15px;
  margin-bottom: 0;
}
.talent-assessment-modal .assessment-modal-container .assessment-spacer {
  flex-basis: 100%;
  margin-bottom: 35px;
}
.talent-assessment-modal .assessment-modal-container .assessment-section {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  margin: 50px auto 0;
}
.talent-assessment-modal .assessment-modal-container .assessment-section h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.talent-assessment-modal .assessment-modal-container .assessment-section .section-instructions {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
.talent-assessment-modal .assessment-modal-container .assessment-section .section-instructions div {
  max-width: 400px;
  padding: 10px 20px 0;
}
.talent-assessment-modal .assessment-modal-container .assessment-section .section-instructions div h5 {
  font-size: 14px;
  margin-bottom: 8px;
}
.talent-assessment-modal .assessment-modal-container .assessment-section .section-instructions div p,
.talent-assessment-modal .assessment-modal-container .assessment-section .section-instructions div li {
  font-size: 12px;
  margin-bottom: 3px;
}
.talent-assessment-modal .assessment-modal-container .talent-skill-rating {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.talent-assessment-modal .assessment-modal-container .z-10 {
  z-index: 5 !important;
}
.talent-assessment-modal .assessment-scoring {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 600px;
  flex: 0;
  min-width: 540px;
  justify-content: flex-start;
}
.talent-assessment-modal .assessment-scoring .assessment-score-row {
  display: flex;
  align-items: stretch;
  flex-direction: row;
  margin: 0;
  flex-wrap: wrap;
}
.talent-assessment-modal .assessment-scoring .assessment-score-row:last-child {
  margin-top: 20px;
}
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section {
  min-width: 270px;
  margin-top: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section > div {
  flex: 1;
  border: 1px solid #000;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 5px 10px;
}
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section > div p {
  font-size: 12px;
  white-space: nowrap;
}
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section > div:last-child {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: unset;
  width: 60px;
  border-left: none;
}
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section > div:last-child p {
  text-align: center;
}
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section:nth-child(1) > div:last-child,
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section:nth-child(3) > div:last-child,
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section:nth-child(5) > div:last-child {
  border-right: none;
}
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section .score-label {
  background-color: var(--theme-success, '#5ae399');
}
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section .score-label.overall,
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section .score-label.status {
  background-color: #000;
  flex: 2;
}
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section .score-label.overall p,
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section .score-label.status p {
  color: white;
}
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section .score-label.status {
  border-bottom-color: white;
}
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section .score-label.status.b-dark {
  border-bottom-color: #000;
}
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section .score-value.overall,
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section .score-value.status {
  border-right: 1px solid #000 !important;
  width: unset;
  flex: 3;
}
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section .score-value.overall {
  border-bottom: 1px solid #000 !important;
}
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section .score-value.status.incomplete {
  background-color: #d3d8dd;
}
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section .score-value.status.approved {
  background-color: var(--theme-success, '#5ae399');
}
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section .score-value.status.rejected {
  background-color: var(--theme-danger, '#E54963');
}
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-score-section .score-value.status.rejected p {
  font-weight: 400;
  color: white;
}
.talent-assessment-modal .assessment-scoring .assessment-score-row .assessment-spacer {
  min-width: 270px;
  flex-basis: unset;
}
.talent-assessment-modal .assessment-section-header {
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.01em;
  color: #000;
  margin-bottom: 5px;
  text-decoration: underline;
}
.talent-assessment-modal .assessment-section-subheader h5 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
}
.talent-assessment-modal .assessment-section-subheader h5 span {
  color: black;
}
.talent-assessment-modal .assessment-section-subheader h5 span:first-child {
  color: black;
  background: var(--theme-light, '#E5EBF1');
  padding: 3px 10px;
  font-size: 14px;
  font-weight: 500;
}
.talent-assessment-modal .assessment-section-subheader h5 .self-score {
  font-family: Poppins, sans-serif;
  background: #8b3ef0;
  font-size: 14px;
  padding: 3px 10px;
  font-weight: 500;
  display: inline-block;
  color: white;
  margin-left: 10px;
}
.talent-assessment-modal .assessment-section-subheader p {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #334d6e;
}
.talent-assessment-modal .assessment-skills-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.talent-assessment-modal .assessment-skills-container .skills-score-header {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 19px;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.01em;
  color: #000;
  margin-bottom: 5px;
  text-decoration: underline;
}
.talent-assessment-modal .assessment-skills-container .skills-score-subheader {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.01em;
  margin: 25px auto;
  text-align: center;
  max-width: 600px;
}
.talent-assessment-modal .assessment-actions,
.talent-assessment-modal .assessment-form-actions {
  margin: 30px auto;
  display: flex;
  align-items: stretch;
  flex-direction: row;
  justify-content: center;
}
.talent-assessment-modal .assessment-actions button,
.talent-assessment-modal .assessment-form-actions button {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.talent-assessment-modal .assessment-actions button i,
.talent-assessment-modal .assessment-form-actions button i {
  margin-right: 8px;
}
.talent-assessment-modal .assessment-actions .btn-success,
.talent-assessment-modal .assessment-form-actions .btn-success {
  background-color: var(--theme-success-dark) !important;
  border-color: var(--theme-success-dark) !important;
}
.talent-assessment-modal .assessment-actions .btn-success:hover,
.talent-assessment-modal .assessment-form-actions .btn-success:hover,
.talent-assessment-modal .assessment-actions .btn-success:focus,
.talent-assessment-modal .assessment-form-actions .btn-success:focus,
.talent-assessment-modal .assessment-actions .btn-success:active,
.talent-assessment-modal .assessment-form-actions .btn-success:active {
  background-color: var(--theme-success-darker) !important;
  border-color: var(--theme-success-darker) !important;
}
.talent-assessment-modal .assessment-form-actions {
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.talent-assessment-modal .assessment-form-actions button {
  flex: 1;
  max-width: 300px;
  height: 40px;
  white-space: nowrap;
}
.talent-assessment-modal .assessment-actions button {
  font-size: 11px;
}
.talent-assessment-modal .profile-details {
  border-top: 1px solid #000;
  padding: 35px 0;
}
.talent-assessment-modal .profile-details .col-md-12 {
  margin-bottom: 35px;
}
.talent-assessment-modal .profile-details .col-md-12 .availability-form .availability-calendar .calendar .year-header .col.year {
  flex-basis: 70.3%;
  width: 70.3%;
}
.talent-assessment-modal .profile-details .col-md-12 .availability-form .availability-calendar .calendar .header .col-scrollbar {
  flex-basis: calc((100% / 10) * 2 + 2.5px);
  width: calc((100% / 10) * 2 + 2.5px);
}
.talent-assessment-modal .profile-details .col-md-12 h4,
.talent-assessment-modal .profile-details .col-md-12 .dashboard-title {
  font-size: 18px !important;
  text-decoration: underline !important;
}
.talent-assessment-modal .profile-details .col-md-12 ul {
  padding: 0 0 0 25px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.talent-assessment-modal .profile-details .col-md-12 ul li {
  flex-basis: 25%;
  font-size: 12px;
  margin: 10px 0;
  padding: 0 25px 0 10px;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
.talent-assessment-modal .profile-details .col-md-12 ul li span:last-child {
  flex-grow: 1;
  text-align: left;
}
.talent-assessment-modal .profile-details .col-md-12 h5 {
  margin: 50px 0;
  font-style: italic;
}
.print-brief {
  padding: 1.5rem 2.5rem;
  display: block !important;
}
.print-brief .brief-step-section {
  display: block !important;
}
.print-brief .brief-step-section .brief-section-subtitle,
.print-brief .brief-step-section .panel-subheader {
  margin-left: auto;
  margin-right: auto;
}
.print-brief .no-break {
  page-break-inside: avoid;
}
.supplier-portal-dashboard {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
}
.supplier-portal-dashboard .container {
  margin-top: 30px;
}
.supplier-portal-dashboard .row > div {
  flex-grow: 1;
  margin-bottom: 25px;
}
.supplier-portal-dashboard .agency-profile-name {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-style: normal;
  display: -webkit-box;
  overflow: hidden;
}
.supplier-portal-dashboard .agency-profile-about {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.01em;
  color: #67676a;
  font-weight: 500!important;
  font-family: "Beatrice", sans-serif !important;
}
.supplier-portal-dashboard .agency-profile-about * {
  color: #67676a !important;
  font-weight: 500!important;
  font-family: "Beatrice", sans-serif !important;
  font-style: normal!important;
}
@media only screen and (max-width: 767px) {
  .supplier-portal-dashboard {
    padding: 30px 25px;
  }
}
@media only screen and (max-width: 529px) {
  .supplier-portal-dashboard {
    padding: 15px 0;
  }
}
.talent-supplier-projects-panel {
  display: flex;
  flex-direction: column;
  padding: 60px 30px;
  min-height: 375px;
  background-color: white;
  margin-top: 30px;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
}
.talent-supplier-agency-opp-matches-panel {
  display: flex;
  flex-direction: column;
  padding: 60px 30px;
  min-height: 375px;
  background-color: white;
  margin-top: 30px;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
}
.supplier-application-container .btn {
  min-width: unset;
}
.supplier-application-container .form-switch .col-form-label {
  display: block;
}
.supplier-application-container .talent-app-nav .step-title.inActive {
  opacity: 0.6;
}
.supplier-application-container .hidden-email-check .form-group {
  margin-bottom: 0;
}
.supplier-application-container .hidden-email-check .form-group label,
.supplier-application-container .hidden-email-check .form-group input {
  display: none;
  margin: 0;
}
.supplier-application-container .email-domain .input-group-append {
  border-bottom: none;
}
.supplier-application-container .email-domain .required-symbol {
  display: none;
}
.supplier-application-container .field .invalid-feedback {
  top: 100%;
}
.supplier-application-container .ant-select-selection-item {
  display: flex;
  align-items: stretch;
}
.supplier-application-container .ant-picker {
  padding: 0;
  border: none;
}
.talent-member-card .fa-ellipsis-v {
  color: #90a0b7;
}
.talent-member-card .discipline-skills-container .has-skill .skill.selected p::before {
  content: unset;
  font-weight: unset;
  display: unset;
  width: unset;
  margin-left: unset;
  margin-top: unset;
}
.talent-member-card .talent-default-rate {
  margin: 0 0 0 auto;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 18px;
  padding-top: 8px;
  text-align: center;
  letter-spacing: 0.01em;
  color: var(--theme-secondary, '#913ef0');
}
.talent-member-card .talent-default-rate:first-letter {
  font-size: 14px;
  vertical-align: super;
}
.talent-member-card .talent-default-rate span {
  font-size: 14px;
}
.talent-member-card .talent-member-bio {
  opacity: 0.5;
  text-align: left!important;
  margin-top: 12px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-style: normal;
  display: -webkit-box;
  overflow: hidden;
  font-size: 11px;
}
.talent-member-card .talent-member-bio:not(.unstyled) {
  opacity: 1;
  margin-bottom: 12px;
  -webkit-line-clamp: 2;
  color: #67676a;
  font-weight: 500!important;
  font-family: "Beatrice", sans-serif !important;
}
.talent-member-card .talent-member-bio:not(.unstyled) * {
  font-size: 11px;
  color: #67676a !important;
  font-weight: 500!important;
  font-family: "Beatrice", sans-serif !important;
  font-style: normal!important;
}
.talent-member-card .ant-checkbox-inner,
.talent-member-card .ant-checkbox-input {
  transform: scale(0.9);
}
.talent-member-card .ant-switch {
  height: 26px;
  line-height: 26px;
}
.talent-member-card .ant-switch-handle {
  height: 22px;
  width: 22px;
}
.talent-member-card .ant-switch-handle::before {
  border-radius: 11px;
}
.talent-member-card .ant-switch-inner {
  margin: 0 7px 0 29px;
}
.talent-member-card .ant-switch-checked .ant-switch-handle {
  left: calc(100% - 22px - 2px);
}
.talent-member-card .ant-switch-checked .ant-switch-inner {
  margin: 0 29px 0 7px;
}
.talent-member-card.pendingInvite .user-image-circle {
  background-color: rgba(0, 0, 0, 0.25) !important;
}
.talent-member-card.pendingInvite .user-image-circle .initials {
  color: white!important;
}
.talent-member-card.pendingInvite .ant-badge-status-processing {
  background-color: var(--theme-warning, '#FFB946');
}
.talent-member-card.pendingInvite .ant-badge-status-processing::after {
  border-color: var(--theme-warning, '#FFB946');
}
.talent-member-card.pendingInvite .talent-default-rate {
  color: rgba(0, 0, 0, 0.25);
}
.supplier-portal-container {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  flex: 1;
  justify-content: center !important;
  flex-direction: row !important;
}
.agency-opp-details .ant-collapse-header-text {
  flex: unset !important;
  cursor: default !important;
}
.agency-opp-details .ant-collapse-ghost > .ant-collapse-item:not(:last-child) {
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.agency-opp-details .ant-collapse > .ant-collapse-item > .ant-collapse-header {
  cursor: default;
}
.agency-opp-details .opp-talent-proposal-form .form-container .avail-fields {
  margin-left: 0;
  margin-right: 0;
}
.supplier-members-table .ant-badge-status-processing {
  background-color: var(--theme-warning, '#FFB946');
}
.supplier-members-table .ant-badge-status-processing::after {
  border-color: var(--theme-warning, '#FFB946');
}
.supplier-members-table .ant-table-thead > tr > th,
.supplier-members-table .ant-table-tbody > tr > td,
.supplier-members-table .ant-table tfoot > tr > th,
.supplier-members-table .ant-table tfoot > tr > td {
  padding: 16px 10px;
}
.agency-opp-proposal .proposal-info .nav-tabs {
  padding: 0;
}
.agency-opp-proposal .proposal-info .nav-tabs .nav-item .nav-link {
  border-left: none;
  border-right: none;
  border-top: none;
}
.agency-opp-proposal .proposal-info .nav-tabs .nav-item .nav-link.active {
  border-bottom: 1px solid var(--theme-secondary, '#913ef0');
}
.agency-opp-proposal .opp-talent-proposal-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.agency-opp-proposal .opp-talent-proposal-form .wripple-form > div form {
  justify-content: space-between;
}
.agency-opp-proposal .ant-tabs-tabpane #interviews-table-popup-boundary {
  padding: 10px;
}
.agency-opp-proposal .ant-tabs-tabpane form > div.mt-3.flex.flex-row.justify-end,
.agency-opp-proposal .ant-tabs-tabpane #interviews-table-popup-boundary > div.mt-3.flex.flex-row.justify-end {
  padding: 0 25px;
}
.agency-opp-proposal .ant-tabs-tabpane .form-container {
  padding-left: 0;
  padding-right: 0;
}
.agency-opp-proposal .ant-tabs-tabpane .proposal-tab-header {
  display: none;
}
.agency-opp-proposal .ant-tabs > .ant-tabs-nav {
  height: 48px;
}
.agency-opp-proposal .agency-messsage-container {
  position: relative;
  margin-top: 47px;
}
.agency-opp-proposal .agency-messsage-container:before {
  position: absolute;
  right: 0;
  left: 0;
  border-bottom: 1px solid #f0f0f0;
  content: '';
  top: 0;
}
.agency-opp-proposal .proposal-messages {
  position: relative;
  min-height: 500px;
  width: 350px;
  box-shadow: none!important;
  margin: 15px 0 0;
}
.agency-opp-proposal .proposal-messages .h-full {
  border: 1px solid #E5E5E5;
}
.agency-opp-proposal .proposal-messages .editor.editor-scrollable {
  min-height: 105px!important;
}
.agency-opp-proposal .proposal-messages .chat-conversation {
  border-top: 1px solid #E5E5E5;
  border-right: 1px solid #ececec;
  border-left: 1px solid #ececec;
}
.supplier-job-board-card {
  flex-grow: 1;
}
.supplier-job-board-card .job-posted-at {
  font-style: italic;
  font-weight: 300;
  font-size: 11px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #67676a;
  margin-bottom: 12px;
  margin-top: -5px;
}
.supplier-job-board-card .job-posted-at .badge {
  padding-top: 0.45em;
  padding-bottom: 0.45em;
}
.supplier-job-board-card .job-position-name {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.supplier-job-board-card .job-short-description {
  min-height: 33px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0 0 8px;
  overflow: hidden;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.01em;
  color: #67676a;
  font-weight: 500!important;
  font-family: "Beatrice", sans-serif !important;
}
.supplier-job-board-card .job-short-description * {
  color: #67676a !important;
  font-weight: 500!important;
  font-family: "Beatrice", sans-serif !important;
  font-style: normal!important;
}
.supplier-talent-edit-form .wripple-form form .field-section .field .form-group .form-control:disabled {
  cursor: not-allowed;
  background-color: #ffffff !important;
  border-bottom: 1px solid #d3d8dd !important;
}
.talent-preferences-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 375px;
  background-color: white;
  margin-top: 30px;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
}
.talent-preferences-panel > .row > div {
  padding: 30px 20px;
}
.talent-preferences-panel .work-preference-form label.col-form-label {
  font-weight: normal;
  color: #343741;
  font-size: 14px;
  margin-bottom: 0.2rem;
}
.talent-preferences-panel .work-preference-form .ant-radio-wrapper {
  max-width: 340px;
}
.talent-preferences-panel .work-preference-form .ant-radio-button-wrapper {
  min-height: 32px;
  height: unset;
  line-height: unset;
}
.talent-preferences-panel .work-preference-form .form-container {
  padding: 0;
}
.talent-preferences-panel .work-preference-form .form-container [type="number"] {
  padding-left: 8px;
  background-color: #F5F6F8;
  border-bottom: none;
}
.talent-preferences-panel .work-preference-form .form-container [type="number"]::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #707683 !important;
  opacity: 1;
  /* Firefox */
}
.talent-preferences-panel .work-preference-form .form-container [type="number"]::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #707683 !important;
  opacity: 1;
  /* Firefox */
}
.talent-preferences-panel .work-preference-form .form-container [type="number"]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #707683 !important;
}
.talent-preferences-panel .work-preference-form .form-container [type="number"]::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #707683 !important;
}
.talent-preferences-panel .work-preference-form .form-container .field.preference-checkbox {
  border-bottom: 0;
  padding-top: 4px;
  padding-left: 10px;
  margin-bottom: 0;
}
.talent-preferences-panel .work-preference-form .form-container .field.preference-checkbox .form-check-label {
  padding-left: 0;
}
.talent-preferences-panel .work-preference-form .form-container .form-checkbox [type="checkbox"] + label:before {
  font-size: 18px;
}
.talent-preferences-panel .work-preference-form .form-container .form-checkbox [type="checkbox"]:checked + label {
  background-color: transparent;
}
.talent-preferences-panel .work-preference-form .form-container .form-checkbox [type="checkbox"]:checked + label:before {
  color: var(--theme-primary, '#5f3db1');
}
.talent-preferences-panel .work-preference-form .form-container .form-checkbox [type="checkbox"]:disabled + label:before {
  color: #90a0b7;
}
.talent-preferences-panel .work-preference-form .form-container .form-check {
  padding-left: 0;
}
.talent-preferences-panel .work-preference-form .form-container label:not(.form-check-label) {
  margin-left: 0 !important;
  font-weight: bold;
  color: #343741 !important;
  font-size: 16px !important;
}
.talent-preferences-panel .work-preference-form .form-container .form-switch label span {
  text-transform: uppercase;
}
.talent-preferences-panel .work-preference-form .form-container .form-switch label .react-switch-bg {
  height: 21px !important;
  width: 51px !important;
}
.talent-preferences-panel .work-preference-form .form-container .form-switch label .react-switch-handle {
  height: 15px !important;
  width: 15px !important;
  top: 3px !important;
  left: 3px;
}
.talent-preferences-panel .work-preference-form .form-container .form-switch label:last-child {
  align-items: flex-start !important;
}
.talent-preferences-panel .work-preference-form .form-container .field-section-group {
  width: 100%;
}
.talent-preferences-panel .work-preference-form .form-container .work-preferences-section > .field-section {
  align-items: stretch;
  justify-content: flex-start;
}
.talent-preferences-panel .work-preference-form .form-container .work-preferences-section > .field-section > .field-section-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #E5E5E5;
}
.talent-preferences-panel .work-preference-form .form-container .work-preferences-section > .field-section > .field-section-group:last-of-type {
  border-bottom: none;
}
.talent-preferences-panel .work-preference-form .form-container .work-preferences-section > .field-section > .field-section-group > .field-section .field {
  margin-top: 0;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  border-bottom: none;
  padding: 0;
}
.talent-preferences-panel .work-preference-form .form-container .work-preferences-section > .field-section > .field-section-group > .field-section .field .form-group {
  margin-bottom: 0;
}
.talent-preferences-panel .work-preference-form .form-container .field {
  margin-top: 0;
  margin-bottom: 0;
  border-bottom: 1px solid #E5E5E5;
  padding-top: 18px;
}
.talent-preferences-panel .work-preference-form .form-container .field .preference-rating {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 5px 0;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.talent-preferences-panel .work-preference-form .form-container .field .preference-rating .preference-label {
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.talent-preferences-panel .work-preference-form .form-container .field .preference-rating .preference-label .label-header {
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 4px;
}
.talent-preferences-panel .work-preference-form .form-container .field .preference-rating .preference-label .label-subheader {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-top: -6px;
  font-weight: lighter;
  padding-right: 20px;
}
.talent-preferences-panel .work-preference-form .form-container .field .preference-rating select.preference-select {
  padding: 0.075rem !important;
  text-align: center;
  border: 1px solid #ced4da;
  background-color: #F5F6F8 !important;
  color: #707683 !important;
  height: unset;
  border: none;
  width: 37px;
  font-size: 13px !important;
  cursor: pointer;
}
.talent-preferences-panel .work-preference-form .form-container .field .preference-rating select.preference-select.is-invalid {
  border-color: var(--theme-danger, '#E54963');
}
.talent-preferences-panel .work-preference-form .form-container .field:last-child .preference-rating .preference-label .label-subheader {
  margin-bottom: 0;
}
.talent-preferences-panel .work-preference-form.pref-ratings-form .rating-form-header {
  border-bottom: 1px solid #E5E5E5;
}
.talent-preferences-panel .work-preference-form.pref-ratings-form .rating-form-header h3 {
  font-size: 23px;
}
.talent-preferences-panel .work-preference-form.pref-questionnaire-form .preference-checkbox .form-group {
  margin-bottom: 2px;
}
.talent-preferences-panel .work-preferences-actions {
  margin-top: 3rem;
  align-items: center;
  justify-content: flex-start;
}
.talent-preferences-panel .work-preferences-actions button {
  margin: 0 15px;
}
.job-board-container,
.supplier-job-board {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
}
.job-board-container .job-board-switch,
.supplier-job-board .job-board-switch {
  font-family: Beatrice-Bold, sans-serif;
  color: white;
  margin: 0;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 10px;
}
.job-board-container .job-board-header,
.supplier-job-board .job-board-header {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 5px;
  border-bottom: 1px solid #CECECE;
}
.job-board-container .job-board-header h4,
.supplier-job-board .job-board-header h4 {
  margin: 0 0 5px;
  font-family: "Beatrice Semibold", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #000000;
}
.job-board-container .job-board-header p,
.supplier-job-board .job-board-header p {
  font-family: "Beatrice", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 150%;
  letter-spacing: 0.01em;
}
.job-board-container .feedback-banner i,
.supplier-job-board .feedback-banner i {
  font-size: 35px;
}
.job-board-container .job-list,
.supplier-job-board .job-list {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 0 40px;
  flex-direction: row;
}
.job-board-container .job-list .jobs-group-container,
.supplier-job-board .job-list .jobs-group-container {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
}
.job-board-container .job-list .jobs-group-container .card-list-item,
.supplier-job-board .job-list .jobs-group-container .card-list-item {
  align-self: stretch;
}
.job-board-container .job-list .jobs-group-container .card-list-item .job-position-panel,
.supplier-job-board .job-list .jobs-group-container .card-list-item .job-position-panel {
  align-self: stretch;
}
.job-board-container .job-board-filters-container,
.supplier-job-board .job-board-filters-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px auto;
}
.job-board-container .job-board-filters-container .type-filters,
.supplier-job-board .job-board-filters-container .type-filters,
.job-board-container .job-board-filters-container .criteria-filters,
.supplier-job-board .job-board-filters-container .criteria-filters,
.job-board-container .job-board-filters-container .filter-actions,
.supplier-job-board .job-board-filters-container .filter-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  margin: 0 15px;
}
.job-board-container .job-board-filters-container .type-filters h5,
.supplier-job-board .job-board-filters-container .type-filters h5,
.job-board-container .job-board-filters-container .criteria-filters h5,
.supplier-job-board .job-board-filters-container .criteria-filters h5,
.job-board-container .job-board-filters-container .filter-actions h5,
.supplier-job-board .job-board-filters-container .filter-actions h5 {
  font-weight: 500;
  font-family: Beatrice, sans-serif;
  letter-spacing: 0.01em;
  font-size: 15px;
  margin: 5px 8px 10px;
}
.job-board-container .job-board-filters-container .type-filters .row-content,
.supplier-job-board .job-board-filters-container .type-filters .row-content,
.job-board-container .job-board-filters-container .criteria-filters .row-content,
.supplier-job-board .job-board-filters-container .criteria-filters .row-content,
.job-board-container .job-board-filters-container .filter-actions .row-content,
.supplier-job-board .job-board-filters-container .filter-actions .row-content {
  margin: 0 -8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0 8px 20px;
}
.job-board-container .job-board-filters-container .type-filters .row-content .form-group,
.supplier-job-board .job-board-filters-container .type-filters .row-content .form-group,
.job-board-container .job-board-filters-container .criteria-filters .row-content .form-group,
.supplier-job-board .job-board-filters-container .criteria-filters .row-content .form-group,
.job-board-container .job-board-filters-container .filter-actions .row-content .form-group,
.supplier-job-board .job-board-filters-container .filter-actions .row-content .form-group {
  margin-bottom: 0;
}
.job-board-container .job-board-filters-container .type-filters .row-content .form-group label,
.supplier-job-board .job-board-filters-container .type-filters .row-content .form-group label,
.job-board-container .job-board-filters-container .criteria-filters .row-content .form-group label,
.supplier-job-board .job-board-filters-container .criteria-filters .row-content .form-group label,
.job-board-container .job-board-filters-container .filter-actions .row-content .form-group label,
.supplier-job-board .job-board-filters-container .filter-actions .row-content .form-group label {
  margin: 0;
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  cursor: pointer;
}
.job-board-container .job-board-filters-container .type-filters .row-content .form-group label span,
.supplier-job-board .job-board-filters-container .type-filters .row-content .form-group label span,
.job-board-container .job-board-filters-container .criteria-filters .row-content .form-group label span,
.supplier-job-board .job-board-filters-container .criteria-filters .row-content .form-group label span,
.job-board-container .job-board-filters-container .filter-actions .row-content .form-group label span,
.supplier-job-board .job-board-filters-container .filter-actions .row-content .form-group label span {
  margin: 0 15px 0 0;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #000;
  transition: all 150ms ease-in;
}
.job-board-container .job-board-filters-container .type-filters .row-content .form-group label span.active,
.supplier-job-board .job-board-filters-container .type-filters .row-content .form-group label span.active,
.job-board-container .job-board-filters-container .criteria-filters .row-content .form-group label span.active,
.supplier-job-board .job-board-filters-container .criteria-filters .row-content .form-group label span.active,
.job-board-container .job-board-filters-container .filter-actions .row-content .form-group label span.active,
.supplier-job-board .job-board-filters-container .filter-actions .row-content .form-group label span.active {
  font-weight: 400;
  color: var(--theme-secondary, '#913ef0');
}
.job-board-container .job-board-filters-container .filter-actions .row-content,
.supplier-job-board .job-board-filters-container .filter-actions .row-content {
  align-self: stretch;
}
.job-board-container .job-board-filters-container .filter-actions .row-content .apply-filters-btn,
.supplier-job-board .job-board-filters-container .filter-actions .row-content .apply-filters-btn {
  margin: 0 10px 0;
  height: 40px;
}
.job-board-container .job-board-filters-container .filter-button-dropdown,
.supplier-job-board .job-board-filters-container .filter-button-dropdown {
  display: flex;
  flex-direction: column;
  position: relative;
}
.job-board-container .job-board-filters-container .filter-button,
.supplier-job-board .job-board-filters-container .filter-button {
  padding: 0 8px 0 !important;
  height: 40px;
  background: white;
  border: none;
  box-shadow: none !important;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 11px !important;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.01em;
  color: #000000 !important;
  margin: 0 8px 0;
}
.job-board-container .job-board-filters-container .filter-button .filter-button-label.active,
.supplier-job-board .job-board-filters-container .filter-button .filter-button-label.active {
  color: black;
  font-weight: 700;
}
.job-board-container .job-board-filters-container .filter-button > span,
.supplier-job-board .job-board-filters-container .filter-button > span {
  margin: 0 3px 0 0;
}
.job-board-container .job-board-filters-container .filter-button::after,
.supplier-job-board .job-board-filters-container .filter-button::after {
  margin-left: 4px;
  padding-left: 0;
}
.job-board-container .job-board-filters-container .filter-button.disabled,
.supplier-job-board .job-board-filters-container .filter-button.disabled {
  background-color: #C2CFE0 !important;
  border-color: #C2CFE0 !important;
  opacity: 0.8;
}
.job-board-container .job-board-filters-container .help-text,
.supplier-job-board .job-board-filters-container .help-text {
  padding: 0 10px;
  height: 35px;
  margin-top: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  overflow: visible;
}
.job-board-container .job-board-filters-container .help-text p,
.supplier-job-board .job-board-filters-container .help-text p {
  font-size: 11px;
  white-space: nowrap;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu {
  min-width: 348px;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu > .dropdown-item span,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu > .dropdown-item span {
  font-weight: 400;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .dropdown-header .text-bold,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .dropdown-header .text-bold {
  color: #000;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-option-form,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-option-form {
  pointer-events: all;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-option-form:active,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-option-form:active {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-option-form.checked,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-option-form.checked {
  background-color: #f8f9fa;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-option-form .form-checkbox,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-option-form .form-checkbox {
  flex: 1;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-option-form .form-checkbox label,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-option-form .form-checkbox label {
  flex: 1;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-option-form .form-checkbox [type="checkbox"]:checked + label,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-option-form .form-checkbox [type="checkbox"]:checked + label {
  background-color: transparent;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-option-form .form-checkbox [type="checkbox"]:checked + label::before,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-option-form .form-checkbox [type="checkbox"]:checked + label::before {
  color: var(--theme-warning, '#FFB946');
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-option-form.all-filter,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-option-form.all-filter {
  padding: 1rem 15px 0.5rem !important;
  background-color: white!important;
  justify-content: flex-start;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-option-form.all-filter .toggle-title,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-option-form.all-filter .toggle-title {
  font-family: "Beatrice Semibold", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  color: #90a0b7;
  margin-right: auto;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-option-form.all-filter .toggle-select,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-option-form.all-filter .toggle-select {
  font-family: "Beatrice Semibold", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--theme-secondary, '#913ef0');
  margin: 0 6px;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-option-form.all-filter .toggle-select:last-child,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-option-form.all-filter .toggle-select:last-child {
  margin-right: 0;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-section-select,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-section-select {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-search-input,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-search-input {
  min-width: 280px;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-search-input.active,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-search-input.active,
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-search-input:active,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-search-input:active {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-search-input .react-autosuggest__container,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-search-input .react-autosuggest__container {
  pointer-events: all;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-search-input .input-group,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-search-input .input-group {
  height: 30px;
  position: relative;
  display: flex;
  align-items: center;
  width: 300px;
  box-shadow: #95899b 0px 0px 0px 1px inset;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 0 5px;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-search-input .input-group .input-group-prepend,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-search-input .input-group .input-group-prepend,
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-search-input .input-group .input-group-append,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-search-input .input-group .input-group-append {
  border: none !important;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-search-input input,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-search-input input {
  flex: 1 1 auto;
  height: 100%;
  background-color: transparent !important;
  line-height: normal !important;
  box-shadow: none !important;
  outline: none !important;
  display: inline-block !important;
  font-size: 14px !important;
  padding: 0 !important;
  width: 70% !important;
  color: #000 !important;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-search-input input:focus,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-search-input input:focus {
  outline: none !important;
  box-shadow: none !important;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-search-input ::-moz-placeholder, .supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-search-input ::-moz-placeholder {
  color: #707683 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  opacity: 1;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-search-input ::placeholder,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-search-input ::placeholder {
  color: #707683 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  opacity: 1;
}
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-search-input :-ms-input-placeholder,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-search-input :-ms-input-placeholder,
.job-board-container .job-board-filters-container .filter-dropdown-menu .filter-search-input ::-ms-input-placeholder,
.supplier-job-board .job-board-filters-container .filter-dropdown-menu .filter-search-input ::-ms-input-placeholder {
  color: #707683 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}
.job-position-panel {
  min-height: 500px;
  width: inherit;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  border-top: 10px solid var(--theme-primary, '#5f3db1');
  background-color: white;
  box-shadow: 6px 0 18px rgba(0, 0, 0, 0.06);
  margin-bottom: 25px;
}
.job-position-panel a:hover {
  text-decoration: none;
}
.job-position-panel.preview {
  height: unset;
}
.job-position-panel .job-position-banner {
  min-height: 180px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: unset;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.job-position-panel .job-position-banner * {
  text-decoration: none;
}
.job-position-panel .job-position-banner:hover,
.job-position-panel .job-position-banner:focus,
.job-position-panel .job-position-banner:visited,
.job-position-panel .job-position-banner:active {
  color: 'unset';
  text-decoration: none;
}
.job-position-panel .job-position-banner:hover *,
.job-position-panel .job-position-banner:focus *,
.job-position-panel .job-position-banner:visited *,
.job-position-panel .job-position-banner:active * {
  text-decoration: none;
}
.job-position-panel .job-position-banner .discipline-match {
  background-color: #2ED47A;
  padding: 10px 15px;
}
.job-position-panel .job-position-banner .discipline-match.no-match {
  background-color: #707683;
}
.job-position-panel .job-position-banner .discipline-match.match-proposal {
  background-color: #2ED47A;
}
.job-position-panel .job-position-banner .discipline-match p {
  color: white;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  font-family: "Beatrice Semibold", sans-serif;
  font-style: normal;
  font-size: 12px;
  line-height: 19px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
}
.job-position-panel .job-position-banner .discipline-match.no-match {
  background-color: #90a0b7;
}
.job-position-panel .job-position-banner .banner-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.06);
  height: inherit;
}
.job-position-panel .job-position-banner .job-position-client-logo {
  position: absolute;
  z-index: 3;
  bottom: -30px;
  right: 20px;
  height: 100px;
  width: 100px;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background-size: 65%;
  background-position: center center;
  background-color: white;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.job-position-panel .job-position-banner .job-position-client-logo .banner-loading {
  border-bottom: none;
}
.job-position-panel .job-panel-details {
  padding: 15px 15px 5px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-grow: 1;
  flex-direction: column;
}
.job-position-panel .job-panel-details .job-details-header {
  display: flex;
  flex-direction: column;
}
.job-position-panel .job-panel-details .job-details-header .job-posted-at {
  font-style: italic;
  font-weight: 300;
  font-size: 11px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #67676a;
  margin-bottom: 12px;
  margin-top: -5px;
}
.job-position-panel .job-panel-details .job-details-header .job-posted-at .badge {
  padding-top: 0.45em;
  padding-bottom: 0.45em;
}
.job-position-panel .job-panel-details .job-details-header .job-position-name {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 2px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.job-position-panel .job-panel-details .job-details-header .job-discipline {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #67676a;
  margin-bottom: 0;
  text-transform: capitalize;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  font-family: Poppins, sans-serif;
}
.job-position-panel .job-panel-details .job-details-header .job-short-description {
  min-height: 33px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 18px 0 22px;
  overflow: hidden;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.01em;
  color: #67676a;
  font-weight: 500!important;
  font-family: "Beatrice", sans-serif !important;
}
.job-position-panel .job-panel-details .job-details-header .job-short-description * {
  color: #67676a !important;
  font-weight: 500!important;
  font-family: "Beatrice", sans-serif !important;
  font-style: normal!important;
  display: inline;
}
.job-position-panel .job-panel-details .job-detail-rows {
  padding-top: 10px;
  border-top: 0.5px solid rgba(0, 0, 0, 0.2);
}
.job-position-panel .job-panel-details .job-detail-rows .job-detail-row {
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 0;
}
.job-position-panel .job-panel-details .job-detail-rows .job-detail-row p {
  margin-bottom: 0;
  color: #67676a;
}
.job-position-panel .job-panel-details .job-detail-rows .job-detail-row .job-detail-label {
  font-style: normal;
  text-align: right;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #343741;
}
.job-position-panel .job-panel-details .job-detail-rows .job-detail-row .job-detail-value {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 22px;
  text-align: right;
  letter-spacing: 0.01em;
}
.job-position-panel .job-actions {
  height: 100px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  flex-direction: column;
  width: 100%;
}
.job-position-panel .job-actions .refer-friend {
  margin: 0;
  margin-bottom: -20px;
  text-align: left;
  font-size: 13px;
  color: var(--theme-primary, '#5f3db1');
}
.job-position-panel .job-actions button {
  margin: 0;
  font-size: 13px;
  height: 42px;
  padding: 0;
  letter-spacing: 0.01em;
}
.job-position-panel .job-actions button:nth-child(2) {
  margin-top: 15px;
}
.job-position-panel .job-actions button:nth-child(3) {
  margin-top: 15px;
}
.job-position-panel .job-actions.flex-column-reverse button:nth-child(1) {
  margin-top: 15px;
}
.job-position-panel .job-actions.flex-column-reverse button:nth-child(2) {
  margin-top: 0;
}
.job-position-panel .job-actions .btn-outline-success {
  border-width: 2px;
  border-color: #2ED47A;
  color: #2ED47A;
  font-weight: 600;
  text-transform: uppercase;
}
.job-position-panel .job-actions .btn-outline-success:hover,
.job-position-panel .job-actions .btn-outline-success:focus {
  background-color: #2ED47A;
  color: white;
  border-width: unset;
}
.job-position-panel .job-buttons-container {
  padding: 0px 15px 25px;
  justify-self: flex-end;
  display: flex;
  width: 100%;
  /* flex-direction: column; */
  align-items: flex-end;
  flex: 1;
}
@media only screen and (max-width: 720px) {
  .job-list {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 0 5px 0;
    white-space: normal;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
@media only screen and (min-width: 975px) {
  .job-board-container .job-board-filters-container .filter-actions {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 529px) {
  .job-board-container .job-board-header h4 {
    font-size: 1.35rem;
  }
  .job-board-container .job-board-filters-container {
    display: block;
    max-width: 375px;
  }
  .job-board-container .job-board-filters-container .type-filters .row-content,
  .job-board-container .job-board-filters-container .criteria-filters .row-content,
  .job-board-container .job-board-filters-container .filter-actions .row-content {
    display: block;
  }
  .job-board-container .job-board-filters-container .type-filters .row-content button,
  .job-board-container .job-board-filters-container .criteria-filters .row-content button,
  .job-board-container .job-board-filters-container .filter-actions .row-content button {
    width: calc(100% - 16px);
    margin-top: 8px;
  }
  .job-board-container .job-board-filters-container .filter-actions .row-content .apply-filters-btn:last-child {
    margin-top: 20px;
  }
  .job-board-container .job-board-filters-container .filter-dropdown-menu .dropdown-item {
    padding: 0 8px;
    white-space: normal;
  }
}
.job-match-loading {
  flex: 1;
  min-height: 80vh;
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
}
.preferences-reminder,
.job-match-score-panel,
.proposal-tab-content {
  background-color: white;
}
.preferences-reminder .reminder-header,
.job-match-score-panel .reminder-header,
.proposal-tab-content .reminder-header,
.preferences-reminder .job-match-header,
.job-match-score-panel .job-match-header,
.proposal-tab-content .job-match-header {
  border-bottom: 2px solid #E5EBF1;
  display: flex;
  align-items: flex-start;
  padding: 20px;
  color: white;
  background-color: #000000;
}
.preferences-reminder .reminder-header > *,
.job-match-score-panel .reminder-header > *,
.proposal-tab-content .reminder-header > *,
.preferences-reminder .job-match-header > *,
.job-match-score-panel .job-match-header > *,
.proposal-tab-content .job-match-header > * {
  margin-bottom: 0;
  font-style: normal;
  text-align: left;
  font-size: 20px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: white;
}
.preferences-reminder .job-match-scores-container,
.job-match-score-panel .job-match-scores-container,
.proposal-tab-content .job-match-scores-container,
.preferences-reminder .job-profile-summary-container,
.job-match-score-panel .job-profile-summary-container,
.proposal-tab-content .job-profile-summary-container {
  padding: 0;
  position: relative;
}
.preferences-reminder .job-match-scores-container h1,
.job-match-score-panel .job-match-scores-container h1,
.proposal-tab-content .job-match-scores-container h1,
.preferences-reminder .job-profile-summary-container h1,
.job-match-score-panel .job-profile-summary-container h1,
.proposal-tab-content .job-profile-summary-container h1 {
  font-weight: 900;
  font-size: 32px;
  margin-bottom: 15px;
}
.preferences-reminder .job-match-scores-container > p,
.job-match-score-panel .job-match-scores-container > p,
.proposal-tab-content .job-match-scores-container > p,
.preferences-reminder .job-profile-summary-container > p,
.job-match-score-panel .job-profile-summary-container > p,
.proposal-tab-content .job-profile-summary-container > p {
  margin: 15px 0;
}
.preferences-reminder .job-match-scores-container .col,
.job-match-score-panel .job-match-scores-container .col,
.proposal-tab-content .job-match-scores-container .col,
.preferences-reminder .job-profile-summary-container .col,
.job-match-score-panel .job-profile-summary-container .col,
.proposal-tab-content .job-profile-summary-container .col {
  flex: 1;
}
.preferences-reminder .job-match-scores-container .job-match-form,
.job-match-score-panel .job-match-scores-container .job-match-form,
.proposal-tab-content .job-match-scores-container .job-match-form,
.preferences-reminder .job-profile-summary-container .job-match-form,
.job-match-score-panel .job-profile-summary-container .job-match-form,
.proposal-tab-content .job-profile-summary-container .job-match-form,
.preferences-reminder .job-match-scores-container .job-profile-summary,
.job-match-score-panel .job-match-scores-container .job-profile-summary,
.proposal-tab-content .job-match-scores-container .job-profile-summary,
.preferences-reminder .job-profile-summary-container .job-profile-summary,
.job-match-score-panel .job-profile-summary-container .job-profile-summary,
.proposal-tab-content .job-profile-summary-container .job-profile-summary {
  box-shadow: 6px 0 18px rgba(0, 0, 0, 0.06);
  padding: 25px 20px 0;
}
.preferences-reminder .job-match-scores-container .match-score-img,
.job-match-score-panel .job-match-scores-container .match-score-img,
.proposal-tab-content .job-match-scores-container .match-score-img,
.preferences-reminder .job-profile-summary-container .match-score-img,
.job-match-score-panel .job-profile-summary-container .match-score-img,
.proposal-tab-content .job-profile-summary-container .match-score-img {
  align-self: stretch;
  align-items: center;
  justify-content: center;
}
.preferences-reminder .job-match-scores-container .match-score-img p,
.job-match-score-panel .job-match-scores-container .match-score-img p,
.proposal-tab-content .job-match-scores-container .match-score-img p,
.preferences-reminder .job-profile-summary-container .match-score-img p,
.job-match-score-panel .job-profile-summary-container .match-score-img p,
.proposal-tab-content .job-profile-summary-container .match-score-img p {
  font-family: "Beatrice Semibold", sans-serif;
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 150%;
}
.preferences-reminder .job-match-scores-container .match-score-img img,
.job-match-score-panel .job-match-scores-container .match-score-img img,
.proposal-tab-content .job-match-scores-container .match-score-img img,
.preferences-reminder .job-profile-summary-container .match-score-img img,
.job-match-score-panel .job-profile-summary-container .match-score-img img,
.proposal-tab-content .job-profile-summary-container .match-score-img img {
  padding: 25px 50px;
  max-width: 50%;
}
.preferences-reminder .job-match-scores-container .col:last-child,
.job-match-score-panel .job-match-scores-container .col:last-child,
.proposal-tab-content .job-match-scores-container .col:last-child,
.preferences-reminder .job-profile-summary-container .col:last-child,
.job-match-score-panel .job-profile-summary-container .col:last-child,
.proposal-tab-content .job-profile-summary-container .col:last-child {
  box-shadow: none;
}
.preferences-reminder .job-match-scores-container.disabled .col,
.job-match-score-panel .job-match-scores-container.disabled .col,
.proposal-tab-content .job-match-scores-container.disabled .col,
.preferences-reminder .job-profile-summary-container.disabled .col,
.job-match-score-panel .job-profile-summary-container.disabled .col,
.proposal-tab-content .job-profile-summary-container.disabled .col {
  opacity: 0.6;
  pointer-events: none!important;
}
.preferences-reminder .job-match-scores-container.disabled .col *,
.job-match-score-panel .job-match-scores-container.disabled .col *,
.proposal-tab-content .job-match-scores-container.disabled .col *,
.preferences-reminder .job-profile-summary-container.disabled .col *,
.job-match-score-panel .job-profile-summary-container.disabled .col *,
.proposal-tab-content .job-profile-summary-container.disabled .col * {
  pointer-events: none!important;
}
.preferences-reminder .job-match-scores-container .match-updating,
.job-match-score-panel .job-match-scores-container .match-updating,
.proposal-tab-content .job-match-scores-container .match-updating,
.preferences-reminder .job-profile-summary-container .match-updating,
.job-match-score-panel .job-profile-summary-container .match-updating,
.proposal-tab-content .job-profile-summary-container .match-updating {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.preferences-reminder .job-profile-summary-container .job-profile-summary .profile-progress-header,
.job-match-score-panel .job-profile-summary-container .job-profile-summary .profile-progress-header,
.proposal-tab-content .job-profile-summary-container .job-profile-summary .profile-progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row wrap;
  margin-bottom: 5px;
}
.preferences-reminder .job-profile-summary-container .job-profile-summary .profile-progress-header .profile-progress,
.job-match-score-panel .job-profile-summary-container .job-profile-summary .profile-progress-header .profile-progress,
.proposal-tab-content .job-profile-summary-container .job-profile-summary .profile-progress-header .profile-progress {
  margin: 0;
  position: relative;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.preferences-reminder .job-profile-summary-container .job-profile-summary .profile-progress-header .profile-progress .progress-title,
.job-match-score-panel .job-profile-summary-container .job-profile-summary .profile-progress-header .profile-progress .progress-title,
.proposal-tab-content .job-profile-summary-container .job-profile-summary .profile-progress-header .profile-progress .progress-title {
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Beatrice, sans-serif;
  font-weight: 600;
}
.preferences-reminder .job-profile-summary-container .job-profile-summary .profile-progress-header .profile-progress .RSPBprogressBar,
.job-match-score-panel .job-profile-summary-container .job-profile-summary .profile-progress-header .profile-progress .RSPBprogressBar,
.proposal-tab-content .job-profile-summary-container .job-profile-summary .profile-progress-header .profile-progress .RSPBprogressBar {
  border-radius: 1px;
}
.preferences-reminder .job-profile-summary-container .job-profile-summary .profile-progress-header .profile-progress .RSPBprogressBar .RSPBprogression,
.job-match-score-panel .job-profile-summary-container .job-profile-summary .profile-progress-header .profile-progress .RSPBprogressBar .RSPBprogression,
.proposal-tab-content .job-profile-summary-container .job-profile-summary .profile-progress-header .profile-progress .RSPBprogressBar .RSPBprogression {
  border-radius: 1px;
}
.preferences-reminder .job-profile-summary-container .job-profile-summary .profile-sections-progress,
.job-match-score-panel .job-profile-summary-container .job-profile-summary .profile-sections-progress,
.proposal-tab-content .job-profile-summary-container .job-profile-summary .profile-sections-progress {
  display: flex;
  flex: 1;
  align-items: stretch;
  flex-direction: column;
  justify-content: space-evenly;
}
.preferences-reminder .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item,
.job-match-score-panel .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item,
.proposal-tab-content .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  border-bottom: 1px solid #E5E5E5;
  padding: 0.8rem 0.3rem;
}
.preferences-reminder .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-completion,
.job-match-score-panel .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-completion,
.proposal-tab-content .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-completion {
  margin-right: 15px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}
.preferences-reminder .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-completion i,
.job-match-score-panel .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-completion i,
.proposal-tab-content .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-completion i {
  font-size: 14px;
  line-height: 20px;
  margin-right: 8px;
}
.preferences-reminder .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-completion p,
.job-match-score-panel .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-completion p,
.proposal-tab-content .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-completion p,
.preferences-reminder .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-completion .section-link,
.job-match-score-panel .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-completion .section-link,
.proposal-tab-content .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-completion .section-link {
  font-size: 13px;
  line-height: 20px;
  color: black;
  margin: 0;
}
.preferences-reminder .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-summary p,
.job-match-score-panel .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-summary p,
.proposal-tab-content .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-summary p {
  margin-bottom: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 20px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  color: #90A0B7;
}
.preferences-reminder .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-updates,
.job-match-score-panel .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-updates,
.proposal-tab-content .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-updates {
  margin-left: auto;
}
.preferences-reminder .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-updates .header-last-updated,
.job-match-score-panel .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-updates .header-last-updated,
.proposal-tab-content .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-updates .header-last-updated {
  padding-left: 24px;
}
.preferences-reminder .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-updates .header-last-updated p,
.job-match-score-panel .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-updates .header-last-updated p,
.proposal-tab-content .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-updates .header-last-updated p {
  white-space: nowrap;
  line-height: 20px;
  font-size: 11.5px;
  color: #90a0b7;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
.preferences-reminder .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-updates .header-last-updated p i,
.job-match-score-panel .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-updates .header-last-updated p i,
.proposal-tab-content .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-updates .header-last-updated p i {
  color: #90a0b7;
}
.preferences-reminder .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-updates .header-last-updated p.text-danger,
.job-match-score-panel .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-updates .header-last-updated p.text-danger,
.proposal-tab-content .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-updates .header-last-updated p.text-danger {
  color: var(--theme-danger, '#E54963');
}
.preferences-reminder .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-updates .header-last-updated p.text-danger i,
.job-match-score-panel .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-updates .header-last-updated p.text-danger i,
.proposal-tab-content .job-profile-summary-container .job-profile-summary .profile-sections-progress .section-progress-item .section-updates .header-last-updated p.text-danger i {
  color: var(--theme-danger, '#E54963');
}
.preferences-reminder .job-match-footer,
.job-match-score-panel .job-match-footer,
.proposal-tab-content .job-match-footer {
  border-top: 2px solid #E5EBF1;
  display: flex;
  align-items: center;
  padding: 20px;
}
.preferences-reminder .overall-matching,
.job-match-score-panel .overall-matching,
.proposal-tab-content .overall-matching {
  margin-bottom: 15px;
}
.preferences-reminder p.overall-progress,
.job-match-score-panel p.overall-progress,
.proposal-tab-content p.overall-progress {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 134.3%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 5px;
}
.preferences-reminder .RSPBprogressBar,
.job-match-score-panel .RSPBprogressBar,
.proposal-tab-content .RSPBprogressBar,
.preferences-reminder .RSPBprogressBar .RSPBprogression,
.job-match-score-panel .RSPBprogressBar .RSPBprogression,
.proposal-tab-content .RSPBprogressBar .RSPBprogression {
  border-radius: 0 !important;
}
.job-match-scores-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.job-match-scores-container > h3 {
  flex-grow: 1;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  font-size: 15px;
  margin-bottom: 5px;
  text-decoration: underline;
  line-height: 134.3%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #000000;
}
.job-match-scores-container .job-match-header {
  background-color: transparent;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0;
  margin-bottom: 25px;
}
.job-match-scores-container .job-match-header .score-progress {
  max-width: 450px;
  flex-grow: 1;
}
.job-match-scores-container .job-match-header > h4 {
  flex-grow: 1;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
  line-height: 134.3%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #000000;
}
.job-match-scores-container .job-match-scores {
  padding: 15px 20px 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.job-match-scores-container .job-match-scores > h4 {
  flex-grow: 1;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  text-align: left;
  font-size: 14px;
  line-height: 134.3%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 1rem;
}
.job-match-scores-container .job-match-scores .match-section {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5EBF1;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.job-match-scores-container .job-match-scores .match-section:last-child {
  border-bottom: none;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .job-match-scores-container .job-match-scores .match-section .metric-job-scores {
    border-right: none !important;
  }
}
.job-match-scores-container .job-match-scores .match-section .metric-job-scores {
  align-items: center;
  justify-content: center;
  position: relative;
  align-content: center;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  border-right: 2px solid #E5EBF1;
}
.job-match-scores-container .job-match-scores .match-section .metric-job-scores .job-metric-match {
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-height: 120px;
}
.job-match-scores-container .job-match-scores .match-section .metric-job-scores .job-metric-match > p {
  margin-bottom: 0;
  flex-basis: 45%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.job-match-scores-container .job-match-scores .match-section .metric-job-scores .job-metric-match > p span {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin-right: 5px;
}
.job-match-scores-container .job-match-scores .match-section .metric-job-scores .job-metric-match .metric-circle {
  max-width: 120px;
  align-self: unset;
}
.job-match-scores-container .job-match-scores .match-section .metric-job-scores .job-metric-match .metric-circle p {
  margin-bottom: 0;
}
.job-match-scores-container .job-match-scores .match-section .metric-job-scores .job-metric-match .metric-circle p span {
  display: flex;
}
.job-match-scores-container .job-match-scores .match-section .metric-job-scores .job-metric-match.disabled .circle-progress-text p {
  white-space: normal;
  max-width: 140px;
  line-height: normal;
  font-size: 11px;
  padding: 0 12px;
}
.job-match-scores-container .job-match-scores .match-section .form-section {
  justify-content: flex-start;
  flex-grow: 1;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 20px;
}
.job-match-scores-container .job-match-scores .match-section .form-section:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.job-match-scores-container .job-match-scores .match-section .form-section > h5 {
  display: none;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 100%;
  text-align: center;
  letter-spacing: 0.01em;
  color: #000000;
  margin: 0 auto 15px;
}
.job-match-scores-container .job-match-scores .match-section .form-section .feedback-banner {
  min-height: unset;
}
.job-match-scores-container .job-match-scores .match-section .form-section .feedback-banner i {
  display: none;
}
.job-match-scores-container .job-match-scores .match-section .form-section .feedback-banner p {
  font-style: italic;
  font-size: 11px;
  color: var(--theme-warning);
  margin-bottom: 1.5rem;
  font-weight: bold;
}
.job-match-scores-container .discipline-skills-container {
  display: flex;
  position: relative;
  flex-flow: row wrap;
  align-items: stretch;
  padding: 0 15px;
  justify-content: flex-start;
}
.job-match-scores-container .discipline-skills-container .skill {
  height: unset;
  min-height: 30px;
}
.job-match-scores-container .discipline-skills-container .skill .s-divider,
.job-match-scores-container .discipline-skills-container .skill i {
  display: none !important;
}
.job-match-scores-container .discipline-skills-container .skill p {
  pointer-events: unset;
}
.job-match-scores-container .discipline-skills-container .skill.skill-result {
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}
.job-match-scores-container .discipline-skills-container .skill.skill-result .s-divider,
.job-match-scores-container .discipline-skills-container .skill.skill-result i {
  display: flex !important;
}
.job-match-scores-container .discipline-skills-container .has-skill .skill.selected p::before {
  content: "\2022";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: var(--theme-success, '#5ae399');
  /* Change the color */
  font-weight: bold;
  /* If you want it to be bold */
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 0.6em;
  /* Also needed for space (tweak if needed) */
  font-size: 33px;
  margin-left: -0.3em;
  /* Also needed for space (tweak if needed) */
  margin-top: -2px;
}
.job-match-scores-container .dropdown {
  display: block;
  min-width: 118px;
}
.job-match-scores-container .dropdown > span:first-child {
  min-height: 67px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  pointer-events: visible;
  min-width: 118px;
}
.job-match-scores-container .dropdown > span:first-child .skill:first-child,
.job-match-scores-container .dropdown > span:first-child .experience:first-child {
  z-index: 2;
  min-width: 118px;
}
.job-match-scores-container .dropdown .skill.skill-result,
.job-match-scores-container .dropdown .experience.experience-result {
  transition: all 0s linear !important;
  margin-top: -30px !important;
  background-color: white;
  margin-bottom: 15px;
  padding-top: 16px;
  height: 40px;
  z-index: 1;
  border-radius: 0 0 20px 20px!important;
  text-align: center;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: row;
  min-width: 118px;
}
.job-match-scores-container .dropdown .skill.skill-result i,
.job-match-scores-container .dropdown .experience.experience-result i,
.job-match-scores-container .dropdown .skill.skill-result p,
.job-match-scores-container .dropdown .experience.experience-result p {
  padding-left: 3px !important;
  padding-right: 3px !important;
}
.job-match-scores-container .dropdown.show > span:first-child {
  display: unset;
}
.job-match-scores-container .dropdown.show > span:first-child .experience:first-child,
.job-match-scores-container .dropdown.show > span:first-child .skill:first-child {
  z-index: 1001;
  min-width: 118px;
}
.job-match-scores-container .dropdown.show .experience:first-of-type,
.job-match-scores-container .dropdown.show .skill:first-of-type {
  transition: z-index 0s linear;
  z-index: 1001;
  background-color: white;
}
.job-match-scores-container .dropdown.show .experience:first-of-type.selected,
.job-match-scores-container .dropdown.show .skill:first-of-type.selected {
  background-color: var(--theme-secondary, '#913ef0');
}
.job-match-scores-container .dropdown.show .dropdown-menu {
  background: var(--theme-primary-darker);
  right: 0;
  margin-right: 15px;
  padding-top: 15px;
  margin-top: -8px;
  border: 1px;
  padding-bottom: 0;
  min-width: unset;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  transform: translate3d(0px, 24px, 0px) !important;
}
.job-match-scores-container .dropdown.show .dropdown-menu .experience,
.job-match-scores-container .dropdown.show .dropdown-menu .skill {
  transition: none !important;
  margin: 0 !important;
  width: 100%;
  display: flex;
  background-color: transparent !important;
  border: none !important;
}
.job-match-scores-container .dropdown.show .dropdown-menu .experience *,
.job-match-scores-container .dropdown.show .dropdown-menu .skill * {
  transition: none !important;
  color: white;
}
.job-match-scores-container .dropdown.show .dropdown-menu .experience p,
.job-match-scores-container .dropdown.show .dropdown-menu .skill p {
  flex: 1;
  text-align: center;
}
.job-match-scores-container .dropdown.show .dropdown-menu .experience:active,
.job-match-scores-container .dropdown.show .dropdown-menu .skill:active,
.job-match-scores-container .dropdown.show .dropdown-menu .experience:focus,
.job-match-scores-container .dropdown.show .dropdown-menu .skill:focus {
  border: none !important;
}
.job-match-scores-container .dropdown.show .dropdown-menu .experience:active *,
.job-match-scores-container .dropdown.show .dropdown-menu .skill:active *,
.job-match-scores-container .dropdown.show .dropdown-menu .experience:focus *,
.job-match-scores-container .dropdown.show .dropdown-menu .skill:focus * {
  color: white !important;
}
.job-match-scores-container .dropdown.show .dropdown-menu .experience:hover *,
.job-match-scores-container .dropdown.show .dropdown-menu .skill:hover * {
  color: var(--theme-secondary, '#913ef0');
}
.job-match-scores-container .dropdown.show .dropdown-menu .experience .s-divider,
.job-match-scores-container .dropdown.show .dropdown-menu .skill .s-divider,
.job-match-scores-container .dropdown.show .dropdown-menu .experience i,
.job-match-scores-container .dropdown.show .dropdown-menu .skill i {
  display: none;
}
.job-match-scores-container .dropdown.show .dropdown-menu .dropdown-item {
  padding: 0 !important;
  width: 100%;
  border-bottom: 1px solid white !important;
}
.job-match-scores-container .dropdown.show .dropdown-menu .dropdown-item.active {
  background-color: var(--theme-primary-darkest);
  pointer-events: none;
}
.job-match-scores-container .dropdown.show .dropdown-menu .dropdown-item.active * {
  pointer-events: none;
  color: white!important;
}
.job-match-scores-container .dropdown.show .dropdown-menu .dropdown-item:last-child {
  border-width: 0;
  border-bottom: none !important;
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
}
.job-match-scores-container .dropdown.show .dropdown-menu .dropdown-item:focus {
  outline: none;
}
.job-match-scores-container.minimal .job-match-scores {
  box-shadow: none;
}
@media only screen and (max-width: 767px) {
  .job-match-scores-container .job-match-scores .match-section {
    flex-direction: column;
  }
  .job-match-scores-container .job-match-scores .match-section .metric-job-scores {
    margin-bottom: 20px;
  }
}
.job-match-details-modal > .ant-modal-content .ant-modal-close,
.preferences-update-reminder-modal > .ant-modal-content .ant-modal-close {
  display: none;
  pointer-events: none;
}
.job-match-details-modal > .ant-modal-content > .ant-modal-body,
.preferences-update-reminder-modal > .ant-modal-content > .ant-modal-body {
  padding: 0;
}
.job-match-details-modal > .ant-modal-content > .ant-modal-body .proposal-container .proposal-step-header,
.preferences-update-reminder-modal > .ant-modal-content > .ant-modal-body .proposal-container .proposal-step-header {
  margin: 0 0 0.5rem;
}
.job-profile-resume-form .form-container {
  padding: 15px 10px;
}
.job-profile-resume-form .form-container .file-upload-container label {
  margin-bottom: 15px;
}
.job-details-page-container {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
}
.job-details-page-container > .btn-link-dark {
  min-width: 100%;
  margin: 10px 15px;
  height: 35px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding-top: 0!important;
  padding-bottom: 0!important;
  font-size: 13px;
  color: #67676a !important;
}
.job-details-page-container > .btn-link-dark:hover,
.job-details-page-container > .btn-link-dark:focus,
.job-details-page-container > .btn-link-dark:active {
  color: black!important;
  font-weight: 600!important;
}
.job-details-page {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin: 0 auto 30px;
  max-width: 1200px;
}
.job-details-page .job-details-candidate-score {
  position: relative;
  background-color: white;
  padding: 0 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.job-details-page .job-details-candidate-score .job-client-banner {
  position: relative;
  margin: 0 -20px 20px;
  max-width: calc(100% + 40px);
}
.job-details-page .job-details-candidate-score .candidate-scoring .project-details h4 {
  font-family: "Beatrice Semibold", sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 3px;
}
.job-details-page .job-details-candidate-score .candidate-scoring .project-details p {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: #000000;
}
.job-details-page .job-details-candidate-score .candidate-scoring .job-match-score-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.job-details-page .job-details-candidate-score .candidate-scoring .job-match-score-panel > .job-match-header {
  margin: 20px 0 0;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.job-details-page .job-details-candidate-score .candidate-scoring .job-match-score-panel > .job-match-header p {
  color: white;
  margin-bottom: 0;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  letter-spacing: 0.01em;
}
.job-details-page .job-details-candidate-score .candidate-scoring .job-match-score-panel .job-match-scores-container {
  margin-top: 20px;
}
.job-details-page .job-details-candidate-score .candidate-scoring .job-match-score-panel.no-match .job-match-header {
  margin-top: 0;
}
.job-details-page .job-details-candidate-score .candidate-scoring .job-match-score-panel.no-match .no-match-header {
  align-self: center;
  font-family: "Beatrice-Bold", sans-serif;
  font-size: 23px;
  margin-top: 25px;
  letter-spacing: 0.01em;
  line-height: 150%;
}
.job-details-page .job-details-candidate-score .candidate-scoring .job-match-score-panel.no-match .no-match-info {
  margin: 0 20px 25px;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 150%;
}
.job-details-page .job-details-candidate-score .candidate-scoring .job-match-score-panel.no-match .no-match-btn {
  margin: 35px auto;
  align-self: center;
}
.job-brief {
  background-color: white;
  padding: 20px 15px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: flex-start;
}
.job-brief .job-client-logo {
  width: 80px;
  height: 80px;
  background-size: cover;
  background-position: center;
  background-color: white;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.job-brief h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #000000;
  margin: 0;
}
.job-brief hr {
  margin: 15px 0;
}
.job-brief .btn {
  margin: 0 0 20px;
}
.job-brief .position-title {
  font-family: "Beatrice Semibold", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 3px;
}
.job-brief a.position-title:hover span {
  text-decoration: underline;
}
.job-brief .position-description {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.01em;
  color: #000000;
}
.job-brief .position-document-section {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  border-bottom: 1px solid #90a0b7;
  margin-bottom: 10px;
}
.job-brief .position-document-section p {
  font-style: normal;
  font-weight: 500;
  line-height: 15px;
  font-size: 12px;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.job-brief .position-document-section .position-document {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.job-brief .position-document-section .position-document i {
  font-size: 18px;
  color: var(--theme-danger, '#E54963');
  margin-right: 10px;
}
.job-brief .position-document-section .position-document a {
  margin-bottom: 0;
  font-size: 10px;
}
.job-brief .position-info-section {
  margin-bottom: 18px;
}
.job-brief .position-info-section .info-label {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
  color: #a0a0a0;
}
.job-brief .position-info-section .info-value {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 0;
}
.job-brief .position-info-section .info-value .payout {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 -5px -5px;
}
.job-brief .position-info-section .info-value .payout span {
  padding: 0.2rem 0;
  white-space: nowrap;
  margin: 0 5px 5px;
}
.job-brief .position-info-section .info-value .payout span.payout-info {
  padding: 0.2rem 0.4rem;
  font-style: italic;
  border: 1px solid #8c8c8c;
  font-size: 10px;
  line-height: 18px;
}
.job-brief .position-info-section .info-value .payout span.payout-info strong {
  font-style: normal;
}
.job-brief .position-info-section .info-value .payout span.difference-warning {
  flex-basis: 100%;
  white-space: normal;
  color: var(--theme-danger, '#E54963');
  margin-top: 5px;
  font-size: 10px;
  font-style: italic;
  font-weight: 400;
}
.job-brief button.shownInterest,
.job-position-panel button.shownInterest {
  color: #67676a !important;
  box-shadow: none;
  margin-top: 0;
}
.job-brief .refer-help,
.job-position-panel .refer-help {
  color: var(--theme-primary, '#5f3db1');
  font-size: 13px;
  font-weight: 500;
  margin-bottom: -5px;
}
.job-brief .refer-help {
  font-size: 11px;
  margin-bottom: 6px;
}
.supplier-job-board-details .job-details-page .job-match-scores-container .discipline-skills-container .dropdown {
  pointer-events: none;
}
.supplier-job-board-details .job-details-page .job-match-scores-container .discipline-skills-container .dropdown * {
  pointer-events: none;
}
.supplier-job-board-details .job-details-page .job-match-scores-container .discipline-skills-container .skill-result.skill i {
  display: none!important;
}
.supplier-job-board-details .job-details-page .job-match-scores-container .discipline-skills-container .skill.highlighted {
  background-color: var(--theme-secondary, '#913ef0');
}
.supplier-job-board-details .job-details-page .job-match-scores-container .discipline-skills-container .skill.highlighted p {
  color: white;
}
.client-success-rep-panel .image-upload-container .btn-file {
  display: none;
}
.client-success-rep-panel input.form-control:disabled {
  border-bottom-width: 0px !important;
  background-color: transparent !important;
}
.bordered-panel .invalid-feedback,
.client-register-form .invalid-feedback {
  padding: 0 15px;
}
.users-table,
.groups-table {
  max-width: 1300px;
  margin: 0 auto;
  background-color: white;
}
.users-table th,
.groups-table th,
.users-table td,
.groups-table td {
  border-right-width: 0 !important;
  border-left-width: 0 !important;
}
.users-table th p,
.groups-table th p,
.users-table td p,
.groups-table td p,
.users-table th h5,
.groups-table th h5,
.users-table td h5,
.groups-table td h5 {
  margin-bottom: 0;
}
.users-table td,
.groups-table td,
.users-table th,
.groups-table th {
  padding: 1rem 0.75rem;
}
.users-table th,
.groups-table th {
  border-top-width: 0 !important;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  padding-bottom: 5px;
  font-weight: 500;
}
.users-table tbody tr:last-child td,
.groups-table tbody tr:last-child td {
  border-width: 0!important;
}
.users-table .user-info > div,
.groups-table .user-info > div {
  display: flex;
  align-items: center;
}
.users-table .user-info > div > p,
.groups-table .user-info > div > p {
  margin-bottom: 0;
}
.users-table .user-name,
.groups-table .user-name {
  font-size: 16px;
  font-weight: 500;
  margin-left: 10px;
}
.users-table .user-job-title,
.groups-table .user-job-title {
  font-size: 12px;
  margin-left: 10px;
}
.users-table .user-email,
.groups-table .user-email,
.users-table .user-phone,
.groups-table .user-phone {
  font-weight: normal;
}
.users-table .user-email,
.groups-table .user-email {
  color: #109CF1;
}
.users-table .user-phone,
.groups-table .user-phone {
  color: #323C47;
}
.users-table .user-project-assignments p,
.groups-table .user-project-assignments p {
  margin-bottom: 0 !important;
}
.users-table .user-project-assignments a,
.groups-table .user-project-assignments a {
  color: #885AF8;
  font-weight: normal;
  font-size: 12px;
  border-bottom: 1px solid #885AF8;
  display: inline-block;
  text-decoration: none !important;
}
.users-table .user-project-assignments .btn,
.groups-table .user-project-assignments .btn {
  margin-top: -15px;
  margin-left: 10px;
}
.users-table .table-btn,
.groups-table .table-btn {
  width: auto;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.group-projects-detail-modal .scrollarea .scrollarea-content {
  align-items: center;
}
.group-projects-detail-modal .scrollarea .modal-container {
  min-height: unset !important;
  align-self: center;
  min-width: unset!important;
}
.group-projects-detail-modal .scrollarea .modal-container .modal-title {
  font-size: 16px;
}
.group-projects-detail-modal .scrollarea .modal-container table tr td,
.group-projects-detail-modal .scrollarea .modal-container table tr th {
  vertical-align: middle;
}
.group-projects-detail-modal .scrollarea .modal-container table .status-badge {
  margin: 0;
  color: white;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 12px;
  padding: 0.1rem 0.3rem;
  display: inline-block;
  text-align: center;
}
.groups-table .group-members {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
}
.groups-table .group-members > div:nth-child(n+2) {
  margin-left: -5px;
}
.groups-table .group-members .img-fluid,
.groups-table .group-members .group-member-placeholder {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid white;
}
.groups-table .group-members .group-member-placeholder {
  background-color: var(--theme-primary, '#5f3db1');
  color: white;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-flow: column;
}
.groups-table p {
  font-size: 12px;
}
.group-permission-table {
  max-width: 1100px;
  margin: 0 auto;
  background-color: white;
}
.group-permission-table .member-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.group-permission-table .member-name p {
  margin: 5px 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 12px;
}
.group-permission-table .member-name p i {
  color: #C2CFE0;
  margin-right: 0.35rem;
}
.group-permission-table tr th p,
.group-permission-table tr td p,
.group-permission-table tr th h5,
.group-permission-table tr td h5 {
  margin-bottom: 0;
}
.group-permission-table tr th:nth-child(n+2) p,
.group-permission-table tr td:nth-child(n+2) p {
  font-size: 12px;
}
.group-permission-table tr th:first-child,
.group-permission-table tr td:first-child {
  border-left-width: 0!important;
}
.group-permission-table tr th[colspan="1"],
.group-permission-table tr td[colspan="1"] {
  border-width: 0;
}
.group-permission-table tr th .text-secondary,
.group-permission-table tr td .text-secondary {
  font-weight: 600;
  color: var(--theme-secondary, '#913ef0') !important;
}
.group-permission-table tr td {
  vertical-align: middle;
  padding: 0.2rem 0.75rem;
}
.group-permission-table tr td .form-checkbox {
  justify-content: center;
}
.group-permission-table tr td .form-checkbox [type="checkbox"] + label:before {
  font-size: 18px;
}
.group-permission-table tr td .form-checkbox [type="checkbox"]:checked + label {
  background-color: transparent;
}
.group-permission-table tr td .form-checkbox [type="checkbox"]:checked + label:before {
  color: var(--theme-info, '#4B80E7');
}
.group-permission-table tr td .form-checkbox [type="checkbox"]:disabled + label:before {
  color: #90a0b7;
}
.group-permission-table tr td .form-checkbox.visibility-checkbox [type="checkbox"] + label:before {
  color: var(--theme-danger, '#E54963');
  content: "\F070";
}
.group-permission-table tr td .form-checkbox.visibility-checkbox [type="checkbox"]:checked + label:before {
  color: var(--theme-success-dark) !important;
  content: "\F06E";
}
.group-permission-table tr td:nth-child(2) {
  font-weight: 500;
}
.group-permission-table tr th {
  border-top-width: 0 !important;
  font-weight: 500;
  padding: 1rem 0.75rem 0.5rem;
  text-align: center;
}
.group-permission-table tr th:first-child {
  text-align: left;
}
.group-permission-table tr th i {
  font-size: 22px;
  color: #67676a;
}
.group-permission-table td:nth-child(2),
.group-permission-table th:nth-child(2) {
  width: 35px;
  text-align: center;
}
.group-permission-table td:nth-child(2) small,
.group-permission-table th:nth-child(2) small {
  font-weight: 600;
}
.group-permission-table .table-dark {
  background-color: rgba(0, 0, 0, 0.03);
  color: black;
}
.group-permission-table .react-switch {
  margin-top: 5px;
}
.group-permission-table .tb-spacer {
  width: 15px;
  padding: 0;
}
.group-permission-table tbody tr:last-child td {
  border-bottom-width: 0!important;
}
.client-select-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  justify-content: center;
  padding-top: 30px;
}
.client-select-container .lds-ring {
  width: 30px;
  height: 30px;
  margin: 35px auto;
}
.client-select-container .lds-ring div {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--theme-secondary, '#913ef0');
  border-color: var(--theme-secondary, '#913ef0') transparent transparent transparent;
}
.client-select-container .clients-session {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  justify-content: flex-start;
  padding: 30px 35px;
  background-color: white;
}
.client-select-container .clients-session .client-session-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 22px;
  line-height: 125%;
  text-align: center;
  letter-spacing: 0.01em;
  color: #000000;
}
.client-select-container .clients-session .client-session-header span {
  margin-top: 5px;
}
.client-select-container .clients-session .clients-list {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
}
.client-select-container .clients-session .clients-list .client-session-row {
  border: 1px solid #D3D8DD;
  background-color: white;
  padding: 10px 15px;
  border-radius: 15px;
  align-items: stretch;
  justify-content: flex-start;
  display: flex;
  flex-grow: 1;
  margin: 10px;
  cursor: pointer;
}
.client-select-container .clients-session .clients-list .client-session-row:hover {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.client-select-container .clients-session .clients-list .client-session-row img {
  height: 45px;
  display: block;
  margin-right: 5px;
}
.client-select-container .clients-session .clients-list .client-session-row .client-details {
  margin: 0 0 0 10px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
.client-select-container .clients-session .clients-list .client-session-row .client-details h2 {
  margin: 0;
  font-size: 16px;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.01em;
  color: #000000;
}
.client-select-container .clients-session .clients-list .client-session-row .client-details p {
  margin: 3px 0 0;
  font-family: Beatrice;
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #343741;
}
.client-select-container .clients-session .clients-list .client-session-row .client-details p.text-success {
  color: var(--theme-success-dark) !important;
}
.client-portal-container {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  flex: 1;
  justify-content: center !important;
  flex-direction: row !important;
}
.client-portal-page-container {
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 30px 0 50px;
  max-width: 1200px;
  flex: 1 0 78%;
}
.client-portal-page-container.portal-full {
  max-width: 97%;
}
.edit-group-modal .scrollarea {
  flex-direction: column;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.edit-group-modal .scrollarea .scrollarea-content {
  align-items: center;
  overflow: auto;
  flex: 1;
  padding-top: 160px;
}
.edit-group-modal .scrollarea .modal-container {
  min-height: unset !important;
  max-width: 400px;
  width: 100%;
  min-width: unset;
}
.edit-group-modal .scrollarea .modal-container .modal-title {
  font-size: 16px;
}
.edit-group-modal .scrollarea .modal-container .form-footer {
  display: none;
}
.edit-group-modal .scrollarea .modal-container .form-container {
  padding: 0;
}
.edit-group-modal .scrollarea .modal-container .form-container .field {
  margin: 0 0 10px;
}
.edit-group-modal .scrollarea .modal-container .form-container .field .form-group {
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.edit-group-modal .scrollarea .modal-container .form-container .field .multi-select-button,
.edit-group-modal .scrollarea .modal-container .form-container .field input,
.edit-group-modal .scrollarea .modal-container .form-container .field select {
  padding: 0.375rem 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem !important;
  background-color: white;
  color: black !important;
  height: 37px;
  font-size: 13px !important;
}
.edit-group-modal .scrollarea .modal-container .form-container .field .multi-select-button.is-invalid,
.edit-group-modal .scrollarea .modal-container .form-container .field input.is-invalid,
.edit-group-modal .scrollarea .modal-container .form-container .field select.is-invalid {
  border-color: var(--theme-danger, '#E54963');
}
.edit-group-modal .scrollarea .modal-container .form-container .field .filter-button-dropdown {
  flex: 1;
}
.edit-group-modal .scrollarea .modal-container .form-container .field .filter-button-dropdown .filter-dropdown-menu .filter-option-form .form-checkbox [type="checkbox"]:checked + label::before {
  color: var(--theme-secondary, '#913ef0');
}
.edit-group-modal .scrollarea .modal-container .form-container .field .filter-button-dropdown .filter-dropdown-menu .filter-option-form.checked.disabled {
  background-color: unset;
  cursor: not-allowed;
}
.edit-group-modal .scrollarea .modal-container .form-container .field .filter-button-dropdown .filter-dropdown-menu .filter-option-form.checked.disabled .form-checkbox.disabled-checkbox {
  opacity: 1;
}
.edit-group-modal .scrollarea .modal-container .form-container .field .filter-button-dropdown .filter-dropdown-menu .filter-option-form.checked.disabled .form-checkbox.disabled-checkbox [type="checkbox"]:checked + label::before {
  color: #BABABA;
}
.edit-group-modal .scrollarea .modal-container .form-container .field .multi-select-button:after {
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: 15px;
}
.edit-group-modal .scrollarea .modal-container .form-container .field .multi-select-button span {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding-right: 25px;
}
.edit-group-modal .scrollarea .modal-container .form-container .field .multi-select-button span span:first-child {
  flex: 1;
}
.manage-project-group-container {
  margin: 0 auto 80px;
}
.manage-project-group-container .manage-content {
  max-width: 1200px;
  margin: 0 auto;
}
.manage-project-group-container .form-check-input + label:before {
  letter-spacing: 0;
}
.manage-project-group-container .form-checkbox .form-check-input:disabled + label {
  opacity: 0.6;
  color: unset;
  cursor: not-allowed;
}
.manage-project-group-container .permission-error-box {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-left: -15px;
  margin-right: -15px;
  background-color: var(--theme-danger, '#E54963');
}
.manage-project-group-container .permission-error-box p {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  padding: 6px 8px;
  text-align: center;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: white;
  font-style: normal;
  margin-bottom: 0;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently */
}
.invite-user-project-group-container {
  padding-top: 20px;
}
.invite-user-project-group-container p {
  padding-left: 15px;
}
.invite-user-project-group-container.bt {
  border-top: 1px solid #ccc;
  padding: 15px 0;
}
.invite-user-project-group-container .project-group-category {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}
.invite-user-project-group-container .project-group-category:last-child {
  border-bottom: none;
}
.invite-user-project-group-container .project-group-category .group-header {
  font-size: 18px;
}
.invite-user-project-group-container .project-group-category .group-header:before {
  margin-top: -4px;
}
.invite-user-project-group-container .project-group-category .grouped-permissions {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.invite-user-project-group-container .project-group-category .grouped-permissions .grouped-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.invite-user-project-group-container .project-group-category .grouped-permissions .grouped-section:nth-child(2) {
  padding: 0 16px;
}
.invite-user-project-group-container .project-group-category .grouped-permissions .grouped-section .grouped-description {
  font-size: 12px;
  padding-left: 25px;
}
.invite-user-project-group-container .project-group-category .grouped-permissions .grouped-title {
  margin-left: 25px;
  text-decoration: underline;
  padding-top: 15px;
}
.invite-user-project-group-container .project-group-category .grouped-permissions .single-permission {
  display: flex;
  margin-left: 15px;
}
.invite-user-project-group-container .project-group-category .grouped-permissions .single-permission .form-checkbox {
  white-space: nowrap;
}
.invite-user-project-group-container .project-group-category .grouped-permissions .single-permission .form-checkbox input[type="checkbox"]:disabled + label {
  cursor: default;
}
.invite-user-project-group-container .form-checkbox [type="checkbox"] + label:before {
  font-size: 18px;
}
.invite-user-project-group-container .form-checkbox [type="checkbox"]:checked + label {
  background-color: transparent;
}
.invite-user-project-group-container .form-checkbox [type="checkbox"]:checked + label:before {
  color: var(--theme-info, '#4B80E7');
}
.invite-user-project-group-container .form-checkbox [type="checkbox"]:disabled + label:before {
  color: #90a0b7;
}
.my-groups-container {
  padding-left: 15px;
}
.my-groups-container .my-groups-title {
  text-decoration: underline;
}
.my-groups-container .my-groups-name {
  font-size: 12px;
  margin: 0;
}
.client-profile-form .image-upload-container {
  align-items: flex-start !important;
}
.client-profile-form .image-upload-container label {
  order: 1;
}
.client-profile-form .image-upload-container .label-hint {
  order: 3;
  text-align: left;
}
.client-profile-form .image-upload-container .image-upload-preview {
  order: 2;
  background-color: #ececec;
}
.client-profile-form .form-footer .form-buttons {
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .invite-user-project-group-container .project-group-category {
    margin-left: -15px;
  }
  .invite-user-project-group-container .project-group-category .grouped-permissions .grouped-section {
    flex: unset;
  }
  .invite-user-project-group-container .project-group-category .grouped-permissions .grouped-section:nth-child(2) {
    padding: 0;
  }
}
.sidebar-filters {
  background-color: #fff;
}
.talent-pool-navbar-nordstrom .ant-collapse {
  border: none;
  background-color: transparent;
}
.talent-pool-navbar-nordstrom .ant-collapse .ant-collapse-header-text p {
  color: unset;
}
.talent-pool-navbar-nordstrom .ant-collapse .ant-collapse-item > .ant-collapse-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.talent-pool-navbar-nordstrom .ant-collapse .ant-collapse-content {
  margin: 0 0.25rem 0 0;
}
.talent-pool-navbar-nordstrom .ant-checkbox-wrapper {
  align-items: flex-start;
}
.talent-pool-navbar-nordstrom .ant-checkbox-wrapper:not(.checkbox-options) .ant-checkbox + span {
  font-size: 0.75rem;
  margin-top: 0.2em;
}
.talent-pool-navbar-nordstrom .checkbox-options-container {
  border-bottom: 1px solid #e0dfdf;
  align-self: stretch;
  padding-bottom: 0.3rem;
}
.talent-pool-navbar-nordstrom .filter-option-form {
  padding-left: 0.5rem;
}
.talent-pool-navbar-nordstrom .checkbox-option-group {
  margin-bottom: 15px;
}
.talent-pool-navbar-nordstrom .checkbox-option-group .filter-option-form {
  padding-left: 1.3rem;
}
.talent-pool-navbar-nordstrom .ant-checkbox-disabled + span {
  color: rgba(0, 0, 0, 0.8);
}
.talent-pool-navbar-nordstrom .ant-collapse-content {
  background-color: transparent;
  border-top: none;
}
.talent-pool-navbar-nordstrom .ant-collapse-content > .ant-collapse-content-box {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
}
.talent-pool-navbar-nordstrom .dropdown-caret {
  margin-left: 0.255em;
  display: inline-block;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent !important;
  border-bottom: 0;
  border-left: 0.3em solid transparent !important;
}
.talent-pool-navbar-nordstrom .react-autosuggest__container {
  border: 0.5px solid rgba(50, 60, 71, 0.5);
  background-color: white;
}
.talent-pool-navbar-nordstrom .react-autosuggest__container .input-group > * {
  border: unset;
}
.invite-by-email-modal .form-container {
  padding: 0;
}
.invite-by-email-modal .form-container .form-group {
  margin-bottom: 6px;
}
.invite-by-email-modal .form-container .form-control {
  border: 1px solid;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity));
  padding: 0.5rem;
}
.invite-by-email-modal .form-container .form-control.is-invalid {
  border-color: var(--theme-danger, '#E54963');
  box-shadow: none;
}
.position-talent-search .table-pagination,
.talent-pool-add .table-pagination,
.talent-pool-manage .table-pagination {
  margin: 0 0 1rem;
}
.position-talent-search #type-toggle.ant-switch-checked,
.talent-pool-add #type-toggle.ant-switch-checked,
.talent-pool-manage #type-toggle.ant-switch-checked {
  background-color: var(--theme-success-dark);
}
.position-talent-search .candidate-panel,
.talent-pool-add .candidate-panel,
.talent-pool-manage .candidate-panel {
  margin: 0;
}
.position-talent-search .candidate-panel.bulk-enabled,
.talent-pool-add .candidate-panel.bulk-enabled,
.talent-pool-manage .candidate-panel.bulk-enabled {
  cursor: pointer;
}
.position-talent-search .candidate-panel.bulk-enabled .archive-checkbox:not(.ant-checkbox-wrapper-checked),
.talent-pool-add .candidate-panel.bulk-enabled .archive-checkbox:not(.ant-checkbox-wrapper-checked),
.talent-pool-manage .candidate-panel.bulk-enabled .archive-checkbox:not(.ant-checkbox-wrapper-checked) {
  opacity: 1;
  pointer-events: unset;
}
.position-talent-search .invitations-toggle-radio .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within,
.talent-pool-add .invitations-toggle-radio .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within,
.talent-pool-manage .invitations-toggle-radio .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.position-talent-search .invitations-toggle-radio .ant-radio-button-wrapper:hover,
.talent-pool-add .invitations-toggle-radio .ant-radio-button-wrapper:hover,
.talent-pool-manage .invitations-toggle-radio .ant-radio-button-wrapper:hover {
  color: black;
  font-weight: 500;
}
.position-talent-search .invitations-toggle-radio .ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper,
.talent-pool-add .invitations-toggle-radio .ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper,
.talent-pool-manage .invitations-toggle-radio .ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper {
  background: black;
  border-color: black;
}
.position-talent-search .invitations-toggle-radio .ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper:first-child,
.talent-pool-add .invitations-toggle-radio .ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper:first-child,
.talent-pool-manage .invitations-toggle-radio .ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper:first-child {
  border-right-color: black;
}
.position-talent-search .invitations-toggle-radio .ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper:hover,
.talent-pool-add .invitations-toggle-radio .ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper:hover,
.talent-pool-manage .invitations-toggle-radio .ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper:hover {
  color: white;
  font-weight: normal;
}
.position-talent-search .invitations-toggle-radio .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before,
.talent-pool-add .invitations-toggle-radio .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before,
.talent-pool-manage .invitations-toggle-radio .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before {
  background-color: black;
}
.position-talent-search .candidate-panel.bulk-enabled {
  cursor: default;
}
@media only screen and (max-width: 767px) {
  .position-talent-search .table-pagination .table-pagination-info {
    display: block;
  }
  .position-talent-search .table-pagination .table-pagination-info .pagination-children {
    margin: 0;
  }
  .position-talent-search .table-pagination .table-pagination-info .pagination-children .project-sort-teams-dropdown {
    margin: 0;
  }
}
.talent-pool-review .ant-skeleton-paragraph {
  margin-bottom: 0px;
}
.talent-pool-review .ant-skeleton-paragraph > li + li {
  margin-top: 10px;
}
.talent-pool-review .ant-skeleton-paragraph > li {
  height: 12px;
}
.talent-pool-review .review-avatar-skeleton ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.talent-pool-review .review-avatar-skeleton .ant-skeleton-element .ant-skeleton-avatar-lg {
  height: 56px;
  width: 56px;
}
.talent-pool-review .ant-rate-star-first,
.talent-pool-review .ant-rate-star-second {
  color: #d8d8d8;
}
.talent-pool-review .ant-rate-star-half .ant-rate-star-first,
.talent-pool-review .ant-rate-star-full .ant-rate-star-second {
  color: inherit;
}
.talent-pool-review a.ant-typography-expand {
  color: var(--theme-primary, '#5f3db1');
  font-weight: bold;
}
.pyo-container .white-panel,
.pyo-container .dark-panel {
  margin-bottom: 40px!important;
  transition: all 300ms ease-in;
}
.pyo-details {
  flex-direction: column;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.pyo-tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0.5rem 0 -1px;
  gap: 15px;
}
.pyo-tabs .btn-tab {
  margin: 0;
  color: #738094;
  border-color: var(--theme-light, '#E5EBF1') !important;
  border-bottom: none;
  font-weight: 600;
  padding: 8px 22px;
}
.pyo-tabs .btn-tab:hover {
  background-color: var(--theme-light, '#E5EBF1') !important;
  color: #90A0B7 !important;
  box-shadow: none!important;
  border-color: var(--theme-light, '#E5EBF1') !important;
}
.pyo-tabs .btn-tab.active-tab {
  background-color: var(--theme-primary, '#5f3db1') !important;
  color: white!important;
  border-color: var(--theme-primary, '#5f3db1') !important;
}
.pyo-tab-details {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 20px;
  border-top: 1px solid var(--theme-light, '#E5EBF1');
  background-color: white;
  font-size: 12px;
}
.pyo-tab-details .detail-headers {
  margin: 0 0 15px;
}
.pyo-tab-details .detail-tabs {
  display: grid;
  gap: 12px;
}
.pyo-tab-details .detail-tabs button {
  background-color: var(--theme-light);
  text-align: left;
  padding: 8px 12px 4px;
  width: 100%;
}
.pyo-tab-details .detail-tabs button.active {
  background-color: #111827;
}
.pyo-tab-details .detail-tabs button.active h5,
.pyo-tab-details .detail-tabs button.active p {
  color: white;
}
.pyo-tab-details .detail-tabs button.active p {
  font-weight: bold;
}
.pyo-questions-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 100%;
  flex-direction: row;
}
.pyo-questions-section .questions-info {
  margin-bottom: 0!important;
}
.pyo-questions-section .pyo-questions {
  overflow: hidden;
  padding-right: 0!important;
  padding-bottom: 60px!important;
  padding-top: 40px!important;
}
.pyo-questions-section .pyo-start-panel {
  min-width: 330px;
  align-self: stretch;
  margin-bottom: 60px;
  margin-left: 35px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: column;
}
.pyo-questions-section .pyo-start-panel * {
  color: white;
  text-align: center;
}
.pyo-questions-section .pyo-start-panel .start-panel-header {
  flex: 1;
  align-items: center;
  justify-content: center;
  display: flex;
  border-bottom: 1px solid #343741;
  padding: 0 2em;
}
.pyo-questions-section .pyo-start-panel .start-panel-header h3 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  display: flex;
  align-items: stretch;
  text-align: center;
  justify-content: center;
  font-family: Beatrice, sans-serif;
}
.pyo-questions-section .pyo-start-panel .start-panel-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  border-bottom: 1px solid #343741;
}
.pyo-questions-section .pyo-start-panel .start-panel-price p {
  margin-bottom: 2px;
  text-transform: uppercase;
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 16px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.16em;
}
.pyo-questions-section .pyo-start-panel .start-panel-price h3 {
  font-weight: normal;
  font-size: 28px;
  line-height: 160%;
  letter-spacing: 0.01em;
  font-family: Beatrice, sans-serif;
  margin-bottom: 0;
}
.pyo-questions-section .pyo-start-panel .start-panel-next {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}
.pyo-questions-section .pyo-start-panel .start-panel-next p {
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 16px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.pyo-questions-section .pyo-start-panel .start-panel-next button {
  margin-top: 30px;
}
.scrollarea.area {
  max-height: 250px;
}
.scrollarea .scrollbar-container.vertical {
  width: 8px!important;
}
.scrollarea .scrollbar-container.vertical,
.scrollbar {
  border-radius: 6px;
}
.scrollbar {
  width: 6px!important;
}
.pyo-detail-table {
  position: relative;
  align-items: stretch;
  flex-direction: column;
  display: flex;
}
.pyo-detail-table ul li {
  list-style-type: disc;
  padding: 2px 0;
}
.pyo-detail-table table {
  width: 100%;
}
.pyo-detail-table table tr {
  height: 1px;
  position: relative;
}
.pyo-detail-table table tr td {
  height: inherit;
  padding: 0 10px!important;
  min-width: 30%;
  width: 260px;
  vertical-align: top;
  position: relative;
}
.pyo-detail-table table tr td p {
  height: 100%;
  font-family: Beatrice, sans-serif;
  border-top: 1px solid var(--theme-light, '#E5EBF1');
  padding: 15px 20px;
  margin: 0;
  font-weight: 600;
  font-size: 13px;
  line-height: 21px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.pyo-detail-table table tr td:last-child {
  width: unset;
  min-width: unset;
  max-width: 70%;
}
.pyo-detail-table table tr td:last-child p {
  font-weight: 400;
  white-space: normal;
}
.pyo-detail-table table tr:last-child td p {
  border-bottom: 1px solid var(--theme-light, '#E5EBF1');
}
.modal-container .pyo-tab-details {
  padding: 0!important;
  border: none!important;
}
.modal-container .pyo-detail-table {
  max-height: unset!important;
}
.project-review .pyo-tab-details {
  padding: 30px 20px!important;
}
.expand-pyo-detail {
  justify-content: flex-end;
  flex: 1;
  display: flex;
  margin-right: 5px;
  margin-bottom: 10px;
}
.expand-pyo-detail p {
  cursor: pointer;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid transparent;
}
.expand-pyo-detail p i {
  margin-left: 6px;
  line-height: 16px!important;
}
.expand-pyo-detail p:hover,
.expand-pyo-detail p:focus {
  border-bottom: 1px solid #000000;
}
@media only screen and (max-width: 767px) {
  .pyo-questions-section {
    display: block;
  }
  .pyo-questions-section .pyo-start-panel {
    margin-left: 0;
  }
  .pyo-questions-section .pyo-start-panel .start-panel-header,
  .pyo-questions-section .pyo-start-panel .start-panel-price {
    height: 100px;
    flex: auto;
  }
}
.bidding-wizard {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}
.bidding-wizard .bidding-wizard-step {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}
.bidding-wizard .project-nav .project-nav-info {
  flex: 2;
  max-width: 50%;
}
.bidding-wizard .brief-header,
.bidding-wizard .wizard-position-step.wizard-review-step {
  max-width: 1150px;
}
.bidding-wizard .bidding-footer-nav {
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  height: 80px;
  background: #F5F6F8;
  border-top: 1.5px solid #E5E5E5;
}
.bidding-wizard .bidding-footer-nav.bidding-footer-alt {
  background: #F5F6F8;
}
.bidding-wizard .bidding-footer-nav .bidding-brief-nav,
.bidding-wizard .bidding-footer-nav .bidding-talent-nav,
.bidding-wizard .bidding-footer-nav .bidding-shortlist-nav {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
}
.bidding-wizard .bidding-footer-nav .bidding-shortlist-nav {
  max-width: 1225px;
}
.bulk-actions-container {
  max-width: 450px;
  height: 80px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  gap: 0.5rem;
  background-color: #fff;
  opacity: 0;
  padding: 1.5rem 2rem;
  text-align: center;
  pointer-events: none;
  transition: opacity 200ms ease-in, transform 200ms ease-in;
  transform: scale(0, 0);
  border-radius: 11px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px;
  margin: 0 auto;
}
.bulk-actions-container p:first-child {
  margin-right: 10px;
}
.bulk-actions-container .ant-btn {
  padding: 8px 2px 8px 8px;
}
.bulk-actions-container.talent-pool-actions {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 8px;
  max-width: 400px;
}
.bulk-actions-container.isVisible {
  opacity: 1;
  pointer-events: all;
  transform: scale(1, 1);
}
.bidding-wizard-sow {
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
}
.bidding-wizard-sow .sow-overview-info {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #3E3F42;
}
.bidding-wizard-sow .sow-overview-value {
  color: #109CF1;
}
.bidding-wizard-sow .sow-table-header {
  font-size: 13px;
  font-weight: 500;
  color: #192A3E;
  padding: 20px 10px;
}
.bidding-wizard-sow .sow-table-cell {
  font-size: 13px;
  color: #334D6E;
  padding: 1rem 0.6rem;
  vertical-align: middle;
}
.bidding-wizard-sow .sow-table-cell.sow-table-title {
  border-top: none!important;
  padding-bottom: 0;
}
.bidding-wizard-sow .sow-table-cell.sow-table-title p {
  margin-bottom: 0;
}
.bidding-wizard-sow .sow-table-cell.sow-table-instructions {
  border-top: none!important;
  padding-top: 0.3rem;
}
.bidding-wizard-sow .sow-table-cell.sow-table-instructions p {
  margin-bottom: 0;
}
.bidding-wizard-sow .sow-table-cell .sow-table-total {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
  float: right;
}
.bidding-wizard-sow .sow-table-cell .sow-table-total span {
  text-align: center;
}
.bidding-wizard-sow .sow-table-cell .cost-input-instruction {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.bidding-wizard-sow .sow-table-cell .cost-input-instruction i {
  margin: 0 25px!important;
}
.bidding-wizard-sow .sow-table-cell.fee-input-field,
.bidding-wizard-sow .sow-table-cell.expense-input-field {
  display: flex;
  min-height: 65px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.bidding-wizard-sow .sow-table-cell.fee-input-field .form-group,
.bidding-wizard-sow .sow-table-cell.expense-input-field .form-group {
  margin-bottom: 0!important;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.bidding-wizard-sow .sow-table-cell.fee-input-field .form-group .input-group,
.bidding-wizard-sow .sow-table-cell.expense-input-field .form-group .input-group {
  flex: 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid rgba(50, 60, 71, 0.5);
  border-radius: 0 !important;
  padding: 0.3rem 0.4rem;
  font-weight: 300;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.01em;
  text-align: center;
}
.bidding-wizard-sow .sow-table-cell.fee-input-field .form-group .input-group input,
.bidding-wizard-sow .sow-table-cell.expense-input-field .form-group .input-group input {
  background-color: transparent !important;
  border: none;
  width: 35px!important;
  padding: 0!important;
  box-shadow: none !important;
  letter-spacing: 0.01em;
  outline: none !important;
  display: inline-block !important;
}
.bidding-wizard-sow .sow-table-cell.fee-input-field .form-group .input-group:focus,
.bidding-wizard-sow .sow-table-cell.expense-input-field .form-group .input-group:focus {
  box-shadow: 0 0 0 0.05rem rgba(139, 62, 240, 0.25);
}
.bidding-wizard-sow .sow-table-cell.fee-input-field .form-group .input-group .input-group-append,
.bidding-wizard-sow .sow-table-cell.expense-input-field .form-group .input-group .input-group-append,
.bidding-wizard-sow .sow-table-cell.fee-input-field .form-group .input-group .input-group-prepend,
.bidding-wizard-sow .sow-table-cell.expense-input-field .form-group .input-group .input-group-prepend {
  background-color: transparent !important;
  border: none;
  box-shadow: none !important;
  outline: none !important;
  display: inline-block !important;
}
.bidding-wizard-sow .sow-table-cell.expense-input-field {
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.bidding-wizard-sow .sow-table-cell.expense-input-field .input-container {
  display: flex;
  min-height: 30px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.bidding-wizard-sow .sow-table-cell.expense-input-field .input-container .form-group .input-group input {
  max-width: 75px;
  text-align: center;
  width: unset!important;
}
.bidding-wizard-sow .sow-table-cell.expense-input-field p {
  margin-top: 0.3rem;
  margin-bottom: 0;
}
.bidding-wizard-sow .sow-table-footer {
  font-size: 14px;
  font-weight: 500;
  color: #192A3E;
  padding: 20px 10px;
}
.bidding-wizard-sow .sow-project-total-label {
  font-size: 15px;
  text-align: right;
}
.bidding-wizard-sow .sow-project-total-value {
  font-size: 15px;
  text-align: right;
  font-weight: 500;
}
.bidding-wizard-sow .sow-hourly-rate-terms h3 {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  line-height: 20px;
}
.bidding-brief-step .wizard-form-step .wizard-form .field-section {
  min-height: unset;
  padding: 0;
}
.bidding-brief-step .brief-role-scroll-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.bidding-brief-step .brief-role-scroll-container .brief-role-pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 25px 30px;
  border-bottom: 4px solid var(--theme-secondary, '#913ef0');
}
.bidding-brief-step .brief-role-scroll-container .brief-role-pagination h5 {
  margin-right: 3rem;
  margin-bottom: 0;
}
.bidding-brief-step .brief-role-scroll-container .brief-role-pagination .role-page {
  padding: 0;
  width: 30px;
  height: 30px;
  font-size: 13px;
  margin: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bidding-brief-step .brief-role-scroll-container .brief-role-pagination .role-page.btn-primary {
  pointer-events: none;
}
.bidding-brief-step .brief-role-scroll-container .brief-role-pagination .scroller {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 0 20px;
  bottom: unset;
  right: unset;
  justify-content: flex-start;
  background-color: transparent;
  box-shadow: none;
}
.bidding-brief-step .brief-role-scroll-container .brief-role-pagination .scroller button {
  margin: 0 2px;
  width: 35px;
  height: 30px;
  border-radius: 4px;
  border-color: black!important;
}
.bidding-brief-step .brief-role-scroll-container .brief-role-pagination .add-role-action {
  margin-left: auto;
}
.bidding-brief-step .brief-role-scroll-container .brief-role-pagination .add-role-action button {
  font-size: 14px;
  margin: 0 25px;
}
.bidding-brief-step .brief-role-scroll-container .wripple-form {
  margin-top: 0;
  padding-top: 0;
}
.bidding-brief-step .brief-role-scroll-container form > .field-section:first-child #title-section-start .position-title-label {
  margin-bottom: 0!important;
}
.bidding-brief-step .brief-role-scroll-container form > .field-section:first-child #title-section-start h5 {
  font-size: 13px;
  color: black;
}
.bidding-brief-step .brief-role-scroll-container form > .field-section:first-child #title-section-start button {
  margin: -10px 10px 0 auto !important;
  font-size: 12px;
}
.bidding-brief-step .brief-role-scroll-container form > .field-section:first-child .position-text-field {
  border-bottom-color: #303030;
}
.bidding-brief-step .brief-role-scroll-container .brief-role-edit-disabled {
  position: absolute;
  top: -0.5rem;
  width: 100px;
  margin-left: -50px;
  bottom: unset;
  margin-bottom: 0;
}
.brief-header {
  background-color: white;
  border-top: 5px solid var(--theme-secondary, '#913ef0');
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.brief-header button.btn-link {
  padding: 2px 3px;
  margin: 0;
}
.brief-header .brief-header-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.7rem 1rem;
  flex-shrink: 1;
  max-width: 345px;
}
.brief-header .brief-header-detail.detail-grow {
  flex-grow: 1;
}
.brief-header .brief-header-detail p,
.brief-header .brief-header-detail button,
.brief-header .brief-header-detail a {
  white-space: nowrap!important;
}
.brief-header .brief-header-detail.header-detail-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.brief-header .brief-header-detail.header-detail-row .flex-column {
  justify-content: center;
}
.brief-header .brief-header-detail.header-detail-row p,
.brief-header .brief-header-detail.header-detail-row button {
  margin: 2px 3px;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brief-header .brief-header-detail.header-detail-row i {
  font-size: 20px;
  margin: 0 8px;
}
.brief-header .brief-header-detail.header-detail-actions {
  align-items: flex-start;
  flex-grow: 1;
  padding: 0;
}
.brief-header .brief-header-detail.header-detail-actions .brief-project-menu {
  position: absolute;
  top: 6px;
  right: 6px;
}
.brief-header .brief-header-detail.header-detail-actions .brief-project-menu span.clickable {
  padding: 3px 5px;
}
.brief-header .brief-header-detail.header-detail-actions .brief-project-menu span.clickable i.fa-ellipsis-h {
  font-size: 24px;
  color: #334D6E;
}
.brief-header .brief-header-detail.header-detail-actions .brief-project-menu .dropdown-item.disabled,
.brief-header .brief-header-detail.header-detail-actions .brief-project-menu .dropdown-item:disabled {
  opacity: 0.6;
}
.brief-header .brief-header-detail.brief-summary {
  background-color: #F8F9FB;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.brief-header .brief-header-detail.brief-summary .flex-row {
  justify-content: space-evenly;
}
.brief-header .brief-header-detail.brief-summary i.fa-info-circle {
  color: black!important;
}
.brief-header .brief-header-detail.brief-summary p,
.brief-header .brief-header-detail.brief-project-info p {
  margin: 5px 0;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-size: 13px;
  line-height: normal;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.steps-container {
  opacity: 0.8;
}
.steps-container,
.opportunity-nav {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #5581E0;
}
.steps-container .step,
.opportunity-nav .step {
  min-width: 140px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps-container .step.steps-container-active,
.opportunity-nav .step.steps-container-active {
  background-color: rgba(85, 129, 224, 0.3);
}
.steps-container .step i.fa-exclamation-circle,
.opportunity-nav .step i.fa-exclamation-circle {
  margin-left: 0.5rem;
  font-size: 13px;
}
.steps-container .step.middle-step-border,
.opportunity-nav .step.middle-step-border {
  border-left: 2px solid #5581E0;
  border-right: 2px solid #5581E0;
}
.steps-container .step p,
.opportunity-nav .step p,
.steps-container .step a,
.opportunity-nav .step a {
  padding: 4px 14px;
}
.steps-container .step .fa-check,
.opportunity-nav .step .fa-check {
  color: var(--theme-success, '#5ae399');
}
.steps-container .step .fa-lock,
.opportunity-nav .step .fa-lock {
  color: #707683 !important;
}
.steps-container p,
.opportunity-nav p,
.steps-container a,
.opportunity-nav a {
  color: white;
  margin: 0;
  font-size: 12px;
}
.steps-container p.active,
.opportunity-nav p.active,
.steps-container a.active,
.opportunity-nav a.active {
  font-weight: 600;
}
.steps-container p.active i.fa-exclamation-circle,
.opportunity-nav p.active i.fa-exclamation-circle,
.steps-container a.active i.fa-exclamation-circle,
.opportunity-nav a.active i.fa-exclamation-circle {
  color: white!important;
}
.steps-container .step-badge,
.opportunity-nav .step-badge {
  background-color: #5581E0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  margin-left: 5px;
}
.steps-container .step-badge.number-badge,
.opportunity-nav .step-badge.number-badge {
  height: 24px;
  width: 24px;
  border-radius: 50%;
}
.steps-container .step-badge.number-badge p,
.opportunity-nav .step-badge.number-badge p {
  margin-top: 1px;
  font-size: 10px;
}
.steps-container .step-badge.word-badge,
.opportunity-nav .step-badge.word-badge {
  padding: 0px 5px;
  height: 24px;
  border-radius: 20px;
}
.steps-container.visible,
.opportunity-nav.visible {
  opacity: 1 !important;
}
.steps-container .active-step,
.opportunity-nav .active-step {
  background-color: var(--theme-primary, '#5f3db1') !important;
  padding: 4px 14px;
}
.steps-container .isLocked,
.opportunity-nav .isLocked {
  opacity: 1;
  color: #707683 !important;
  font-weight: 500;
  background-color: unset !important;
  border-color: #707683 !important;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
}
.steps-container .isLocked *,
.opportunity-nav .isLocked * {
  color: #707683 !important;
}
.steps-container .isLocked:hover,
.opportunity-nav .isLocked:hover,
.steps-container .isLocked:focus,
.opportunity-nav .isLocked:focus,
.steps-container .isLocked:active,
.opportunity-nav .isLocked:active {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
  color: #707683 !important;
  background-color: unset !important;
  box-shadow: none !important;
}
.steps-container .isLocked:hover *,
.opportunity-nav .isLocked:hover *,
.steps-container .isLocked:focus *,
.opportunity-nav .isLocked:focus *,
.steps-container .isLocked:active *,
.opportunity-nav .isLocked:active * {
  color: #707683 !important;
}
.bidding-navbar {
  padding: 15px 0 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #000000;
  flex-direction: row;
  display: flex;
}
.bidding-navbar > div:nth-child(3),
.bidding-navbar > div:nth-child(1) {
  flex: 1;
}
.bidding-navbar > div:first-child {
  order: 1;
}
.bidding-navbar > div:nth-child(2) {
  order: 2;
}
.bidding-navbar > div:last-child {
  order: 3;
}
.bidding-navbar .project-name {
  text-align: center;
  color: white;
  padding-bottom: 8px;
  font-size: 15px;
}
.bidding-navbar .project-info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0 15px;
  padding-top: 8px;
}
.bidding-navbar .project-info .info-label {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 9px;
  line-height: 13px;
  margin-bottom: 5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.bidding-navbar .project-info .info-value {
  font-size: 15px;
  line-height: 150%;
  margin: 0;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
.bidding-navbar .bidding-navbar-section {
  position: relative;
  font-size: 12px;
}
.bidding-navbar .bidding-navbar-section.bidding-navbar-section-first {
  padding-right: 30px;
  position: relative;
}
.bidding-navbar .bidding-navbar-section.bidding-navbar-section-first:before {
  content: '';
  position: absolute;
  right: 9px;
  bottom: 30px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #5581E0;
}
.bidding-navbar .bidding-section-title {
  color: white;
  font-size: 12px;
  margin: 0 0 2px 0;
}
.bidding-navbar .visible {
  opacity: 1 !important;
}
.bidding-navbar .active-step {
  background-color: var(--theme-primary, '#5f3db1') !important;
  padding: 4px 14px;
}
.bidding-navbar .approve-and-start-project {
  display: flex;
  border-radius: 10px;
  border: 2px solid #5581E0;
  overflow: hidden;
  padding: 12px 40px;
  opacity: 0.8;
}
.bidding-navbar .approve-and-start-project p {
  color: white;
  margin: 0;
  font-size: 12px;
  text-decoration: underline;
}
.bidding-navbar .approve-and-start-project p.active {
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 630px) {
  .bidding-navbar .steps-container {
    flex-direction: column;
  }
  .bidding-navbar .steps-container .step.middle-step-border {
    border: none;
    border-top: 2px solid #5581E0;
    border-bottom: 2px solid #5581E0;
  }
  .bidding-navbar .bidding-navbar-section {
    flex: 1;
  }
  .bidding-navbar .bidding-navbar-section.bidding-navbar-section-first:before {
    bottom: 67px;
  }
  .talent-portal-page .project-nav-info .opportunity-nav {
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
  }
  .talent-portal-page .project-nav-info .opportunity-nav .step.middle-step-border {
    border: none;
    border-top: 2px solid #5581E0;
    border-bottom: 2px solid #5581E0;
  }
}
@media (max-width: 340px) {
  .bidding-navbar .bidding-navbar-section {
    flex: unset;
    width: 100%;
  }
  .bidding-navbar .bidding-navbar-section.bidding-navbar-section-first {
    padding-right: 0;
    margin-bottom: 20px;
  }
  .bidding-navbar .bidding-navbar-section.bidding-navbar-section-first:before {
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: rotate(90deg);
  }
}
@media (max-width: 900px) {
  .bidding-navbar > div:first-child {
    order: 2;
  }
  .bidding-navbar > div:nth-child(2) {
    display: block;
    order: 1;
    width: 100%;
  }
  .bidding-navbar > div:last-child {
    order: 3;
  }
}
@media (max-width: 992px) {
  .brief-header .brief-header-detail p,
  .brief-header .brief-header-detail button,
  .brief-header .brief-header-detail a {
    font-size: 12px!important;
  }
}
@media only screen and (max-width: 900px) {
  .brief-header {
    flex-direction: row;
  }
  .brief-header .brief-header-detail {
    border-right: none;
    border-bottom: 1.5px solid var(--theme-secondary, '#913ef0');
    flex-basis: 50%;
  }
  .brief-header .brief-header-detail:nth-child(1) {
    order: 2;
    margin-top: 20px;
  }
  .brief-header .brief-header-detail:nth-child(2) {
    order: 3;
    justify-content: center;
  }
  .brief-header .brief-header-detail:nth-child(3) {
    order: 4;
  }
  .brief-header .brief-header-detail:nth-child(4) {
    order: 5;
    flex-grow: 1;
  }
  .brief-header .brief-header-detail:last-child {
    flex-basis: 100%;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.3rem;
    order: 1;
    height: 40px;
    width: 60px;
    border-bottom: none;
  }
}
@media only screen and (max-width: 992px) {
  .bidding-wizard .project-nav .project-nav-info {
    max-width: 500px;
    padding: 0 15px;
  }
}
.shortlisted-candidates-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  border: none;
}
.shortlisted-candidates-card .role-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 16px;
  gap: 16px;
  border: none;
  background: #F5F6F8;
}
.shortlisted-candidates-card .role-header h6 {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
  margin-right: 12px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.shortlisted-candidates-card .role-header .role-status {
  margin: 0;
  padding: 8px 12px;
  color: white;
  background: #E54963;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -0.01em;
}
.shortlisted-candidates-card .role-header .role-status.filled {
  background: #34BD73;
}
.shortlisted-candidates-card .role-header h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 125%;
  letter-spacing: -0.01em;
  color: #000000;
  margin: 0;
  flex-grow: 1;
}
.shortlisted-candidates-card .position-cost-row {
  border-top: none;
  background: white;
  padding-top: 25px;
  padding-bottom: 25px;
}
.shortlisted-candidates-card .candidates-view {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
.shortlisted-candidates-card .candidates-view .candidate-stats {
  padding: 32px 24px 8px;
  background-color: white;
  gap: 12px;
}
.shortlisted-candidates-card .candidates-view .candidate-stats .stat-label {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
  color: #000000;
  margin-bottom: 8px;
}
.shortlisted-candidates-card .candidates-view .candidate-stats .stat-value {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
  color: #0090FF;
  margin-bottom: 0;
}
.shortlisted-candidates-card .candidates-view.empty {
  gap: 0;
}
.shortlisted-candidates-card .candidates-view.empty .candidate-stats {
  border-bottom: 1px solid #D3D8DD;
}
.shortlisted-candidates-card .candidates-view .candidates-list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  align-items: stretch;
  justify-content: flex-start;
  gap: 16px;
}
.shortlisted-candidates-card .candidates-view .candidates-list.card-display {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  flex-direction: row;
}
.shortlisted-candidates-card .candidates-view .candidates-list .ant-collapse-item {
  transition: all 200ms ease-in;
  background-color: white;
}
.shortlisted-candidates-card .candidates-view .candidates-list .ant-collapse-item.ant-collapse-item-active {
  background-color: rgba(252, 252, 253, 0.8);
}
.shortlisted-candidates-card .candidates-view .candidates-list .ant-collapse-item .ant-collapse-header-collapsible-only .ant-collapse-header-text {
  cursor: default;
  width: unset;
  flex-grow: 1;
}
.shortlisted-candidates-card .candidates-view .candidates-list .unavailable-item,
.shortlisted-candidates-card .candidates-view .candidates-list .ant-collapse-item .ant-collapse-header {
  align-items: center;
  padding: 20px 32px;
  gap: 24px;
  border: 1px solid #EEEEEE;
  margin: -1px 0;
}
.shortlisted-candidates-card .candidates-view .candidates-list .unavailable-item .ant-collapse-arrow,
.shortlisted-candidates-card .candidates-view .candidates-list .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
  font-size: 22px;
  margin: 0;
}
.shortlisted-candidates-card .candidates-view .candidates-list:not(.card-display) .candidate-card-image {
  height: 110px;
  width: 110px;
  margin: 0;
  position: relative;
}
.shortlisted-candidates-card .candidates-view .candidates-list:not(.card-display) .candidate-card-image .loading-user-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85px;
  width: 85px;
  background-color: white;
  border-radius: 50%;
}
.shortlisted-candidates-card .candidates-view .candidates-list:not(.card-display) .candidate-card-image img {
  height: 110px;
  width: 110px;
  border-radius: 50%;
  z-index: 1;
}
.shortlisted-candidates-card .candidates-view .candidates-list:not(.card-display) .candidate-card-image .candidate-img-status {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px!important;
  z-index: 2;
}
@media (max-width: 639px) {
  .shortlisted-candidates-card .candidates-view .candidates-list .unavailable-item,
  .shortlisted-candidates-card .candidates-view .candidates-list .ant-collapse-item .ant-collapse-header {
    padding: 0 12px;
    gap: 12px;
  }
  .shortlisted-candidates-card .candidates-view .candidates-list:not(.card-display) .candidate-card-image {
    height: 70px;
    width: 70px;
  }
  .shortlisted-candidates-card .candidates-view .candidates-list:not(.card-display) .candidate-card-image .loading-user-image {
    height: 55px;
    width: 55px;
  }
  .shortlisted-candidates-card .candidates-view .candidates-list:not(.card-display) .candidate-card-image img {
    height: 70px;
    width: 70px;
  }
  .shortlisted-candidates-card .candidates-view .candidates-list:not(.card-display) .candidate-card-image .candidate-img-status {
    height: 70px!important;
  }
}
.shortlisted-candidates-card .candidates-view .candidate-user {
  gap: 7px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.shortlisted-candidates-card .candidates-view .candidate-user h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #000000;
  margin: 0 12px 0 0;
}
.shortlisted-candidates-card .candidates-view .candidate-user p {
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.01em;
  color: #000000;
}
.shortlisted-candidates-card .candidates-view .candidate-user p i {
  color: #C2CFE0;
}
.shortlisted-candidates-card .candidates-view .candidate-user .btn-link {
  font-weight: 600;
}
.shortlisted-candidates-card .candidates-view .candidate-user .btn-link:hover,
.shortlisted-candidates-card .candidates-view .candidate-user .btn-link:focus {
  font-weight: 700;
}
.shortlisted-candidates-card .candidates-view .candidate-user .matched-roles {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  min-height: 19px;
}
.shortlisted-candidates-card .candidates-view .candidate-user .matched-roles .role {
  padding: 2px 8px;
  background: var(--theme-primary, '#5f3db1');
  border-radius: 12px;
  margin: 0;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  max-width: 126px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shortlisted-candidates-card .candidates-view .candidate-user .matched-roles .role2 {
  padding: 2px 8px;
  background: white;
  border-radius: 4px;
  margin: 0;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.01em;
  border: 1px solid #39178B;
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #39178B;
}
.shortlisted-candidates-card .candidates-view .candidate-user .matched-roles .more-roles {
  white-space: nowrap;
  margin: 0;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  color: #4B80E7;
  cursor: default;
}
.shortlisted-candidates-card .candidates-view .candidate-btns button {
  align-self: center;
  padding: 0;
  position: relative;
}
.shortlisted-candidates-card .candidates-view .candidate-btns button > i {
  font-size: 30px;
  color: #93A0B5;
}
.shortlisted-candidates-card .candidates-view .candidate-btns button .badge {
  position: absolute;
  top: -5px;
  right: -6px;
  font-size: 10px;
}
.shortlisted-candidates-card .candidates-view .candidate-rates {
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 32px;
}
.shortlisted-candidates-card .candidates-view .candidate-rates .rate-change-container,
.shortlisted-candidates-card .candidates-view .candidate-rates .fixed-rate-container,
.shortlisted-candidates-card .candidates-view .candidate-rates .selected-rate {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.shortlisted-candidates-card .candidates-view .candidate-rates .rate-change-container h4,
.shortlisted-candidates-card .candidates-view .candidate-rates .fixed-rate-container h4,
.shortlisted-candidates-card .candidates-view .candidate-rates .selected-rate h4 {
  margin: 0 auto 6px;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 125%;
  text-align: center;
  letter-spacing: 0.01em;
  color: #343741;
}
.shortlisted-candidates-card .candidates-view .candidate-rates .rate-change-container h2,
.shortlisted-candidates-card .candidates-view .candidate-rates .fixed-rate-container h2,
.shortlisted-candidates-card .candidates-view .candidate-rates .selected-rate h2 {
  margin: 0 auto;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 135%;
  text-align: center;
  letter-spacing: 0.01em;
  color: #343741;
}
.shortlisted-candidates-card .candidates-view .candidate-rates .rate-change-container p,
.shortlisted-candidates-card .candidates-view .candidate-rates .fixed-rate-container p,
.shortlisted-candidates-card .candidates-view .candidate-rates .selected-rate p {
  margin: 3px auto 0;
  font-family: Beatrice, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.01em;
  color: #343741;
}
@media (max-width: 525px) {
  .shortlisted-candidates-card .candidates-view .candidate-rates .rate-change-container,
  .shortlisted-candidates-card .candidates-view .candidate-rates .fixed-rate-container {
    display: none;
  }
}
.shortlisted-candidates-card .candidates-view .candidate-rates .rate-change-container h4,
.shortlisted-candidates-card .candidates-view .candidate-rates .fixed-rate-container h4 {
  font-size: 12px;
}
.shortlisted-candidates-card .candidates-view .candidate-rates .rate-change-container h2,
.shortlisted-candidates-card .candidates-view .candidate-rates .fixed-rate-container h2 {
  font-size: 20px;
  position: relative;
  font-weight: 500;
}
.shortlisted-candidates-card .candidates-view .candidate-rates .rate-change-container h2 span,
.shortlisted-candidates-card .candidates-view .candidate-rates .fixed-rate-container h2 span {
  color: #343741;
}
.shortlisted-candidates-card .candidates-view .candidate-rates .rate-change-container h2 {
  color: var(--theme-danger, '#E54963');
  text-decoration: line-through;
}
.shortlisted-candidates-card .candidates-view .select-hire-btn {
  width: 130px;
  min-height: 45px;
  font-size: 13px;
  font-weight: 500;
}
.shortlisted-candidates-card .candidates-view .select-hire-btn.select-unavailable {
  background-color: transparent;
  border-color: black!important;
  opacity: 1!important;
}
.shortlisted-candidates-card .candidates-view .btn-toggle-view {
  background-color: #F5F6F8;
  transition: all 200ms ease-in;
  display: flex;
  flex-flow: row nowrap;
  gap: 6px;
}
.shortlisted-candidates-card .candidates-view .btn-toggle-view i {
  font-size: 16px;
  margin-top: -2px;
}
.shortlisted-candidates-card .candidates-view .btn-toggle-view:hover,
.shortlisted-candidates-card .candidates-view .btn-toggle-view:focus {
  background-color: #D3D8DD;
}
.shortlisted-candidates-card .candidates-view .btn-toggle-view.active {
  pointer-events: none;
  background: black;
  color: white;
  border-color: black;
}
.shortlisted-candidates-card .candidates-view .feedback-banner {
  min-height: unset;
}
.client-lead-tools .form-group {
  margin-bottom: 0;
}
.client-lead-tools .project-settings-input {
  flex-grow: 1;
}
.client-lead-tools .project-settings-input .form-group {
  display: inline-flex !important;
  flex-direction: row!important;
  align-items: center;
}
.client-lead-tools .project-settings-input .invalid-feedback {
  height: unset!important;
  margin-right: auto;
  opacity: 1;
  line-height: 22.8px;
  margin-top: 0;
  width: unset;
}
.client-lead-tools label.ant-radio-wrapper {
  white-space: nowrap;
}
.client-lead-tools label.ant-radio-wrapper:first-child {
  min-width: 275px;
}
.client-lead-tools label.ant-radio-wrapper [type="radio"]:checked,
.client-lead-tools label.ant-radio-wrapper [type="radio"]:not(:checked) {
  left: unset;
}
.client-lead-tools .file-upload-container .col-form-label {
  display: inline-flex;
  gap: 4px;
}
.client-lead-tools .file-upload-container.text-danger .invalid-feedback {
  display: block;
}
.client-lead-tools .file-upload-container.disabled {
  pointer-events: unset;
}
.client-lead-tools .file-upload-container.disabled * {
  pointer-events: unset;
}
.client-lead-tools .file-upload-container.disabled .btn-file {
  cursor: not-allowed;
  background: rgba(211, 211, 211, 0.5);
}
.manage-scope-table {
  display: flex;
  flex-direction: column;
}
.manage-scope-table .form-group {
  margin-bottom: 0;
}
.manage-scope-table .form-group input,
.manage-scope-table .form-group select,
.manage-scope-table .form-group textarea {
  padding: 8px 6px;
  font-size: 0.75rem;
  line-height: 1rem;
}
.manage-scope-table .form-group .editor {
  margin-bottom: 0;
}
.manage-scope-table .ant-table-row-expand-icon {
  color: white!important;
  background-color: black!important;
  transform: scale(1);
}
.manage-scope-table .ant-select-selection-overflow {
  gap: 8px;
}
.manage-scope-table .anticon {
  vertical-align: middle!important;
}
.manage-scope-table .ant-table-thead > tr > th{
  font-size: 0.75rem;
  line-height: 1rem;
}
.manage-scope-table .tooltip-info span i {
  margin: 0;
  color: black;
}
.manage-scope-table .ant-table-tbody > tr > td .editor-input {
  min-height: 115px;
}
.manage-scope-table .ant-table-tbody > tr > td.td.ant-table-cell-row-hover.editing {
  background-color: white;
}
.manage-scope-table .ant-table-tbody > tr > td.td.ant-table-cell-row-hover.editing .editor-input {
  min-height: 115px;
  resize: none;
  font-size: 12px;
  position: relative;
  -moz-tab-size: 1;
    -o-tab-size: 1;
       tab-size: 1;
  outline: 0;
  padding: 20px 10px;
  caret-color: #444;
}
.manage-scope-table .ant-table.ant-table-middle .ant-table-tbody .ant-table-wrapper:only-child .ant-table {
  margin: 0;
}
.manage-scope-table .scope-inner-table {
  margin: -13px -9px;
  background-color: #e7e6e6;
  padding: 1.5rem 8px;
}
.manage-scope-table .scope-inner-table > div {
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
  background-color: white;
}
.manage-scope-table .scope-inner-table > div > button {
  align-self: center;
}
.manage-scope-table .scope-inner-table .scope-inner-table > div {
  padding-bottom: 0;
}
.manage-scope-table .file-upload-container {
  align-items: stretch;
}
.manage-scope-table .file-upload-container .btn-file {
  align-self: stretch;
}
.manage-scope-table .file-upload-container .btn-file .file-upload-preview {
  align-self: stretch;
}
.manage-team-scope-table .tooltip-info span i {
  margin: 0;
  color: black;
}
.manage-team-scope-table .manage-scope-table > div > .scope-inner-table {
  margin: 0;
  background-color: #fff;
  padding: 0;
}
.manage-team-scope-table .manage-scope-table > div > .scope-inner-table > div {
  box-shadow: none;
}
.project-scope-modal .ant-modal-body {
  padding-right: 0;
  padding-left: 0;
}
.project-scope-modal .ant-modal-footer {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.project-scope-modal .project-scope-form {
  padding: 0 2.5rem;
}
@media (max-width: 640px) {
  .project-scope-modal .project-scope-form {
    padding: 0 1rem;
  }
}
.project-scope-modal .project-scope-form form label{
  font-weight: 500;
}
.project-scope-modal .project-scope-form form .project-scope-form-alert {
  background-color: #efefef;
  border-color: #ececec;
  margin: 0;
}
.project-scope-modal .project-scope-form form .project-scope-form-alert .ant-alert-message{
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
}
.talent-assessment-modal .assessment-modal-container .field-section .field .form-group > label.project-scope-modal .project-scope-form form .project-scope-form-alert .ant-alert-message {
  margin-bottom: 0;
}
.project-scope-modal .project-scope-form form .editor-container {
  margin-top: 0.6rem;
}
.project-scope-modal .project-scope-form form .discipline-form-table .form-group {
  margin-bottom: 0;
  align-items: flex-end;
}
.project-scope-modal .project-scope-form form .discipline-form-table .form-group input {
  text-align: right;
}
.project-scope-modal .project-scope-form form .discipline-form-table .invalid-feedback {
  margin-top: 0;
}
.sow-approval-header {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  margin: 35px 0px 45px;
}
.sow-approval-header .sow-approval-title {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  margin-bottom: 30px;
}
.sow-approval-header .sow-approval-title * {
  color: black;
}
.sow-approval-header .sow-approval-title h3 {
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 21px;
}
.sow-approval-header .sow-approval-title h5 {
  font-style: italic;
  margin-top: 25px;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  margin-bottom: 13px;
}
.sow-approval-header .sow-approval-title p {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 19px;
  margin-bottom: 0;
}
.sow-approval-brief,
.est-brief {
  background-color: white;
  padding: 0.5rem 0.7rem 1.5rem;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}
.sow-approval-brief .sow-approval-brief-info,
.est-brief .sow-approval-brief-info,
.sow-approval-brief .est-brief-info,
.est-brief .est-brief-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  white-space: nowrap;
}
.sow-approval-brief .sow-approval-brief-info .sow-brief-section,
.est-brief .sow-approval-brief-info .sow-brief-section,
.sow-approval-brief .est-brief-info .sow-brief-section,
.est-brief .est-brief-info .sow-brief-section,
.sow-approval-brief .sow-approval-brief-info .est-brief-section,
.est-brief .sow-approval-brief-info .est-brief-section,
.sow-approval-brief .est-brief-info .est-brief-section,
.est-brief .est-brief-info .est-brief-section {
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
  flex-direction: column;
  margin: 1rem 15px 0;
}
.sow-approval-brief .sow-approval-brief-info .sow-brief-section *,
.est-brief .sow-approval-brief-info .sow-brief-section *,
.sow-approval-brief .est-brief-info .sow-brief-section *,
.est-brief .est-brief-info .sow-brief-section *,
.sow-approval-brief .sow-approval-brief-info .est-brief-section *,
.est-brief .sow-approval-brief-info .est-brief-section *,
.sow-approval-brief .est-brief-info .est-brief-section *,
.est-brief .est-brief-info .est-brief-section * {
  color: black;
}
.sow-approval-brief .sow-approval-brief-info .sow-brief-section .sow-brief-section-label,
.est-brief .sow-approval-brief-info .sow-brief-section .sow-brief-section-label,
.sow-approval-brief .est-brief-info .sow-brief-section .sow-brief-section-label,
.est-brief .est-brief-info .sow-brief-section .sow-brief-section-label,
.sow-approval-brief .sow-approval-brief-info .est-brief-section .sow-brief-section-label,
.est-brief .sow-approval-brief-info .est-brief-section .sow-brief-section-label,
.sow-approval-brief .est-brief-info .est-brief-section .sow-brief-section-label,
.est-brief .est-brief-info .est-brief-section .sow-brief-section-label,
.sow-approval-brief .sow-approval-brief-info .sow-brief-section .est-brief-section-label,
.est-brief .sow-approval-brief-info .sow-brief-section .est-brief-section-label,
.sow-approval-brief .est-brief-info .sow-brief-section .est-brief-section-label,
.est-brief .est-brief-info .sow-brief-section .est-brief-section-label,
.sow-approval-brief .sow-approval-brief-info .est-brief-section .est-brief-section-label,
.est-brief .sow-approval-brief-info .est-brief-section .est-brief-section-label,
.sow-approval-brief .est-brief-info .est-brief-section .est-brief-section-label,
.est-brief .est-brief-info .est-brief-section .est-brief-section-label {
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  line-height: 16px;
  margin-bottom: 9px;
}
.sow-approval-brief .sow-approval-brief-info .sow-brief-section .sow-brief-section-value,
.est-brief .sow-approval-brief-info .sow-brief-section .sow-brief-section-value,
.sow-approval-brief .est-brief-info .sow-brief-section .sow-brief-section-value,
.est-brief .est-brief-info .sow-brief-section .sow-brief-section-value,
.sow-approval-brief .sow-approval-brief-info .est-brief-section .sow-brief-section-value,
.est-brief .sow-approval-brief-info .est-brief-section .sow-brief-section-value,
.sow-approval-brief .est-brief-info .est-brief-section .sow-brief-section-value,
.est-brief .est-brief-info .est-brief-section .sow-brief-section-value,
.sow-approval-brief .sow-approval-brief-info .sow-brief-section .est-brief-section-value,
.est-brief .sow-approval-brief-info .sow-brief-section .est-brief-section-value,
.sow-approval-brief .est-brief-info .sow-brief-section .est-brief-section-value,
.est-brief .est-brief-info .sow-brief-section .est-brief-section-value,
.sow-approval-brief .sow-approval-brief-info .est-brief-section .est-brief-section-value,
.est-brief .sow-approval-brief-info .est-brief-section .est-brief-section-value,
.sow-approval-brief .est-brief-info .est-brief-section .est-brief-section-value,
.est-brief .est-brief-info .est-brief-section .est-brief-section-value {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 0;
}
.sow-approval-brief .sow-approval-brief-info .sow-brief-section .est-brief-section-value.proposed,
.est-brief .sow-approval-brief-info .sow-brief-section .est-brief-section-value.proposed,
.sow-approval-brief .est-brief-info .sow-brief-section .est-brief-section-value.proposed,
.est-brief .est-brief-info .sow-brief-section .est-brief-section-value.proposed,
.sow-approval-brief .sow-approval-brief-info .est-brief-section .est-brief-section-value.proposed,
.est-brief .sow-approval-brief-info .est-brief-section .est-brief-section-value.proposed,
.sow-approval-brief .est-brief-info .est-brief-section .est-brief-section-value.proposed,
.est-brief .est-brief-info .est-brief-section .est-brief-section-value.proposed {
  color: black;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
.sow-approval-brief .sow-approval-brief-info .sow-brief-section .est-brief-section-value.proposed span.estimate,
.est-brief .sow-approval-brief-info .sow-brief-section .est-brief-section-value.proposed span.estimate,
.sow-approval-brief .est-brief-info .sow-brief-section .est-brief-section-value.proposed span.estimate,
.est-brief .est-brief-info .sow-brief-section .est-brief-section-value.proposed span.estimate,
.sow-approval-brief .sow-approval-brief-info .est-brief-section .est-brief-section-value.proposed span.estimate,
.est-brief .sow-approval-brief-info .est-brief-section .est-brief-section-value.proposed span.estimate,
.sow-approval-brief .est-brief-info .est-brief-section .est-brief-section-value.proposed span.estimate,
.est-brief .est-brief-info .est-brief-section .est-brief-section-value.proposed span.estimate {
  color: var(--theme-danger, '#E54963');
  text-decoration: line-through;
  margin-right: 0.5rem;
}
.sow-approval-brief .sow-approval-brief-info .sow-brief-section .est-brief-section-value.fee,
.est-brief .sow-approval-brief-info .sow-brief-section .est-brief-section-value.fee,
.sow-approval-brief .est-brief-info .sow-brief-section .est-brief-section-value.fee,
.est-brief .est-brief-info .sow-brief-section .est-brief-section-value.fee,
.sow-approval-brief .sow-approval-brief-info .est-brief-section .est-brief-section-value.fee,
.est-brief .sow-approval-brief-info .est-brief-section .est-brief-section-value.fee,
.sow-approval-brief .est-brief-info .est-brief-section .est-brief-section-value.fee,
.est-brief .est-brief-info .est-brief-section .est-brief-section-value.fee {
  font-weight: bold;
}
.sow-approval-brief .est-brief-info,
.est-brief .est-brief-info {
  flex: 1;
  align-items: flex-start;
  justify-content: flex-start;
}
.sow-approval-brief .sow-brief-section-action,
.est-brief .sow-brief-section-action,
.sow-approval-brief .est-brief-section-action,
.est-brief .est-brief-section-action {
  margin-left: auto;
  margin-right: 15px;
  margin-top: 1rem;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  text-align: left;
}
.sow-approval-brief .sow-brief-section-action span,
.est-brief .sow-brief-section-action span,
.sow-approval-brief .est-brief-section-action span,
.est-brief .est-brief-section-action span {
  white-space: nowrap;
}
.sow-approval-brief .sow-brief-section-action span:first-child,
.est-brief .sow-brief-section-action span:first-child,
.sow-approval-brief .est-brief-section-action span:first-child,
.est-brief .est-brief-section-action span:first-child {
  margin-bottom: 0px;
}
.sow-approval-brief .sow-brief-section-action span:first-child b,
.est-brief .sow-brief-section-action span:first-child b,
.sow-approval-brief .est-brief-section-action span:first-child b,
.est-brief .est-brief-section-action span:first-child b {
  font-weight: 600!important;
}
.est-brief {
  padding: 0.5rem 0.7rem;
}
.sow-approval-step {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.sow-approval-step .approve-btn {
  padding-left: 2rem;
  padding-right: 2rem;
  min-width: 230px;
}
.sow-approval-step .sow-approval-step-header {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
}
.sow-approval-step .sow-approval-step-header h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 19px;
  color: #000000;
  margin-bottom: 15px;
}
.sow-approval-step .sow-approval-step-header p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
}
.sow-approval-step .sow-approval-step-header .flex-center-row {
  margin-bottom: 30px;
  align-self: stretch;
}
.sow-approval-step .sow-approval-step-header .flex-center-row h3 {
  margin-bottom: 0;
}
.sow-approval-step .sow-approval-step-header .sow-cancel-approval-btn {
  margin-left: auto;
  margin-right: 15px;
  margin-top: 1rem;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  text-align: left;
}
.sow-approval-step .sow-approval-step-header .sow-cancel-approval-btn span {
  white-space: nowrap;
}
.sow-approval-step .sow-approval-step-header .sow-cancel-approval-btn span:first-child {
  margin-bottom: 0px;
}
.sow-approval-step .sow-approval-step-header .sow-cancel-approval-btn span:first-child b {
  font-weight: 600!important;
}
.sow-approval-step .sow-approval-schedule .timerange-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.sow-approval-step .sow-approval-schedule .timerange-header > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sow-approval-step .sow-approval-schedule .timerange-header > div:last-child {
  align-items: flex-end;
}
.sow-approval-step .sow-approval-schedule .timerange-header > div p {
  font-family: Beatrice, sans-serif;
  letter-spacing: normal;
}
.sow-approval-step .sow-approval-schedule .timerange-header > div p.timerange-header-label {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 13px;
  margin-bottom: 3px;
  color: #A9ACAE;
}
.sow-approval-step .sow-approval-schedule .timerange-header > div p.timerange-header-date {
  font-weight: 600;
  font-size: 24px;
  color: black;
  margin-bottom: 0;
}
.sow-approval-step .wripple-form.sow-approval-details-form {
  text-align: left;
  margin-top: 25px;
}
.sow-approval-step .wripple-form.sow-approval-details-form .field-section .field-element .sow-approval-question-label,
.sow-approval-step .wripple-form.sow-approval-details-form .field-section .field-element .sow-approval-question-sublabel {
  font-style: normal;
  font-family: Beatrice, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
}
.sow-approval-step .wripple-form.sow-approval-details-form .form-container {
  padding: 0;
}
.sow-approval-step .wripple-form.sow-approval-details-form .form-container form .field {
  margin-top: 0;
  margin-bottom: 15px;
}
.sow-approval-step .wripple-form.sow-approval-details-form .form-container form .field .invalid-feedback {
  padding: 0 15px;
}
.sow-approval-step .wripple-form.sow-approval-details-form .form-container form .input-group-prepend {
  border-bottom-color: #D3D8DD;
  border-bottom-width: 1px;
  font-size: 13px;
}
.sow-approval-step .wripple-form.sow-approval-details-form .form-container form button.btn-primary {
  align-self: flex-start;
}
.sow-approval-step .wripple-form.sow-approval-details-form .form-container form .field-section.hide-label .col-form-label {
  display: none;
}
.sow-approval-step .wripple-form.sow-approval-details-form.form-disabled .input-group-prepend {
  opacity: 0.8 !important;
  background-color: #ececec !important;
}
.sow-approval-step .sow-fees-step {
  background-color: white;
}
.sow-approval-step .sow-summary-step {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.sow-approval-step .sow-summary-step .approve-summary-highlight {
  border: 2px solid var(--theme-primary, '#5f3db1');
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 30px;
  padding: 25px;
  height: 140px;
  pointer-events: all;
}
.sow-approval-step .sow-summary-step .approve-summary-highlight:after {
  display: block;
  opacity: 0.1;
  background-color: var(--theme-info, '#4B80E7');
  content: '';
  border-radius: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  pointer-events: none;
}
.sow-approval-step .sow-summary-step .approve-summary-highlight p {
  color: black;
  margin-bottom: 0;
}
.sow-approval-step .sow-summary-step .summary-container {
  padding: 0.7rem 1rem;
  background: rgba(240, 240, 240, 0.2);
  border-radius: 10px;
}
.sow-approval-step .sow-summary-step .summary-container .sow-approval-details-step label {
  font-size: 14px;
  font-family: "Beatrice Semibold", sans-serif;
  letter-spacing: 0.01em;
}
.sow-approval-step .sow-summary-step .summary-container .sow-approval-details-step p {
  font-size: 14px;
  letter-spacing: 0.01em;
}
.sow-approval-step .sow-summary-step .summary-container .sow-fees-step {
  padding: 25px 15px;
}
.sow-approval-documents-step {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  position: relative;
  padding: 20px 10px;
  pointer-events: all;
}
.sow-approval-documents-step:before {
  display: block;
  opacity: 0.1;
  background-color: var(--theme-info, '#4B80E7');
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  pointer-events: none;
}
.sow-approval-documents-step .feedback-banner {
  z-index: 24;
}
.sow-approval-documents-step .sow-document-item {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
}
.sow-approval-documents-step .sow-document-item .sow-document-owner {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  margin-right: 15px;
}
.sow-approval-documents-step .sow-document-item .sow-document-owner .img-fluid {
  max-height: 60px;
  max-width: 70px;
  margin: 15px 0;
  border-radius: unset;
}
.sow-approval-documents-step .sow-document-item .sow-document-owner .sow-document-divider {
  flex: 1;
  background-color: var(--theme-primary, '#5f3db1');
  width: 2px;
  min-height: 60px;
}
.sow-approval-documents-step .sow-document-item .sow-document-row {
  flex: 1;
  padding: 0 0 20px 0;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  align-items: stretch;
  justify-content: flex-start;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-document-details td {
  padding: 0.45rem;
  vertical-align: top;
  font-size: 12px;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-document-details .doc-uploaded-at {
  text-align: left;
  line-height: 20px;
  white-space: nowrap;
  margin-bottom: 0;
  color: black;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-document-details .doc-type-name {
  text-align: left;
  line-height: 20px;
  font-weight: 600;
  color: var(--theme-primary, '#5f3db1');
  white-space: nowrap;
  margin-bottom: 0;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-document-details .doc-notes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  line-height: 20px;
  margin-bottom: 0;
  color: black;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-document-details .doc-notes .doc-notes-info {
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 3px;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-document-details tr > td > .btn-link {
  font-size: 12px;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version {
  text-align: left;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 0.75rem 0.5rem;
  margin-bottom: 10px;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms > div > p,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version > div > p,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms > div > .btn-link,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version > div > .btn-link {
  padding: 0 7px;
  font-family: "Beatrice", sans-serif;
  letter-spacing: 0.01em;
  font-size: 12px;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-contract-approval-confirm,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-contract-approval-confirm,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-upload-revision,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-upload-revision {
  background-color: transparent;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-contract-approval-confirm .form-container,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-contract-approval-confirm .form-container,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-upload-revision .form-container,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-upload-revision .form-container {
  padding: 0 0 25px;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-contract-approval-confirm .col-form-label,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-contract-approval-confirm .col-form-label,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-upload-revision .col-form-label,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-upload-revision .col-form-label {
  display: none;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-contract-approval-confirm .field-section,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-contract-approval-confirm .field-section,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-upload-revision .field-section,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-upload-revision .field-section {
  align-items: flex-start;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-contract-approval-confirm .field,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-contract-approval-confirm .field,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-upload-revision .field,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-upload-revision .field {
  padding: 0 7px;
  text-align: left;
  margin: 0!important;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-contract-approval-confirm .field .form-group,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-contract-approval-confirm .field .form-group,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-upload-revision .field .form-group,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-upload-revision .field .form-group {
  margin: 0!important;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-contract-approval-confirm .field .form-group input,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-contract-approval-confirm .field .form-group input,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-upload-revision .field .form-group input,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-upload-revision .field .form-group input,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-contract-approval-confirm .field .form-group textarea,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-contract-approval-confirm .field .form-group textarea,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-upload-revision .field .form-group textarea,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-upload-revision .field .form-group textarea {
  background: #FFFFFF;
  border: 2px solid var(--theme-primary, '#5f3db1');
  box-sizing: border-box;
  font-size: 12px;
  padding: 3px 8px;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-contract-approval-confirm .field .form-group input.is-invalid,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-contract-approval-confirm .field .form-group input.is-invalid,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-upload-revision .field .form-group input.is-invalid,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-upload-revision .field .form-group input.is-invalid,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-contract-approval-confirm .field .form-group textarea.is-invalid,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-contract-approval-confirm .field .form-group textarea.is-invalid,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-upload-revision .field .form-group textarea.is-invalid,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-upload-revision .field .form-group textarea.is-invalid {
  border-color: var(--theme-danger, '#E54963');
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-contract-approval-confirm .field .form-group input,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-contract-approval-confirm .field .form-group input,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-upload-revision .field .form-group input,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-upload-revision .field .form-group input {
  height: 40px;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-contract-approval-confirm .field .form-group textarea,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-contract-approval-confirm .field .form-group textarea,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-upload-revision .field .form-group textarea,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-upload-revision .field .form-group textarea {
  min-height: 100px;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-contract-approval-confirm .field .form-group .invalid-feedback,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-contract-approval-confirm .field .form-group .invalid-feedback,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-upload-revision .field .form-group .invalid-feedback,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-upload-revision .field .form-group .invalid-feedback {
  left: unset;
  right: unset;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-contract-approval-confirm .field .form-group.text-danger input,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-contract-approval-confirm .field .form-group.text-danger input,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-upload-revision .field .form-group.text-danger input,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-upload-revision .field .form-group.text-danger input,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-contract-approval-confirm .field .form-group.text-danger textarea,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-contract-approval-confirm .field .form-group.text-danger textarea,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-upload-revision .field .form-group.text-danger textarea,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-upload-revision .field .form-group.text-danger textarea {
  border-color: var(--theme-danger, '#E54963');
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-contract-approval-confirm .field-element,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-contract-approval-confirm .field-element,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-upload-revision .field-element,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-upload-revision .field-element {
  padding: 0 10px;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-contract-approval-confirm .field-element button,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-contract-approval-confirm .field-element button,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-upload-revision .field-element button,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-newer-version .sow-upload-revision .field-element button {
  height: 40px;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-document-details .download-doc-btn,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms button[type='submit'] {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  height: 37px;
  margin-right: auto;
  text-align: right;
  background-color: white;
  border: 2px solid var(--theme-primary, '#5f3db1');
  color: var(--theme-primary, '#5f3db1');
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 11px;
  white-space: nowrap;
  line-height: 25px;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-document-details .download-doc-btn i,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms button[type='submit'] i {
  margin-bottom: 1px;
  font-size: 20px;
  margin-right: 10px;
}
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-document-details .download-doc-btn:hover,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms button[type='submit']:hover,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-document-details .download-doc-btn:focus,
.sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms button[type='submit']:focus {
  background-color: var(--theme-primary, '#5f3db1');
}
.sow-approval-documents-step .sow-document-item.replaced-contract .doc-type-name p {
  text-decoration: line-through;
}
.gantt-chart-container {
  position: relative;
  align-self: stretch;
  justify-content: center;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  z-index: 1;
  margin: 0.3rem 0.5rem;
}
.gantt-chart-container .gantt-loader {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: all;
  z-index: 5;
}
.gantt-table {
  text-align: left;
}
.gantt-table table thead {
  border: none;
}
.gantt-table table thead tr {
  border: none;
  position: relative;
}
.gantt-table table thead tr th {
  border: none;
  font-size: 12px;
  text-align: center;
}
.gantt-table table thead tr th:first-child {
  width: 1%;
  white-space: nowrap;
}
.gantt-table table thead tr th .gantt-table-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.gantt-table table thead tr th .gantt-table-header p {
  font-size: 11px;
  letter-spacing: -0.4px;
  line-height: 16px;
  white-space: nowrap;
}
.gantt-table table thead tr th .gantt-table-header p.gantt-table-header-date {
  margin-bottom: 5px;
  font-weight: 400;
}
.gantt-table table thead tr th .gantt-table-header p.gantt-table-header-label {
  margin-bottom: 0;
  font-weight: 600;
}
.gantt-table table tbody tr {
  position: relative;
}
.gantt-table table td.gantt-table-bar-label {
  font-size: 13px;
  white-space: nowrap;
  border-width: 0;
  padding: 0.5rem 0;
  width: 1%;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position,
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-discipline {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 15px;
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  position: relative;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info,
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-discipline .position-info,
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .discipline-info,
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-discipline .discipline-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info p,
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-discipline .position-info p,
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .discipline-info p,
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-discipline .discipline-info p {
  margin-bottom: 0;
  line-height: 20px;
  letter-spacing: 0.01em;
  font-size: 11px;
  color: black;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position {
  width: 280px;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .img-fluid {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position i.img-fluid {
  font-size: 55px;
  color: #dddddd;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info {
  display: block;
  line-height: 18px;
  flex: unset;
  overflow: hidden;
  padding-left: 0.5rem;
  width: calc(276px - 55px);
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info p.position-username {
  font-weight: 600;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info p.position-discipline {
  font-weight: 400;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info .position-input-content {
  display: flex;
  align-self: stretch;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 0.2rem;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info .position-input-content:first-of-type {
  margin-top: 0.3rem !important;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info .position-input-content:last-child {
  margin: 0;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info .position-input-content button.btn-link {
  margin: -1px 0.3rem 0;
  padding: 0!important;
  line-height: 18px;
  font-size: 11px;
  color: var(--theme-info, '#4B80E7') !important;
  transition: all 200ms ease-in;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info .position-input-content button.btn-link:hover,
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info .position-input-content button.btn-link:focus {
  color: var(--theme-info-darker) !important;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info .position-input-content button.btn-link.isEditing {
  color: var(--theme-secondary, '#913ef0') !important;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info .position-input-content button.btn-link.isEditing:hover,
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info .position-input-content button.btn-link.isEditing:focus {
  color: var(--theme-secondary-darker) !important;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info .position-input-content button.btn-link.btn-link-danger {
  color: var(--theme-danger, '#E54963') !important;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info .position-input-content button.btn-link.btn-link-danger:hover,
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info .position-input-content button.btn-link.btn-link-danger:focus {
  color: var(--theme-danger-darker) !important;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info .position-input-content input {
  font-size: 11px;
  max-width: 120px;
  margin-left: 0.3rem;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info .position-input-content input[type="number"] {
  text-align: center;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-info .position-input-content i {
  font-size: 11px;
  color: black;
  margin-top: -2px;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-remove {
  position: absolute;
  top: 8px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-remove i {
  transition: opacity 200ms ease-in;
  color: black;
  opacity: 0.4;
  font-size: 15px;
}
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-remove:hover i,
.gantt-table table td.gantt-table-bar-label .gantt-table-bar-position .position-remove:focus i {
  opacity: 1;
}
.gantt-table table td.gantt-position-estimate {
  border: none;
  vertical-align: middle;
  position: relative;
}
.gantt-table table td.gantt-position-estimate .gantt-position-wrapper {
  margin: 0;
  padding: 0.75rem 0.75rem 45px !important;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  align-self: center;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.gantt-table table td.gantt-position-estimate p {
  display: inline-block;
  font-family: "Beatrice", sans-serif;
  letter-spacing: 0.01em;
  font-size: 13px;
  margin-bottom: 0.3rem;
  white-space: nowrap;
}
.gantt-table table td.gantt-position-estimate p small {
  font-style: italic;
  font-size: 9px;
}
.gantt-table table td.gantt-position-estimate .gantt-position-rate-note {
  margin-top: -0.3rem;
  margin-bottom: 0;
}
.gantt-table table td.gantt-position-estimate .gantt-position-cost {
  font-size: 15px;
  margin-top: 0.3rem;
  font-weight: 500;
}
.gantt-table table td.gantt-table-bar-item {
  border: none;
  vertical-align: middle;
}
.gantt-table table td.gantt-table-bar-item .bar-item {
  vertical-align: middle;
  margin-top: 4rem;
  height: 25px;
  border-radius: 15px;
}
.gantt-table table td.gantt-table-bar-item .bar-item.discipline-bar {
  margin-top: 0;
}
.gantt-table table td.gantt-table-bar-item .bar-item.isActive {
  border: 2px solid var(--theme-primary, '#5f3db1');
  position: relative;
}
.gantt-table table td.gantt-table-bar-item .bar-item.isActive:after {
  display: block;
  opacity: 0.2;
  background-color: var(--theme-primary, '#5f3db1');
  content: '';
  border-radius: 15px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.gantt-table table td.gantt-table-bar-item .bar-item.isActive:hover:after {
  opacity: 1;
}
.sow-steps-menu {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.sow-steps-menu .sow-step-btn {
  background-color: #F1F4F7;
  margin: 0 15px 15px 0;
  text-align: left;
  padding: 1.2rem 1rem;
  border-radius: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  color: #a8abad;
}
.sow-steps-menu .sow-step-btn i {
  color: #a8abad;
  vertical-align: middle;
  line-height: 13px;
  width: 20px;
  margin: 0!important;
}
.sow-steps-menu .sow-step-btn i.fa-dot-circle,
.sow-steps-menu .sow-step-btn i.fa-circle {
  font-size: 10px;
}
.sow-steps-menu .sow-step-btn.isActive {
  background-color: white;
  margin-right: 0;
  opacity: 1;
  color: var(--theme-secondary, '#913ef0');
}
.sow-steps-menu .sow-step-btn.isActive i.fa-circle {
  color: var(--theme-secondary, '#913ef0');
}
.sow-steps-menu .sow-step-btn.isComplete {
  background-color: white;
  color: var(--theme-success-darker);
  margin-right: 0;
}
.sow-steps-menu .sow-step-btn.isComplete i {
  font-size: 14px;
  color: var(--theme-success-darker);
}
.sow-steps-menu .sow-step-btn.isComplete.isActive {
  background-color: white;
  margin-right: 0;
  opacity: 1;
  color: var(--theme-secondary, '#913ef0');
}
.sow-steps-menu .sow-step-btn.isComplete.isActive i {
  color: var(--theme-secondary, '#913ef0');
}
@media only screen and (max-width: 768px) {
  .sow-steps-menu {
    margin-top: -20px;
  }
}
.client-browse-container {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
}
.client-browse-container .client-browse-header {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 15px;
  border-bottom: 1px solid #CECECE;
}
.client-browse-container .client-browse-header h4 {
  margin: 0 40px 0 0;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 26px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #000000;
}
.client-browse-container .feedback-banner i {
  font-size: 35px;
}
.client-browse-container .browse-filters-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px auto 0;
}
.client-browse-container .browse-filters-container .type-filters,
.client-browse-container .browse-filters-container .criteria-filters,
.client-browse-container .browse-filters-container .filter-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  margin: 0 auto;
}
.client-browse-container .browse-filters-container .type-filters h5,
.client-browse-container .browse-filters-container .criteria-filters h5,
.client-browse-container .browse-filters-container .filter-actions h5 {
  font-weight: 500;
  font-family: Beatrice, sans-serif;
  letter-spacing: 0.01em;
  font-size: 15px;
  margin: 5px 8px 10px;
}
.client-browse-container .browse-filters-container .type-filters .row-content,
.client-browse-container .browse-filters-container .criteria-filters .row-content,
.client-browse-container .browse-filters-container .filter-actions .row-content {
  margin: 0 -8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0 8px 20px;
}
.client-browse-container .browse-filters-container .type-filters .row-content .form-group,
.client-browse-container .browse-filters-container .criteria-filters .row-content .form-group,
.client-browse-container .browse-filters-container .filter-actions .row-content .form-group {
  margin-bottom: 0;
}
.client-browse-container .browse-filters-container .type-filters .row-content .form-group label,
.client-browse-container .browse-filters-container .criteria-filters .row-content .form-group label,
.client-browse-container .browse-filters-container .filter-actions .row-content .form-group label {
  margin: 0;
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  cursor: pointer;
}
.client-browse-container .browse-filters-container .type-filters .row-content .form-group label span,
.client-browse-container .browse-filters-container .criteria-filters .row-content .form-group label span,
.client-browse-container .browse-filters-container .filter-actions .row-content .form-group label span {
  margin: 0 4px;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #90A0B7;
  transition: all 150ms ease-in;
}
.client-browse-container .browse-filters-container .type-filters .row-content .form-group label span.active,
.client-browse-container .browse-filters-container .criteria-filters .row-content .form-group label span.active,
.client-browse-container .browse-filters-container .filter-actions .row-content .form-group label span.active {
  font-weight: 400;
  color: var(--theme-secondary, '#913ef0');
}
.client-browse-container .browse-filters-container .type-filters .row-content .form-group label span:first-child,
.client-browse-container .browse-filters-container .criteria-filters .row-content .form-group label span:first-child,
.client-browse-container .browse-filters-container .filter-actions .row-content .form-group label span:first-child {
  margin: 0 4px 0 5px;
}
.client-browse-container .browse-filters-container .filter-actions .row-content {
  align-self: stretch;
}
.client-browse-container .browse-filters-container .filter-actions .row-content .apply-filters-btn {
  margin: 0 10px 0;
  height: 40px;
}
.client-browse-container .browse-filters-container .filter-button-dropdown {
  display: flex;
  flex-direction: column;
  position: relative;
}
.client-browse-container .browse-filters-container .filter-button {
  padding: 0 8px 0!important;
  height: 40px;
  background: white;
  border: none;
  box-shadow: none !important;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 11px !important;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.01em;
  color: #000000 !important;
  margin: 0 8px 0;
}
.client-browse-container .browse-filters-container .filter-button .filter-button-label.active {
  color: black;
  font-weight: 700;
}
.client-browse-container .browse-filters-container .filter-button > span {
  margin: 0 3px 0 0;
}
.client-browse-container .browse-filters-container .filter-button::after {
  margin-left: 4px;
  padding-left: 0;
}
.client-browse-container .browse-filters-container .filter-button:active {
  background-color: #EEEEEE !important;
}
.client-browse-container .browse-filters-container .criteria-filters .filter-button {
  border: 2px solid var(--theme-warning, '#FFB946');
}
.client-browse-container .browse-filters-container .help-text {
  padding: 0 10px;
  height: 35px;
  margin-top: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  overflow: visible;
}
.client-browse-container .browse-filters-container .help-text p {
  font-size: 11px;
  white-space: nowrap;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu {
  min-width: 348px;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu > .dropdown-item span {
  font-weight: 400;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .dropdown-header .text-bold {
  color: #000;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-option-form {
  pointer-events: all;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-option-form:active {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-option-form.checked {
  background-color: #f8f9fa;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-option-form .filter-importance {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-option-form .filter-importance * {
  font-family: Beatrice, sans-serif;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-option-form .filter-importance .importance-btn {
  font-size: 11px;
  white-space: nowrap;
  color: var(--theme-secondary, '#913ef0');
  font-weight: 500;
  font-family: Beatrice, sans-serif;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-option-form .filter-importance .importance-btn.disabled {
  color: #d3d8dd;
  pointer-events: none;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-option-form .form-checkbox {
  flex: 1;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-option-form .form-checkbox label {
  flex: 1;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-option-form .form-checkbox [type="checkbox"]:checked + label {
  background-color: transparent;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-option-form .form-checkbox [type="checkbox"]:checked + label::before {
  color: var(--theme-warning, '#FFB946');
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-section-select {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-search-input {
  min-width: 280px;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-search-input.active,
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-search-input:active {
  color: #16181b;
  text-decoration: none;
  background-color: #fff;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-search-input .react-autosuggest__container {
  pointer-events: all;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-search-input .input-group {
  height: 30px;
  position: relative;
  display: flex;
  align-items: center;
  width: 300px;
  box-shadow: #95899b 0px 0px 0px 1px inset;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 0 5px;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-search-input .input-group .input-group-prepend,
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-search-input .input-group .input-group-append {
  border: none!important;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-search-input input {
  flex: 1 1 auto;
  height: 100%;
  background-color: transparent !important;
  line-height: normal !important;
  box-shadow: none !important;
  outline: none !important;
  display: inline-block !important;
  font-size: 14px !important;
  padding: 0 !important;
  width: 70% !important;
  color: #000 !important;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-search-input input:focus {
  outline: none!important;
  box-shadow: none!important;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-search-input ::-moz-placeholder {
  color: #707683 !important;
  font-size: 11px!important;
  font-weight: 500 !important;
  opacity: 1;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-search-input ::placeholder {
  color: #707683 !important;
  font-size: 11px!important;
  font-weight: 500 !important;
  opacity: 1;
}
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-search-input :-ms-input-placeholder,
.client-browse-container .browse-filters-container .filter-dropdown-menu .filter-search-input ::-ms-input-placeholder {
  color: #707683 !important;
  font-size: 14px!important;
  font-weight: 500 !important;
}
.browse-list {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 0 40px;
  flex-direction: row;
}
.browse-list .browse-group-container {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
}
.browse-list .card-list .request-btn {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 22px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  height: 42px!important;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 15px;
  margin-top: 15px;
}
.browse-list .card-list .rate-container {
  margin-top: 20px;
  background-color: #F5F6F8;
  border-top: 1.5px solid #E5E5E5;
  border-bottom: 1.5px solid #E5E5E5;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
  height: 100px;
}
.browse-list .card-list .rate-container p {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 19px;
  line-height: 21px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: black;
  margin-bottom: 0;
}
.browse-list .card-list .rate-container p span:first-child {
  font-size: 14px;
  letter-spacing: 0.14em;
  font-weight: 500;
  margin-bottom: 8px;
}
.search-talent-sidebar .filter-actions .row-content {
  align-self: stretch;
}
.search-talent-sidebar .filter-actions .row-content .apply-filters-btn {
  margin: 0 10px 0;
  height: 40px;
}
.search-talent-sidebar .filter-custom-options {
  background-color: #f2f8fe;
  padding: 0.7rem 1.3rem;
}
.search-talent-sidebar .filter-button-dropdown {
  background-color: #f2f8fe;
  padding: 0.7rem 1.3rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.search-talent-sidebar .filter-button-dropdown .filter-scroller > div:first-child {
  margin-right: -21px !important;
}
.search-talent-sidebar .filter-button-dropdown > .dropdown-item span {
  font-weight: 400;
}
.search-talent-sidebar .filter-button-dropdown .header .text-bold {
  color: #000;
}
.search-talent-sidebar .filter-button-dropdown .filter-option-form {
  pointer-events: all;
  padding-bottom: 0.25rem;
  padding-right: 0.4rem;
  padding-top: 0.25rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.search-talent-sidebar .filter-button-dropdown .filter-option-form.checkbox-options-container {
  margin-bottom: 0.25rem;
}
.search-talent-sidebar .filter-button-dropdown .filter-option-form:active {
  color: #16181b;
  text-decoration: none;
  background-color: #f2f8fe;
}
.search-talent-sidebar .filter-button-dropdown .filter-option-form .ant-checkbox:not(.ant-checkbox-checked):not(.ant-checkbox-indeterminate) .ant-checkbox-inner {
  background-color: #d3d8dd;
  border-color: #d3d8dd;
}
.search-talent-sidebar .filter-button-dropdown .filter-option-form .ant-checkbox-indeterminate .ant-checkbox-inner {
  background-color: white;
}
.search-talent-sidebar .filter-button-dropdown .filter-option-form.checked {
  background-color: #f2f8fe;
}
.search-talent-sidebar .filter-button-dropdown .filter-option-form .filter-importance {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}
.search-talent-sidebar .filter-button-dropdown .filter-option-form .filter-importance * {
  font-family: Beatrice, sans-serif;
}
.search-talent-sidebar .filter-button-dropdown .filter-option-form .filter-importance .importance-btn {
  font-size: 10px;
  white-space: nowrap;
  color: var(--theme-secondary, '#913ef0');
  font-weight: 500;
  font-family: Beatrice, sans-serif;
}
.search-talent-sidebar .filter-button-dropdown .filter-option-form .filter-importance .importance-btn.disabled {
  color: #d3d8dd;
  pointer-events: none;
}
.search-talent-sidebar .filter-button-dropdown .filter-option-form .form-checkbox {
  flex: 1;
}
.search-talent-sidebar .filter-button-dropdown .filter-option-form .form-checkbox label {
  flex: 1;
}
.search-talent-sidebar .filter-button-dropdown .filter-option-form .form-checkbox [type="checkbox"]:checked + label {
  background-color: transparent;
}
.search-talent-sidebar .filter-button-dropdown .filter-option-form .form-checkbox [type="checkbox"]:checked + label::before {
  color: var(--theme-secondary, '#913ef0');
}
.search-talent-sidebar .filter-button-dropdown.filter-custom-options {
  background-color: transparent;
}
.search-talent-sidebar .filter-button-dropdown.filter-custom-options .filter-option-form {
  padding-bottom: 0;
}
.search-talent-sidebar .filter-button-dropdown.filter-custom-options .filter-option-form:active {
  color: unset;
  text-decoration: unset;
  background-color: transparent;
}
.search-talent-sidebar .filter-button-dropdown.filter-custom-options .filter-option-form.checked {
  background-color: transparent;
}
.search-talent-sidebar .filter-button-dropdown .filter-section-select {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
}
.search-talent-sidebar .filter-button-dropdown .filter-search-input {
  padding: 0.3rem 0.3rem 0;
  background-color: #f2f8fe;
}
.search-talent-sidebar .filter-button-dropdown .filter-search-input.active,
.search-talent-sidebar .filter-button-dropdown .filter-search-input:active {
  color: #16181b;
  text-decoration: none;
  background-color: #fff;
}
.search-talent-sidebar .filter-button-dropdown .filter-search-input .react-autosuggest__container {
  border: none;
  pointer-events: all;
}
.search-talent-sidebar .filter-button-dropdown .filter-search-input .input-group {
  height: 30px;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: #95899b 0px 0px 0px 1px inset;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 0 10px;
}
.search-talent-sidebar .filter-button-dropdown .filter-search-input .input-group .input-group-prepend,
.search-talent-sidebar .filter-button-dropdown .filter-search-input .input-group .input-group-append {
  border: none!important;
}
.search-talent-sidebar .filter-button-dropdown .filter-search-input input {
  flex: 1 1 auto;
  height: 100%;
  background-color: transparent !important;
  line-height: normal !important;
  box-shadow: none !important;
  outline: none !important;
  display: inline-block !important;
  font-size: 14px !important;
  padding: 0 !important;
  width: 70% !important;
  color: #000 !important;
}
.search-talent-sidebar .filter-button-dropdown .filter-search-input input:focus {
  outline: none!important;
  box-shadow: none!important;
}
.search-talent-sidebar .filter-button-dropdown .filter-search-input ::-moz-placeholder {
  color: #707683 !important;
  font-size: 11px!important;
  font-weight: 500 !important;
  opacity: 1;
}
.search-talent-sidebar .filter-button-dropdown .filter-search-input ::placeholder {
  color: #707683 !important;
  font-size: 11px!important;
  font-weight: 500 !important;
  opacity: 1;
}
.search-talent-sidebar .filter-button-dropdown .filter-search-input :-ms-input-placeholder,
.search-talent-sidebar .filter-button-dropdown .filter-search-input ::-ms-input-placeholder {
  color: #707683 !important;
  font-size: 14px!important;
  font-weight: 500 !important;
}
.search-talent-sidebar .filter-button {
  padding: 0 8px 0!important;
  height: 40px;
  background: white;
  border: none;
  box-shadow: none !important;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 11px !important;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.01em;
  color: #000000 !important;
  margin: 0 8px 0;
}
.search-talent-sidebar .filter-button .filter-button-label.active {
  color: black;
  font-weight: 700;
}
.search-talent-sidebar .filter-button > span {
  margin: 0 3px 0 0;
}
.search-talent-sidebar .filter-button::after {
  margin-left: 4px;
  padding-left: 0;
}
.search-talent-sidebar .filter-button:active {
  background-color: #EEEEEE !important;
}
.search-talent-sidebar .criteria-filters .filter-button {
  border: 2px solid var(--theme-warning, '#FFB946');
}
.search-talent-sidebar .help-text {
  padding: 0 10px;
  height: 35px;
  margin-top: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  overflow: visible;
}
.search-talent-sidebar .help-text p {
  font-size: 11px;
  white-space: nowrap;
}
.importance-select-popup {
  min-width: 125px!important;
}
.importance-select-popup *{
  font-size: 0.75rem;
  line-height: 1rem;
}
.sort-filter-dropdown {
  margin-left: auto;
}
.sort-filter-dropdown .sort-toggle {
  cursor: pointer;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.01em;
  color: #885AF8;
}
.sort-filter-dropdown .sort-toggle span {
  font-weight: 600;
}
.sort-filter-dropdown .sort-toggle .text-black,
.sort-filter-dropdown .sort-toggle:after {
  color: #000000;
}
.sort-filter-dropdown > .dropdown-menu.show {
  left: auto !important;
  right: 0;
}
.sort-filter-dropdown > .dropdown-menu {
  background-color: white;
  text-align: center;
}
.sort-filter-dropdown > .dropdown-menu .dropdown-item {
  color: #000000;
  background-color: transparent;
  margin-bottom: 5px;
}
.sort-filter-dropdown > .dropdown-menu .dropdown-item span {
  border-bottom: 1px solid transparent;
}
.sort-filter-dropdown > .dropdown-menu .dropdown-item.active {
  color: #6F49CC;
}
.sort-filter-dropdown > .dropdown-menu .dropdown-item.active span {
  border-bottom: 1px solid #6F49CC;
}
.add-to-project-modal {
  padding: 15px 20px;
}
.add-to-project-modal .modal-container {
  padding: 0;
}
.add-to-project-modal .modal-container > div {
  padding: 15px 35px;
}
.add-to-project-modal .modal-container .modal-title {
  padding: 15px 25px;
  background-color: var(--theme-info, '#4B80E7');
  margin-bottom: 0;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
.add-to-project-modal .wripple-form .form-container {
  padding: 0;
}
.add-to-project-modal .wripple-form .form-container .form-group {
  margin-bottom: 0;
}
.add-to-project-modal .wripple-form .form-container .field {
  margin-top: 0!important;
  margin-bottom: 0;
}
.add-to-project-modal .project-invite-row {
  margin-bottom: 20px;
  padding: 0 25px;
  border-bottom: 1px solid #d3d8dd;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.add-to-project-modal .project-invite-row .project-row {
  margin: 0 0 10px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}
.add-to-project-modal .project-invite-row table {
  margin-top: 20px;
  width: unset;
}
.add-to-project-modal .project-invite-row table thead,
.add-to-project-modal .project-invite-row table tbody {
  width: 100%;
}
.add-to-project-modal .project-invite-row table th {
  border-color: #e5e5e5;
}
.add-to-project-modal .project-invite-row table td,
.add-to-project-modal .project-invite-row table th {
  padding: 0.25rem 0.75rem;
  font-size: 13px;
  vertical-align: middle;
}
.add-to-project-modal .invite-action {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.add-to-project-modal .invite-action button {
  padding: 0.5rem !important;
}
.add-to-project-modal .project-invite-modal-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  height: 85px;
  padding: 0 25px;
  border-top: 1px solid black;
}
@media only screen and (max-width: 720px) {
  .browse-list {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 0 5px 0;
    white-space: normal;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .browse-list .browse-talent-panel {
    margin: 0 auto 30px auto;
    max-width: 360px;
    width: 100% !important;
    display: block;
    float: none;
  }
}
@media only screen and (min-width: 975px) {
  .client-browse-container .browse-filters-container .filter-actions {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 529px) {
  .client-browse-container .client-browse-header h4 {
    font-size: 1.35rem;
  }
  .client-browse-container .browse-filters-container {
    display: block;
    max-width: 375px;
  }
  .client-browse-container .browse-filters-container .type-filters .row-content,
  .client-browse-container .browse-filters-container .criteria-filters .row-content,
  .client-browse-container .browse-filters-container .filter-actions .row-content {
    display: block;
  }
  .client-browse-container .browse-filters-container .type-filters .row-content button,
  .client-browse-container .browse-filters-container .criteria-filters .row-content button,
  .client-browse-container .browse-filters-container .filter-actions .row-content button {
    width: calc(100% - 16px);
    margin-top: 8px;
  }
  .client-browse-container .browse-filters-container .filter-actions .row-content .apply-filters-btn:last-child {
    margin-top: 20px;
  }
  .client-browse-container .browse-filters-container .filter-dropdown-menu .dropdown-item {
    padding: 0 8px;
    white-space: normal;
  }
  .add-to-project-modal .scrollarea .scrollarea-content .modal-container {
    padding: 0;
  }
  .add-to-project-modal .scrollarea .scrollarea-content .modal-container > div {
    padding: 8px;
  }
  .add-to-project-modal .wripple-form.default-form .form-container form .field .form-group label {
    white-space: normal;
  }
}
.dashboard.client-dashboard {
  flex-direction: column;
  align-items: stretch;
  display: flex;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 20px 35px;
}
.dashboard.client-dashboard > .row {
  align-items: stretch;
}
.dashboard.client-dashboard > .row.client-dashboard-links-row > div {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
}
.dashboard.client-dashboard .client-dashboard-panel {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 6px 0 18px rgba(0, 0, 0, 0.06);
  padding: 2rem 2.5rem;
  margin-bottom: 20px;
  margin-top: 20px;
  min-height: 220px;
}
.dashboard.client-dashboard .client-dashboard-panel h5 {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #000000;
}
.dashboard.client-dashboard .client-dashboard-panel p {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #000000;
}
.dashboard.client-dashboard .client-dashboard-panel .btn {
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  white-space: nowrap;
}
.dashboard.client-dashboard .client-dashboard-panel.welcome-container {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  min-height: unset;
  padding: 1.3rem 3rem;
}
.dashboard.client-dashboard .client-dashboard-panel.welcome-container p {
  line-height: 24px;
}
.dashboard.client-dashboard .client-dashboard-panel.welcome-container .col-md-8 {
  padding: 0 25px;
}
.dashboard.client-dashboard .client-dashboard-panel.welcome-container .welcome-image {
  min-height: 150px;
  position: relative;
  align-self: stretch;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.dashboard.client-dashboard .client-dashboard-panel.welcome-container .welcome-image .welcome-banner {
  top: -50px;
  width: 95%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .dashboard.client-dashboard .client-dashboard-panel.welcome-container .welcome-image img,
  .dashboard.client-dashboard .client-dashboard-panel.welcome-container .welcome-image .welcome-banner {
    margin-bottom: 35px;
  }
}
.dashboard.client-dashboard .client-dashboard-panel.client-dashboard-link {
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.dashboard.client-dashboard .client-dashboard-panel.client-dashboard-link .custom-circle-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.dashboard.client-dashboard .client-dashboard-panel.client-dashboard-link .custom-circle-icon i {
  font-size: 40px;
  color: white;
  text-align: center;
}
.dashboard.client-dashboard .client-dashboard-panel.client-dashboard-link p {
  min-height: 45px;
  margin: 25px 0;
  font-size: 15px;
  font-weight: 500;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-consultant {
  flex: 1;
  flex-flow: row wrap;
  align-items: stretch;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-consultant > .row {
  align-items: center;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-consultant .consultant-pic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  padding: 20px 0;
  margin: 0 auto;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-consultant .consultant-pic > * {
  height: 115px;
  width: 115px;
  margin: 0 auto;
}
@media only screen and (max-width: 529px) {
  .dashboard.client-dashboard .client-dashboard-panel.dashboard-consultant .consultant-pic > * {
    margin-bottom: 20px;
  }
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-consultant .consultant-details {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0 auto;
  min-width: 250px;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-consultant .consultant-details h5 {
  white-space: nowrap;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-consultant .consultant-actions {
  align-self: stretch;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 0 -10px;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-consultant .consultant-actions .btn {
  flex: 1;
  min-width: 115px;
  margin: 5px;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: stretch;
  justify-content: stretch;
  align-self: stretch;
  padding: 0;
  flex: 1;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller .dashboard-feed-swiper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-direction: row;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller .dashboard-feed-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 2rem 2.5rem;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller .dashboard-feed-swiper .swiper-pagination {
  bottom: 15px;
  text-align: left;
  padding: 0 25px;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller .dashboard-feed-swiper .swiper-pagination-bullet {
  height: 10px;
  margin: 0 5px;
  width: 10px;
  color: #000;
  opacity: 1;
  background-color: #C4C4C4;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller .dashboard-feed-swiper .swiper-pagination-bullet-active {
  background-color: #6f42c1;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller .dashboard-feed-swiper .scroller-navigation {
  position: absolute;
  z-index: 10;
  pointer-events: all;
  bottom: 15px;
  right: 25px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 0 20px;
  justify-content: flex-start;
  background-color: transparent;
  box-shadow: none;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller .dashboard-feed-swiper .scroller-navigation button {
  background-color: #000000;
  width: 35px;
  height: 28px;
  color: white !important;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller .dashboard-feed-swiper .scroller-navigation button:disabled {
  background-color: #7a7979;
  opacity: 1;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller .dashboard-feed-swiper .scroller-navigation .left-scroll {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-right: 1px solid white;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller .dashboard-feed-swiper .scroller-navigation .right-scroll {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
@media only screen and (max-width: 529px) {
  .dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller {
    margin-top: 18px;
  }
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller > div {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  align-self: stretch;
  flex: 1;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller > div #default-scroll-container {
  flex: 1;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller > div #default-scroll-container .default-scroll-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5em 2.5em;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller > div .scroller {
  bottom: 15px;
  right: 25px;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller > div .feed-indicators {
  position: absolute;
  bottom: 15px;
  left: 25px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller > div .feed-indicators span {
  margin: 5px;
  background-color: #C4C4C4;
  border-radius: 50%;
  height: 10px;
  width: 10px;
}
.dashboard.client-dashboard .client-dashboard-panel.dashboard-feed-scroller > div .feed-indicators span.active {
  background-color: #6f42c1;
  opacity: 1;
}
.dashboard.client-dashboard .consultant-img {
  text-align: center;
}
@media only screen and (max-width: 900px) {
  .dashboard.client-dashboard .consultant-block > div > a > button {
    width: 100%;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 529px) {
  .dashboard.client-dashboard .consultant-block > div > a > button {
    width: 100%;
    margin-bottom: 0px;
  }
}
.editor {
  box-sizing: border-box;
  border: 2px solid #E5E5E5;
  cursor: text;
  margin-bottom: 2em;
  box-shadow: none;
  background: #F5F6F8;
  font-size: 13px;
  line-height: 18px;
  font-family: "Beatrice", sans-serif;
  position: relative;
  padding: 16px;
}
.editor.editor-scrollable {
  max-height: 250px;
  min-height: 250px;
}
.editor.editor-scrollable .scrollarea.area {
  position: absolute;
  left: 0;
  right: 0;
  top: 48px;
  max-height: 198px;
}
.editor.editor-scrollable .scrollarea.area .scrollarea-content {
  padding: 8px 16px 16px;
}
.editor a {
  text-decoration: underline;
}
.editor .public-DraftEditor-content {
  min-height: 140px;
}
.editor-counter {
  color: black;
  position: absolute;
  bottom: 0;
  right: 0.5em;
}
.editor-counter span {
  opacity: 0.7;
}
.editor-counter .editor-counter-limit {
  color: inherit;
}
.editor-counter .editor-counter-over {
  color: var(--theme-danger, '#E54963');
  font-weight: 600;
  opacity: 1;
}
.editor-counter:has( > span.editor-counter-over) span {
  color: var(--theme-danger, '#E54963');
  font-weight: 600;
  opacity: 1;
}
.wripple-chat {
  align-items: stretch !important;
  justify-content: flex-start !important;
  align-self: stretch;
  position: absolute !important;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.wripple-chat .typing {
  width: 5em;
  height: 2em;
  position: relative;
  padding: 10px;
  margin-left: 5px;
  background: #e6e6e6;
  border-radius: 20px;
}
.wripple-chat .typing__dot {
  float: left;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: #8d8c91;
  border-radius: 50%;
  opacity: 0;
  animation: loadingFade 1s infinite;
}
.wripple-chat .typing__dot:nth-child(1) {
  animation-delay: 0s;
}
.wripple-chat .typing__dot:nth-child(2) {
  animation-delay: 0.2s;
}
.wripple-chat .typing__dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes loadingFade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
  }
}
.wripple-chat .morph-button-to-modal-wrapper {
  position: relative !important;
  overflow: visible;
  width: 100%;
  height: 100%;
  justify-content: flex-end;
  z-index: 150;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
.wripple-chat .chat-bubble {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: var(--theme-primary, '#5f3db1');
  border-radius: 50%;
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wripple-chat .chat-bubble img {
  width: 45px;
  height: 45px;
}
.wripple-chat .chat-container {
  display: flex;
  flex-direction: row;
  position: relative;
  height: 100%;
  background-color: white;
  overflow: auto;
}
.wripple-chat .chat-container .rce-sbar {
  justify-content: flex-start;
  background-color: #ececec;
}
.wripple-chat .chat-container .rce-mbox-right-notch {
  fill: var(--theme-info-lightest);
}
.wripple-chat .chat-container .rce-mbox.rce-mbox-right {
  background-color: var(--theme-info-lightest);
}
.wripple-chat .chat-container .rce-mbox.rce-mbox-right p {
  color: white;
}
.wripple-chat .chat-list {
  min-width: 240px;
  max-width: 380px;
  overflow: auto;
}
.wripple-chat .right-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.wripple-chat .message-list {
  flex: 1;
  min-width: 140px;
  overflow: auto;
}
.wripple-chat .input-area {
  min-height: 50px;
  background: red;
}
.wripple-chat .attach-btn {
  color: var(--theme-primary, '#5f3db1');
}
.wripple-chat .chat__msg-day-divider.system-message {
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
  height: unset;
}
.wripple-chat .chat__msg-day-divider.system-message .chat__msg-day-title {
  line-height: normal;
  transform: none;
  top: 0;
  max-width: 300px;
  padding: 0.3rem 0.5rem;
  border-radius: 12px;
}
.wripple-chat .chat__msg-day-divider.system-message .chat__msg-day-title::before {
  width: 15px;
  height: 1px;
  left: -25px;
}
.wripple-chat .chat__msg-day-divider.system-message .chat__msg-day-title::after {
  width: 15px;
  height: 1px;
  right: -25px;
}
.wripple-chat .chat__msg-day-divider.system-message .time-date {
  position: absolute;
  top: 100%;
  margin-top: 5px;
  font-size: 10px;
  text-align: center;
}
/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 *
 * @providesModule DraftStyleDefault
 */
.public-DraftStyleDefault-block {
  position: relative;
  white-space: pre-wrap;
}
/* @noflip */
.public-DraftStyleDefault-LTR {
  direction: ltr;
  text-align: left;
}
/* @noflip */
.public-DraftStyleDefault-RTL {
  direction: rtl;
  text-align: right;
}
/**
 * These rules provide appropriate text direction for counter pseudo-elements.
 */
/* @noflip */
.public-DraftStyleDefault-LTR {
  direction: ltr;
}
/* @noflip */
.public-DraftStyleDefault-RTL {
  direction: rtl;
}
/**
 * Default spacing for list container elements. Override with CSS as needed.
 */
.public-DraftStyleDefault-ul,
.public-DraftStyleDefault-ol {
  margin: 10px 0 14px;
  padding: 0 0 0 35px;
}
.public-DraftStyleDefault-ul li,
.public-DraftStyleDefault-ol li {
  font-size: 13px;
  line-height: 18px;
  font-family: "Beatrice", sans-serif;
}
.public-DraftStyleDefault-depth0.public-DraftStyleDefault-LTR,
.public-DraftStyleDefault-depth0.public-DraftStyleDefault-RTL {
  margin-left: 1.5em;
}
.public-DraftStyleDefault-depth1.public-DraftStyleDefault-LTR,
.public-DraftStyleDefault-depth1.public-DraftStyleDefault-RTL {
  margin-right: 3em;
}
.public-DraftStyleDefault-depth2.public-DraftStyleDefault-LTR,
.public-DraftStyleDefault-depth2.public-DraftStyleDefault-RTL {
  margin-right: 4.5em;
}
.public-DraftStyleDefault-depth3.public-DraftStyleDefault-LTR,
.public-DraftStyleDefault-depth3.public-DraftStyleDefault-RTL {
  margin-right: 6em;
}
.public-DraftStyleDefault-depth4.public-DraftStyleDefault-LTR,
.public-DraftStyleDefault-depth4.public-DraftStyleDefault-RTL {
  margin-left: 7.5em;
}
/**
 * Only use `square` list-style after the first two levels.
 */
.public-DraftStyleDefault-unorderedListItem {
  list-style-type: square;
  position: relative;
}
.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0 {
  list-style-type: disc;
}
.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1 {
  list-style-type: circle;
}
.public-DraftEditorPlaceholder-inner {
  color: #707683 !important;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  position: absolute;
  opacity: 0.7;
  font-size: 13px;
  line-height: 18px;
}
/**
 * Ordered list item counters are managed with CSS, since all list nesting is
 * purely visual.
 */
.public-DraftStyleDefault-orderedListItem {
  list-style-type: none;
  position: relative;
}
/* @noflip */
.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before {
  left: -36px;
  position: absolute;
  text-align: right;
  width: 30px;
}
/* @noflip */
.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before {
  position: absolute;
  right: -36px;
  text-align: left;
  width: 30px;
}
/**
 * Counters are reset in JavaScript. If you need different counter styles,
 * override these rules. If you need more nesting, create your own rules to
 * do so.
 */
.public-DraftStyleDefault-orderedListItem:before {
  content: counter(ol0) ". ";
  counter-increment: ol0;
}
.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before {
  content: counter(ol1, lower-alpha) ". ";
  counter-increment: ol1;
}
.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before {
  content: counter(ol2, lower-roman) ". ";
  counter-increment: ol2;
}
.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before {
  content: counter(ol3) ". ";
  counter-increment: ol3;
}
.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before {
  content: counter(ol4, lower-alpha) ". ";
  counter-increment: ol4;
}
.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset {
  counter-reset: ol0;
}
.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset {
  counter-reset: ol1;
}
.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset {
  counter-reset: ol2;
}
.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset {
  counter-reset: ol3;
}
.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset {
  counter-reset: ol4;
}
.headlineButtonWrapper {
  display: inline-block;
}
.headlineButton {
  background: #fbfbfb;
  color: #888;
  font-size: 18px;
  border: 0;
  padding-top: 5px;
  vertical-align: bottom;
  height: 24px;
  width: 26px;
}
.headlineButton svg {
  height: 14px;
  width: 14px;
}
.headlineButton:hover,
.headlineButton:focus {
  background: #f3f3f3;
}
.bi09khh {
  display: inline-block;
}
.bc4rxid {
  background: #fff;
  color: #888;
  font-size: 18px;
  border: 0;
  vertical-align: bottom;
  height: 34px;
  width: 36px;
  text-align: center;
}
.bc4rxid:hover,
.bc4rxid:focus {
  background: #f3f3f3;
  outline: 0;
}
.bc4rxid svg {
  fill: #888;
  display: inline-block;
}
.akzb7t5 {
  background: #efefef;
  color: #444;
}
.akzb7t5 svg {
  fill: #444;
}
.t16lpgj {
  margin: -16px -16px 15px;
  border-bottom: 1px solid #ddd;
  background: #fff;
  border-radius: 2px;
  box-shadow: none;
  z-index: 2;
  box-sizing: border-box;
  outline: none;
}
.s6m29i4 {
  display: inline-block;
  border-right: 1px solid #ddd;
  height: 24px;
  margin: 0 0.5em;
}
.DraftEditor-editorContainer,
.DraftEditor-root,
.public-DraftEditor-content {
  height: inherit;
  text-align: left;
  text-align: initial;
}
.DraftEditor-root {
  position: relative;
  overflow: auto;
  -ms-overflow-style: none;
  /* for Internet Explorer, Edge */
  scrollbar-width: none;
  /* for Firefox */
}
.DraftEditor-root::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}
.DraftEditor-editorContainer {
  background-color: hsla(0, 0%, 100%, 0);
  border-left: 0.1px solid transparent;
  position: relative;
  z-index: 1;
}
.public-DraftEditor-content {
  outline: none;
  white-space: pre-wrap;
}
.public-DraftEditor-block {
  position: relative;
}
.sl55r16 {
  margin: 0;
  position: relative;
  display: block;
}
.s1b1f21y {
  width: 80px;
  height: 80px;
}
.s3u1xfs {
  background: #d9d9d9;
  color: #fff;
  padding: 0.5em;
  border: none;
  border-radius: 50%;
  line-height: 80%;
  position: absolute;
  font-size: 0.62em;
  margin: 0 0 0 -0.825em;
  cursor: pointer;
}
.s3u1xfs:hover {
  background: #e4e4e4;
}
.s3u1xfs:active {
  background: #cecece;
  color: #efefef;
}
.snop97i {
  background: #fff;
  display: inline-block;
}
.s1te48ud {
  margin-top: 10px;
  background: #fff;
  position: absolute;
  height: 250px;
  width: 230px;
  border-radius: 2px;
  padding: 10px;
  box-shadow: 0 4px 30px 0 #dcdcdc;
  z-index: 1000;
}
.sqwiblq {
  display: none;
}
.s1sha4g8 {
  width: 100%;
  height: 1em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff);
}
.s1m6n3s1 {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
  padding: 0;
  color: #888;
  border-radius: 1.5em;
  cursor: pointer;
  height: 1.5em;
  width: 2.5em;
  font-size: 1.5em;
  line-height: 1.2em;
  margin: 0;
}
.s1m6n3s1:focus {
  outline: 0;
}
.s1m6n3s1:hover {
  background: #f3f3f3;
}
.s1m6n3s1:active {
  background: #e6e6e6;
}
.shl2p6m {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
  padding: 0;
  color: #888;
  border-radius: 1.5em;
  cursor: pointer;
  height: 1.5em;
  width: 2.5em;
  font-size: 1.5em;
  line-height: 1.2em;
  margin: 0;
  background: #ededed;
}
.shl2p6m:focus {
  outline: 0;
}
.shl2p6m:hover {
  background: #f3f3f3;
}
.shl2p6m:active {
  background: #e6e6e6;
}
.sjjedyb {
  position: absolute;
  overflow-x: none;
  overflow-y: scroll;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
  align-content: flex-start;
}
.s14u7spj {
  border: 0;
  border-radius: 4px;
  background: #fff;
  margin: 5px 0;
  box-sizing: border-box;
}
.s14u7spj:hover {
  background: #efefef;
  outline: 0;
}
.s14u7spj:active {
  background: #dfdfdf;
}
.s64maza {
  height: 80px;
  width: 80px;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  user-drag: none;
}
.b1x6qj4x {
  display: inline-block;
}
.b1vm70k4 {
  background: #fbfbfb;
  color: #888;
  font-size: 18px;
  border: 0;
  padding-top: 5px;
  vertical-align: bottom;
  height: 34px;
  width: 36px;
}
.b1vm70k4:focus,
.b1vm70k4:hover {
  background: #f3f3f3;
  outline: 0;
}
.b1vm70k4 svg {
  fill: #888;
}
.ah6tpgz {
  background: #efefef;
  color: #444;
}
.ah6tpgz svg {
  fill: #444;
}
.bloz0n9 {
  box-sizing: border-box;
  border: 1px solid #ddd;
  background: #fff;
  padding: 5px;
  margin: 0;
  border-radius: 18px;
  cursor: pointer;
  height: 36px;
  width: 36px;
  line-height: 36px;
  text-align: center;
}
.bloz0n9 svg {
  fill: #888;
}
.p98xzql {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 3px 0 #dcdcdc;
  box-sizing: border-box;
  width: 74px;
}
.p1sbsapy {
  z-index: 3;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.3, 1.2, 0.2, 1);
}
.p1sbsapy:hover,
.p1sbsapy:hover > div:before,
.p1sbsapy[data-show=true] {
  visibility: visible;
  opacity: 1;
}
.a1f9fdzj,
.a1f9fdzj:before {
  position: absolute;
  width: 6px;
  height: 6px;
  background: inherit;
}
.a1f9fdzj:before {
  content: "";
  border: 1px solid #ddd;
  transform: rotate(45deg);
}
.a1f9fdzj[data-popper-placement^=top] {
  bottom: 4px;
}
.a1f9fdzj[data-popper-placement^=bottom] {
  top: 4px;
}
.a1f9fdzj[data-popper-placement^=left] {
  right: 4px;
}
.a1f9fdzj[data-popper-placement^=right] {
  left: 4px;
}
.a1f9fdzj[data-popper-placement^=top]:before {
  border-left: 0;
  border-top: 0;
}
.a1f9fdzj[data-popper-placement^=bottom]:before {
  border-right: 0;
  border-bottom: 0;
}
.a1f9fdzj[data-popper-placement^=left]:before {
  border-left: 0;
  border-bottom: 0;
}
.a1f9fdzj[data-popper-placement^=right]:before {
  border-right: 0;
  border-top: 0;
}
.wev3spl {
  position: absolute;
}
.bpsgbes {
  display: inline-block;
}
.b181v2oy {
  background: #fbfbfb;
  color: #888;
  font-size: 18px;
  border: 0;
  padding-top: 5px;
  vertical-align: bottom;
  height: 34px;
  width: 36px;
}
.b181v2oy:focus,
.b181v2oy:hover {
  background: #f3f3f3;
  outline: 0;
}
.b181v2oy svg {
  fill: #888;
}
.a9immln {
  background: #efefef;
  color: #444;
}
.a9immln svg {
  fill: #444;
}
.tukdd6b {
  left: 50%;
  transform: translate(-50%) scale(0);
  position: absolute;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 3px 0 #dcdcdc;
  z-index: 2;
  box-sizing: border-box;
}
.tukdd6b:after,
.tukdd6b:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.tukdd6b:after {
  border-color: #fff rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
  border-width: 4px;
  margin-left: -4px;
}
.tukdd6b:before {
  border-color: #ddd rgba(221, 221, 221, 0) rgba(221, 221, 221, 0);
  border-width: 6px;
  margin-left: -6px;
}
.s1o2cezu {
  border-right: 1px solid #ddd;
  height: 24px;
  margin: 0 0.5em;
}
.bi09khh,
.s1o2cezu {
  display: inline-block;
}
.akzb7t5 {
  background: #efefef;
  color: #444;
}
.akzb7t5 svg {
  fill: #444;
}
.s6m29i4 {
  display: inline-block;
  border-right: 1px solid #ddd;
  height: 24px;
  margin: 0 0.5em;
}
.hngfxw3 {
  color: #5e93c5;
}
.lxvs42t,
.lxvs42t:visited {
  color: var(--theme-secondary-light);
  -webkit-text-decoration: none;
  text-decoration: none;
}
.lxvs42t:focus,
.lxvs42t:hover {
  color: var(--theme-secondary, '#913ef0');
  outline: 0;
  cursor: pointer;
}
.lxvs42t:active {
  color: var(--theme-secondary, '#913ef0');
}
.m6zwb4v,
.m6zwb4v:visited {
  color: #575f67;
  cursor: pointer;
  display: inline-block;
  background: #e6f3ff;
  padding-left: 2px;
  padding-right: 2px;
  border-radius: 2px;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.m6zwb4v:focus,
.m6zwb4v:hover {
  color: #677584;
  background: #edf5fd;
  outline: 0;
}
.m6zwb4v:active {
  color: #222;
  background: #455261;
}
.mnw6qvm {
  border: 1px solid #eee;
  position: absolute;
  min-width: 220px;
  max-width: 440px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 4px 30px 0 #dcdcdc;
  cursor: pointer;
  padding-top: 8px;
  padding-bottom: 8px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transform: scale(0);
}
.m1ymsnxd {
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.3, 1.2, 0.2, 1);
}
.m126ak5t {
  opacity: 1;
}
.mtiwdxc {
  padding: 7px 10px 3px;
  transition: background-color 0.4s cubic-bezier(0.27, 1.27, 0.48, 0.56);
}
.mtiwdxc:active {
  background-color: #cce7ff;
}
.myz2dw1 {
  padding: 7px 10px 3px;
  transition: background-color 0.4s cubic-bezier(0.27, 1.27, 0.48, 0.56);
  background-color: #e6f3ff;
}
.myz2dw1:active {
  background-color: #cce7ff;
}
.mpqdcgq {
  margin-left: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 368px;
  font-size: 0.9em;
  margin-bottom: 0.2em;
}
.m1mfvffo,
.mpqdcgq {
  display: inline-block;
}
.m1mfvffo {
  width: 24px;
  height: 24px;
  border-radius: 12px;
}
.e17si09n {
  position: absolute;
  right: 0;
  top: 0.3em;
  bottom: 0.3em;
  width: 0.25em;
  background-color: #e0e0e0;
  border-radius: 0.125em;
  opacity: 0.1;
  transition: opacity 0.4s;
}
.e19xmvdb {
  margin: 1em 0;
  padding-left: 0.5em;
  font-weight: 400;
  font-size: 1em;
  color: #9e9e9e;
}
.e1g1wugw {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  max-width: 1.95ch;
  max-height: 1em;
  line-height: inherit;
  margin: -0.2ex 0 0.2ex;
  color: transparent;
  min-width: 1em;
}
.esyutjr {
  border: 1px solid #eee;
  margin-top: 1.75em;
  position: absolute;
  min-width: 220px;
  max-width: 440px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 4px 30px 0 #dcdcdc;
  cursor: pointer;
  padding-top: 8px;
  padding-bottom: 8px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transform: scale(0);
}
.e1eijkox {
  padding: 5px 10px 1px;
  transition: background-color 0.4s cubic-bezier(0.27, 1.27, 0.48, 0.56);
}
.e1eijkox:active {
  background-color: #cce7ff;
}
.e1adbvmt {
  padding: 5px 10px 1px;
  transition: background-color 0.4s cubic-bezier(0.27, 1.27, 0.48, 0.56);
  background-color: #e6f3ff;
}
.e1adbvmt:active {
  background-color: #cce7ff;
}
.e13wg9oj {
  margin-left: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 368px;
  font-size: 0.9em;
}
.e1w5jrn9,
.e13wg9oj {
  display: inline-block;
}
.e1w5jrn9 {
  width: 1em;
  height: 1em;
  margin-left: 0.25em;
  margin-right: 0.25em;
}
.e183m4hm {
  display: inline-block;
}
.e8k2yoa {
  margin: 0;
  padding: 0;
  width: 2.5em;
  height: 1.5em;
  box-sizing: border-box;
  line-height: 1.2em;
  font-size: 1.5em;
  color: #888;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 1.5em;
  cursor: pointer;
}
.e8k2yoa:focus {
  outline: 0;
}
.e8k2yoa:hover {
  background: #f3f3f3;
}
.e8k2yoa:active {
  background: #e6e6e6;
}
.e13wqaj6 {
  margin: 0;
  padding: 0;
  width: 2.5em;
  height: 1.5em;
  box-sizing: border-box;
  line-height: 1.2em;
  font-size: 1.5em;
  color: #888;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 1.5em;
  cursor: pointer;
  background: #ededed;
}
.e13wqaj6:focus {
  outline: 0;
}
.e13wqaj6:hover {
  background: #f3f3f3;
}
.e13wqaj6:active {
  background: #e6e6e6;
}
.ec6zxdw > div {
  overscroll-behavior: contain;
}
.ejr02pv {
  margin-top: 10px;
  padding: 0 0.3em;
  position: absolute;
  z-index: 1000;
  box-sizing: content-box;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 30px 0 #dcdcdc;
}
.e6amujp {
  display: none;
}
.e16zneum {
  margin: 0 0 0.3em;
  padding-left: 1em;
  height: 2.5em;
  line-height: 2.5em;
  font-weight: 400;
  font-size: 1em;
  color: #9e9e9e;
}
.e1kg9q3n {
  margin: 0 0 0.3em;
  position: relative;
  z-index: 0;
  width: 21em;
  height: 20em;
}
.e1kg9q3n:hover .e17si09n {
  opacity: 0.3;
}
.e1kg9q3n .e17si09n:active,
.e1kg9q3n .e17si09n:hover {
  opacity: 0.6;
}
.e1m341vm {
  padding: 0 0.5em;
}
.e1m341vm:first-child .e19xmvdb {
  display: none;
}
.e13arc1 {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}
.e6nwac2 {
  width: 2.5em;
  height: 2.5em;
}
.e3h4qvg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.e1129lxj {
  margin: 0.3em;
  padding: 0.3em;
  position: absolute;
  display: flex;
  list-style: none;
  border: 1px solid #e0e0e0;
  border-radius: 0.5em;
  background: #fff;
  box-shadow: 0 0 0.3em rgba(0, 0, 0, 0.1);
}
.eug7aee {
  width: 2.5em;
  height: 2.5em;
}
.eug7aee:first-child {
  border-right: 1px solid #e0e0e0;
}
.e1eigyu0,
.eyoq5wq {
  padding: 0;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  outline: none;
  transition: background-color 0.4s cubic-bezier(0.27, 1.27, 0.48, 0.56);
}
.e1eigyu0 {
  background-color: #efefef;
}
.e11mkpma {
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
}
.e1cibj9i {
  margin: 0;
  padding: 0 0.5em;
  display: flex;
  width: 20em;
  list-style: none;
}
.e2bpndj {
  width: 2.5em;
  height: 2.5em;
}
.e1q5rpho,
.e1qma4nk {
  padding: 0;
  width: 100%;
  height: 100%;
  font-size: 1.2em;
  color: #bdbdbd;
  background: none;
  border: none;
  outline: none;
}
.e1q5rpho {
  color: #42a5f5;
}
.e1duapnp {
  background-color: #000;
  border-radius: 0.125em;
  cursor: pointer;
}
.b1lh9taq {
  box-sizing: border-box;
  border: 1px solid #ddd;
  height: 1.5em;
  color: #888;
  border-radius: 1.5em;
  line-height: 1.2em;
  cursor: pointer;
  background-color: #fff;
  width: 2.5em;
  font-weight: 700;
  font-size: 1.5em;
  padding: 0;
  margin: 0;
}
.b1lh9taq:focus {
  outline: 0;
}
.b1lh9taq:focus,
.b1lh9taq:hover {
  background-color: #eee;
  color: #999;
}
.b1lh9taq:active {
  background-color: #ddd;
  color: #777;
}
.b1lh9taq:disabled {
  background-color: #f5f5f5;
  color: #ccc;
}
.uz5k6rs:hover {
  box-shadow: 0 0 0 3px #d2e3f7;
}
.f1vn2c6d,
.uz5k6rs:hover {
  cursor: default;
  border-radius: 2px;
}
.f1vn2c6d {
  box-shadow: 0 0 0 3px #accef7;
}
.b1qfpj3o {
  display: inline-block;
}
.bgspekh {
  background: #fbfbfb;
  color: #888;
  font-size: 18px;
  border: 0;
  padding-top: 5px;
  vertical-align: bottom;
  height: 34px;
  width: 36px;
}
.bgspekh:focus,
.bgspekh:hover {
  background: #f3f3f3;
  outline: 0;
}
.bgspekh svg {
  fill: #888;
}
.autuw9p {
  background: #efefef;
  color: #444;
}
.autuw9p svg {
  fill: #444;
}
.awlhfjh {
  left: 50%;
  transform: translate(-50%) scale(0);
  position: absolute;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 3px 0 #dcdcdc;
  z-index: 2;
  box-sizing: border-box;
}
.awlhfjh:after,
.awlhfjh:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.awlhfjh:after {
  border-color: #fff rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
  border-width: 4px;
  margin-left: -4px;
}
.awlhfjh:before {
  border-color: #ddd rgba(221, 221, 221, 0) rgba(221, 221, 221, 0);
  border-width: 6px;
  margin-left: -6px;
}
.d1sccg06 .public-DraftStyleDefault-block {
  text-align: left;
}
.db0x715 .public-DraftStyleDefault-block {
  text-align: right;
}
.d1ti60k8 .public-DraftStyleDefault-block {
  text-align: center;
}
.rich-text-display {
  font-size: 13px;
  font-family: "Beatrice", sans-serif;
  line-height: 150%;
  background-color: transparent!important;
}
.rich-text-display p {
  padding: 0.1rem 0 !important;
}
.rich-text-display p,
.rich-text-display li {
  line-height: 150% !important;
  margin-bottom: 0.5rem !important;
  background-color: transparent!important;
  font-size: 0.75rem;
  line-height: 1rem;
}
.rich-text-display ul {
  padding-left: 45px;
  list-style-type: disc;
}
.rich-text-display ol {
  padding-left: 45px;
  list-style-type: decimal;
}
.rich-text-display h1{
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 8px;
}
.rich-text-display h2{
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 5px;
}
.rich-text-display h3{
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 3px;
}
.rich-text-display h4,
.rich-text-display h5,
.rich-text-display h6{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
:global(.DraftEditor-root) [data-contents] {
  overflow: auto;
  padding-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .login-container {
    margin-left: 0;
    margin-right: 0;
  }
  .dashboard.client-dashboard {
    padding-left: 15px;
    padding-right: 15px;
    margin: 0;
  }
}
@media only screen and (max-width: 529px) {
  .sow-approval-header .sow-approval-brief {
    flex-direction: column;
  }
  .sow-approval-header .sow-approval-brief .sow-brief-section-action {
    margin: 1.5rem 0 0;
    align-self: stretch;
  }
  .sow-approval-step-header .flex-center-row {
    flex-direction: column!important;
    align-items: stretch!important;
  }
  .sow-approval-step-header .flex-center-row h3 {
    font-size: 18px;
    line-height: 25px;
  }
  .sow-approval-step-header .flex-center-row .sow-cancel-approval-btn {
    margin-left: 0!important;
    margin-right: 0!important;
  }
  .sow-approval-step .sow-approval-documents-step .sow-document-item .sow-document-row .sow-contract-approval-forms .sow-contract-approval-confirm .field-element button {
    margin-top: 15px;
  }
  .sow-document-row {
    overflow: auto;
  }
  .sow-document-row td {
    display: flex;
    flex-direction: column;
  }
}
.schedule-meeting-modal.modal-overlay {
  flex: unset;
  align-self: center;
  width: 100%;
}
.schedule-meeting-modal.modal-overlay .defaultScroll > .scrollarea-content {
  padding: 16px;
}
.schedule-meeting-modal.modal-overlay .modal-container {
  max-width: 800px;
  min-width: unset;
  margin: 0 auto;
  width: 100%;
  min-height: unset;
  background-color: white !important;
  padding: 16px !important;
  padding-bottom: 0 !important;
}
.schedule-meeting-modal.modal-overlay.talent-confirmation .modal-container {
  max-width: unset;
  min-width: unset;
  width: unset;
}
.schedule-meeting-modal.ant-modal .ant-modal-body {
  padding-bottom: 0;
}
.schedule-meeting-modal.ant-modal .ant-modal-body .submit-container {
  width: calc(100% + 48px);
  margin-left: -24px;
}
.scheduler-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #000000;
}
.scheduler-container p {
  font-size: 14px;
}
.scheduler-container h4.scheduler-header {
  font-size: 18px;
  margin-bottom: 0;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.scheduler-container .loading-user-image,
.scheduler-container .img-fluid {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.scheduler-container .interview-candidate-info {
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.scheduler-container .interview-candidate-info > p {
  font-size: 18px;
  margin: 0;
}
.scheduler-container .interview-candidate-info .interview-candidate-info-options {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.scheduler-container .interview-candidate-info .interview-candidate-info-options p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  padding: 0;
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 0.01em;
}
.scheduler-container .interview-candidate-info .interview-candidate-info-options p .fa {
  font-weight: 900;
  line-height: 14px;
  color: #C2CFE0;
  margin-right: 8px;
}
.scheduler-container .form-gap {
  gap: 16px;
}
.scheduler-container .form-gap-24 {
  gap: 24px;
}
.scheduler-container form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
.scheduler-container form div[style*="background: transparent;"].field-section {
  display: none;
}
.scheduler-container .form-group {
  margin-bottom: 0;
}
.scheduler-container .form-group input,
.scheduler-container .form-group select,
.scheduler-container .form-group textarea {
  background-color: #F5F6F8;
  border-bottom: 0 !important;
  font-size: 14px !important;
  font-weight: 500;
}
.scheduler-container .form-group input:focus,
.scheduler-container .form-group select:focus,
.scheduler-container .form-group textarea:focus {
  color: black;
}
.scheduler-container .form-group label.col-form-label {
  font-size: 14px;
  font-weight: 500;
}
.scheduler-container .form-group .small {
  font-size: 10px;
}
.scheduler-container .form-group .form-checkbox [type="checkbox"]:checked + label {
  background-color: transparent;
}
.scheduler-container .form-group.text-danger .invalid-feedback {
  display: block;
}
.scheduler-container .selected-slot-label {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
.scheduler-container .multi-select > div > div > div {
  background-color: #F5F6F8;
  border: none;
}
.scheduler-container .calendar {
  width: 330px;
  margin: 0 auto;
}
.scheduler-container .calendar .header {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 12px 20px;
}
.scheduler-container .calendar .header .col-scrollbar {
  border-right: none;
}
.scheduler-container .calendar .body .cell {
  border-color: white;
  cursor: pointer;
}
.scheduler-container .calendar .body .cell:last-child {
  border: none;
}
.scheduler-container .calendar .body .cell:hover,
.scheduler-container .calendar .body .cell.availability-added {
  background-color: rgba(95, 61, 177, 0.15);
  color: var(--theme-primary, '#5f3db1');
}
.scheduler-container .calendar .body .cell.selected {
  background-color: var(--theme-primary, '#5f3db1');
  color: white;
}
.scheduler-container .calendar .body .cell.selected.availability-added:after {
  content: '';
  width: 7px;
  height: 7px;
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: white;
  border-radius: 50%;
}
.scheduler-container .calendar .body .cell.disabled {
  color: #ccc;
  pointer-events: none;
}
.scheduler-container .calendar .row {
  border-color: white;
}
.scheduler-container .calendar .row .col {
  flex-grow: 1;
}
.scheduler-container .time-slot-container {
  margin-top: 16px;
}
.scheduler-container .time-slot-container .time-slots-selectt {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.scheduler-container .selected-slots-container {
  background-color: #F5F6F8;
  padding: 16px;
  min-height: 78px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.scheduler-container .selected-slots-container > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.scheduler-container .selected-slots-container .empty-slots {
  display: flex;
  color: #93A0B5;
  flex-grow: 1;
  margin-bottom: 0;
  align-self: center;
  align-items: center;
}
.scheduler-container .time-slot-container_basis {
  flex-basis: 33.3%;
  padding: 5px;
}
.scheduler-container .submit-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  padding: 16px;
  background-color: #F5F6F8;
  width: calc(100% + 30px);
  margin-left: -15px;
}
.scheduler-container .submit-container button {
  width: 100%;
  font-size: 14px;
}
.scheduler-container .slot_NEW {
  width: 100%;
  background-color: white;
  border: 1px solid var(--theme-primary, '#5f3db1');
  cursor: pointer;
  transition: all 200ms ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  height: 25px;
  border-radius: 50px;
  white-space: nowrap;
  text-align: center;
  font-size: 14px;
  color: var(--theme-primary, '#5f3db1');
  font-weight: 400;
}
.scheduler-container .slot_NEW:hover,
.scheduler-container .slot_NEW.selected {
  background-color: var(--theme-primary, '#5f3db1') !important;
  color: white;
}
.scheduler-container .slot_NEW.disabled {
  opacity: 0.7;
  border-color: #90a0b7;
  pointer-events: none;
  color: #90a0b7;
}
.scheduler-container .slot_NEW.declined {
  border-color: var(--theme-danger, '#E54963');
  color: var(--theme-danger, '#E54963');
  opacity: 0.7;
}
.scheduler-container .slot_NEW.declined:hover {
  background-color: transparent !important;
  cursor: default;
}
.scheduler-container .slot_NEW.slot-selected_NEW {
  background: #E5E5E5;
  width: auto;
  border: none;
  margin: 2px 5px;
  padding: 0 10px;
  font-size: 12px;
  color: black;
  cursor: default;
}
.scheduler-container .slot_NEW.slot-selected_NEW button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}
.scheduler-container .slot_NEW.slot-selected_NEW:hover {
  background-color: var(--theme-primary, '#5f3db1') !important;
  color: white;
}
.scheduler-container .slot_NEW.slot-selected-talent {
  flex-shrink: 1;
  margin: 5px 0;
  min-width: 150px;
  padding: 4px 16px;
  height: unset;
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.01em;
  width: auto;
}
.scheduler-container .slot_NEW.slot-selected-talent:not(.selected) {
  background-color: transparent;
}
.scheduler-container .time-slot-container_basis .slot_NEW {
  font-size: 12px;
}
.scheduler-container .duration-select-container_NEW {
  display: flex;
  flex-flow: row nowrap;
  margin: 0 -5px;
}
.scheduler-container .duration-select-container_NEW .slot_NEW {
  margin: 0 5px;
  max-width: 90px;
}
.scheduler-container.isLoading > div,
.scheduler-container.isLoading > h4 {
  opacity: 0.5;
}
.scheduler-container.isLoading > div *,
.scheduler-container.isLoading > h4 * {
  pointer-events: none!important;
}
.scheduler-container.isLoading .loading-container {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.scheduler-container.talent_NEW .loading-user-image,
.scheduler-container.talent_NEW .img-fluid {
  width: 60px;
  height: 60px;
  border-radius: 0;
}
.scheduler-container.talent_NEW h4.scheduler-header + div {
  padding-bottom: 24px;
  border-bottom: 1px solid #C2CFE0;
}
.scheduler-container.talent_NEW .interview-candidate-info-options p {
  font-size: 11px;
}
.scheduler-container.talent_NEW .interview-candidate-info-options p .fa {
  font-size: 12px;
}
.scheduler-container.talent_NEW .subject-text h3 {
  font-size: 18px;
  font-weight: 600;
}
.scheduler-container.talent_NEW .form-group .col-form-label {
  font-size: 12px;
  color: #707683;
  padding-bottom: 4px;
}
@media (min-width: 500px) {
  .scheduler-container .time-slot-container_basis {
    flex-basis: 25%;
  }
  .scheduler-container .submit-container {
    flex-direction: row-reverse;
  }
  .scheduler-container .submit-container button {
    width: auto;
  }
}
@media (min-width: 900px) {
  .scheduler-container .selected-slots-container {
    flex-grow: 0;
  }
}
@media (min-width: 768px) {
  .schedule-meeting-modal.modal-overlay .defaultScroll > .scrollarea-content {
    padding: 30px 25px;
  }
  .schedule-meeting-modal.modal-overlay .modal-container {
    padding: 40px !important;
    padding-bottom: 0 !important;
  }
  .scheduler-container .submit-container {
    width: calc(100% + 80px);
    margin-left: -40px;
  }
}
@media (min-width: 875px) {
  .scheduler-container .calendar-timeslot-container_NEW {
    display: flex;
    gap: 32px;
  }
  .scheduler-container .calendar-timeslot-container_NEW .time-slot-container {
    margin-top: 0;
  }
}
.proposal-back-btn {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: row nowrap;
  padding: 0.5rem 0;
  z-index: 5;
}
.proposal-back-btn i {
  font-size: 17px;
}
.proposal-container {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-flow: column nowrap;
}
.proposal-container .proposal-header {
  display: flex;
  justify-content: space-around;
  padding: 1rem 1.5rem !important;
  flex-direction: column;
  align-items: flex-start;
  background-color: #ffffff;
  margin-bottom: 0.8rem;
  min-height: 90px;
}
.proposal-container .proposal-header h2 {
  font-size: 20px;
}
.proposal-container .proposal-header h2 small {
  font-size: 60%;
  font-weight: bold;
  color: var(--theme-info, '#4B80E7');
}
.proposal-container .proposal-header p {
  font-size: 13px;
  font-family: Beatrice, sans-serif;
  line-height: 125%;
  letter-spacing: 0.01em;
  margin-top: 1rem!important;
  color: #000000;
}
.proposal-container .proposal-header button {
  padding: 0;
  margin-bottom: 15px;
}
.proposal-container .proposal-step-header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  background-color: black;
  height: 50px;
  padding: 0.3rem 1rem;
  margin: -0.5rem -1rem 0.5rem;
}
.proposal-container .proposal-step-header > * {
  color: white;
  font-size: 18px;
  font-family: "Beatrice", sans-serif;
  letter-spacing: 0.01rem;
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
}
.proposal-container .proposal-step-header h3 {
  max-width: 260px;
  flex-grow: 1;
  margin: 0;
}
.proposal-container .proposal-step-header p {
  padding-left: 0.8rem;
  margin: 0;
  flex-grow: 1;
}
.proposal-container .proposal-step-header p b {
  margin-right: 0.3rem;
}
.proposal-overview {
  align-items: stretch;
  display: flex;
  flex-flow: row nowrap;
  position: relative;
}
.proposal-overview .proposal-subject {
  position: relative;
  max-width: 340px;
  height: inherit;
  display: flex;
}
.proposal-overview .proposal-subject .talent-panel {
  min-width: 320px !important;
}
.proposal-overview .proposal-subject .job-brief {
  margin: 0;
  flex: 1;
}
.proposal-overview .proposal-subject .potential-candidate-status {
  height: unset;
}
.proposal-overview .proposal-subject .potential-candidate-status .candidate-status {
  display: none;
}
.proposal-overview .proposal-tabs-section {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  padding: 0;
  margin-left: 0.8rem;
}
.proposal-overview .proposal-tabs-section .proposal-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: row wrap;
  z-index: 1;
}
.proposal-overview .proposal-tabs-section .proposal-tabs .proposal-tab {
  white-space: nowrap;
  padding: 8px 7px;
  border: 1px solid #E5EBF1;
  border-bottom: 1px inset #E5EBF1;
  color: #90a0b7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease-in;
  cursor: pointer;
  font-size: 10px;
  background-color: white;
}
.proposal-overview .proposal-tabs-section .proposal-tabs .proposal-tab .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d3d8dd;
  color: #90a0b7;
  font-size: 12px;
  line-height: 18px;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.proposal-overview .proposal-tabs-section .proposal-tabs .proposal-tab .step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  height: 18px;
  width: 18px;
  border-radius: 50%;
}
.proposal-overview .proposal-tabs-section .proposal-tabs .proposal-tab .step-badge span {
  font-size: 10px;
}
.proposal-overview .proposal-tabs-section .proposal-tabs .proposal-tab .step-badge.step-badge-right {
  margin-left: 0.5rem;
}
.proposal-overview .proposal-tabs-section .proposal-tabs .proposal-tab .step-badge.step-badge-left {
  margin-right: 0.5rem;
}
.proposal-overview .proposal-tabs-section .proposal-tabs .proposal-tab:hover {
  color: var(--theme-primary-dark);
  border-color: var(--theme-primary-dark);
}
.proposal-overview .proposal-tabs-section .proposal-tabs .proposal-tab.completed {
  pointer-events: all;
}
.proposal-overview .proposal-tabs-section .proposal-tabs .proposal-tab.completed .step-number {
  color: white;
  background-color: var(--theme-success, '#5ae399');
}
.proposal-overview .proposal-tabs-section .proposal-tabs .proposal-tab.active {
  color: white;
  background-color: var(--theme-primary, '#5f3db1');
  border-color: var(--theme-primary, '#5f3db1');
}
.proposal-overview .proposal-tabs-section .proposal-tabs .proposal-tab.active .step-number {
  color: var(--theme-primary, '#5f3db1');
  background-color: white;
}
.proposal-overview .proposal-tabs-section .proposal-tabs .proposal-tab.disabled {
  pointer-events: none;
}
.proposal-overview .proposal-messages,
.agency-opp-proposal .proposal-messages {
  position: relative;
  min-width: 350px;
  flex: 0;
  height: inherit;
}
.proposal-overview .proposal-messages .editor,
.agency-opp-proposal .proposal-messages .editor {
  margin-bottom: 0;
}
.proposal-overview .proposal-messages .editor .t16lpgj,
.agency-opp-proposal .proposal-messages .editor .t16lpgj {
  margin: -16px -16px 0;
}
.proposal-overview .proposal-messages .editor .public-DraftEditor-content,
.agency-opp-proposal .proposal-messages .editor .public-DraftEditor-content {
  min-height: 30px;
}
.proposal-overview .proposal-messages .editor.editor-scrollable,
.agency-opp-proposal .proposal-messages .editor.editor-scrollable {
  min-height: 95px;
}
.proposal-overview .proposal-messages .editor.editor-scrollable .scrollarea.area,
.agency-opp-proposal .proposal-messages .editor.editor-scrollable .scrollarea.area {
  top: 38px;
  max-height: 57px;
}
.proposal-overview .proposal-messages .editor.editor-scrollable .scrollarea.area .scrollarea-content,
.agency-opp-proposal .proposal-messages .editor.editor-scrollable .scrollarea.area .scrollarea-content {
  padding: 6px 8px;
}
.proposal-overview .proposal-messages .editor .send-message-btn,
.agency-opp-proposal .proposal-messages .editor .send-message-btn {
  float: right;
  background-color: transparent!important;
  border-color: transparent!important;
  height: 34px;
  padding: 0 5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.proposal-overview .proposal-messages .editor .send-message-btn button,
.agency-opp-proposal .proposal-messages .editor .send-message-btn button {
  width: unset!important;
  font-size: 13px;
  height: unset!important;
  padding: 0.3rem 0.5rem;
  transition: all 250ms ease-in;
}
.proposal-overview .proposal-messages .editor .send-message-btn button p,
.agency-opp-proposal .proposal-messages .editor .send-message-btn button p,
.proposal-overview .proposal-messages .editor .send-message-btn button i,
.agency-opp-proposal .proposal-messages .editor .send-message-btn button i {
  opacity: 1;
  color: var(--theme-secondary, '#913ef0');
}
.proposal-overview .proposal-messages .editor .send-message-btn button:disabled p,
.agency-opp-proposal .proposal-messages .editor .send-message-btn button:disabled p,
.proposal-overview .proposal-messages .editor .send-message-btn button:disabled i,
.agency-opp-proposal .proposal-messages .editor .send-message-btn button:disabled i {
  opacity: 0.5;
  color: #707683;
}
.talent-opportunity-dashboard .proposal-overview .proposal-messages .chat__area-wrapper {
  margin: 0 !important;
  max-width: unset;
}
.proposal-tab-content {
  padding: 1.2rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: white;
  position: relative;
  min-height: 500px;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
}
.proposal-tab-content .proposal-messages {
  position: relative;
  min-height: 500px;
  box-shadow: none!important;
  margin: -1.2rem -1rem;
}
.proposal-tab-content .proposal-tab-header,
.proposal-tab-content .proposal-tab-subheader {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  white-space: pre-line;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 10px;
}
.proposal-tab-content .proposal-tab-header.flex-row,
.proposal-tab-content .proposal-tab-subheader.flex-row {
  font-weight: normal;
  font-size: 15px;
  margin: 0 0 25px;
  display: flex;
}
.proposal-tab-content .proposal-tab-header.flex-row .proposal-actions,
.proposal-tab-content .proposal-tab-subheader.flex-row .proposal-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  position: relative;
}
.proposal-tab-content .proposal-tab-header.flex-row .proposal-actions .btn-link,
.proposal-tab-content .proposal-tab-subheader.flex-row .proposal-actions .btn-link {
  position: absolute;
  top: 100%;
}
.proposal-tab-content .proposal-divider {
  display: none;
}
.proposal-tab-content .proposal-tab-subheader {
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 0;
  margin-top: 0;
}
.proposal-tab-content > p {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-size: 13px;
  line-height: 125%;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 10px;
}
.proposal-tab-content .confirmed-availability-note {
  background: var(--theme-success, '#5ae399');
  margin: -32px -32px 1.5rem;
  padding: 0.7rem 1rem;
}
.proposal-tab-content .confirmed-availability-note p {
  margin-bottom: 0;
  font-size: 13px;
}
.proposal-tab-content .proposal-input {
  background-color: #f3f3f3;
  color: black;
  display: inline-block;
  margin: 0.3rem 0 1.5rem;
  padding: 0.5rem 0.8rem;
}
.proposal-tab-content .proposal-input span {
  display: flex;
  flex-flow: row nowrap;
}
.proposal-tab-content .proposal-input span .proposed-change {
  color: var(--theme-danger, '#E54963');
  text-decoration: line-through;
  margin-right: 10px;
}
.proposal-tab-content .proposal-input span .proposed-change span {
  color: #343741;
}
.proposal-tab-content .scrollarea.area {
  max-height: unset;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.proposal-tab-content .scrollarea.area .scrollarea-content.cover-letter-area {
  padding: 1.2rem 1.4rem;
}
.proposal-tab-content .scrollarea.area .scrollarea-content.cover-letter-area p {
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #343741;
  background-color: #fafafa;
  padding: 0.5rem;
}
.proposal-tab-content .job-match-scores-container {
  flex: 1;
}
.cover-letter-options .ant-select-item {
  border-bottom: 1px solid #ececec;
}
.opp-talent-proposal-form .proposal-tab-header {
  font-size: 14px;
}
.opp-talent-proposal-form .form-container {
  padding: 0!important;
}
.opp-talent-proposal-form .form-container .lexical-wripple .editor-container {
  margin: 10px 0 0;
}
.opp-talent-proposal-form .form-container .invalid-feedback {
  padding: 0 15px;
  margin-top: 0;
}
.opp-talent-proposal-form .form-container .field .input-group-prepend {
  background: #F5F6F8;
  border: none;
}
.opp-talent-proposal-form .form-container .avg-rate-info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.opp-talent-proposal-form .form-container .proposal-rate-note {
  flex-flow: row nowrap;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  justify-content: flex-start;
  font-style: italic;
  font-size: 12px;
}
.opp-talent-proposal-form .form-container .proposal-rate-note .fa-info-circle {
  margin-right: 9px;
  font-size: 13px;
  width: 13px;
  color: black;
}
.opp-talent-proposal-form .form-container .proposal-rate-note > p {
  color: black;
  margin: 0 10px 0 0;
}
.opp-talent-proposal-form .form-container .proposal-rate-note > p b {
  color: var(--theme-secondary, '#913ef0');
}
.opp-talent-proposal-form .form-container .proposal-rate-note > p b:first-child {
  color: black;
}
.opp-talent-proposal-form .form-container .avail-fields,
.opp-talent-proposal-form .form-container .hourly-rate-fields {
  flex-flow: row nowrap;
  display: flex;
  align-items: center;
  padding: 1.2rem 1.5rem;
  margin: 1rem 1.5rem;
  align-self: center;
  justify-content: space-evenly;
}
.opp-talent-proposal-form .form-container .avail-fields label,
.opp-talent-proposal-form .form-container .hourly-rate-fields label {
  display: none;
}
.opp-talent-proposal-form .form-container .avail-fields .field .form-group .form-checkbox label,
.opp-talent-proposal-form .form-container .hourly-rate-fields .field .form-group .form-checkbox label {
  display: flex;
  flex-wrap: unset;
  white-space: normal;
  margin-bottom: 0!important;
}
.opp-talent-proposal-form .form-container .avail-fields .field .form-group .form-checkbox label .text-black,
.opp-talent-proposal-form .form-container .hourly-rate-fields .field .form-group .form-checkbox label .text-black {
  color: black!important;
}
.opp-talent-proposal-form .form-container .avail-fields label.rate-label,
.opp-talent-proposal-form .form-container .hourly-rate-fields label.rate-label,
.opp-talent-proposal-form .form-container .avail-fields p.rate-note,
.opp-talent-proposal-form .form-container .hourly-rate-fields p.rate-note {
  display: block;
  font-size: 14px;
  white-space: nowrap;
  margin-bottom: 0;
}
.opp-talent-proposal-form .form-container .avail-fields .input-group-append,
.opp-talent-proposal-form .form-container .hourly-rate-fields .input-group-append {
  padding: 0 1rem;
  border: none;
  font-size: 13px;
  background-color: transparent!important;
  opacity: 1!important;
}
.opp-talent-proposal-form .form-container .hourly-rate-fields {
  margin: 1rem 0;
}
.opp-talent-proposal-form .form-container .avail-fields {
  flex-flow: column;
  align-items: stretch;
  justify-content: center;
  border: 1px solid var(--theme-secondary, '#913ef0');
}
.opp-talent-proposal-form .form-container .avail-fields .field-section-group {
  margin-bottom: 15px;
}
.opp-talent-proposal-form .form-container .avail-fields .field-section-group:last-child {
  margin-bottom: 0;
}
.opp-talent-proposal-form .form-container .avail-fields .field-section-group .field.m-0 {
  margin: 0!important;
}
.opp-talent-proposal-form .form-container .avail-fields .field-section-group .field.hrs_per_week input {
  flex: 0;
  min-width: 50px;
  text-align: center;
}
.opp-talent-proposal-form .form-container .avail-fields .field-section-group label.avail-label {
  display: block;
}
.opp-talent-proposal-form .form-container .avail-fields .field-section-group .field-section {
  flex-flow: row nowrap;
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: flex-start;
}
.opp-talent-proposal-form .form-container .avail-fields .field-section-group .field-section .field-element {
  flex-basis: unset!important;
  width: unset!important;
  min-width: 145px!important;
}
.opp-talent-proposal-form .form-container .avail-fields .field-section-group .field-section .field-element * {
  font-size: 14px;
}
.opp-talent-proposal-form .form-container .avail-fields .avail-field-row input[type="checkbox"]:not(:checked) + label:before {
  text-decoration: none!important;
}
.opp-talent-proposal-form .form-container .avail-fields .avail-field-row input[type="checkbox"]:not(:checked) + label span {
  text-decoration: line-through;
  color: black;
}
.opp-talent-proposal-form .form-container .avail-fields .avail-field-row input {
  border: 1.5px solid var(--theme-secondary, '#913ef0') !important;
}
.opp-talent-proposal-form .form-container .avail-fields .avail-field-row input:disabled {
  background: #f5f5f5 !important;
  border-color: #d9d9d9 !important;
  opacity: 0.3 !important;
  cursor: not-allowed;
}
.opp-talent-proposal-form .form-container .avail-fields .avail-field-row .ant-picker {
  padding: 0;
}
.opp-talent-proposal-form .form-container .avail-fields .avail-field-row .ant-picker.ant-picker-disabled {
  background: transparent;
  border-color: transparent!important;
  cursor: not-allowed;
}
.opp-talent-proposal-form .form-container .avail-fields .avail-field-row .ant-picker input:disabled {
  background: #f5f5f5;
  border-color: #d9d9d9 !important;
  opacity: 0.35 !important;
  cursor: not-allowed;
}
.opp-talent-proposal-form .form-container .avail-fields .avail-edit-group {
  margin-bottom: 0!important;
}
.opp-talent-proposal-form .form-container .avail-fields .avail-edit-note {
  display: none!important;
}
.opp-talent-proposal-form .form-container .avail-fields .avail-edit-note.isVisible {
  display: block!important;
}
.opp-talent-proposal-form .form-container .avail-fields .react-date-picker__calendar.react-date-picker__calendar--open {
  top: unset!important;
  bottom: 100% !important;
}
.opp-talent-proposal-form .form-container .hourly-rate-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  border: 1px solid var(--theme-secondary, '#913ef0');
  margin: 1rem 0;
}
.opp-talent-proposal-form .form-container .hourly-rate-container .hourly-rate-fields {
  padding: 0;
  justify-content: flex-start;
  margin: 0.5rem 0;
}
.opp-talent-proposal-form .form-container .hourly-rate-container .hourly-rate-fields .payout {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  margin: 0 -10px;
}
.opp-talent-proposal-form .form-container .hourly-rate-container .hourly-rate-fields .payout span {
  padding: 0.2rem 0;
  white-space: nowrap;
  margin: 0 10px 5px;
}
.opp-talent-proposal-form .form-container .hourly-rate-container .hourly-rate-fields .payout span.payout-info {
  padding: 0.2rem 0.4rem;
  font-style: italic;
  border: 1px solid #8c8c8c;
  font-size: 11px;
  line-height: 18px;
}
.opp-talent-proposal-form .form-container .hourly-rate-container .hourly-rate-fields .payout span.payout-info strong {
  font-style: normal;
}
.opp-talent-proposal-form .form-container .hourly-rate-container .hourly-rate-fields .payout span.difference-warning {
  flex-basis: 100%;
  white-space: normal;
  color: var(--theme-danger, '#E54963');
  margin-top: 5px;
  font-size: 10px;
  font-style: italic;
  font-weight: 400;
}
.opp-talent-proposal-form .form-container .hourly-rate-container .profile-hourly-rate {
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
}
.opp-talent-proposal-form .form-container .hourly-rate-container .profile-hourly-rate .profile-rate-note {
  margin: 0.2rem 0 0.5rem;
  padding: 0;
  color: #707683;
  font-size: 12px;
  font-family: "Beatrice Light", sans-serif;
}
.opp-talent-proposal-form .form-container .hourly-rate-container .profile-hourly-rate .profile-rate-note b {
  font-weight: 600;
}
.opp-talent-proposal-form .form-container .hourly-rate-container .profile-hourly-rate .profile-rate-note.difference-warning {
  flex-flow: row nowrap;
  display: flex;
  align-items: flex-start;
  padding: 0 0.5rem;
  justify-content: flex-start;
}
.opp-talent-proposal-form .form-container .hourly-rate-container .profile-hourly-rate .profile-rate-note.difference-warning > p {
  font-style: italic;
  color: var(--theme-danger, '#E54963');
  font-family: "Beatrice", sans-serif;
  margin: 0 10px 0 0;
}
.opp-talent-proposal-form .form-container .hourly-rate-container .profile-hourly-rate .profile-rate-note.difference-warning > p:first-child {
  margin-right: 9px;
  width: 13px;
  text-align: center;
}
.opp-member-proposal-form input[type="checkbox"]:not(:checked) + label:before {
  text-decoration: none!important;
}
.opp-member-proposal-form input[type="checkbox"]:not(:checked) + label span {
  text-decoration: line-through;
  color: black;
}
.opp-member-proposal-form .ant-checkbox-wrapper:not(.ant-checkbox-wrapper-checked) span:last-child {
  text-decoration: line-through;
  color: black;
}
.proposal-info {
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.proposal-info .candidate-container {
  padding: 24px 32px;
  gap: 32px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.proposal-info .candidate-container .candidate-info {
  gap: 16px;
  display: flex;
  flex: 1;
}
.proposal-info .candidate-container .candidate-info h5 {
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 160%;
  /* identical to box height, or 29px */
  margin-bottom: 0;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: #000000;
}
.proposal-info .candidate-container .candidate-info .candidate-background {
  margin-bottom: 0;
  align-items: center;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #000000;
  display: flex;
  white-space: nowrap;
  flex-flow: row nowrap;
  gap: 8px;
}
.proposal-info .candidate-container .candidate-info .candidate-background i {
  font-size: 12px;
  color: #C2CFE0;
}
.proposal-info .candidate-container .candidate-info .team-bio {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.proposal-info .candidate-container .candidate-info .details-link {
  font-family: 'Poppins';
  margin: 0;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: var(--theme-secondary, '#913ef0');
  font-style: normal;
  font-size: 14px;
  line-height: 160%;
}
.proposal-info .candidate-container .candidate-proposal-actions {
  background-color: white;
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 18px 16px;
  gap: 32px;
}
.proposal-info .candidate-container .candidate-proposal-actions button {
  white-space: nowrap;
  flex-wrap: nowrap;
}
.proposal-info .candidate-container .candidate-actions-container h4 {
  margin: 0 auto;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #000000;
  white-space: nowrap;
}
.proposal-info .candidate-container .candidate-actions-container h2 {
  white-space: nowrap;
  margin: 0 auto;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 21px;
  line-height: 31px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #000000;
}
.proposal-info .candidate-container .candidate-actions-container h2 sup {
  text-decoration: none;
  color: black;
  top: -0.2rem;
}
.proposal-info .candidate-container .candidate-actions-container p {
  white-space: nowrap;
  margin: 0 auto;
  font-family: Beatrice, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.01em;
  color: #343741;
}
.proposal-info .candidate-container .candidate-actions-container.rate-change {
  position: relative;
}
.proposal-info .candidate-container .candidate-actions-container.rate-change h4 {
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
}
.proposal-info .candidate-container .candidate-actions-container.rate-change h2 {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
}
.proposal-info .candidate-container .candidate-actions-container.rate-change h2 > span {
  position: relative;
  color: var(--theme-danger, '#E54963');
  text-decoration: line-through;
}
.proposal-info .candidate-container .candidate-actions-container.rate-change h2 > span > span {
  color: #343741;
}
.proposal-info .nav-tabs {
  padding: 0 32px 0;
  border-bottom: none;
}
.proposal-info .nav-tabs .nav-item .nav-link {
  border-top-left-radius: unset;
  border-top-right-radius: unset;
  display: block;
  padding: 0.7rem 1.3rem;
}
@media screen and (max-width: 1000px) {
  .proposal-info .nav-tabs {
    padding: 0;
  }
}
.proposal-overview {
  flex-grow: 1;
  gap: 16px;
}
.proposal-overview .proposal-tabs-section {
  margin: 0;
}
.proposal-overview .proposal-tabs-section .proposal-tab-content {
  box-shadow: none;
  position: relative;
  min-height: 450px;
}
.proposal-overview .proposal-tabs-section .proposal-tab-content .tab-pane.active {
  padding: 0;
  position: relative;
  height: 100%;
}
.proposal-overview .proposal-tabs-section .proposal-tab-content .tab-pane.active > .scrollarea.area .scrollarea-content {
  padding: 32px;
}
.proposal-overview .proposal-tabs-section .proposal-tab-content .proposal-tab-header {
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  display: flex;
  letter-spacing: 0.01em;
  color: #000000;
  margin: 0;
}
.proposal-overview .proposal-tabs-section .proposal-tab-content .proposal-padding {
  position: relative;
  padding: 32px;
}
.candidate-proposal-modal .candidate-proposal,
.job-proposal-modal .candidate-proposal,
.talent-opportunity-dashboard .candidate-proposal,
.candidate-proposal-modal .opportunity-proposal,
.job-proposal-modal .opportunity-proposal,
.talent-opportunity-dashboard .opportunity-proposal {
  background: #E5EBF1;
}
.candidate-proposal-modal .candidate-proposal .proposal-header,
.job-proposal-modal .candidate-proposal .proposal-header,
.talent-opportunity-dashboard .candidate-proposal .proposal-header,
.candidate-proposal-modal .opportunity-proposal .proposal-header,
.job-proposal-modal .opportunity-proposal .proposal-header,
.talent-opportunity-dashboard .opportunity-proposal .proposal-header {
  margin-bottom: 0;
  min-height: unset;
}
.candidate-proposal-modal > .ant-modal-content .ant-modal-close,
.job-proposal-modal > .ant-modal-content .ant-modal-close,
.talent-opportunity-dashboard > .ant-modal-content .ant-modal-close {
  display: none;
  pointer-events: none;
}
.candidate-proposal-modal > .ant-modal-content > .ant-modal-body,
.job-proposal-modal > .ant-modal-content > .ant-modal-body,
.talent-opportunity-dashboard > .ant-modal-content > .ant-modal-body {
  padding: 0;
}
.candidate-proposal-modal > .ant-modal-content > .ant-modal-body .proposal-container .proposal-step-header,
.job-proposal-modal > .ant-modal-content > .ant-modal-body .proposal-container .proposal-step-header,
.talent-opportunity-dashboard > .ant-modal-content > .ant-modal-body .proposal-container .proposal-step-header {
  margin: 0 0 0.5rem;
}
.proposal-container.candidate-proposal .proposal-tab-content {
  padding: 0;
}
.proposal-container.candidate-proposal .match-footer {
  background-color: #ffffff;
}
.proposal-container.candidate-proposal .proposal-overview .proposal-messages .editor.editor-scrollable {
  border-width: 1px;
  min-height: 105px;
}
.proposal-container.candidate-proposal .proposal-overview .proposal-messages .editor.editor-scrollable .scrollarea.area {
  top: 35px;
  max-height: 67px;
}
.proposal-container.candidate-proposal .proposal-overview .proposal-messages .editor.editor-scrollable .scrollarea.area .scrollarea-content {
  padding: 6px 8px;
}
.change-order-form-container .form-container {
  padding: 0;
}
.change-order-form-container .form-group {
  margin-bottom: 0;
}
.change-order-form-container .form-control {
  border: solid rgba(50, 60, 71, 0.5) 0.5px;
}
.change-order-form-container .ant-picker {
  border-radius: 0;
  border: solid rgba(50, 60, 71, 0.5) 0.5px;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
}
.activity-role-select .ant-select .ant-select-selector {
  padding: 0.3rem 0.5rem;
  background-color: #F7F8FA;
}
.activity-role-select .ant-select .ant-select-selection-overflow {
  gap: 8px;
}
.meeting-comments .comment-widgets {
  margin-top: 10px;
}
.meeting-comments .comment-widgets .form-group {
  padding: 5px 15px;
  margin-bottom: 1rem;
}
.meeting-comments .comment-widgets .form-group label.col-form-label {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 0;
}
.meeting-comments .comment-widgets .form-group textarea,
.meeting-comments .comment-widgets .form-group input,
.meeting-comments .comment-widgets .form-group select {
  padding: 4px 10px !important;
  background: #F5F6F8;
  border: none;
  box-shadow: none !important;
  font-family: Beatrice, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 11px !important;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  color: #000000;
}
.meeting-comments .comment-row {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid rgba(120, 130, 140, 0.13);
  padding: 12px;
  font-size: 13px;
}
.meeting-comments .comment-row p {
  margin-bottom: 0.3rem;
  font-size: 12px;
}
.meeting-comments .comment-row h5 {
  font-size: 14px;
  margin-bottom: 0.3rem;
}
.meeting-comments .comment-row .comment-img img {
  border-radius: 100%;
  width: 40px;
  height: 40px;
}
.meeting-comments .comment-row .comment-footer {
  margin-bottom: 0.3rem;
}
.meeting-comments .comment-row .comment-footer * {
  font-size: 10px;
}
.meeting-comments .comment-row .comment-footer .rating {
  margin-left: 10px;
}
.meeting-comments .comment-row .comment-footer .rating i {
  color: var(--theme-warning, '#FFB946');
  font-size: 11px;
  margin-right: 1px;
}
.meeting-comments .comment-row .comment-footer .rating i.no-rating {
  color: black;
  opacity: 0.7;
}
.meeting-comments .comment-row .comment-footer .rating.my-rating i {
  color: var(--theme-secondary, '#913ef0');
}
.meeting-comments .label {
  padding: 3px 10px;
  line-height: 13px;
  color: #ffffff;
  font-weight: 400;
  border-radius: 4px;
  font-size: 75%;
}
.meeting-comments .round img {
  border-radius: 100%;
  width: 40px;
  height: 40px;
}
.meeting-comments .label-info {
  background-color: #1976d2;
}
.meeting-comments .label-success {
  background-color: green;
}
.meeting-comments .label-danger {
  background-color: #ef5350;
}
.interviews-table {
  margin-top: 24px;
}
.interviews-table thead tr th {
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #000000;
  text-transform: uppercase;
  border-top: none;
  border-bottom: none;
}
.interviews-table tbody tr td {
  padding: 8px 12px;
  vertical-align: middle;
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #000000;
}
.interviews-table tbody tr td button,
.interviews-table tbody tr td .dropdown {
  pointer-events: all;
}
.interviews-table tbody tr td .interview-name p {
  padding: 0;
  margin: 0;
  font-weight: 500;
}
.interviews-table tbody tr td .interview-name button {
  font-size: 11px;
  padding: 0;
  color: var(--theme-info, '#4B80E7') !important;
}
.interviews-table tbody tr td .interview-name button:hover,
.interviews-table tbody tr td .interview-name button:focus {
  color: var(--theme-info-dark) !important;
}
.interviews-table tbody tr td .interview-name .rating {
  font-size: 11px;
}
.interviews-table tbody tr td .interview-name .rating i {
  color: var(--theme-warning, '#FFB946');
}
.interviews-table tbody tr td .interview-name .rating i.no-rating {
  color: black;
  opacity: 0.7;
}
.interviews-table tbody tr td .interview-name .rating.my-rating i {
  color: var(--theme-secondary, '#913ef0');
}
.interviews-table tbody tr td .meeting-status,
.interview-popup .meeting-status {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  gap: 8px;
  border-radius: 24px;
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: white;
}
.interviews-table tbody tr td .meeting-status.primary,
.interview-popup .meeting-status.primary {
  background-color: var(--theme-primary, '#5f3db1');
}
.interviews-table tbody tr td .meeting-status.secondary,
.interview-popup .meeting-status.secondary {
  background-color: var(--theme-secondary, '#913ef0');
}
.interviews-table tbody tr td .meeting-status.danger,
.interview-popup .meeting-status.danger {
  background-color: var(--theme-danger, '#E54963');
}
.interviews-table tbody tr td .meeting-status.warning,
.interview-popup .meeting-status.warning {
  background-color: var(--theme-warning, '#FFB946');
  color: black;
}
.interviews-table tbody tr td .meeting-status.success,
.interview-popup .meeting-status.success {
  background-color: #2ED47A;
}
.interviews-table tbody tr td .meeting-status.info,
.interview-popup .meeting-status.info {
  background-color: var(--theme-info, '#4B80E7');
}
.interviews-table tbody tr td .meeting-status.expired,
.interview-popup .meeting-status.expired {
  background-color: #E5E5E5;
  color: black;
}
.interviews-table tbody tr td .meeting-status.dark,
.interview-popup .meeting-status.dark {
  background-color: #000;
  color: white;
}
.interviews-table tbody tr td .attendee-count,
.interview-popup .attendee-count {
  font-family: 'Beatrice';
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: var(--theme-info, '#4B80E7');
}
.interview-popup {
  display: flex;
  width: 375px;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 16px 24px;
  gap: 8px;
  background: #FFFFFF;
  box-shadow: 0px 0px 8px rgba(112, 118, 131, 0.25), 0 4px 4px rgba(112, 118, 131, 0.25);
  border-radius: 8px;
}
.interview-popup .interview-name {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #000000;
}
.interview-popup .popup-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0;
  gap: 24px;
  align-self: stretch;
}
.interview-popup .popup-actions button i {
  font-size: 16px;
}
.interview-popup .interview-detail p {
  margin-bottom: 0;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #000000;
}
.interview-popup .interview-detail i {
  font-size: 14px;
  line-height: 160%;
  width: 16px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #818E9B;
}
.interview-popup .interview-detail .attendee {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 8px;
  align-self: stretch;
}
.interview-popup .interview-detail .attendee .name {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 0;
}
.interview-popup .interview-detail .attendee .type {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #707683;
  margin-bottom: 0;
}
/*

    This utilities class is designed to be an
    addition of the Bootstrap utility classes

*/
[class~="p-4.5"] {
  padding: calc(16px * 2) !important;
}
@media only screen and (min-width: 768px) {
  [class~="p-md-4.5"] {
    padding: calc(16px * 2) !important;
  }
}
/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.vsc-controller {
  display: none!important;
}
@media print {
  tr,
  img {
    page-break-inside: unset!important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid!important;
  }
  @page {
    size: a4;
  }
  body {
    min-width: a4 !important;
  }
  .container {
    min-width: a4 !important;
  }
  .table {
    border-collapse: separate !important;
  }
  .table td,
  .table th {
    border: none!important;
    background-color: #fff !important;
  }
  .brief-section-break {
    display: block!important;
    page-break-before: always!important;
    clear: both;
    -moz-column-break-before: always!important;
         break-before: always!important;
    page-break-inside: avoid!important;
    -moz-column-break-inside: avoid!important;
         break-inside: avoid!important;
  }
  .brief-section .bidding-brief-step .brief-role-scroll-container form > .field-section:first-child {
    margin-bottom: 5px;
  }
  .brief-section .position-form .form-container .field-section .field-element,
  .brief-section .field-element {
    margin-bottom: 8px!important;
    margin-top: 5px !important;
  }
  .brief-section .field {
    margin-top: 0!important;
  }
  .brief-section hr {
    margin-bottom: 0!important;
    margin-top: 0!important;
  }
  .brief-section .form-group {
    margin-top: 0.4rem !important;
    margin-bottom: 0.3rem !important;
  }
  .brief-section .position-form .form-container .field-element .col-form-label {
    page-break-after: avoid;
    margin-bottom: 3px!important;
  }
  .brief-section .wizard-form-step,
  .brief-section .wizard-position-step {
    margin-bottom: 0!important;
  }
  .brief-section .project-review-container .wripple-form,
  .brief-section .project-review-container > div {
    padding-bottom: 0!important;
    padding-top: 0!important;
  }
  .brief-section .project-review-container .wripple-form .review-tabs,
  .brief-section .project-review-container > div .review-tabs {
    padding-bottom: 0!important;
    padding-top: 0!important;
  }
  .brief-section .project-review-container .wripple-form .review-tabs .review-tab-section,
  .brief-section .project-review-container > div .review-tabs .review-tab-section {
    padding-bottom: 0!important;
    padding-top: 0!important;
  }
}
.wp-sidebar-nav {
  background-color: white;
  z-index: 50;
  position: relative;
  /* Position them relative to the browser window */
  top: 0;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
  width: 0;
  /* Set a specific width */
  text-decoration: none;
  /* Remove underline */
  border-radius: 0 5px 5px 0;
  /* Rounded corners on the top right and bottom right side */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.wp-sidebar-nav:not(.open) {
  transition: all 800ms ease-in-out;
  /* Add transition on hover */
}
.wp-sidebar-nav:not(.open) .settings-icon {
  transition: all 800ms ease-in-out;
}
.wp-sidebar-nav:not(.open) > div:not(.settings-icon) {
  padding: 0!important;
}
.wp-sidebar-nav:not(.open) > .wp-sidebar-container {
  overflow: hidden;
  opacity: 0;
  transition: opacity 100ms ease-in-out;
  transition-delay: 0ms;
}
.wp-sidebar-nav > .wp-sidebar-container {
  width: 100%;
  transition: opacity 100ms ease-in-out;
  transition-delay: 800ms;
}
.wp-sidebar-nav .settings-icon {
  z-index: 50;
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
  border-radius: 0 0 5px 0;
  /* Rounded corners on the top right and bottom right side */
  background-color: white;
  width: 30px;
  font-size: 13px;
  margin: 0;
  color: #334D6E;
  align-self: flex-end;
  position: absolute;
  top: 0;
  height: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0;
  opacity: 1;
}
.wp-sidebar-nav .settings-icon .fa-sliders-h {
  color: #90A0B7;
}
.wp-sidebar-nav .settings-icon .fa-times,
.wp-sidebar-nav .settings-icon .fa-caret-left {
  height: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 100ms ease-in-out;
  transition-delay: 800ms;
}
.wp-sidebar-nav.open {
  background-color: #fff;
  transition: all ease-in-out 800ms;
}
.wp-sidebar-nav.open .settings-icon {
  opacity: 1;
  box-shadow: 1px 2px 0 0 rgba(52, 55, 65, 0.24);
  height: 45px;
  width: 30px;
  margin: 0;
  left: 306px;
  transition: all ease-in-out 800ms;
  transition-delay: 0;
}
.wp-sidebar-nav.open .settings-icon .fa-times,
.wp-sidebar-nav.open .settings-icon .fa-caret-left {
  height: unset;
  width: unset;
  overflow: unset;
  opacity: 1;
  transition-delay: 800ms;
}
.wp-sidebar-nav.open .settings-icon .fa-sliders-h {
  display: none;
}
.wp-sidebar-nav.open .settings-icon p {
  display: none;
}
.wp-sidebar-nav.open > .wp-sidebar-container {
  opacity: 1;
}
.bidding-wizard-step .wp-sidebar-nav > .wp-sidebar-container {
  min-height: calc(100vh - 170px);
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.bidding-wizard-step .wp-sidebar-nav > .wp-sidebar-container .sidebar-filters {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  flex-grow: 1;
}
.reverse-impersonate-container,
#adminSidenav {
  z-index: 50;
  position: fixed;
  /* Position them relative to the browser window */
  top: 5px;
  left: -385px;
  /* Position them outside of the screen */
  transition: all 0.3s ease-in;
  /* Add transition on hover */
  padding: 0.5rem 0;
  /* 15px padding */
  width: 420px;
  /* Set a specific width */
  text-decoration: none;
  /* Remove underline */
  font-size: 20px;
  /* Increase font size */
  border-radius: 0 5px 5px 0;
  /* Rounded corners on the top right and bottom right side */
  background-color: var(--theme-secondary, '#913ef0');
  box-shadow: 0 2px 5px rgba(52, 55, 65, 0.24);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  max-height: 600px;
}
.reverse-impersonate-container:not(:hover),
#adminSidenav:not(:hover) {
  height: 35px!important;
}
.reverse-impersonate-container .settings-icon,
#adminSidenav .settings-icon {
  font-size: 16px;
  margin: 0 0.6rem;
  color: white;
  align-self: flex-end;
  position: absolute;
  top: 0;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  pointer-events: none;
  opacity: 1;
  transition: all 100ms ease-in-out;
}
.reverse-impersonate-container .form-checkbox,
#adminSidenav .form-checkbox,
.reverse-impersonate-container .setting-label,
#adminSidenav .setting-label {
  height: 0;
  overflow: hidden;
  transition: all 200ms ease-in;
  opacity: 0;
  transition-delay: 150ms;
}
.reverse-impersonate-container .form-checkbox *,
#adminSidenav .form-checkbox *,
.reverse-impersonate-container .setting-label *,
#adminSidenav .setting-label * {
  color: black;
  /* White text color */
}
.reverse-impersonate-container .setting-label,
#adminSidenav .setting-label {
  font-family: Beatrice, sans-serif !important;
  font-style: normal;
  text-decoration: underline;
  margin: 0.5rem 0.3rem;
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
}
.reverse-impersonate-container .setting-label.setting-level-1,
#adminSidenav .setting-label.setting-level-1 {
  font-size: 14px;
}
.reverse-impersonate-container .setting-label.setting-level-2,
#adminSidenav .setting-label.setting-level-2 {
  font-size: 13px;
  margin: 0.5rem 0.5rem;
}
.reverse-impersonate-container .setting-label.setting-level-3,
#adminSidenav .setting-label.setting-level-3 {
  font-size: 11px;
  margin: 0.5rem 1rem;
}
.reverse-impersonate-container:hover,
#adminSidenav:hover {
  left: 0;
  /* On mouse-over, make the elements appear as they should */
  background-color: white;
  overflow-y: scroll;
  height: 600px!important;
}
.reverse-impersonate-container:hover .form-checkbox,
#adminSidenav:hover .form-checkbox,
.reverse-impersonate-container:hover .setting-label,
#adminSidenav:hover .setting-label {
  height: unset;
  overflow: unset;
  display: flex;
  opacity: 1;
}
.reverse-impersonate-container:hover .settings-icon,
#adminSidenav:hover .settings-icon {
  opacity: 0;
}
.reverse-impersonate-container:hover *,
#adminSidenav:hover * {
  visibility: visible;
}
.reverse-impersonate-container {
  top: 45px!important;
  box-shadow: 3px 2px 5px rgba(52, 55, 65, 0.24) !important;
}
.reverse-impersonate-container:before {
  content: "\f21b";
  font-size: 16px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin: 0 0.6rem;
  color: black;
  align-self: flex-end;
  position: absolute;
  top: 0;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  pointer-events: none;
  opacity: 1;
  transition: all 100ms ease-in-out;
}
.reverse-impersonate-container:hover {
  overflow-y: unset!important;
  height: 130px!important;
}
.reverse-impersonate-container:hover:before {
  content: "";
}
.bg-primary {
  background-color: var(--theme-primary, '#5f3db1') !important;
}
.bg-warning {
  background-color: var(--theme-warning, '#FFB946');
}
.alert-primary {
  color: white!important;
  background-color: var(--theme-primary, '#5f3db1') !important;
}
.bg-black:not([class*="bg-opacity-"]) {
  background-color: black!important;
}
.flex-center-column {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.flex-center-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.flex-center-row-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1;
}
.text-warning {
  color: #FFB946;
}
.text-warning-darker {
  color: var(--theme-warning-dark);
}
.text-info {
  color: var(--theme-info, '#4B80E7');
}
.text-primary-dark {
  color: var(--theme-primary, '#5f3db1') !important;
}
.text-success-dark {
  color: var(--theme-success-darkest) !important;
}
.text-secondary {
  color: var(--theme-secondary, '#913ef0') !important;
}
.text-transform-none {
  text-transform: none!important;
}
.pointer-events-none {
  pointer-events: none;
}
.text-black {
  color: black;
}
.whitespace-normal {
  white-space: normal!important;
}
.fa-linkedin {
  color: #2867B2 !important;
}
.login-preview {
  position: absolute;
  background-color: white;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden!important;
  display: flex!important;
  align-items: center!important;
  justify-content: center!important;
}
.login-preview .react-player {
  position: relative;
  min-height: 100%;
}
.text-underline {
  text-decoration: underline;
}
.bg-gray {
  background-color: #F5F6F8;
}
.overflow-x-hidden {
  overflow-x: hidden !important;
}
.opacity-0 {
  opacity: 0;
  pointer-events: none;
}
.fade-enter {
  opacity: 0.01;
}
.fade-enter.fade-enter-active {
  opacity: 1;
  transition: opacity 500ms ease-in;
}
.fade-leave {
  opacity: 1;
}
.fade-leave.fade-leave-active {
  opacity: 0.01;
  transition: opacity 300ms ease-in;
}
.whitespace-no-wrap {
  white-space: nowrap;
}
.clickable {
  cursor: pointer;
}
.clickable.disabled {
  cursor: none;
  opacity: 0.85;
}
img.logo-white {
  filter: brightness(0) invert(1);
}
.text-gray {
  color: #90a0b7;
}
.text-italic {
  font-style: italic;
}
.border-none {
  border: none !important;
  border-radius: 0 !important;
}
body {
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
}
body #app {
  min-height: inherit;
  width: 100%;
  position: relative;
}
body #app > div:not(.scrollarea) {
  display: flex;
  min-height: inherit;
  width: 100%;
  position: relative;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
}
body.login-preview-playing {
  overflow-y: hidden!important;
  background-color: white!important;
}
.register-footer {
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.01em;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.panel {
  width: 100%;
  text-align: center;
  color: white;
  padding-top: 60px;
  padding-bottom: 80px;
}
.panel h1 {
  font-family: "Lobster";
  padding-bottom: 100px;
}
.panel .config {
  margin-top: 40px;
}
.panel .config p {
  font-family: "Roboto Mono";
}
.panel input {
  width: 50px;
  height: 30px;
  text-align: center;
  font-size: 20px;
  color: #4a4a4a;
  border: none;
  background-color: #f7ffba;
  font-family: "Inconsolata";
}
.panel input[type=number]::-webkit-inner-spin-button,
.panel input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}
.panel a {
  color: white;
  font-weight: normal;
}
/*.modal-content{
    border-image: linear-gradient(to right, #2ED47A 1.33%, #109CF1 100%);
    border-image-slice: 1;
    border-width:10px !important;
}*/
.navbar-text {
  font-size: 12px;
  line-height: 18px;
  color: #4C5862 !important;
}
.navbar-text .btn {
  max-width: 140px;
  margin-left: 30px;
}
.bg-gradient {
  background: linear-gradient(97.54deg, #2ED47A 1.33%, #109CF1 100%);
}
.bg-light-blue {
  background-color: var(--theme-light) !important;
}
@media only screen and (max-width: 600px) {
  .container {
    width: 100%;
  }
  .slider-normal .dot-holder {
    margin-right: 2px;
  }
  .seperator-dot {
    display: none;
  }
}
.filter-dropdown > a.dropdown-toggle:after {
  float: right;
  margin-top: 0.7em;
}
.filter-dropdown > a.dropdown-toggle {
  width: 100%;
  display: block;
  text-align: left;
  padding: 1rem;
}
.filter-dropdown {
  padding: 0 !important;
  max-width: 330px;
  width: 100%;
  display: none;
}
@media only screen and (max-width: 720px) {
  .filter-dropdown {
    display: block;
  }
}
.feedback-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: 0 auto;
  z-index: 99;
  min-height: 250px;
  width: 100%;
}
.feedback-banner i {
  font-size: 35px;
}
@media only screen and (max-width: 767px) {
  #navbar-menu {
    border-top: 1px solid #323c47;
  }
}
@media only screen and (min-width: 769px) {
  #navbar-menu {
    flex: 1;
  }
}
.modal-backdrop {
  background-color: #ccc;
  opacity: 0.7;
}
.users-table td {
  vertical-align: middle;
}
.clamp-lines__button {
  box-sizing: border-box;
  outline: none !important;
  border: 1px solid transparent;
  background-color: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-info, '#4B80E7');
  float: right;
  display: none;
}
.show-white-space {
  white-space: pre-wrap;
}
@media only screen and (max-width: 900px) {
  .clamp-lines__button {
    display: inline-block;
  }
}
/*.wripple-gradient-text {
    background: -webkit-linear-gradient(127.15deg, #2ED47A 1.33%, #109CF1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}*/
.no-underline {
  text-decoration: none !important;
}
.wripple-form > div form .field.client-project-groups .form-group {
  display: flex;
  flex-direction: column;
}
.wripple-form > div form .field.client-project-groups .form-group select {
  width: 50%;
  padding: 0.375rem 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem !important;
  background-color: white;
  color: black !important;
  height: 37px;
  font-size: 13px !important;
}
.wripple-form > div form .field.client-project-groups .form-group select.not-selected {
  color: unset !important;
}
.user-image-50 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.user-image-80 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.user-image-120 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.user-image-150 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.img-grayscale {
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
}
.card-list-container {
  display: flex;
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.card-list-container .card-list {
  display: flex;
  align-self: center;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 40px;
}
.card-list-container .card-list .card-list-item {
  align-items: stretch;
  justify-content: center;
  display: flex;
  padding: 0 15px;
  flex-direction: row;
}
.normal-case {
  text-transform: none !important;
}
.update-indicator {
  line-height: 12px;
  font-size: 10px;
  color: white;
  border-radius: 12px;
  min-width: 16px;
  min-height: 16px;
  padding: 2.5px 4.5px;
  font-weight: 500;
  vertical-align: top;
  background-color: var(--theme-danger, '#E54963');
  display: inline-block;
  text-align: center;
  margin-left: 5px;
}
.btn-danger {
  background-color: var(--theme-danger, '#E54963');
  border-color: var(--theme-danger, '#E54963');
  color: #fff;
}


/*# sourceMappingURL=app-v2.css.map*/