@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  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: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  flex: 1;
}
.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
}

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

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

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.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--light {
  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: var(--toastify-z-index);
  opacity: 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__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@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;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*# sourceMappingURL=ReactToastify.css.map */.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.5);
  z-index: 9999999;
  padding-top: 25vh;
  transition: all ease-in-out 1s;
}
.loader__spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 60px;
  width: 60px;
  margin: 0 auto;
  animation: rotation 0.6s infinite linear;
  border-left: 6px solid rgba(0, 174, 239, 0.15);
  border-right: 6px solid rgba(0, 174, 239, 0.15);
  border-bottom: 6px solid rgba(0, 174, 239, 0.15);
  border-top: 6px solid rgba(0, 174, 239, 0.8);
  border-radius: 100%;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/*# sourceMappingURL=styles.css.map */@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.button {
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  color: #333333;
  font-weight: 400;
  padding: 6px 16px;
  font-size: 0.84rem !important;
  line-height: 1.6rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-family: "Roboto Text Medium", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  background-color: white;
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.button:disabled {
  cursor: default;
}
.button:disabled:hover {
  border-color: #e8e8e8;
}
.button:focus {
  outline: 0;
}
.button:hover {
  border-color: #333333;
}
.button--primary {
  border: none;
  min-width: 120px;
  padding: 0;
  color: white;
  background-color: #05b893;
}
.button--primary:hover {
  border: none;
  background-color: #37ab6c;
}
.button--secondary {
  border: none;
  min-width: 120px;
  padding: 0;
  color: white;
  background-color: #333333;
}
.button--secondary:hover {
  border: none;
  background-color: #333333;
  opacity: 0.85;
}
.button--tertiary {
  border: none;
  color: white;
  background-color: #588db0;
}
.button--tertiary:hover {
  border: none;
  opacity: 0.85;
}
.button.border-2 {
  border-width: 2px;
}
.button--dashboard {
  min-width: 120px;
}
.button--small {
  padding: 8px 16px;
  height: auto;
}
.button--small__auto {
  min-width: auto;
}
.button--big {
  padding: 0 32px;
}
.button--link {
  border: none;
  padding: 0;
  height: 32px;
  color: #588db0;
}
.button--link--small {
  height: auto;
}
.button--link:hover {
  border: none;
  color: #204e79;
}

/*# sourceMappingURL=styles.css.map */@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.user-actions .pop-up__item--member__current {
  cursor: default;
  color: #808080;
}
.user-actions .pop-up__item--member__current span {
  text-transform: uppercase;
  margin-left: 0.8rem;
  font-size: 1rem;
}
.user-actions .pop-up__item--no-space {
  margin-top: -12px;
}
.user-actions .pop-up__item.disabled {
  cursor: default;
  color: darkgray;
}
.user-actions .pop-up__item--side-menu {
  position: relative;
  cursor: pointer;
  margin: -16px -16px -6px;
  padding: 16px 16px 0 16px;
}
.user-actions .pop-up__item--side-menu .user-actions__pop-up.side-menu {
  width: auto;
  margin-left: 165px;
  top: 0;
  position: absolute;
  background-color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  white-space: nowrap;
}
.user-actions .pop-up__item--side-menu::after {
  margin-left: 1.6rem;
  content: "->";
}
.user-actions .pop-up__item--side-menu--inner {
  margin-left: -6px;
}

/*# sourceMappingURL=style.css.map */.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.help-ballon__help-icon {
  display: inline-flex;
  outline: none;
  cursor: help;
  margin: auto 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #d3d3d3;
  background-color: #fff;
  background-image: url("/react/assets/private/help-icon.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.help-ballon__content {
  font-family: "Roboto", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
}

.tippy-light {
  background-color: #fff;
  color: #000;
  border: 1px solid #d3d3d3;
}

/*# sourceMappingURL=style.css.map */
@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.send-link__email--section {
  padding: 10px;
}
.send-link__email--container {
  border: 1px solid #e8e8e8;
  box-shadow: 0 0 5px 0 rgba(51, 51, 51, 0.09), 0 1px 0 0 #e8e8e8;
  padding: 10px 0;
}
.send-link__row {
  display: flex;
  margin-bottom: 14px;
  width: 100%;
  padding: 0 32px;
}
.send-link__row label {
  width: 100%;
  max-width: 100%;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 5px;
  color: #808080;
}
.send-link__row:last-of-type {
  margin-bottom: 0;
}
.send-link__row--custom {
  display: block;
  margin-bottom: 14px;
  width: 100%;
  padding: 0 32px;
}
.send-link__row--custom .checkbox input {
  display: none;
}
.send-link__row--custom .checkbox label {
  position: relative;
  margin-left: 25px;
  margin-bottom: 0;
  flex-direction: column;
  display: flex;
  width: 100%;
  max-width: unset;
  color: #333333;
  cursor: pointer;
}
.send-link__row--custom .checkbox label:before {
  content: "";
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  left: -25px;
  top: 0;
  color: white;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
}
.send-link__row--custom .checkbox input[value=true] + label:before {
  background-color: #333f4f;
  content: "✓";
}
.send-link__row--column {
  display: inline-flex;
  flex-direction: column;
  margin-right: 32px;
  width: auto;
}
.send-link__row--column--full {
  width: 100%;
}
.send-link__row--column:first-of-type {
  width: 35%;
}
.send-link__row--column:last-of-type {
  margin-right: 0;
  flex: 1 1 0;
}
.send-link__row--column .form-input,
.send-link__row--column div[class*=container] {
  width: 100%;
}
.send-link__row--column label {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.8rem;
}
.send-link__row--column .input--wider {
  width: 349px;
}
.send-link__row p {
  margin: 0.8rem 0;
}
.send-link__row p b {
  font-family: "Roboto Text Bold", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
}
.send-link__row p.some-clients {
  color: #588db0;
  line-height: normal;
}
.send-link__row h3 {
  color: #333333;
  font-size: 2rem;
  font-family: "Roboto Text Medium", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  line-height: 2.5rem;
}
.send-link__row h4 {
  font-size: 1.5rem;
  font-family: "Roboto Text Medium", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
}
.send-link__row--buttons {
  display: inline-flex;
}
.send-link__row--buttons .button {
  background-color: white;
  color: #333333;
  box-shadow: none;
  margin-right: 24px;
  padding: 12px 40px;
}
.send-link__row--buttons .button--primary {
  background-color: #05b893;
  color: white;
}
.send-link__row--buttons .button--invite {
  background-color: #05b893;
}
.send-link__row--buttons .button:disabled {
  border: 1px solid #e8e8e8;
  background-color: #e8e8e8;
  color: #333333;
}
.send-link__row--buttons .button:disabled:hover {
  opacity: 1;
  cursor: default;
}
.send-link__row--buttons .button:last-of-type {
  margin-right: 0;
}
.send-link__row--buttons .button:hover {
  opacity: 0.85;
}
.send-link__row--buttons .button-div {
  margin-right: 24px;
}
.send-link__row--top {
  margin-top: 10px;
}
.send-link__row--limiter {
  border-bottom: 1px dashed #e8e8e8;
}
.send-link__accordion {
  width: 100%;
  display: flex;
  cursor: pointer;
}
.send-link__accordion--sign {
  width: 18px;
  height: 18px;
  left: -25px;
  top: 0;
  color: white;
  border-radius: 5px;
  background-color: #333f4f;
  margin-right: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.send-link__custom {
  padding-top: 5px;
  display: block;
}

.sortable-flow {
  max-height: 340px;
  overflow: auto;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.sortable-flow--item {
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 0.6rem 1rem;
  margin-right: 12px;
  margin-bottom: 0.5rem !important;
  display: flex;
}
.sortable-flow--item:last-of-type {
  margin-bottom: 0;
}
.sortable-flow--item.dragging {
  cursor: grabbing;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.12);
  z-index: 9999 !important;
  position: relative;
}
.sortable-flow--item__handle {
  margin-right: 1.2rem;
  display: flex;
  cursor: grab;
}
.sortable-flow--item__handle svg {
  width: 8px;
  height: 18px;
}
.sortable-flow--item label {
  width: 100%;
  max-width: 100%;
  color: #333333;
  position: relative;
  margin-left: 25px;
  margin-bottom: 0;
  flex-direction: column;
}
.sortable-flow--item label input {
  display: none;
}
.sortable-flow--item label span:before {
  content: "";
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  left: -25px;
  top: 0;
  color: white;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
}
.sortable-flow--item label input:checked + span:before {
  background-color: #333f4f;
  content: "✓";
}

.sortable-item-text {
  width: 100%;
  max-width: 100%;
  color: #333333;
  margin-bottom: 0;
}

.sortable-flow__taller {
  max-height: 390px;
}
.sortable-flow__taller .sortable-flow--item {
  padding: 1rem 1rem 0.35rem 1rem;
}

/*# sourceMappingURL=style.css.map */@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.ReactModal * {
  outline: 0;
}
.ReactModal__Overlay {
  position: fixed;
  top: 80px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  outline: 0;
  opacity: 0;
  background-color: rgba(249, 249, 249, 0.9);
  transition: opacity 300ms ease-in-out;
}
.ReactModal__Overlay--after-open {
  opacity: 1;
  z-index: 1;
}
.ReactModal__Overlay--before-close {
  opacity: 0;
}
.ReactModal__Content {
  position: relative;
  background-color: white;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  box-shadow: 0 0 5px 0 rgba(51, 51, 51, 0.09), 0 1px 0 0 #e8e8e8;
  width: min-content;
  margin: 32px auto;
  outline: 0;
  transition: transform 0.3s ease-out;
  transform: translate(0, -25%);
  max-height: calc(90vh - 2rem);
  overflow-y: auto;
}
.ReactModal__Content--after-open {
  transform: translate(0, 0);
}
.ReactModal__Content--before-close {
  transform: translate(0, -25%);
}
.ReactModal__Content .modal-container {
  width: 820px;
  margin: 32px auto 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ReactModal__Content .modal-container--small {
  width: 420px;
}
.ReactModal__Content .modal-container--medium {
  width: 500px;
}
.ReactModal__Content .modal-container--full {
  width: 100%;
}
.ReactModal__Content .modal-container--large {
  width: 670px;
}
.ReactModal__Content .modal-container .react-tabs__tab-list {
  margin: 0 0 10px 30px;
}
.ReactModal__Content .modal-limiter {
  border-bottom: 1px dashed #e8e8e8;
  margin-bottom: 12px;
}
.ReactModal__Content .modal-title {
  color: #333333;
  font-weight: 500;
  line-height: 2.5rem;
  margin-bottom: 12px;
  padding: 0 32px;
  width: 100%;
  font-family: "Roboto Text Bold", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
}
.ReactModal__Content .modal-title h3 {
  font-size: 1.5rem !important;
}
.ReactModal__Content .modal-title span {
  font-size: 1.25rem !important;
  font-family: "Roboto Text Medium", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
}
.ReactModal__Content .modal-title .modal-subtitle {
  font-size: 0.9rem !important;
}

.overlay.opaq {
  background-color: rgb(249, 249, 249);
}
.overlay .modal.empty {
  background-color: transparent;
  box-shadow: none;
  border: none;
}
.overlay .modal.center {
  margin-top: calc(50vh - 80px);
  transform: translateY(-50%);
}

.close-modal {
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  float: right;
}
.close-modal--span {
  font-size: 1.5rem !important;
}

/*# sourceMappingURL=style.css.map */@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.investor-context {
  display: flex;
  position: relative;
}
.investor-context__investor {
  display: inline-flex;
  align-items: center;
}
.investor-context .label {
  font-size: 1.2rem;
  line-height: 1.2rem;
}
.investor-context .name {
  color: #333333;
  font-weight: 500;
  white-space: nowrap;
}
.investor-context .name a:hover {
  text-decoration: underline;
}
.investor-context .name .MuiTypography-root {
  font-size: 1.5rem !important;
}
.investor-context .burger-menu--content {
  border: 1px solid rgb(232, 232, 232);
  background-color: white;
  border-radius: 5px;
  display: inline-flex;
  margin-right: 15px;
  cursor: pointer;
}
.investor-context .burger-menu--container {
  margin-right: 16px;
}
.investor-context .burger-menu--label {
  margin-left: -20px;
  font-weight: bold;
  font-size: 1.5rem !important;
  line-height: 1.5rem !important;
  padding: 6px 5px 5px 1px;
  color: #000;
}
.investor-context .user-actions__pop-up.pop-up {
  top: 56px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 0 5px 0 rgba(51, 51, 51, 0.09), 0 1px 0 0 #e8e8e8;
}
.investor-context .user-actions__pop-up.pop-up hr + .pop-up__item--inner {
  margin-left: 0;
}
.investor-context .user-actions__pop-up.pop-up .pop-up__item--no-link {
  cursor: default;
  color: #808080;
}
.investor-context .user-actions__pop-up.pop-up .pop-up__item--member__current {
  cursor: default;
  color: #808080;
}
.investor-context .user-actions__pop-up.pop-up .pop-up__item--member__current span {
  text-transform: uppercase;
  margin-left: 0.8rem;
  font-size: 1rem;
}
.investor-context .user-actions__pop-up.pop-up .pop-up__item--no-space {
  margin-top: -12px;
}
.investor-context .user-actions__pop-up.pop-up .pop-up__item.disabled {
  cursor: default;
  color: darkgray;
}
.investor-context .user-actions__pop-up.pop-up .pop-up__item--side-menu {
  position: relative;
  cursor: pointer;
  margin: -16px -16px -6px;
  padding: 16px;
}
.investor-context .user-actions__pop-up.pop-up .pop-up__item--side-menu .user-actions__pop-up.side-menu {
  width: auto;
  margin-left: 165px;
  top: 0;
  position: absolute;
  background-color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  white-space: nowrap;
}
.investor-context .user-actions__pop-up.pop-up .pop-up__item--side-menu::after {
  margin-left: 1.6rem;
  content: "->";
}
.investor-context .user-actions__pop-up.pop-up .pop-up__item--side-menu--inner {
  margin-left: -6px;
}
.investor-context .user-actions__pop-up.pop-up .pop-up__item .create-custom-household {
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .investor-context__investor {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.header {
  height: 80px;
  box-shadow: 0 0 5px 0 rgba(51, 51, 51, 0.09), 0 1px 0 0 #e8e8e8;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: #fff;
  justify-content: flex-start;
}
.header__content {
  align-items: center;
  position: relative;
  display: flex;
  height: 100%;
}
.header .center {
  margin-left: auto;
}
.header__logo {
  width: 65px;
  height: 40px;
  background-image: url("/react/assets/public/logo-pro.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.header__logo--big {
  width: 150px;
  background-image: url("/react/assets/public/logo-pro--big.png");
}
.header__logo-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 60px;
}
.header__logo-partner img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.header__navigation {
  display: flex;
  margin-left: auto;
}
.header__navigation .button {
  font-size: 1rem;
  margin-right: 10px;
}
.header .user-actions {
  display: flex;
  height: 40px;
  padding: 0 20px;
  align-items: center;
  background-color: white;
  font-size: 1rem !important;
  margin-left: auto;
  font-family: "Roboto Text Medium", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  color: #333333;
}
.header .user-actions__item {
  margin-left: 19px;
  background: no-repeat left 2px;
  background-size: 22px;
}
.header .user-actions__item--no-link {
  cursor: default;
}
.header .user-actions__item:first-of-type {
  margin-left: 0;
}
.header .user-actions__item.dropdown {
  position: relative;
}
.header .user-actions__item.dropdown:hover .pop-up {
  visibility: visible;
  opacity: 1;
}
.header .user-actions__item.disabled {
  cursor: default;
  color: darkgray;
}

.pop-up {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 30px;
  background-color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  white-space: nowrap;
}
.pop-up.last {
  right: -80px;
}
.pop-up.last::before {
  left: 32px;
}
.pop-up.last::after {
  left: 34px;
}
.pop-up hr {
  margin: 0 0 10px;
  border: none;
  background: none;
  border-top: 1px dashed #e8e8e8;
}
.pop-up__item {
  color: #333333;
  font-family: "Roboto Text Medium", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  margin-bottom: 10px;
  border-bottom: 1px dashed transparent;
}
.pop-up__item--inner {
  margin-left: 10px;
}
.pop-up__item:last-child {
  margin-bottom: 0;
}
.pop-up__item.disabled {
  cursor: default;
  color: darkgray;
}
.pop-up:before {
  display: block;
  position: absolute;
  content: "";
  top: -12px;
  left: 6px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #e8e8e8;
}
.pop-up:after {
  display: block;
  position: absolute;
  content: "";
  top: -10px;
  left: 8px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

.footer {
  background-color: #f9f9f9;
  font-size: 0.788rem !important;
}
.footer .container {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.footer .container a {
  margin-left: 30px;
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  .header__logo-partner {
    display: none !important;
  }
  .header a.center {
    display: none;
  }
  .header .user-actions {
    margin: unset !important;
  }
  footer.footer {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .header__logo-partner {
    display: none !important;
  }
  .header a.center {
    display: none;
  }
  .header .user-actions {
    padding: 0 !important;
    margin: unset !important;
    font-size: 0.9rem !important;
    font-weight: bold;
  }
  .header .user-actions__item {
    margin-left: 12px !important;
  }
  .header .user-actions__item:first-of-type {
    margin-left: 0 !important;
  }
  footer.footer {
    display: none;
  }
}

/*# sourceMappingURL=styles.css.map */@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.header {
  height: 80px;
  box-shadow: 0 0 5px 0 rgba(51, 51, 51, 0.09), 0 1px 0 0 #e8e8e8;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: #fff;
  justify-content: flex-start;
}
.header__content {
  align-items: center;
  position: relative;
  display: flex;
  height: 100%;
}
.header .center {
  margin-left: auto;
}
.header__logo {
  width: 65px;
  height: 40px;
  background-image: url("/react/assets/public/logo-pro.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.header__logo--big {
  width: 150px;
  background-image: url("/react/assets/public/logo-pro--big.png");
}
.header__logo-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 60px;
}
.header__logo-partner img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.header__navigation {
  display: flex;
  margin-left: auto;
}
.header__navigation .button {
  font-size: 1rem;
  margin-right: 10px;
}
.header .user-actions {
  display: flex;
  height: 40px;
  padding: 0 20px;
  align-items: center;
  background-color: white;
  font-size: 1rem !important;
  margin-left: auto;
  font-family: "Roboto Text Medium", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  color: #333333;
}
.header .user-actions__item {
  margin-left: 19px;
  background: no-repeat left 2px;
  background-size: 22px;
}
.header .user-actions__item--no-link {
  cursor: default;
}
.header .user-actions__item:first-of-type {
  margin-left: 0;
}
.header .user-actions__item.dropdown {
  position: relative;
}
.header .user-actions__item.dropdown:hover .pop-up {
  visibility: visible;
  opacity: 1;
}
.header .user-actions__item.disabled {
  cursor: default;
  color: darkgray;
}

.pop-up {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 30px;
  background-color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  white-space: nowrap;
}
.pop-up.last {
  right: -80px;
}
.pop-up.last::before {
  left: 32px;
}
.pop-up.last::after {
  left: 34px;
}
.pop-up hr {
  margin: 0 0 10px;
  border: none;
  background: none;
  border-top: 1px dashed #e8e8e8;
}
.pop-up__item {
  color: #333333;
  font-family: "Roboto Text Medium", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  margin-bottom: 10px;
  border-bottom: 1px dashed transparent;
}
.pop-up__item--inner {
  margin-left: 10px;
}
.pop-up__item:last-child {
  margin-bottom: 0;
}
.pop-up__item.disabled {
  cursor: default;
  color: darkgray;
}
.pop-up:before {
  display: block;
  position: absolute;
  content: "";
  top: -12px;
  left: 6px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #e8e8e8;
}
.pop-up:after {
  display: block;
  position: absolute;
  content: "";
  top: -10px;
  left: 8px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

.footer {
  background-color: #f9f9f9;
  font-size: 0.788rem !important;
}
.footer .container {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.footer .container a {
  margin-left: 30px;
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  .header__logo-partner {
    display: none !important;
  }
  .header a.center {
    display: none;
  }
  .header .user-actions {
    margin: unset !important;
  }
  footer.footer {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .header__logo-partner {
    display: none !important;
  }
  .header a.center {
    display: none;
  }
  .header .user-actions {
    padding: 0 !important;
    margin: unset !important;
    font-size: 0.9rem !important;
    font-weight: bold;
  }
  .header .user-actions__item {
    margin-left: 12px !important;
  }
  .header .user-actions__item:first-of-type {
    margin-left: 0 !important;
  }
  footer.footer {
    display: none;
  }
}

/*# sourceMappingURL=styles.css.map */@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.user-actions .pop-up__item--member__current {
  cursor: default;
  color: #808080;
}
.user-actions .pop-up__item--member__current span {
  text-transform: uppercase;
  margin-left: 0.8rem;
  font-size: 1rem;
}
.user-actions .pop-up__item--no-space {
  margin-top: -12px;
}
.user-actions .pop-up__item.disabled {
  cursor: default;
  color: darkgray;
}
.user-actions .pop-up__item--side-menu {
  position: relative;
  cursor: pointer;
  margin: -16px -16px -6px;
  padding: 16px 16px 0 16px;
}
.user-actions .pop-up__item--side-menu .user-actions__pop-up.side-menu {
  width: auto;
  margin-left: 165px;
  top: 0;
  position: absolute;
  background-color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  white-space: nowrap;
}
.user-actions .pop-up__item--side-menu::after {
  margin-left: 1.6rem;
  content: "->";
}
.user-actions .pop-up__item--side-menu--inner {
  margin-left: -6px;
}

/*# sourceMappingURL=style.css.map */.loading {
  margin: 1.2rem;
  font-size: 4px;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: spin 1s infinite ease;
  transform: translateZ(0);
}
@keyframes spin {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em #05b893, 1.8em -1.8em 0 0em rgba(5, 184, 147, 0.2), 2.5em 0em 0 0em rgba(5, 184, 147, 0.2), 1.75em 1.75em 0 0em rgba(5, 184, 147, 0.2), 0em 2.5em 0 0em rgba(5, 184, 147, 0.2), -1.8em 1.8em 0 0em rgba(5, 184, 147, 0.2), -2.6em 0em 0 0em rgba(5, 184, 147, 0.5), -1.8em -1.8em 0 0em rgba(5, 184, 147, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(5, 184, 147, 0.7), 1.8em -1.8em 0 0em #05b893, 2.5em 0em 0 0em rgba(5, 184, 147, 0.2), 1.75em 1.75em 0 0em rgba(5, 184, 147, 0.2), 0em 2.5em 0 0em rgba(5, 184, 147, 0.2), -1.8em 1.8em 0 0em rgba(5, 184, 147, 0.2), -2.6em 0em 0 0em rgba(5, 184, 147, 0.2), -1.8em -1.8em 0 0em rgba(5, 184, 147, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(5, 184, 147, 0.5), 1.8em -1.8em 0 0em rgba(5, 184, 147, 0.7), 2.5em 0em 0 0em #05b893, 1.75em 1.75em 0 0em rgba(5, 184, 147, 0.2), 0em 2.5em 0 0em rgba(5, 184, 147, 0.2), -1.8em 1.8em 0 0em rgba(5, 184, 147, 0.2), -2.6em 0em 0 0em rgba(5, 184, 147, 0.2), -1.8em -1.8em 0 0em rgba(5, 184, 147, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(5, 184, 147, 0.2), 1.8em -1.8em 0 0em rgba(5, 184, 147, 0.5), 2.5em 0em 0 0em rgba(5, 184, 147, 0.7), 1.75em 1.75em 0 0em #05b893, 0em 2.5em 0 0em rgba(5, 184, 147, 0.2), -1.8em 1.8em 0 0em rgba(5, 184, 147, 0.2), -2.6em 0em 0 0em rgba(5, 184, 147, 0.2), -1.8em -1.8em 0 0em rgba(5, 184, 147, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(5, 184, 147, 0.2), 1.8em -1.8em 0 0em rgba(5, 184, 147, 0.2), 2.5em 0em 0 0em rgba(5, 184, 147, 0.5), 1.75em 1.75em 0 0em rgba(5, 184, 147, 0.7), 0em 2.5em 0 0em #05b893, -1.8em 1.8em 0 0em rgba(5, 184, 147, 0.2), -2.6em 0em 0 0em rgba(5, 184, 147, 0.2), -1.8em -1.8em 0 0em rgba(5, 184, 147, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(5, 184, 147, 0.2), 1.8em -1.8em 0 0em rgba(5, 184, 147, 0.2), 2.5em 0em 0 0em rgba(5, 184, 147, 0.2), 1.75em 1.75em 0 0em rgba(5, 184, 147, 0.5), 0em 2.5em 0 0em rgba(5, 184, 147, 0.7), -1.8em 1.8em 0 0em #05b893, -2.6em 0em 0 0em rgba(5, 184, 147, 0.2), -1.8em -1.8em 0 0em rgba(5, 184, 147, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(5, 184, 147, 0.2), 1.8em -1.8em 0 0em rgba(5, 184, 147, 0.2), 2.5em 0em 0 0em rgba(5, 184, 147, 0.2), 1.75em 1.75em 0 0em rgba(5, 184, 147, 0.2), 0em 2.5em 0 0em rgba(5, 184, 147, 0.5), -1.8em 1.8em 0 0em rgba(5, 184, 147, 0.7), -2.6em 0em 0 0em #05b893, -1.8em -1.8em 0 0em rgba(5, 184, 147, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(5, 184, 147, 0.2), 1.8em -1.8em 0 0em rgba(5, 184, 147, 0.2), 2.5em 0em 0 0em rgba(5, 184, 147, 0.2), 1.75em 1.75em 0 0em rgba(5, 184, 147, 0.2), 0em 2.5em 0 0em rgba(5, 184, 147, 0.2), -1.8em 1.8em 0 0em rgba(5, 184, 147, 0.5), -2.6em 0em 0 0em rgba(5, 184, 147, 0.7), -1.8em -1.8em 0 0em #05b893;
  }
}

/*# sourceMappingURL=style.css.map */.requires-permission .l-text {
  margin-bottom: 10px;
}
.requires-permission .large-width {
  min-width: 160px;
}

/*# sourceMappingURL=styles.css.map */.l-box.error-state {
  width: 60%;
  padding: 20px;
  margin-top: 150px;
}
.l-box.error-state h1 {
  font-size: 24px;
}

/*# sourceMappingURL=style.css.map */@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.header--public {
  height: 80px;
  box-shadow: 0 0 5px 0 rgba(51, 51, 51, 0.09), 0 1px 0 0 #e8e8e8;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: #fff;
  justify-content: flex-start;
  padding: 0 25px;
}
.header--public__content {
  align-items: center;
  justify-content: space-between;
  position: relative;
  display: flex;
  height: 100%;
}
.header--public__content--left {
  position: absolute;
  left: 0;
}
.header--public__content--left h1 {
  color: #333333;
  font-family: "Roboto Text Medium", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  font-size: 1.5rem !important;
  line-height: 3rem;
}
.header--public__content--left p {
  font-size: 1rem !important;
  line-height: 2rem;
}
.header--public__content--left p b {
  font-family: "Roboto Text Medium", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  color: #333333;
}
.header--public__content--center {
  margin: 0 auto;
}
.header--public__content--right {
  position: absolute;
  right: 0;
  text-align: center;
}
.header--public__content--right p {
  color: #333333;
  font-size: 0.8rem !important;
  line-height: 1.2rem;
}
.header--public__content--right p b {
  font-family: "Roboto Text Medium", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
}
.header--public .center {
  margin-left: auto;
}
.header--public__logo {
  width: 95px;
  height: 60px;
  background-image: url("/react/assets/public/logo-pro.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.header--public__logo--big {
  width: 150px;
  background-image: url("/react/assets/public/logo-pro--big.png");
}
.header--public__logo--partner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95px;
  height: 60px;
}
.header--public__logo--partner--big {
  width: 250px;
}
.header--public__logo--partner img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.footer {
  background-color: #f9f9f9;
}
.footer .container {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.footer .container a {
  margin-left: 30px;
}

@media screen and (max-width: 800px) {
  .header--public__content--left {
    display: none;
  }
  .header--public__content--right {
    display: none;
  }
}

/*# sourceMappingURL=styles.css.map */
@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
/**
 * SCSS 路径工具
 * 为 SCSS 文件提供统一的资源路径管理
 */
@media print {
  .footer,
  #non-printable {
    display: none !important;
  }
  #printable {
    display: block;
  }
}
.header {
  height: 80px;
  box-shadow: 0 0 5px 0 rgba(51, 51, 51, 0.09), 0 1px 0 0 #e8e8e8;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: #fff;
  justify-content: flex-start;
}
.header--center {
  margin: 0 auto;
}
.header__content {
  align-items: center;
  position: relative;
  display: flex;
  height: 100%;
}
.header .center {
  margin-left: auto;
}
.header__logo {
  width: 65px;
  height: 40px;
  background-image: url("/react/assets/public/images/AndesWealth-logo-white-bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.header__logo--big {
  width: 150px;
  background-image: url("/react/assets/public/images/AndesWealth-logo-white-bg.svg");
}
.header__logo-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 60px;
}
.header__logo-partner img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.header__navigation {
  display: flex;
  margin-left: auto;
}
.header__navigation .button {
  margin-right: 10px;
}
.header .user-actions {
  display: flex;
  height: 40px;
  padding: 0 20px;
  align-items: center;
  background-color: white;
  font-size: 1.4rem;
  margin-left: auto;
  font-family: "Roboto Text Medium", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  color: #333333;
}
.header .user-actions__item {
  margin-left: 19px;
  background: no-repeat left 2px;
  background-size: 22px;
}
.header .user-actions__item--no-link {
  cursor: default;
}
.header .user-actions__item:first-of-type {
  margin-left: 0;
}
.header .user-actions__item.dropdown {
  position: relative;
}
.header .user-actions__item.dropdown:hover .pop-up {
  visibility: visible;
  opacity: 1;
}

.footer {
  background-color: #f9f9f9;
}
.footer .container {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.footer .container a {
  margin-left: 30px;
}

/*# sourceMappingURL=styles.css.map */@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.ReactModal__Overlay--after-open {
  z-index: 5;
}

.growthOfADollarModal .growth-of-a-dollar .recharts-default-legend {
  text-align: left !important;
  margin-left: 5% !important;
}
.growthOfADollarModal .growth__row {
  display: block;
  margin-bottom: 20px;
  width: 100%;
  padding: 0 32px;
}
.growthOfADollarModal .growth__row:last-of-type {
  margin-bottom: 0;
}
.growthOfADollarModal .growth__row--margin {
  margin-bottom: 20px;
}
.growthOfADollarModal .growth__row--buttons {
  display: inline-flex;
}
.growthOfADollarModal .growth__row--buttons .button {
  background-color: white;
  color: #333333;
  box-shadow: none;
  margin-right: 24px;
  padding: 12px 24px;
}
.growthOfADollarModal .growth__row--buttons .button--primary {
  background-color: #05b893;
  color: white;
}
.growthOfADollarModal .growth__row--buttons .button:last-of-type {
  margin-right: 0;
}
.growthOfADollarModal .growth__row--buttons .button:hover {
  opacity: 0.85;
}
.growthOfADollarModal .growth__row--limiter {
  border-bottom: 1px dashed #e8e8e8;
}
.growthOfADollarModal .content {
  width: 98%;
}
.growthOfADollarModal .content .markets {
  display: block;
}
.growthOfADollarModal .content .markets .growth-amount {
  margin-left: 40px;
  margin-bottom: 10px;
}
.growthOfADollarModal .content .markets .growth-amount .growth-amount-value {
  display: inline-flex;
  margin-left: 5px;
  color: black;
}
.growthOfADollarModal .content .markets .growth_filters {
  display: none;
}
.growthOfADollarModal .content .datepicker.filter-column {
  margin-left: 40px;
  margin-bottom: 10px;
}

/*# sourceMappingURL=style.css.map */@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.custom-tooltip {
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  background-color: #fafafa;
  padding: 16px;
}
.custom-tooltip p.title {
  color: #333333;
  font-family: "Roboto Text Bold", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  font-size: 1.4rem;
  line-height: 17px;
}
.custom-tooltip p.label {
  color: #808080;
  font-size: 1.2rem;
  font-family: "Roboto Text Medium", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  line-height: 2rem;
}
.custom-tooltip p.label b {
  color: #333333;
  font-family: "Roboto Text Bold", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
}

/*# sourceMappingURL=style.css.map */@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.growth-of-a-dollar {
  width: 100%;
  margin: 1rem 0;
  clear: both;
}
.growth-of-a-dollar .recharts-legend-wrapper {
  height: 2px !important;
  font-size: 0.75rem !important;
}
.growth-of-a-dollar .recharts-default-legend {
  text-align: left !important;
  margin-left: 5% !important;
  font-size: 0.75rem !important;
}
.growth-of-a-dollar .fees-legend {
  text-align: right;
  margin-top: -7px !important;
  font-size: 0.75rem !important;
  color: #808080;
}
.growth-of-a-dollar .growth-summary {
  color: #000;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 2rem 1rem 1rem 2rem;
}
.growth-of-a-dollar .growth-summary .growth-summary-text {
  width: 90%;
  display: flex;
  padding-bottom: 1rem;
  align-self: center;
}
.growth-of-a-dollar .growth-summary .growth-summary-table {
  align-self: center;
  width: 90%;
  display: flex;
}
.growth-of-a-dollar__not-report {
  margin-bottom: 0rem !important;
}

.generate-pdf--content .growth-summary-text {
  font-size: 0.72rem;
}
.generate-pdf--content .fees-legend {
  font-size: 0.72rem;
  color: #808080;
}
.generate-pdf--content .recharts-cartesian-axis-ticks {
  font-size: 0.72rem;
}

/*# sourceMappingURL=style.css.map */
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow, .react-datepicker__navigation-icon::before {
  border-color: #ccc;
  border-style: solid;
  border-width: 3px 3px 0 0;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  top: 6px;
  width: 9px;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
  margin-left: -4px;
  position: absolute;
  width: 0;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
  box-sizing: content-box;
  position: absolute;
  border: 8px solid transparent;
  height: 0;
  width: 1px;
  content: "";
  z-index: -1;
  border-width: 8px;
  left: -8px;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before {
  border-bottom-color: #aeaeae;
}

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
  top: 0;
  margin-top: -8px;
}
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
  border-top: none;
  border-bottom-color: #f0f0f0;
}
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
  top: 0;
}
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before {
  top: -1px;
  border-bottom-color: #aeaeae;
}

.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle {
  bottom: 0;
  margin-bottom: -8px;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after {
  border-bottom: none;
  border-top-color: #fff;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after {
  bottom: 0;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before {
  bottom: -1px;
  border-top-color: #aeaeae;
}

.react-datepicker-wrapper {
  display: inline-block;
  padding: 0;
  border: 0;
}

.react-datepicker {
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  font-size: 0.8rem;
  background-color: #fff;
  color: #000;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  display: inline-block;
  position: relative;
}

.react-datepicker--time-only .react-datepicker__triangle {
  left: 35px;
}
.react-datepicker--time-only .react-datepicker__time-container {
  border-left: 0;
}
.react-datepicker--time-only .react-datepicker__time,
.react-datepicker--time-only .react-datepicker__time-box {
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.react-datepicker__triangle {
  position: absolute;
  left: 50px;
}

.react-datepicker-popper {
  z-index: 1;
}
.react-datepicker-popper[data-placement^=bottom] {
  padding-top: 10px;
}
.react-datepicker-popper[data-placement=bottom-end] .react-datepicker__triangle, .react-datepicker-popper[data-placement=top-end] .react-datepicker__triangle {
  left: auto;
  right: 50px;
}
.react-datepicker-popper[data-placement^=top] {
  padding-bottom: 10px;
}
.react-datepicker-popper[data-placement^=right] {
  padding-left: 8px;
}
.react-datepicker-popper[data-placement^=right] .react-datepicker__triangle {
  left: auto;
  right: 42px;
}
.react-datepicker-popper[data-placement^=left] {
  padding-right: 8px;
}
.react-datepicker-popper[data-placement^=left] .react-datepicker__triangle {
  left: 42px;
  right: auto;
}

.react-datepicker__header {
  text-align: center;
  background-color: #f0f0f0;
  border-bottom: 1px solid #aeaeae;
  border-top-left-radius: 0.3rem;
  padding: 8px 0;
  position: relative;
}
.react-datepicker__header--time {
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
}
.react-datepicker__header--time:not(.react-datepicker__header--time--only) {
  border-top-left-radius: 0;
}
.react-datepicker__header:not(.react-datepicker__header--has-time-select) {
  border-top-right-radius: 0.3rem;
}

.react-datepicker__year-dropdown-container--select,
.react-datepicker__month-dropdown-container--select,
.react-datepicker__month-year-dropdown-container--select,
.react-datepicker__year-dropdown-container--scroll,
.react-datepicker__month-dropdown-container--scroll,
.react-datepicker__month-year-dropdown-container--scroll {
  display: inline-block;
  margin: 0 15px;
}

.react-datepicker__current-month,
.react-datepicker-time__header,
.react-datepicker-year-header {
  margin-top: 0;
  color: #000;
  font-weight: bold;
  font-size: 0.944rem;
}

.react-datepicker-time__header {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.react-datepicker__navigation {
  align-items: center;
  background: none;
  display: flex;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 2px;
  padding: 0;
  border: none;
  z-index: 1;
  height: 32px;
  width: 32px;
  text-indent: -999em;
  overflow: hidden;
}
.react-datepicker__navigation--previous {
  left: 2px;
}
.react-datepicker__navigation--next {
  right: 2px;
}
.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
  right: 85px;
}
.react-datepicker__navigation--years {
  position: relative;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.react-datepicker__navigation--years-previous {
  top: 4px;
}
.react-datepicker__navigation--years-upcoming {
  top: -4px;
}
.react-datepicker__navigation:hover *::before {
  border-color: #a6a6a6;
}

.react-datepicker__navigation-icon {
  position: relative;
  top: -1px;
  font-size: 20px;
  width: 0;
}
.react-datepicker__navigation-icon--next {
  left: -2px;
}
.react-datepicker__navigation-icon--next::before {
  transform: rotate(45deg);
  left: -7px;
}
.react-datepicker__navigation-icon--previous {
  right: -2px;
}
.react-datepicker__navigation-icon--previous::before {
  transform: rotate(225deg);
  right: -7px;
}

.react-datepicker__month-container {
  float: left;
}

.react-datepicker__year {
  margin: 0.4rem;
  text-align: center;
}
.react-datepicker__year-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 180px;
}
.react-datepicker__year .react-datepicker__year-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__month {
  margin: 0.4rem;
  text-align: center;
}
.react-datepicker__month .react-datepicker__month-text,
.react-datepicker__month .react-datepicker__quarter-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__input-time-container {
  clear: both;
  width: 100%;
  float: left;
  margin: 5px 0 10px 15px;
  text-align: left;
}
.react-datepicker__input-time-container .react-datepicker-time__caption {
  display: inline-block;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container {
  display: inline-block;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
  display: inline-block;
  margin-left: 10px;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
  width: auto;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time] {
  -moz-appearance: textfield;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
  margin-left: 5px;
  display: inline-block;
}

.react-datepicker__time-container {
  float: right;
  border-left: 1px solid #aeaeae;
  width: 85px;
}
.react-datepicker__time-container--with-today-button {
  display: inline;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  position: absolute;
  right: -87px;
  top: 0;
}
.react-datepicker__time-container .react-datepicker__time {
  position: relative;
  background: white;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
  width: 85px;
  overflow-x: hidden;
  margin: 0 auto;
  text-align: center;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
  list-style: none;
  margin: 0;
  height: calc(195px + 1.7rem / 2);
  overflow-y: scroll;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  box-sizing: content-box;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
  height: 30px;
  padding: 5px 10px;
  white-space: nowrap;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
  cursor: pointer;
  background-color: #f0f0f0;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
  background-color: #216ba5;
  color: white;
  font-weight: bold;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
  background-color: #216ba5;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
  color: #ccc;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
  cursor: default;
  background-color: transparent;
}

.react-datepicker__week-number {
  color: #ccc;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable {
  cursor: pointer;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable:hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}

.react-datepicker__day-names,
.react-datepicker__week {
  white-space: nowrap;
}

.react-datepicker__day-names {
  margin-bottom: -8px;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  color: #000;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}

.react-datepicker__day,
.react-datepicker__month-text,
.react-datepicker__quarter-text,
.react-datepicker__year-text {
  cursor: pointer;
}
.react-datepicker__day:hover,
.react-datepicker__month-text:hover,
.react-datepicker__quarter-text:hover,
.react-datepicker__year-text:hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}
.react-datepicker__day--today,
.react-datepicker__month-text--today,
.react-datepicker__quarter-text--today,
.react-datepicker__year-text--today {
  font-weight: bold;
}
.react-datepicker__day--highlighted,
.react-datepicker__month-text--highlighted,
.react-datepicker__quarter-text--highlighted,
.react-datepicker__year-text--highlighted {
  border-radius: 0.3rem;
  background-color: #3dcc4a;
  color: #fff;
}
.react-datepicker__day--highlighted:hover,
.react-datepicker__month-text--highlighted:hover,
.react-datepicker__quarter-text--highlighted:hover,
.react-datepicker__year-text--highlighted:hover {
  background-color: #32be3f;
}
.react-datepicker__day--highlighted-custom-1,
.react-datepicker__month-text--highlighted-custom-1,
.react-datepicker__quarter-text--highlighted-custom-1,
.react-datepicker__year-text--highlighted-custom-1 {
  color: magenta;
}
.react-datepicker__day--highlighted-custom-2,
.react-datepicker__month-text--highlighted-custom-2,
.react-datepicker__quarter-text--highlighted-custom-2,
.react-datepicker__year-text--highlighted-custom-2 {
  color: green;
}
.react-datepicker__day--holidays,
.react-datepicker__month-text--holidays,
.react-datepicker__quarter-text--holidays,
.react-datepicker__year-text--holidays {
  position: relative;
  border-radius: 0.3rem;
  background-color: #ff6803;
  color: #fff;
}
.react-datepicker__day--holidays .holiday-overlay,
.react-datepicker__month-text--holidays .holiday-overlay,
.react-datepicker__quarter-text--holidays .holiday-overlay,
.react-datepicker__year-text--holidays .holiday-overlay {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}
.react-datepicker__day--holidays:hover,
.react-datepicker__month-text--holidays:hover,
.react-datepicker__quarter-text--holidays:hover,
.react-datepicker__year-text--holidays:hover {
  background-color: #cf5300;
}
.react-datepicker__day--holidays:hover .holiday-overlay,
.react-datepicker__month-text--holidays:hover .holiday-overlay,
.react-datepicker__quarter-text--holidays:hover .holiday-overlay,
.react-datepicker__year-text--holidays:hover .holiday-overlay {
  visibility: visible;
  opacity: 1;
}
.react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range,
.react-datepicker__month-text--selected,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--selected,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--selected,
.react-datepicker__year-text--in-selecting-range,
.react-datepicker__year-text--in-range {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}
.react-datepicker__day--selected:hover, .react-datepicker__day--in-selecting-range:hover, .react-datepicker__day--in-range:hover,
.react-datepicker__month-text--selected:hover,
.react-datepicker__month-text--in-selecting-range:hover,
.react-datepicker__month-text--in-range:hover,
.react-datepicker__quarter-text--selected:hover,
.react-datepicker__quarter-text--in-selecting-range:hover,
.react-datepicker__quarter-text--in-range:hover,
.react-datepicker__year-text--selected:hover,
.react-datepicker__year-text--in-selecting-range:hover,
.react-datepicker__year-text--in-range:hover {
  background-color: #1d5d90;
}
.react-datepicker__day--keyboard-selected,
.react-datepicker__month-text--keyboard-selected,
.react-datepicker__quarter-text--keyboard-selected,
.react-datepicker__year-text--keyboard-selected {
  border-radius: 0.3rem;
  background-color: #bad9f1;
  color: rgb(0, 0, 0);
}
.react-datepicker__day--keyboard-selected:hover,
.react-datepicker__month-text--keyboard-selected:hover,
.react-datepicker__quarter-text--keyboard-selected:hover,
.react-datepicker__year-text--keyboard-selected:hover {
  background-color: #1d5d90;
}
.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range) {
  background-color: rgba(33, 107, 165, 0.5);
}
.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range), .react-datepicker__year--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range) {
  background-color: #f0f0f0;
  color: #000;
}
.react-datepicker__day--disabled,
.react-datepicker__month-text--disabled,
.react-datepicker__quarter-text--disabled,
.react-datepicker__year-text--disabled {
  cursor: default;
  color: #ccc;
}
.react-datepicker__day--disabled:hover,
.react-datepicker__month-text--disabled:hover,
.react-datepicker__quarter-text--disabled:hover,
.react-datepicker__year-text--disabled:hover {
  background-color: transparent;
}

.react-datepicker__input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.react-datepicker__input-container .react-datepicker__calendar-icon {
  position: absolute;
  padding: 0.5rem;
  box-sizing: content-box;
}

.react-datepicker__view-calendar-icon input {
  padding: 6px 10px 5px 25px;
}

.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
  border: 1px solid transparent;
  border-radius: 0.3rem;
  position: relative;
}
.react-datepicker__year-read-view:hover,
.react-datepicker__month-read-view:hover,
.react-datepicker__month-year-read-view:hover {
  cursor: pointer;
}
.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
  border-top-color: #b3b3b3;
}
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  transform: rotate(135deg);
  right: -16px;
  top: 0;
}

.react-datepicker__year-dropdown,
.react-datepicker__month-dropdown,
.react-datepicker__month-year-dropdown {
  background-color: #f0f0f0;
  position: absolute;
  width: 50%;
  left: 25%;
  top: 30px;
  z-index: 1;
  text-align: center;
  border-radius: 0.3rem;
  border: 1px solid #aeaeae;
}
.react-datepicker__year-dropdown:hover,
.react-datepicker__month-dropdown:hover,
.react-datepicker__month-year-dropdown:hover {
  cursor: pointer;
}
.react-datepicker__year-dropdown--scrollable,
.react-datepicker__month-dropdown--scrollable,
.react-datepicker__month-year-dropdown--scrollable {
  height: 150px;
  overflow-y: scroll;
}

.react-datepicker__year-option,
.react-datepicker__month-option,
.react-datepicker__month-year-option {
  line-height: 20px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.react-datepicker__year-option:first-of-type,
.react-datepicker__month-option:first-of-type,
.react-datepicker__month-year-option:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.react-datepicker__year-option:last-of-type,
.react-datepicker__month-option:last-of-type,
.react-datepicker__month-year-option:last-of-type {
  -webkit-user-select: none;
  user-select: none;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__year-option:hover,
.react-datepicker__month-option:hover,
.react-datepicker__month-year-option:hover {
  background-color: #ccc;
}
.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
  border-bottom-color: #b3b3b3;
}
.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
  border-top-color: #b3b3b3;
}
.react-datepicker__year-option--selected,
.react-datepicker__month-option--selected,
.react-datepicker__month-year-option--selected {
  position: absolute;
  left: 15px;
}

.react-datepicker__close-icon {
  cursor: pointer;
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 0 6px 0 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
.react-datepicker__close-icon::after {
  cursor: pointer;
  background-color: #216ba5;
  color: #fff;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  padding: 2px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  content: "×";
}

.react-datepicker__today-button {
  background: #f0f0f0;
  border-top: 1px solid #aeaeae;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  clear: left;
}

.react-datepicker__portal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 2147483647;
}
.react-datepicker__portal .react-datepicker__day-name,
.react-datepicker__portal .react-datepicker__day,
.react-datepicker__portal .react-datepicker__time-name {
  width: 3rem;
  line-height: 3rem;
}
@media (max-width: 400px), (max-height: 550px) {
  .react-datepicker__portal .react-datepicker__day-name,
  .react-datepicker__portal .react-datepicker__day,
  .react-datepicker__portal .react-datepicker__time-name {
    width: 2rem;
    line-height: 2rem;
  }
}
.react-datepicker__portal .react-datepicker__current-month,
.react-datepicker__portal .react-datepicker-time__header {
  font-size: 1.44rem;
}

.react-datepicker__children-container {
  width: 13.8rem;
  margin: 0.4rem;
  padding-right: 0.2rem;
  padding-left: 0.2rem;
  height: auto;
}

.react-datepicker__aria-live {
  position: absolute;
  clip-path: circle(0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  width: 1px;
  white-space: nowrap;
}

.react-datepicker__calendar-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}
.hideDate {
  display: None;
}

.datepicker {
  position: relative;
}

.datepicker__preview {
  padding-top: 10px;
  cursor: pointer;
  display: flex;
}
.datepicker__preview h1 {
  padding-right: 5px;
}
.datepicker__preview h2 {
  color: #2dafff;
  font-weight: 500;
}

.datepicker__actions {
  position: absolute;
  padding: 20px 10px;
  background-color: white;
  top: 40px;
  z-index: 999;
  display: flex;
  flex-direction: column;
}
.datepicker__actions input {
  width: initial;
}

.datepicker-modal__columns {
  display: flex;
  flex-direction: row;
}

.datepicker-modal__years {
  display: flex;
  text-align: center;
  margin-bottom: 10px;
}
.datepicker-modal__years h1 {
  font-size: 16px;
  flex: 0 0 20%;
  cursor: pointer;
}

.date-column__header {
  padding-bottom: 10px;
}

.date-column__button {
  margin-top: 10px;
}

.date-column {
  max-width: 45%;
  margin: 0 10px;
}

.growthOfADollarModal .datepicker {
  margin-bottom: 0;
}
.growthOfADollarModal .markets {
  margin-top: -1rem;
}

/*# sourceMappingURL=styles.css.map */@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.react-datepicker {
  font-size: 1rem !important;
  line-height: 1rem !important;
  color: #333333 !important;
  border: 1px solid #e8e8e8;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.12);
  /* Month and year in header */
}
.react-datepicker .react-datepicker__triangle.react-datepicker__triangle {
  border-bottom-color: white;
}
.react-datepicker .react-datepicker__triangle.react-datepicker__triangle::before {
  border-bottom-color: #e8e8e8;
}
.react-datepicker .react-datepicker__day {
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
.react-datepicker .react-datepicker__day--selected {
  font-weight: 500;
}
.react-datepicker .react-datepicker__day--today {
  font-weight: 500;
}
.react-datepicker .react-datepicker__current-month,
.react-datepicker .react-datepicker-year-header {
  font-weight: 400;
}
.react-datepicker .custom-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px;
  background: #f8f9fa;
}
.react-datepicker .custom-header select {
  margin: 0 5px;
  padding: 4px;
  width: auto; /* Allows it to expand */
  min-width: 80px; /* Ensures enough space */
  text-align: center;
}
.react-datepicker .custom-header button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 20px;
}
.react-datepicker__navigation {
  top: 1.6rem;
  width: 1rem;
  height: 1rem;
  border-width: 1rem;
  outline: none;
}
.react-datepicker__navigation--previous {
  border-right-color: #333333;
  left: 1.6rem;
}
.react-datepicker__navigation--previous:hover {
  border-right-color: #588db0;
}
.react-datepicker__navigation--next {
  border-left-color: #333333;
  right: 1.6rem;
}
.react-datepicker__navigation--next:hover {
  border-left-color: #588db0;
}
.react-datepicker__month-container {
  margin-top: 0px;
}
.react-datepicker__header {
  background-color: white;
  border-bottom: none;
}
.react-datepicker__current-month {
  font-size: 1rem !important;
  line-height: 1.7rem;
  color: #333333;
  font-weight: normal;
}
.react-datepicker__month {
  margin: 0 0 16px 0;
}
.react-datepicker__day-names {
  border-top: 1px dashed #e8e8e8;
  padding: 10px;
  margin-top: 10px;
}
.react-datepicker__day-name {
  font-size: 0.8rem !important;
  line-height: 1.5rem;
  color: #808080;
  margin: 0 4px;
  text-transform: uppercase;
}
.react-datepicker__day {
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.react-datepicker__day:hover {
  background-color: #e8e8e8;
}
.react-datepicker__day--selected {
  background-color: #588db0;
}
.react-datepicker__day--outside-month {
  color: #808080;
}
.react-datepicker__input-container input.readOnly {
  background-color: #ebebe4;
  opacity: 0.6;
}

.react-datepicker-popper {
  z-index: 9999 !important;
}

input {
  background-color: #fff;
  display: inline-block;
  box-sizing: border-box;
  font-size: 1rem !important;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
}

input[type=text],
input[role=combobox] {
  width: 100%;
  padding: 10px 16px;
  line-height: 20px;
}

/*# sourceMappingURL=styles.css.map */@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.tool-bri--container {
  display: flex;
}
.tool-bri--score {
  cursor: default;
  border-radius: 50%;
  /*noinspection CssUnresolvedCustomProperty*/
  border: 1px solid var(--color);
  margin-right: 16px;
  height: 2.9rem;
}
.tool-bri--score__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  margin: 2px;
  /*noinspection CssUnresolvedCustomProperty*/
  background-color: var(--color);
  color: white;
  font-size: 1.5rem !important;
  line-height: 2rem;
}
.tool-bri--completeness {
  padding-top: 0.2rem !important;
  cursor: default;
  font-size: 0.9rem !important;
  font-family: "Roboto Text Bold", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  line-height: 1rem !important;
  color: #333333;
  margin-right: 16px;
}
.tool-bri--completeness__label {
  display: block;
  color: #808080;
  font-size: 0.9rem !important;
  line-height: 1.25rem !important;
  text-transform: uppercase;
}
.tool-bri--protection {
  align-self: center;
  padding-left: 16px;
  border-left: 1px solid #e8e8e8;
}
.tool-bri--protection svg {
  vertical-align: middle;
  width: 24px;
  height: 24px;
}
.tool-bri--protection__dob {
  margin-left: 8px;
  color: #588db0;
}
.tooltip--factors {
  text-align: left;
}
.tooltip--factors__title {
  font-family: "Roboto Text Bold", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
}.form-input {
  width: calc(100% - 200px);
}
.form-input div {
  width: 100%;
}

input {
  background-color: #fff;
  display: inline-block;
  box-sizing: border-box;
  font-size: 1rem !important;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
}
input[type=text], input[type=password], input[role=combobox] {
  width: 100%;
  padding: 10px 16px;
  line-height: 20px;
}
input:disabled {
  background-color: #fafafa;
  border-color: #e8e8e8;
}

/*# sourceMappingURL=styles.css.map */@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.dropdown-wrapper {
  width: calc(100% - 200px);
}
.dropdown-wrapper .react-select {
  color: #333333;
}
.dropdown-wrapper .react-select-container *:focus {
  outline: none;
}
.dropdown-wrapper .react-select__control, .dropdown-wrapper .react-select__control:hover {
  font-size: 1rem !important;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  box-shadow: none;
}
.dropdown-wrapper .react-select__control--menu-is-open {
  border-color: #333333;
}
.dropdown-wrapper .react-select__control--menu-is-open:hover {
  border-color: #333333;
}
.dropdown-wrapper .react-select__indicator-separator {
  display: none;
}
.dropdown-wrapper .react-select__indicator {
  color: #333333;
}
.dropdown-wrapper .react-select__menu {
  color: #808080;
}
.dropdown-wrapper .react-select__menu-list {
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  padding: 0;
  box-shadow: none;
}
.dropdown-wrapper .react-select__option {
  background: none;
  padding: 9px 12px;
}
.dropdown-wrapper .react-select__option:hover {
  padding: 8px 12px;
  background-color: #fafafa;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  color: #05b893;
}
.dropdown-wrapper .react-select__option:hover:first-of-type {
  border-top-color: #fafafa;
}
.dropdown-wrapper .react-select__option:hover:last-of-type {
  border-bottom-color: #fafafa;
}
.dropdown-wrapper .react-select__option--is-selected {
  color: #000;
}

/*# sourceMappingURL=styles.css.map */.currency-input {
  background-color: #fff;
  box-sizing: border-box;
  font-size: 1rem !important;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  width: 100%;
  line-height: 2.2rem;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.currency-input input {
  border: none;
  font-size: 1rem !important;
  text-align: right;
  padding-left: 2rem;
}
.currency-input span.label {
  font-weight: 500;
  position: absolute;
  top: calc(50% - 1.2rem);
  left: 0.8rem;
}.form-input {
  width: 100%;
}

.dropdown-wrapper {
  width: 100%;
}
.dropdown-wrapper .react-select__control {
  min-height: 42px;
}

.react-datepicker-wrapper {
  width: 100%;
}

.investor-form {
  width: 820px;
}
.investor-form__container {
  width: 100%;
}
.investor-form__container .investor-form__row:last-of-type {
  margin-bottom: 32px;
}
.investor-form__row {
  margin-bottom: 24px;
  width: 100%;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
}
.investor-form__row--left {
  padding: 0;
}
.investor-form__row:last-of-type {
  margin-bottom: 0;
}
.investor-form__row .form-input {
  width: calc(50% - 16px);
}
.investor-form__row--incomplete {
  justify-content: flex-start;
}
.investor-form__row--incomplete .investor-form__row--column {
  margin-right: 22px;
}
.investor-form__row label {
  width: 100%;
  max-width: 100%;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 5px;
  color: #808080;
}
.investor-form__row--column {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 26%;
  min-width: 150px;
}
.investor-form__row--column--small {
  width: calc(26% - 128px);
  min-width: 120px;
}
.investor-form__row--column--smallish {
  width: calc(26% - 64px);
  min-width: 102px;
}
.investor-form__row--column--smaller {
  width: calc(36% - 96px);
  min-width: 160px;
}
.investor-form__row--column--larger {
  width: 36%;
  min-width: 320px;
}
.investor-form__row--column--extra-large {
  width: 50%;
  min-width: 250px;
}
.investor-form__row--column--large {
  width: 34%;
}
.investor-form__row--column--regular {
  width: calc(50% - 12px);
}
.investor-form__row--column .form-input {
  width: 100%;
}
.investor-form__row .dropdown-wrapper {
  width: 100%;
}
.investor-form__row .dropdown-wrapper .react-select__control {
  min-height: 42px;
}
.investor-form__row--buttons {
  display: inline-flex;
}
.investor-form__row--buttons .button {
  background-color: white;
  color: #333333;
  box-shadow: none;
  margin-right: 20px;
  padding: 12px 40px;
}
.investor-form__row--buttons .button--primary {
  background-color: #05b893;
  color: white;
}
.investor-form__row--buttons .button--tertiary {
  border: none;
  color: white;
  background-color: #588db0;
}
.investor-form__row--buttons .button:last-of-type {
  margin-right: 0;
}
.investor-form__row--buttons .button:hover {
  opacity: 0.85;
}
.investor-form__row--top {
  margin-top: 10px;
}
.investor-form__row--limiter {
  border-bottom: 1px dashed #e8e8e8;
  margin-bottom: 12px;
}

/*# sourceMappingURL=style.css.map */@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.member-add-form {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
}
.member-add-form__row {
  display: flex;
  align-items: flex-end;
  margin-bottom: 16px;
  width: 100%;
  padding: 0 32px;
}
.member-add-form__row .input--date {
  width: 112px;
}
.member-add-form__row--incomplete {
  justify-content: flex-start;
}
.member-add-form__row--incomplete .member-add-form__row--column {
  margin-right: 22px;
}
.member-add-form__row--radio {
  padding-left: 26px;
  vertical-align: middle;
}
.member-add-form__row--limiter {
  border-bottom: 1px dashed #e8e8e8;
}
.member-add-form__row--column {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-right: 16px;
}
.member-add-form__row--column.remove {
  width: 46px;
}
.member-add-form__row--column:last-of-type {
  margin-right: 0;
}
.member-add-form__row--column--larger {
  min-width: 320px;
}
.member-add-form__row--column .form-input,
.member-add-form__row--column .dropdown-wrapper {
  width: 100%;
}
.member-add-form__row--column .input--wider {
  width: 349px;
}
.member-add-form__row--column .react-select__control {
  height: 42px;
}
.member-add-form__row--column__inline {
  display: inline-flex;
}
.member-add-form__row--column__inline .form-input {
  display: inline-flex;
}
.member-add-form__row--column__inline.weight-percentage .form-input {
  position: relative;
}
.member-add-form__row--column__inline.weight-percentage .form-input input {
  padding-right: 24px;
}
.member-add-form__row--column__inline.weight-percentage .form-input::after {
  position: absolute;
  right: 0.8rem;
  top: 1rem;
  content: "%";
  font-family: "Roboto", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  font-size: 1.5rem;
  color: black;
}
.member-add-form__row--column .remove-file {
  display: inline-flex;
  color: #e61c34;
  padding: 8px 12px;
  font-size: 2.4rem;
  line-height: 2.4rem;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  background-color: white;
  margin-left: 16px;
  transition: all ease-in-out 0.2s;
  outline: none;
}
.member-add-form__row--column .remove-file:hover {
  cursor: pointer;
  border-color: #e61c34;
}
.member-add-form__row .react-datepicker__input-container {
  max-width: 140px;
}
.member-add-form__row--buttons {
  display: inline-flex;
}
.member-add-form__row--buttons .button {
  margin-right: 20px;
}
.member-add-form__row--top {
  margin-top: 10px;
}
.member-add-form__row--limiter {
  border-bottom: 1px dashed #e8e8e8;
}
.member-add-form__row .count-total {
  color: #333333;
}
.member-add-form__row .count-total span {
  font-family: "Roboto Text Bold", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
}
.member-add-form__row > * {
  flex: 1 1 0;
}
.member-add-form__members--list {
  width: 100%;
}
.member-add-form label {
  width: 100%;
  max-width: 100%;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 5px;
  color: #808080;
}
.member-add-form .radio {
  display: flex;
}
.member-add-form .radio label {
  display: flex;
  margin-right: 16px;
  width: unset;
  align-items: center;
}
.member-add-form .radio label:last-child {
  margin-right: 0;
  margin-left: 16px;
}

/*# sourceMappingURL=style.css.map */.react-tabs {
  -webkit-tap-highlight-color: transparent;
}

.react-tabs__tab-list {
  border-bottom: 1px solid #aaa;
  margin: 0 0 10px;
  padding: 0;
}

.react-tabs__tab {
  display: inline-block;
  border: 1px solid transparent;
  border-bottom: none;
  bottom: -1px;
  position: relative;
  list-style: none;
  padding: 6px 12px;
  cursor: pointer;
}

.react-tabs__tab--selected {
  background: #fff;
  border-color: #aaa;
  color: black;
  border-radius: 5px 5px 0 0;
}

.react-tabs__tab--disabled {
  color: GrayText;
  cursor: default;
}

.react-tabs__tab:focus {
  outline: none;
}

.react-tabs__tab:focus:after {
  content: '';
  position: absolute;
  height: 5px;
  left: -4px;
  right: -4px;
  bottom: -5px;
  background: #fff;
}

.react-tabs__tab-panel {
  display: none;
}

.react-tabs__tab-panel--selected {
  display: block;
}
@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
.header {
  height: 80px;
  box-shadow: 0 0 5px 0 rgba(51, 51, 51, 0.09), 0 1px 0 0 #e8e8e8;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: #fff;
  justify-content: flex-start;
}
.header__content {
  align-items: center;
  position: relative;
  display: flex;
  height: 100%;
}
.header .center {
  margin-left: auto;
}
.header__title {
  color: #333333;
  font-family: "Roboto Text Bold", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  font-size: 2.4rem;
  line-height: 3rem;
  margin: 0;
}
.header__subtitle {
  color: #808080;
  font-family: "Roboto", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  font-size: 1.2rem;
  line-height: 2rem;
}
.header__navigation {
  display: flex;
  margin-left: auto;
}
.header__navigation .button {
  margin-right: 10px;
}
.header .user-actions {
  display: flex;
  height: 40px;
  padding: 0 20px;
  align-items: center;
  background-color: white;
  font-size: 1.4rem;
  margin-left: auto;
  font-family: "Roboto Text Medium", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  color: #333333;
}
.header .user-actions__item {
  margin-left: 19px;
  background: no-repeat left 2px;
  background-size: 22px;
}
.header .user-actions__item--no-link {
  cursor: default;
}
.header .user-actions__item:first-of-type {
  margin-left: 0;
}
.header .user-actions__item.dropdown {
  position: relative;
}
.header .user-actions__item.dropdown:hover .pop-up {
  visibility: visible;
  opacity: 1;
}
.header .user-actions__item.disabled {
  cursor: default;
  color: darkgray;
}

.pop-up {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 30px;
  background-color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  white-space: nowrap;
}
.pop-up.last {
  right: -80px;
}
.pop-up.last::before {
  left: 62px;
}
.pop-up.last::after {
  left: 64px;
}
.pop-up hr {
  margin: 0 0 10px;
  border: none;
  background: none;
  border-top: 1px dashed #e8e8e8;
}
.pop-up__item {
  color: #333333;
  font-family: "Roboto Text Medium", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  margin-bottom: 10px;
  border-bottom: 1px dashed transparent;
}
.pop-up__item--inner {
  margin-left: 10px;
}
.pop-up__item:last-child {
  margin-bottom: 0;
}
.pop-up__item.disabled {
  cursor: default;
  color: darkgray;
}
.pop-up:before {
  display: block;
  position: absolute;
  content: "";
  top: -12px;
  left: 6px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #e8e8e8;
}
.pop-up:after {
  display: block;
  position: absolute;
  content: "";
  top: -10px;
  left: 8px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

.footer {
  background-color: #f9f9f9;
}
.footer .container {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.footer .container a {
  margin-left: 30px;
}

/*# sourceMappingURL=styles.css.map *//* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Roboto";
  src: url("/react/assets/fonts/roboto-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Bold";
  src: url("/react/assets/fonts/roboto-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Medium";
  src: url("/react/assets/fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Text Light";
  src: url("/react/assets/fonts/roboto-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@media only screen and (max-width: 1024px) {
  .dash-profile.dash-profile {
    padding: 24px;
  }
  .dashboard.dashboard {
    grid-gap: 24px;
  }
  .dashboard.dashboard .l-box {
    padding: 24px;
  }
  .accu-profile__panel.accu-profile__panel {
    padding: 24px;
  }
  .accu-profile__panel.accu-profile__panel .accu-profile__panel--item {
    margin-bottom: 24px;
  }
  .accu-profile__panel.accu-profile__panel .accu-profile__panel--item:last-of-type {
    margin-bottom: 0;
  }
}
@media all {
  .page-break,
  .hidden {
    display: none;
  }
}
@media print {
  html body {
    width: 712px;
    margin: 0 auto;
  }
  html body table,
  html body img,
  html body svg {
    break-inside: avoid;
  }
  html body main.main.main {
    -webkit-print-color-adjust: exact;
    font-family: Arial, Georgia, serif;
    width: 100%;
    margin: 0;
    padding: 0;
    background: none;
  }
  html body main.main.main .p-box {
    padding: 0;
  }
  html body main.main.main .l-box {
    border: none;
  }
  html body .header,
  html body .Toastify,
  html body .footer {
    display: none;
  }
  html body a:after {
    content: " [" attr(href) "] ";
  }
  html body .page-break,
  html body .hidden {
    height: 0;
    display: block;
  }
  html body .page-break {
    page-break-before: always;
  }
  html body .print-together {
    page-break-inside: avoid;
  }
}
body {
  color: #808080;
}

div,
form,
h1,
h2,
h3,
h4,
main,
body {
  box-sizing: border-box;
}

strong {
  font-weight: bold;
}

b {
  font-weight: bold;
}

em {
  font-style: italic;
}

hr {
  margin: 10px -20px;
  background-color: #e5e5e5;
  border: none;
  height: 1px;
}

.main {
  background-color: #f9f9f9;
  min-height: max-content;
}
.main--onboarding {
  min-height: calc(100vh - 180px);
}

.dashboard-container {
  background-color: #f9f9f9;
}

.container {
  max-width: 100% !important;
}

.l-box {
  width: 100%;
  padding: 12px 20px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  margin-right: auto;
  margin-left: auto;
}
.l-box label {
  color: #808080;
}

.l-title {
  font-weight: 500;
  font-size: 25px;
  margin-top: 5px;
  margin-bottom: 18px;
  color: #363636;
}

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

a.ext-link {
  color: #33abd7;
  text-decoration: underline;
}

.find-out {
  margin-bottom: 10px;
}

input:-webkit-autofill {
  background-color: #fff;
}

select {
  background-color: #fff;
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #e8e8e8;
  color: #7b7b7b;
  border-radius: 5px;
  padding: 0 10px;
  font-size: 16px;
  height: 40px;
}
select:focus {
  outline: none;
}

input:focus {
  outline: none;
}

label {
  display: block;
  width: 200px;
  max-width: 30%;
  font-size: 14px;
}

.error {
  color: #e61c34;
  font-size: 12px;
}
.error--input {
  position: absolute;
  bottom: -15px;
}

/*table and react table 7+*/
table tbody tr td {
  vertical-align: middle;
}

/*table and react table 7+*/
/* tippy tooltip white theme*/
.tippy-popper .tippy-tooltip.blanco-theme.blanco-theme {
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  background-color: #fafafa;
  padding: 12px 16px;
  font-family: "Roboto Text Medium", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  color: #333333;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.tippy-popper .tippy-tooltip.blanco-theme.blanco-theme .tippy-arrow {
  height: 0;
  width: 0;
  border: none;
  bottom: 0;
  transform: none;
}
.tippy-popper .tippy-tooltip.blanco-theme.blanco-theme .tippy-arrow::after, .tippy-popper .tippy-tooltip.blanco-theme.blanco-theme .tippy-arrow::before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.tippy-popper .tippy-tooltip.blanco-theme.blanco-theme .tippy-arrow::after {
  border-top-color: #fafafa;
  border-width: 12px;
  margin-left: -12px;
}
.tippy-popper .tippy-tooltip.blanco-theme.blanco-theme .tippy-arrow::before {
  border-top-color: #e8e8e8;
  border-width: 14px;
  margin-left: -14px;
}

textarea {
  padding: 10px 16px;
  background-color: #fff;
  display: inline-block;
  box-sizing: border-box;
  font-family: "Roboto", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  width: 100%;
  resize: none;
}
textarea:focus {
  outline: none;
}
textarea:disabled {
  background-color: #fafafa;
  border-color: #e8e8e8;
}

.page-title h1 {
  color: #333333;
  font-size: 1.5rem !important;
  font-weight: 500;
  line-height: 30px;
  padding-bottom: 1.5rem;
  display: inline-flex;
  width: 20%;
}
.page-title h1 p {
  font-size: 1.4rem;
  margin-left: 10px;
  padding-top: 3px;
}

.section_title {
  color: #333333;
  font-size: 1.25rem !important;
  line-height: 2.5rem;
  font-family: "Roboto Text Medium", Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;
}

.page-header-actions {
  display: inline-flex;
  width: 80%;
}
.page-header-actions .header-actions {
  margin-left: auto;
  display: flex;
}

button.MuiButtonBase-root.primary {
  background-color: #05b893;
}
button.MuiButtonBase-root.primary:disabled {
  color: rgba(0, 0, 0, 0.26);
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0.12);
}
button.MuiButtonBase-root.secondary {
  background-color: #588db0;
}
button.MuiButtonBase-root.secondary:disabled {
  color: rgba(0, 0, 0, 0.26);
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0.12);
}
button.MuiButtonBase-root.tertiary {
  color: #333333;
  background-color: white;
}
button.MuiButtonBase-root.tertiary:disabled {
  color: rgba(0, 0, 0, 0.26);
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0.12);
}

.MuiToolbar-gutters {
  z-index: 0 !important;
}

.MuiTableContainer-root .MuiBox-root button.edit-asset-class {
  background-image: url("/react/assets/private/advisor/edit-security-new-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: unset;
}

.MuiTableCell-root,
.MuiInputBase-root,
.MuiTypography-root,
.MuiInputBase-input,
.MuiFormLabel-root,
.MuiStack-root,
.MuiTablePagination-selectLabel,
.MuiTablePagination-displayedRows {
  font-size: 0.788rem !important;
}

.MuiStack-root {
  padding: 0 0 0 0.5rem !important;
}

.MuiButtonBase-root {
  font-size: 0.62rem !important;
}

.MuiTableCell-root .MuiBox-root svg {
  font-size: 1.2rem !important;
}

.css-tlfecz-indicatorContainer {
  padding: 2px !important;
}

.MuiBox-root.css-1llu0od {
  justify-content: center;
}
.MuiBox-root.css-1llu0od .css-qpxlqp {
  display: unset;
  right: unset;
  top: unset;
  justify-content: inherit;
}

.hide-resize-observer {
  display: none !important;
}

input[type=radio] {
  accent-color: #3c2ac1;
}

/* Unified rich text spacing for WYSIWYG consistency */
.system-default p {
  margin: 0.8rem 0;
}
.system-default p:first-child {
  margin-top: 0;
}
.system-default p:last-child {
  margin-bottom: 0;
}
.system-default ul,
.system-default ol {
  padding-left: 1.5rem;
  margin: 1rem 0;
  list-style-position: outside;
}
.system-default ul {
  list-style-type: disc;
}
.system-default ol {
  list-style-type: decimal;
}
.system-default li {
  margin: 0.25rem 0;
  display: list-item;
}
.system-default li p {
  margin: 0;
}
.system-default li p:first-child {
  margin-top: 0;
}
.system-default li p:last-child {
  margin-bottom: 0;
}
.system-default li:last-of-type {
  margin-bottom: 0;
}
.system-default br.ProseMirror-trailingBreak {
  display: none;
}
.system-default p:has(br.ProseMirror-trailingBreak) {
  margin: 0.75rem 0;
}

@media screen and (max-width: 600px) {
  .page-title h1 {
    width: 100% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .page-header-actions {
    display: block !important;
    width: 100% !important;
  }
  .css-34et17 {
    padding: 0.5rem 0 !important;
  }
  .container {
    max-width: 100% !important;
  }
}

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

@tailwind base;
@tailwind components;
@tailwind utilities;
.private-app-shell * {
  font-family: "Inter", sans-serif;
}
/*
! tailwindcss v3.4.11 | MIT License | https://tailwindcss.com
*/
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #DCDDE4; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */ /* 3 */
  tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #ABADB6; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
:root {
    --chart-1: 12 76% 61%;
    --chart-2: 173 58% 39%;
    --chart-3: 197 37% 24%;
    --chart-4: 43 74% 66%;
    --chart-5: 27 87% 67%;
  }
.dark {
    --chart-1: 220 70% 50%;
    --chart-2: 160 60% 45%;
    --chart-3: 30 80% 55%;
    --chart-4: 280 65% 60%;
    --chart-5: 340 75% 55%;
  }
:root {
    --background: 0 0% 100%;
    --foreground: 0 0% 3.9%;
    --card: 0 0% 100%;
    --card-foreground: 0 0% 3.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 3.9%;
    --primary: 0 0% 9%;
    --primary-foreground: 0 0% 98%;
    --secondary: 0 0% 96.1%;
    --secondary-foreground: 0 0% 9%;
    --muted: 0 0% 96.1%;
    --muted-foreground: 0 0% 45.1%;
    --accent: 0 0% 96.1%;
    --accent-foreground: 0 0% 9%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 0 0% 89.8%;
    --input: 0 0% 89.8%;
    --ring: 0 0% 3.9%;
    --chart-1: 12 76% 61%;
    --chart-2: 173 58% 39%;
    --chart-3: 197 37% 24%;
    --chart-4: 43 74% 66%;
    --chart-5: 27 87% 67%;
    --radius: 0.5rem;
  }
textarea{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.8125rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.dark {
    --background: 0 0% 3.9%;
    --foreground: 0 0% 98%;
    --card: 0 0% 3.9%;
    --card-foreground: 0 0% 98%;
    --popover: 0 0% 3.9%;
    --popover-foreground: 0 0% 98%;
    --primary: 0 0% 98%;
    --primary-foreground: 0 0% 9%;
    --secondary: 0 0% 14.9%;
    --secondary-foreground: 0 0% 98%;
    --muted: 0 0% 14.9%;
    --muted-foreground: 0 0% 63.9%;
    --accent: 0 0% 14.9%;
    --accent-foreground: 0 0% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 0 0% 98%;
    --border: 0 0% 14.9%;
    --input: 0 0% 14.9%;
    --ring: 0 0% 83.1%;
    --chart-1: 220 70% 50%;
    --chart-2: 160 60% 45%;
    --chart-3: 30 80% 55%;
    --chart-4: 280 65% 60%;
    --chart-5: 340 75% 55%;
  }
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
.container{
  width: 100%;
}
@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none{
  pointer-events: none;
}
.visible{
  visibility: visible;
}
.invisible{
  visibility: hidden;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.inset-0{
  inset: 0px;
}
.-right-2{
  right: -0.5rem;
}
.-top-2{
  top: -0.5rem;
}
.bottom-0{
  bottom: 0px;
}
.left-0{
  left: 0px;
}
.left-2{
  left: 0.5rem;
}
.left-\[200px\]{
  left: 200px;
}
.left-\[280px\]{
  left: 280px;
}
.left-\[430px\]{
  left: 430px;
}
.left-\[50\%\]{
  left: 50%;
}
.right-0{
  right: 0px;
}
.right-2{
  right: 0.5rem;
}
.right-20{
  right: 5rem;
}
.right-4{
  right: 1rem;
}
.right-\[-18px\]{
  right: -18px;
}
.right-\[-20px\]{
  right: -20px;
}
.right-\[-25px\]{
  right: -25px;
}
.top-0{
  top: 0px;
}
.top-14{
  top: 3.5rem;
}
.top-20{
  top: 5rem;
}
.top-3{
  top: 0.75rem;
}
.top-4{
  top: 1rem;
}
.top-5{
  top: 1.25rem;
}
.top-8{
  top: 2rem;
}
.top-9{
  top: 2.25rem;
}
.top-\[-10px\]{
  top: -10px;
}
.top-\[1px\]{
  top: 1px;
}
.top-\[50\%\]{
  top: 50%;
}
.top-\[60\%\]{
  top: 60%;
}
.top-full{
  top: 100%;
}
.z-10{
  z-index: 10;
}
.z-50{
  z-index: 50;
}
.z-\[1\]{
  z-index: 1;
}
.z-auto{
  z-index: auto;
}
.col-span-2{
  grid-column: span 2 / span 2;
}
.\!m-0{
  margin: 0px !important;
}
.m-0{
  margin: 0px;
}
.m-\[1px\]{
  margin: 1px;
}
.\!my-1{
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.-mx-1{
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
.mx-0{
  margin-left: 0px;
  margin-right: 0px;
}
.mx-1{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-2{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-28{
  margin-left: 7rem;
  margin-right: 7rem;
}
.mx-3{
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.mx-4{
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-6{
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-0\.5{
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}
.my-1{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-10{
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.my-2{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-3{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-5{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.my-6{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-8{
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.\!-mt-1{
  margin-top: -0.25rem !important;
}
.\!-mt-3{
  margin-top: -0.75rem !important;
}
.\!mb-0{
  margin-bottom: 0px !important;
}
.\!mb-1\.5{
  margin-bottom: 0.375rem !important;
}
.\!mb-10{
  margin-bottom: 2.5rem !important;
}
.\!mb-2{
  margin-bottom: 0.5rem !important;
}
.\!mb-3{
  margin-bottom: 0.75rem !important;
}
.\!mb-4{
  margin-bottom: 1rem !important;
}
.\!ml-0{
  margin-left: 0px !important;
}
.\!ml-2{
  margin-left: 0.5rem !important;
}
.\!ml-3{
  margin-left: 0.75rem !important;
}
.\!mt-0{
  margin-top: 0px !important;
}
.\!mt-4{
  margin-top: 1rem !important;
}
.-ml-4{
  margin-left: -1rem;
}
.-ml-8{
  margin-left: -2rem;
}
.-mt-1{
  margin-top: -0.25rem;
}
.-mt-2{
  margin-top: -0.5rem;
}
.-mt-3{
  margin-top: -0.75rem;
}
.-mt-4{
  margin-top: -1rem;
}
.-mt-6{
  margin-top: -1.5rem;
}
.-mt-8{
  margin-top: -2rem;
}
.-mt-\[1\.5rem\]{
  margin-top: -1.5rem;
}
.-mt-\[5rem\]{
  margin-top: -5rem;
}
.mb-0{
  margin-bottom: 0px;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-5{
  margin-bottom: 1.25rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-7{
  margin-bottom: 1.75rem;
}
.mb-\[0\.05rem\]{
  margin-bottom: 0.05rem;
}
.ml-0{
  margin-left: 0px;
}
.ml-1{
  margin-left: 0.25rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.ml-4{
  margin-left: 1rem;
}
.ml-6{
  margin-left: 1.5rem;
}
.ml-8{
  margin-left: 2rem;
}
.ml-\[7\.5rem\]{
  margin-left: 7.5rem;
}
.ml-auto{
  margin-left: auto;
}
.mr-1{
  margin-right: 0.25rem;
}
.mr-10{
  margin-right: 2.5rem;
}
.mr-2{
  margin-right: 0.5rem;
}
.mr-4{
  margin-right: 1rem;
}
.mr-auto{
  margin-right: auto;
}
.mt-0{
  margin-top: 0px;
}
.mt-0\.5{
  margin-top: 0.125rem;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-1\.5{
  margin-top: 0.375rem;
}
.mt-10{
  margin-top: 2.5rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-3{
  margin-top: 0.75rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-5{
  margin-top: 1.25rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-7{
  margin-top: 1.75rem;
}
.mt-8{
  margin-top: 2rem;
}
.mt-\[0\.10rem\]{
  margin-top: 0.10rem;
}
.block{
  display: block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.\!table{
  display: table !important;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.\!hidden{
  display: none !important;
}
.hidden{
  display: none;
}
.aspect-square{
  aspect-ratio: 1 / 1;
}
.aspect-video{
  aspect-ratio: 16 / 9;
}
.\!h-10{
  height: 2.5rem !important;
}
.\!h-full{
  height: 100% !important;
}
.h-1\.5{
  height: 0.375rem;
}
.h-10{
  height: 2.5rem;
}
.h-11{
  height: 2.75rem;
}
.h-12{
  height: 3rem;
}
.h-16{
  height: 4rem;
}
.h-2{
  height: 0.5rem;
}
.h-2\.5{
  height: 0.625rem;
}
.h-20{
  height: 5rem;
}
.h-24{
  height: 6rem;
}
.h-28{
  height: 7rem;
}
.h-3{
  height: 0.75rem;
}
.h-3\.5{
  height: 0.875rem;
}
.h-36{
  height: 9rem;
}
.h-4{
  height: 1rem;
}
.h-5{
  height: 1.25rem;
}
.h-6{
  height: 1.5rem;
}
.h-7{
  height: 1.75rem;
}
.h-72{
  height: 18rem;
}
.h-8{
  height: 2rem;
}
.h-9{
  height: 2.25rem;
}
.h-\[100vh\]{
  height: 100vh;
}
.h-\[10px\]{
  height: 10px;
}
.h-\[110px\]{
  height: 110px;
}
.h-\[15px\]{
  height: 15px;
}
.h-\[1px\]{
  height: 1px;
}
.h-\[3\.3rem\]{
  height: 3.3rem;
}
.h-\[58px\]{
  height: 58px;
}
.h-\[88px\]{
  height: 88px;
}
.h-\[90\%\]{
  height: 90%;
}
.h-\[calc\(100vh-100px\)\]{
  height: calc(100vh - 100px);
}
.h-\[var\(--radix-navigation-menu-viewport-height\)\]{
  height: var(--radix-navigation-menu-viewport-height);
}
.h-\[var\(--radix-select-trigger-height\)\]{
  height: var(--radix-select-trigger-height);
}
.h-auto{
  height: auto;
}
.h-full{
  height: 100%;
}
.h-px{
  height: 1px;
}
.h-screen{
  height: 100vh;
}
.\!max-h-\[100px\]{
  max-height: 100px !important;
}
.max-h-96{
  max-height: 24rem;
}
.max-h-\[1\.25rem\]{
  max-height: 1.25rem;
}
.max-h-\[100px\]{
  max-height: 100px;
}
.max-h-\[300px\]{
  max-height: 300px;
}
.max-h-\[360px\]{
  max-height: 360px;
}
.max-h-\[390px\]{
  max-height: 390px;
}
.max-h-\[90vh\]{
  max-height: 90vh;
}
.max-h-none{
  max-height: none;
}
.max-h-screen{
  max-height: 100vh;
}
.min-h-10{
  min-height: 2.5rem;
}
.min-h-6{
  min-height: 1.5rem;
}
.min-h-\[100px\]{
  min-height: 100px;
}
.min-h-\[150px\]{
  min-height: 150px;
}
.min-h-\[200px\]{
  min-height: 200px;
}
.min-h-\[210px\]{
  min-height: 210px;
}
.min-h-\[340px\]{
  min-height: 340px;
}
.min-h-\[390px\]{
  min-height: 390px;
}
.min-h-\[42px\]{
  min-height: 42px;
}
.min-h-full{
  min-height: 100%;
}
.\!w-80{
  width: 20rem !important;
}
.\!w-\[20\%\]{
  width: 20% !important;
}
.\!w-\[250px\]{
  width: 250px !important;
}
.\!w-\[280px\]{
  width: 280px !important;
}
.\!w-\[30\%\]{
  width: 30% !important;
}
.\!w-\[50\%\]{
  width: 50% !important;
}
.\!w-\[550px\]{
  width: 550px !important;
}
.\!w-auto{
  width: auto !important;
}
.\!w-fit{
  width: fit-content !important;
}
.\!w-full{
  width: 100% !important;
}
.w-0{
  width: 0px;
}
.w-1{
  width: 0.25rem;
}
.w-1\/2{
  width: 50%;
}
.w-1\/3{
  width: 33.333333%;
}
.w-10{
  width: 2.5rem;
}
.w-12{
  width: 3rem;
}
.w-16{
  width: 4rem;
}
.w-2{
  width: 0.5rem;
}
.w-2\.5{
  width: 0.625rem;
}
.w-2\/4{
  width: 50%;
}
.w-20{
  width: 5rem;
}
.w-24{
  width: 6rem;
}
.w-28{
  width: 7rem;
}
.w-3{
  width: 0.75rem;
}
.w-3\.5{
  width: 0.875rem;
}
.w-36{
  width: 9rem;
}
.w-4{
  width: 1rem;
}
.w-5{
  width: 1.25rem;
}
.w-56{
  width: 14rem;
}
.w-6{
  width: 1.5rem;
}
.w-64{
  width: 16rem;
}
.w-7{
  width: 1.75rem;
}
.w-72{
  width: 18rem;
}
.w-8{
  width: 2rem;
}
.w-80{
  width: 20rem;
}
.w-9{
  width: 2.25rem;
}
.w-\[10px\]{
  width: 10px;
}
.w-\[120px\]{
  width: 120px;
}
.w-\[150px\]{
  width: 150px;
}
.w-\[1px\]{
  width: 1px;
}
.w-\[20\%\]{
  width: 20%;
}
.w-\[21rem\]{
  width: 21rem;
}
.w-\[23rem\]{
  width: 23rem;
}
.w-\[245px\]{
  width: 245px;
}
.w-\[26rem\]{
  width: 26rem;
}
.w-\[27\%\]{
  width: 27%;
}
.w-\[270px\]{
  width: 270px;
}
.w-\[3\.3rem\]{
  width: 3.3rem;
}
.w-\[30\%\]{
  width: 30%;
}
.w-\[307px\]{
  width: 307px;
}
.w-\[35\%\]{
  width: 35%;
}
.w-\[40\%\]{
  width: 40%;
}
.w-\[478px\]{
  width: 478px;
}
.w-\[50\%\]{
  width: 50%;
}
.w-\[540px\]{
  width: 540px;
}
.w-\[55\%\]{
  width: 55%;
}
.w-\[60\%\]{
  width: 60%;
}
.w-\[650px\]{
  width: 650px;
}
.w-\[75\%\]{
  width: 75%;
}
.w-\[80\%\]{
  width: 80%;
}
.w-\[97\%\]{
  width: 97%;
}
.w-\[full\]{
  width: full;
}
.w-auto{
  width: auto;
}
.w-full{
  width: 100%;
}
.w-max{
  width: max-content;
}
.w-px{
  width: 1px;
}
.\!min-w-\[40\%\]{
  min-width: 40% !important;
}
.\!min-w-fit{
  min-width: fit-content !important;
}
.min-w-10{
  min-width: 2.5rem;
}
.min-w-32{
  min-width: 8rem;
}
.min-w-40{
  min-width: 10rem;
}
.min-w-6{
  min-width: 1.5rem;
}
.min-w-60{
  min-width: 15rem;
}
.min-w-72{
  min-width: 18rem;
}
.min-w-8{
  min-width: 2rem;
}
.min-w-80{
  min-width: 20rem;
}
.min-w-9{
  min-width: 2.25rem;
}
.min-w-96{
  min-width: 24rem;
}
.min-w-\[12rem\]{
  min-width: 12rem;
}
.min-w-\[140px\]{
  min-width: 140px;
}
.min-w-\[150px\]{
  min-width: 150px;
}
.min-w-\[160px\]{
  min-width: 160px;
}
.min-w-\[190px\]{
  min-width: 190px;
}
.min-w-\[200px\]{
  min-width: 200px;
}
.min-w-\[230px\]{
  min-width: 230px;
}
.min-w-\[250px\]{
  min-width: 250px;
}
.min-w-\[270px\]{
  min-width: 270px;
}
.min-w-\[300px\]{
  min-width: 300px;
}
.min-w-\[350px\]{
  min-width: 350px;
}
.min-w-\[55\%\]{
  min-width: 55%;
}
.min-w-\[600px\]{
  min-width: 600px;
}
.min-w-\[700px\]{
  min-width: 700px;
}
.min-w-\[80px\]{
  min-width: 80px;
}
.min-w-\[8rem\]{
  min-width: 8rem;
}
.min-w-\[var\(--radix-select-trigger-width\)\]{
  min-width: var(--radix-select-trigger-width);
}
.min-w-fit{
  min-width: fit-content;
}
.min-w-full{
  min-width: 100%;
}
.min-w-max{
  min-width: max-content;
}
.\!max-w-96{
  max-width: 24rem !important;
}
.\!max-w-fit{
  max-width: fit-content !important;
}
.\!max-w-full{
  max-width: 100% !important;
}
.\!max-w-none{
  max-width: none !important;
}
.\!max-w-xs{
  max-width: 20rem !important;
}
.max-w-1{
  max-width: 0.25rem;
}
.max-w-24{
  max-width: 6rem;
}
.max-w-36{
  max-width: 9rem;
}
.max-w-4xl{
  max-width: 56rem;
}
.max-w-52{
  max-width: 13rem;
}
.max-w-64{
  max-width: 16rem;
}
.max-w-72{
  max-width: 18rem;
}
.max-w-96{
  max-width: 24rem;
}
.max-w-\[100\%\]{
  max-width: 100%;
}
.max-w-\[110px\]{
  max-width: 110px;
}
.max-w-\[120px\]{
  max-width: 120px;
}
.max-w-\[150px\]{
  max-width: 150px;
}
.max-w-\[180px\]{
  max-width: 180px;
}
.max-w-\[220px\]{
  max-width: 220px;
}
.max-w-\[227px\]{
  max-width: 227px;
}
.max-w-\[250px\]{
  max-width: 250px;
}
.max-w-\[284\.5px\]{
  max-width: 284.5px;
}
.max-w-\[300px\]{
  max-width: 300px;
}
.max-w-\[307px\]{
  max-width: 307px;
}
.max-w-\[40\%\]{
  max-width: 40%;
}
.max-w-\[400px\]{
  max-width: 400px;
}
.max-w-\[460px\]{
  max-width: 460px;
}
.max-w-\[50\%\]{
  max-width: 50%;
}
.max-w-\[750px\]{
  max-width: 750px;
}
.max-w-\[900\%\]{
  max-width: 900%;
}
.max-w-\[900px\]{
  max-width: 900px;
}
.max-w-\[95\%\]{
  max-width: 95%;
}
.max-w-fit{
  max-width: fit-content;
}
.max-w-full{
  max-width: 100%;
}
.max-w-lg{
  max-width: 32rem;
}
.max-w-max{
  max-width: max-content;
}
.max-w-md{
  max-width: 28rem;
}
.max-w-none{
  max-width: none;
}
.max-w-sm{
  max-width: 24rem;
}
.max-w-xs{
  max-width: 20rem;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-\[2\]{
  flex: 2;
}
.flex-\[3\]{
  flex: 3;
}
.flex-\[5\]{
  flex: 5;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.shrink-0{
  flex-shrink: 0;
}
.flex-grow-0{
  flex-grow: 0;
}
.grow{
  flex-grow: 1;
}
.basis-1\/2{
  flex-basis: 50%;
}
.basis-\[100\%\]{
  flex-basis: 100%;
}
.caption-bottom{
  caption-side: bottom;
}
.translate-x-\[-50\%\]{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[-50\%\]{
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-45{
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes spin{
  to{
    transform: rotate(360deg);
  }
}
.animate-spin{
  animation: spin 1s linear infinite;
}
.cursor-default{
  cursor: default;
}
.cursor-pointer{
  cursor: pointer;
}
.touch-none{
  touch-action: none;
}
.select-none{
  -webkit-user-select: none;
          user-select: none;
}
.resize{
  resize: both;
}
.list-none{
  list-style-type: none;
}
.break-inside-avoid{
  break-inside: avoid;
}
.\!grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
.\!grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-row{
  flex-direction: row;
}
.flex-col{
  flex-direction: column;
}
.flex-col-reverse{
  flex-direction: column-reverse;
}
.flex-wrap{
  flex-wrap: wrap;
}
.content-start{
  align-content: flex-start;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.\!items-center{
  align-items: center !important;
}
.items-center{
  align-items: center;
}
.items-stretch{
  align-items: stretch;
}
.\!justify-start{
  justify-content: flex-start !important;
}
.justify-start{
  justify-content: flex-start;
}
.\!justify-end{
  justify-content: flex-end !important;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.justify-evenly{
  justify-content: space-evenly;
}
.justify-stretch{
  justify-content: stretch;
}
.justify-items-start{
  justify-items: start;
}
.justify-items-end{
  justify-items: end;
}
.gap-1{
  gap: 0.25rem;
}
.gap-1\.5{
  gap: 0.375rem;
}
.gap-10{
  gap: 2.5rem;
}
.gap-14{
  gap: 3.5rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-20{
  gap: 5rem;
}
.gap-24{
  gap: 6rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-5{
  gap: 1.25rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-7{
  gap: 1.75rem;
}
.gap-72{
  gap: 18rem;
}
.gap-8{
  gap: 2rem;
}
.gap-\[3rem\]{
  gap: 3rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.place-self-center{
  place-self: center;
}
.self-start{
  align-self: flex-start;
}
.self-end{
  align-self: flex-end;
}
.self-center{
  align-self: center;
}
.self-stretch{
  align-self: stretch;
}
.overflow-auto{
  overflow: auto;
}
.overflow-hidden{
  overflow: hidden;
}
.\!overflow-y-auto{
  overflow-y: auto !important;
}
.overflow-y-auto{
  overflow-y: auto;
}
.overflow-x-hidden{
  overflow-x: hidden;
}
.overflow-y-visible{
  overflow-y: visible;
}
.overflow-x-scroll{
  overflow-x: scroll;
}
.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis{
  text-overflow: ellipsis;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.text-wrap{
  text-wrap: wrap;
}
.text-nowrap{
  text-wrap: nowrap;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-\[2px\]{
  border-radius: 2px;
}
.rounded-\[6px\]{
  border-radius: 6px;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: var(--radius);
}
.rounded-md{
  border-radius: calc(var(--radius) - 2px);
}
.rounded-sm{
  border-radius: calc(var(--radius) - 4px);
}
.rounded-xl{
  border-radius: 0.75rem;
}
.rounded-tl-sm{
  border-top-left-radius: calc(var(--radius) - 4px);
}
.border{
  border-width: 1px;
}
.border-0{
  border-width: 0px;
}
.border-2{
  border-width: 2px;
}
.border-\[0\.2px\]{
  border-width: 0.2px;
}
.border-\[0\.5px\]{
  border-width: 0.5px;
}
.border-\[1\.5px\]{
  border-width: 1.5px;
}
.border-\[1px\]{
  border-width: 1px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-b-0{
  border-bottom-width: 0px;
}
.border-l{
  border-left-width: 1px;
}
.border-r{
  border-right-width: 1px;
}
.border-r-\[1px\]{
  border-right-width: 1px;
}
.border-t{
  border-top-width: 1px;
}
.border-solid{
  border-style: solid;
}
.border-dashed{
  border-style: dashed;
}
.border-\[\#E4E4E7\]{
  --tw-border-opacity: 1;
  border-color: rgb(228 228 231 / var(--tw-border-opacity));
}
.border-\[\#d3d3d3\]{
  --tw-border-opacity: 1;
  border-color: rgb(211 211 211 / var(--tw-border-opacity));
}
.border-\[\#e8e8e8\]{
  --tw-border-opacity: 1;
  border-color: rgb(232 232 232 / var(--tw-border-opacity));
}
.border-\[--color-border\]{
  border-color: var(--color-border);
}
.border-\[hsl\(210\2c 10\%\2c 58\%\)\]{
  --tw-border-opacity: 1;
  border-color: hsl(210 10% 58% / var(--tw-border-opacity));
}
.border-black{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
}
.border-border{
  border-color: hsl(var(--border));
}
.border-border-gray{
  --tw-border-opacity: 1;
  border-color: rgb(228 228 231 / var(--tw-border-opacity));
}
.border-border\/50{
  border-color: hsl(var(--border) / 0.5);
}
.border-foreground\/10{
  border-color: hsl(var(--foreground) / 0.1);
}
.border-gray-100{
  --tw-border-opacity: 1;
  border-color: rgb(236 238 244 / var(--tw-border-opacity));
}
.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(220 221 228 / var(--tw-border-opacity));
}
.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(201 202 209 / var(--tw-border-opacity));
}
.border-gray-400{
  --tw-border-opacity: 1;
  border-color: rgb(171 173 182 / var(--tw-border-opacity));
}
.border-gray-500{
  --tw-border-opacity: 1;
  border-color: rgb(141 144 155 / var(--tw-border-opacity));
}
.border-input{
  border-color: hsl(var(--input));
}
.border-primary{
  --tw-border-opacity: 1;
  border-color: rgb(60 42 193 / var(--tw-border-opacity));
}
.border-stone-200{
  --tw-border-opacity: 1;
  border-color: rgb(231 229 228 / var(--tw-border-opacity));
}
.border-transparent{
  border-color: transparent;
}
.\!bg-primary{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(60 42 193 / var(--tw-bg-opacity)) !important;
}
.bg-\[\#05b893\]{
  --tw-bg-opacity: 1;
  background-color: rgb(5 184 147 / var(--tw-bg-opacity));
}
.bg-\[\#3C2AC10D\]{
  background-color: #3C2AC10D;
}
.bg-\[--color-bg\]{
  background-color: var(--color-bg);
}
.bg-amber-400{
  --tw-bg-opacity: 1;
  background-color: rgb(251 191 36 / var(--tw-bg-opacity));
}
.bg-background{
  background-color: hsl(var(--background));
}
.bg-black\/80{
  background-color: rgb(0 0 0 / 0.8);
}
.bg-border{
  background-color: hsl(var(--border));
}
.bg-card{
  background-color: hsl(var(--card));
}
.bg-data-tertiary{
  --tw-bg-opacity: 1;
  background-color: rgb(88 141 176 / var(--tw-bg-opacity));
}
.bg-destructive{
  background-color: hsl(var(--destructive));
}
.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(236 238 244 / var(--tw-bg-opacity));
}
.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgb(220 221 228 / var(--tw-bg-opacity));
}
.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(247 248 252 / var(--tw-bg-opacity));
}
.bg-inherit{
  background-color: inherit;
}
.bg-muted{
  background-color: hsl(var(--muted));
}
.bg-muted\/50{
  background-color: hsl(var(--muted) / 0.5);
}
.bg-popover{
  background-color: hsl(var(--popover));
}
.bg-primary{
  --tw-bg-opacity: 1;
  background-color: rgb(60 42 193 / var(--tw-bg-opacity));
}
.bg-primary-disabled{
  --tw-bg-opacity: 1;
  background-color: rgb(154 145 221 / var(--tw-bg-opacity));
}
.bg-primary\/20{
  background-color: rgb(60 42 193 / 0.2);
}
.bg-red-600{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity));
}
.bg-secondary{
  background-color: hsl(var(--secondary));
}
.bg-slate-50{
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity));
}
.bg-slate-800{
  --tw-bg-opacity: 1;
  background-color: rgb(30 41 59 / var(--tw-bg-opacity));
}
.bg-stone-200{
  --tw-bg-opacity: 1;
  background-color: rgb(231 229 228 / var(--tw-bg-opacity));
}
.bg-transparent{
  background-color: transparent;
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.fill-current{
  fill: currentColor;
}
.\!p-0{
  padding: 0px !important;
}
.p-0{
  padding: 0px;
}
.p-1{
  padding: 0.25rem;
}
.p-12{
  padding: 3rem;
}
.p-2{
  padding: 0.5rem;
}
.p-3{
  padding: 0.75rem;
}
.p-4{
  padding: 1rem;
}
.p-6{
  padding: 1.5rem;
}
.p-8{
  padding: 2rem;
}
.\!px-0{
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.\!px-4{
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.\!py-4{
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.\!py-5{
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}
.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-1\.5{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-10{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-12{
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-14{
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-40{
  padding-left: 10rem;
  padding-right: 10rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-\[16px\]{
  padding-left: 16px;
  padding-right: 16px;
}
.px-\[24px\]{
  padding-left: 24px;
  padding-right: 24px;
}
.py-0\.5{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-9{
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}
.py-\[19px\]{
  padding-top: 19px;
  padding-bottom: 19px;
}
.py-\[6px\]{
  padding-top: 6px;
  padding-bottom: 6px;
}
.\!pb-0{
  padding-bottom: 0px !important;
}
.\!pb-1{
  padding-bottom: 0.25rem !important;
}
.\!pl-3{
  padding-left: 0.75rem !important;
}
.\!pl-4{
  padding-left: 1rem !important;
}
.\!pr-0{
  padding-right: 0px !important;
}
.\!pt-0{
  padding-top: 0px !important;
}
.pb-0{
  padding-bottom: 0px;
}
.pb-1{
  padding-bottom: 0.25rem;
}
.pb-10{
  padding-bottom: 2.5rem;
}
.pb-2{
  padding-bottom: 0.5rem;
}
.pb-20{
  padding-bottom: 5rem;
}
.pb-3{
  padding-bottom: 0.75rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pb-5{
  padding-bottom: 1.25rem;
}
.pb-6{
  padding-bottom: 1.5rem;
}
.pb-\[14px\]{
  padding-bottom: 14px;
}
.pl-0{
  padding-left: 0px;
}
.pl-1{
  padding-left: 0.25rem;
}
.pl-2{
  padding-left: 0.5rem;
}
.pl-20{
  padding-left: 5rem;
}
.pl-3{
  padding-left: 0.75rem;
}
.pl-4{
  padding-left: 1rem;
}
.pl-6{
  padding-left: 1.5rem;
}
.pl-8{
  padding-left: 2rem;
}
.pl-9{
  padding-left: 2.25rem;
}
.pr-10{
  padding-right: 2.5rem;
}
.pr-2{
  padding-right: 0.5rem;
}
.pr-3{
  padding-right: 0.75rem;
}
.pr-5{
  padding-right: 1.25rem;
}
.pr-6{
  padding-right: 1.5rem;
}
.pr-8{
  padding-right: 2rem;
}
.pt-0{
  padding-top: 0px;
}
.pt-1{
  padding-top: 0.25rem;
}
.pt-2{
  padding-top: 0.5rem;
}
.pt-3{
  padding-top: 0.75rem;
}
.pt-4{
  padding-top: 1rem;
}
.pt-5{
  padding-top: 1.25rem;
}
.pt-6{
  padding-top: 1.5rem;
}
.pt-8{
  padding-top: 2rem;
}
.\!text-left{
  text-align: left !important;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.align-middle{
  vertical-align: middle;
}
.\!font-sans{
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}
.font-inter{
  font-family: Inter, sans-serif;
}
.font-raleway{
  font-family: Raleway, sans-serif;
}
.\!text-\[0\.77rem\]{
  font-size: 0.77rem !important;
}
.\!text-base{
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}
.\!text-sm{
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}
.\!text-xs{
  font-size: 0.72rem !important;
}
.\!text-xsm{
  font-size: 0.875rem !important;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-\[1\.5rem\]{
  font-size: 1.5rem;
}
.text-\[12px\]{
  font-size: 12px;
}
.text-\[14px\]{
  font-size: 14px;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-md{
  font-size: 1.105rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xmd{
  font-size: 1.125rem;
}
.text-xs{
  font-size: 0.72rem;
}
.text-xsm{
  font-size: 0.875rem;
}
.\!font-bold{
  font-weight: 700 !important;
}
.\!font-normal{
  font-weight: 400 !important;
}
.\!font-semibold{
  font-weight: 600 !important;
}
.font-bold{
  font-weight: 700;
}
.font-extrabold{
  font-weight: 800;
}
.font-light{
  font-weight: 300;
}
.font-medium{
  font-weight: 500;
}
.font-normal{
  font-weight: 400;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.lowercase{
  text-transform: lowercase;
}
.capitalize{
  text-transform: capitalize;
}
.normal-case{
  text-transform: none;
}
.italic{
  font-style: italic;
}
.tabular-nums{
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.\!leading-4{
  line-height: 1rem !important;
}
.\!leading-none{
  line-height: 1 !important;
}
.leading-3{
  line-height: .75rem;
}
.leading-4{
  line-height: 1rem;
}
.leading-none{
  line-height: 1;
}
.tracking-tight{
  letter-spacing: -0.025em;
}
.tracking-widest{
  letter-spacing: 0.1em;
}
.\!text-\[hsl\(190\2c 95\%\2c 30\%\)\]{
  --tw-text-opacity: 1 !important;
  color: hsl(190 95% 30% / var(--tw-text-opacity)) !important;
}
.\!text-black{
  --tw-text-opacity: 1 !important;
  color: rgb(0 0 0 / var(--tw-text-opacity)) !important;
}
.\!text-data-red{
  --tw-text-opacity: 1 !important;
  color: rgb(228 42 42 / var(--tw-text-opacity)) !important;
}
.\!text-data-teal{
  --tw-text-opacity: 1 !important;
  color: rgb(43 176 101 / var(--tw-text-opacity)) !important;
}
.\!text-gray-600{
  --tw-text-opacity: 1 !important;
  color: rgb(113 115 127 / var(--tw-text-opacity)) !important;
}
.\!text-muted-foreground{
  --tw-text-opacity: 1 !important;
  color: rgb(113 113 122 / var(--tw-text-opacity)) !important;
}
.\!text-white{
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
.text-\[blue\]{
  --tw-text-opacity: 1;
  color: rgb(0 0 255 / var(--tw-text-opacity));
}
.text-\[hsl\(210\2c 25\%\2c 25\%\)\]{
  --tw-text-opacity: 1;
  color: hsl(210 25% 25% / var(--tw-text-opacity));
}
.text-\[rgb\(128\2c 128\2c 128\)\]{
  --tw-text-opacity: 1;
  color: rgb(128 128 128 / var(--tw-text-opacity));
}
.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-blue-600{
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity));
}
.text-card-foreground{
  color: hsl(var(--card-foreground));
}
.text-current{
  color: currentColor;
}
.text-data-deep-blue{
  --tw-text-opacity: 1;
  color: rgb(28 76 175 / var(--tw-text-opacity));
}
.text-data-red{
  --tw-text-opacity: 1;
  color: rgb(228 42 42 / var(--tw-text-opacity));
}
.text-data-teal{
  --tw-text-opacity: 1;
  color: rgb(43 176 101 / var(--tw-text-opacity));
}
.text-destructive-foreground{
  color: hsl(var(--destructive-foreground));
}
.text-foreground{
  color: hsl(var(--foreground));
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(141 144 155 / var(--tw-text-opacity));
}
.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(113 115 127 / var(--tw-text-opacity));
}
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(79 81 91 / var(--tw-text-opacity));
}
.text-gray-800{
  --tw-text-opacity: 1;
  color: rgb(128 128 128 / var(--tw-text-opacity));
}
.text-green-600{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity));
}
.text-indigo-800{
  --tw-text-opacity: 1;
  color: rgb(55 48 163 / var(--tw-text-opacity));
}
.text-ink-hard{
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
.text-muted-foreground{
  --tw-text-opacity: 1;
  color: rgb(113 113 122 / var(--tw-text-opacity));
}
.text-popover-foreground{
  color: hsl(var(--popover-foreground));
}
.text-primary{
  --tw-text-opacity: 1;
  color: rgb(60 42 193 / var(--tw-text-opacity));
}
.text-primary-foreground{
  --tw-text-opacity: 1;
  color: rgb(60 42 193 / var(--tw-text-opacity));
}
.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}
.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity));
}
.text-secondary-foreground{
  color: hsl(var(--secondary-foreground));
}
.text-slate-300{
  --tw-text-opacity: 1;
  color: rgb(203 213 225 / var(--tw-text-opacity));
}
.text-text-black{
  --tw-text-opacity: 1;
  color: rgb(24 24 27 / var(--tw-text-opacity));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.underline{
  text-decoration-line: underline;
}
.underline-offset-4{
  text-underline-offset: 4px;
}
.accent-data-tertiary{
  accent-color: #588db0;
}
.opacity-0{
  opacity: 0;
}
.opacity-100{
  opacity: 1;
}
.opacity-50{
  opacity: 0.5;
}
.opacity-70{
  opacity: 0.7;
}
.opacity-75{
  opacity: 0.75;
}
.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-2xl{
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-none{
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline{
  outline-style: solid;
}
.ring{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-0{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-2{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-primary{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(60 42 193 / var(--tw-ring-opacity));
}
.ring-transparent{
  --tw-ring-color: transparent;
}
.ring-opacity-50{
  --tw-ring-opacity: 0.5;
}
.ring-offset-background{
  --tw-ring-offset-color: hsl(var(--background));
}
.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-1000{
  transition-duration: 1000ms;
}
.duration-200{
  transition-duration: 200ms;
}
.duration-300{
  transition-duration: 300ms;
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes enter{
  from{
    opacity: var(--tw-enter-opacity, 1);
    transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
  }
}
@keyframes exit{
  to{
    opacity: var(--tw-exit-opacity, 1);
    transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
  }
}
.animate-in{
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.fade-in-0{
  --tw-enter-opacity: 0;
}
.zoom-in-95{
  --tw-enter-scale: .95;
}
.duration-1000{
  animation-duration: 1000ms;
}
.duration-200{
  animation-duration: 200ms;
}
.duration-300{
  animation-duration: 300ms;
}
.ease-in-out{
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.running{
  animation-play-state: running;
}
.hidden-force{
  display: none;
}
.flex-center{
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-title{
  font-family: Raleway, sans-serif;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(24 24 27 / var(--tw-text-opacity));
}
.menu-button{
  width: 100%;
  justify-content: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(113 113 122 / var(--tw-text-opacity));
}
.menu-button-active{
  width: 100%;
  justify-content: flex-start;
  gap: 0.75rem;
  background-color: hsl(var(--secondary));
  font-size: 0.875rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(60 42 193 / var(--tw-text-opacity));
}
.\!row{
  display: flex;
  flex-direction: row;
}
.row{
  display: flex;
  flex-direction: row;
}
.column{
  display: flex;
  flex-direction: column;
}
.flex-row-gap-xs{
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
}
.flex-row-gap{
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.flex-row-gap-md{
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.flex-col-gap-xs{
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.flex-col-gap{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.flex-col-gap-md{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.flex-col-gap-lg{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.legend-item-circle{
  height: 0.75rem;
  width: 0.75rem;
  border-radius: 9999px;
}
.absolute-fill{
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  top: 0px;
}
.text-h3{
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
}
.text-h4{
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}
.text-h5{
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}
.\!text-h6{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
}
.text-h6{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
}
.text-large{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
}
.text-subtle{
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}
.text-extra-small{
  font-size: 0.72rem;
  font-weight: 400;
}
.\!summary-description{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(113 113 122 / var(--tw-text-opacity));
}
.text-page-header-sub{
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 400;
}
.flex-center{
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-start{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.file\:border-0::file-selector-button{
  border-width: 0px;
}
.file\:bg-transparent::file-selector-button{
  background-color: transparent;
}
.file\:text-sm::file-selector-button{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.file\:font-medium::file-selector-button{
  font-weight: 500;
}
.file\:text-foreground::file-selector-button{
  color: hsl(var(--foreground));
}
.placeholder\:text-muted-foreground::placeholder{
  --tw-text-opacity: 1;
  color: rgb(113 113 122 / var(--tw-text-opacity));
}
.after\:absolute::after{
  content: var(--tw-content);
  position: absolute;
}
.after\:inset-y-0::after{
  content: var(--tw-content);
  top: 0px;
  bottom: 0px;
}
.after\:left-1\/2::after{
  content: var(--tw-content);
  left: 50%;
}
.after\:w-1::after{
  content: var(--tw-content);
  width: 0.25rem;
}
.after\:-translate-x-1\/2::after{
  content: var(--tw-content);
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:text-wrap:hover{
  text-wrap: wrap;
}
.hover\:bg-accent:hover{
  background-color: hsl(var(--accent));
}
.hover\:bg-amber-400:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(251 191 36 / var(--tw-bg-opacity));
}
.hover\:bg-data-tertiary:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(88 141 176 / var(--tw-bg-opacity));
}
.hover\:bg-destructive\/80:hover{
  background-color: hsl(var(--destructive) / 0.8);
}
.hover\:bg-destructive\/90:hover{
  background-color: hsl(var(--destructive) / 0.9);
}
.hover\:bg-gray-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(236 238 244 / var(--tw-bg-opacity));
}
.hover\:bg-gray-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(220 221 228 / var(--tw-bg-opacity));
}
.hover\:bg-inherit:hover{
  background-color: inherit;
}
.hover\:bg-muted:hover{
  background-color: hsl(var(--muted));
}
.hover\:bg-muted\/50:hover{
  background-color: hsl(var(--muted) / 0.5);
}
.hover\:bg-primary\/80:hover{
  background-color: rgb(60 42 193 / 0.8);
}
.hover\:bg-primary\/90:hover{
  background-color: rgb(60 42 193 / 0.9);
}
.hover\:bg-red-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity));
}
.hover\:bg-secondary:hover{
  background-color: hsl(var(--secondary));
}
.hover\:bg-secondary\/80:hover{
  background-color: hsl(var(--secondary) / 0.8);
}
.hover\:bg-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.hover\:text-accent-foreground:hover{
  color: hsl(var(--accent-foreground));
}
.hover\:text-muted-foreground:hover{
  --tw-text-opacity: 1;
  color: rgb(113 113 122 / var(--tw-text-opacity));
}
.hover\:underline:hover{
  text-decoration-line: underline;
}
.hover\:opacity-100:hover{
  opacity: 1;
}
.focus\:bg-accent:focus{
  background-color: hsl(var(--accent));
}
.focus\:text-accent-foreground:focus{
  color: hsl(var(--accent-foreground));
}
.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-1:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-primary:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(60 42 193 / var(--tw-ring-opacity));
}
.focus\:ring-ring:focus{
  --tw-ring-color: hsl(var(--ring));
}
.focus\:ring-offset-2:focus{
  --tw-ring-offset-width: 2px;
}
.focus-visible\:outline-none:focus-visible{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus-visible\:ring-1:focus-visible{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-2:focus-visible{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-ring:focus-visible{
  --tw-ring-color: hsl(var(--ring));
}
.focus-visible\:ring-offset-1:focus-visible{
  --tw-ring-offset-width: 1px;
}
.focus-visible\:ring-offset-2:focus-visible{
  --tw-ring-offset-width: 2px;
}
.focus-visible\:ring-offset-background:focus-visible{
  --tw-ring-offset-color: hsl(var(--background));
}
.disabled\:pointer-events-none:disabled{
  pointer-events: none;
}
.disabled\:cursor-not-allowed:disabled{
  cursor: not-allowed;
}
.disabled\:bg-primary-disabled:disabled{
  --tw-bg-opacity: 1;
  background-color: rgb(154 145 221 / var(--tw-bg-opacity));
}
.disabled\:opacity-20:disabled{
  opacity: 0.2;
}
.disabled\:opacity-50:disabled{
  opacity: 0.5;
}
.group:hover .group-hover\:rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.peer:disabled ~ .peer-disabled\:cursor-not-allowed{
  cursor: not-allowed;
}
.peer:disabled ~ .peer-disabled\:opacity-70{
  opacity: 0.7;
}
.data-\[disabled\=true\]\:pointer-events-none[data-disabled="true"]{
  pointer-events: none;
}
.data-\[disabled\]\:pointer-events-none[data-disabled]{
  pointer-events: none;
}
.data-\[panel-group-direction\=vertical\]\:h-px[data-panel-group-direction="vertical"]{
  height: 1px;
}
.data-\[panel-group-direction\=vertical\]\:w-full[data-panel-group-direction="vertical"]{
  width: 100%;
}
.data-\[side\=bottom\]\:translate-y-1[data-side="bottom"]{
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[side\=left\]\:-translate-x-1[data-side="left"]{
  --tw-translate-x: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[side\=right\]\:translate-x-1[data-side="right"]{
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[side\=top\]\:-translate-y-1[data-side="top"]{
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[state\=checked\]\:translate-x-3[data-state="checked"]{
  --tw-translate-x: 0.75rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[state\=checked\]\:translate-x-4[data-state="checked"]{
  --tw-translate-x: 1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[state\=checked\]\:translate-x-5[data-state="checked"]{
  --tw-translate-x: 1.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[state\=checked\]\:translate-x-6[data-state="checked"]{
  --tw-translate-x: 1.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[state\=unchecked\]\:translate-x-0[data-state="unchecked"]{
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[panel-group-direction\=vertical\]\:flex-col[data-panel-group-direction="vertical"]{
  flex-direction: column;
}
.data-\[active\]\:bg-accent\/50[data-active]{
  background-color: hsl(var(--accent) / 0.5);
}
.data-\[selected\=true\]\:bg-accent[data-selected="true"]{
  background-color: hsl(var(--accent));
}
.data-\[state\=active\]\:bg-background[data-state="active"]{
  background-color: hsl(var(--background));
}
.data-\[state\=checked\]\:bg-data-aqua-blue[data-state="checked"]{
  --tw-bg-opacity: 1;
  background-color: rgb(18 149 237 / var(--tw-bg-opacity));
}
.data-\[state\=checked\]\:bg-primary[data-state="checked"]{
  --tw-bg-opacity: 1;
  background-color: rgb(60 42 193 / var(--tw-bg-opacity));
}
.data-\[state\=on\]\:bg-accent[data-state="on"]{
  background-color: hsl(var(--accent));
}
.data-\[state\=open\]\:bg-accent[data-state="open"]{
  background-color: hsl(var(--accent));
}
.data-\[state\=open\]\:bg-accent\/50[data-state="open"]{
  background-color: hsl(var(--accent) / 0.5);
}
.data-\[state\=selected\]\:bg-muted[data-state="selected"]{
  background-color: hsl(var(--muted));
}
.data-\[state\=unchecked\]\:bg-input[data-state="unchecked"]{
  background-color: hsl(var(--input));
}
.data-\[selected\=true\]\:text-accent-foreground[data-selected="true"]{
  color: hsl(var(--accent-foreground));
}
.data-\[state\=active\]\:text-foreground[data-state="active"]{
  color: hsl(var(--foreground));
}
.data-\[state\=checked\]\:text-primary-foreground[data-state="checked"]{
  --tw-text-opacity: 1;
  color: rgb(60 42 193 / var(--tw-text-opacity));
}
.data-\[state\=checked\]\:text-white[data-state="checked"]{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.data-\[state\=on\]\:text-accent-foreground[data-state="on"]{
  color: hsl(var(--accent-foreground));
}
.data-\[state\=open\]\:text-accent-foreground[data-state="open"]{
  color: hsl(var(--accent-foreground));
}
.data-\[state\=open\]\:text-muted-foreground[data-state="open"]{
  --tw-text-opacity: 1;
  color: rgb(113 113 122 / var(--tw-text-opacity));
}
.data-\[disabled\=true\]\:opacity-50[data-disabled="true"]{
  opacity: 0.5;
}
.data-\[disabled\]\:opacity-50[data-disabled]{
  opacity: 0.5;
}
.data-\[state\=active\]\:shadow[data-state="active"]{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.data-\[motion\^\=from-\]\:animate-in[data-motion^="from-"]{
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.data-\[state\=open\]\:animate-in[data-state="open"]{
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.data-\[state\=visible\]\:animate-in[data-state="visible"]{
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.data-\[motion\^\=to-\]\:animate-out[data-motion^="to-"]{
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[state\=closed\]\:animate-out[data-state="closed"]{
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[state\=hidden\]\:animate-out[data-state="hidden"]{
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[motion\^\=from-\]\:fade-in[data-motion^="from-"]{
  --tw-enter-opacity: 0;
}
.data-\[motion\^\=to-\]\:fade-out[data-motion^="to-"]{
  --tw-exit-opacity: 0;
}
.data-\[state\=closed\]\:fade-out-0[data-state="closed"]{
  --tw-exit-opacity: 0;
}
.data-\[state\=hidden\]\:fade-out[data-state="hidden"]{
  --tw-exit-opacity: 0;
}
.data-\[state\=open\]\:fade-in-0[data-state="open"]{
  --tw-enter-opacity: 0;
}
.data-\[state\=visible\]\:fade-in[data-state="visible"]{
  --tw-enter-opacity: 0;
}
.data-\[state\=closed\]\:zoom-out-95[data-state="closed"]{
  --tw-exit-scale: .95;
}
.data-\[state\=open\]\:zoom-in-90[data-state="open"]{
  --tw-enter-scale: .9;
}
.data-\[state\=open\]\:zoom-in-95[data-state="open"]{
  --tw-enter-scale: .95;
}
.data-\[motion\=from-end\]\:slide-in-from-right-52[data-motion="from-end"]{
  --tw-enter-translate-x: 13rem;
}
.data-\[motion\=from-start\]\:slide-in-from-left-52[data-motion="from-start"]{
  --tw-enter-translate-x: -13rem;
}
.data-\[motion\=to-end\]\:slide-out-to-right-52[data-motion="to-end"]{
  --tw-exit-translate-x: 13rem;
}
.data-\[motion\=to-start\]\:slide-out-to-left-52[data-motion="to-start"]{
  --tw-exit-translate-x: -13rem;
}
.data-\[side\=bottom\]\:slide-in-from-top-2[data-side="bottom"]{
  --tw-enter-translate-y: -0.5rem;
}
.data-\[side\=left\]\:slide-in-from-right-2[data-side="left"]{
  --tw-enter-translate-x: 0.5rem;
}
.data-\[side\=right\]\:slide-in-from-left-2[data-side="right"]{
  --tw-enter-translate-x: -0.5rem;
}
.data-\[side\=top\]\:slide-in-from-bottom-2[data-side="top"]{
  --tw-enter-translate-y: 0.5rem;
}
.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state="closed"]{
  --tw-exit-translate-x: -50%;
}
.data-\[state\=closed\]\:slide-out-to-top-\[48\%\][data-state="closed"]{
  --tw-exit-translate-y: -48%;
}
.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state="open"]{
  --tw-enter-translate-x: -50%;
}
.data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state="open"]{
  --tw-enter-translate-y: -48%;
}
.data-\[panel-group-direction\=vertical\]\:after\:left-0[data-panel-group-direction="vertical"]::after{
  content: var(--tw-content);
  left: 0px;
}
.data-\[panel-group-direction\=vertical\]\:after\:h-1[data-panel-group-direction="vertical"]::after{
  content: var(--tw-content);
  height: 0.25rem;
}
.data-\[panel-group-direction\=vertical\]\:after\:w-full[data-panel-group-direction="vertical"]::after{
  content: var(--tw-content);
  width: 100%;
}
.data-\[panel-group-direction\=vertical\]\:after\:-translate-y-1\/2[data-panel-group-direction="vertical"]::after{
  content: var(--tw-content);
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[panel-group-direction\=vertical\]\:after\:translate-x-0[data-panel-group-direction="vertical"]::after{
  content: var(--tw-content);
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group[data-state="open"] .group-data-\[state\=open\]\:rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.dark\:text-blue-500:is(.dark *){
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity));
}
@media (min-width: 640px){
  .sm\:block{
    display: block;
  }
  .sm\:hidden{
    display: none;
  }
  .sm\:h-\[50px\]{
    height: 50px;
  }
  .sm\:h-full{
    height: 100%;
  }
  .sm\:max-w-\[24ch\]{
    max-width: 24ch;
  }
  .sm\:max-w-\[400px\]{
    max-width: 400px;
  }
  .sm\:max-w-\[827px\]{
    max-width: 827px;
  }
  .sm\:flex-1{
    flex: 1 1 0%;
  }
  .sm\:flex-row{
    flex-direction: row;
  }
  .sm\:items-start{
    align-items: flex-start;
  }
  .sm\:justify-start{
    justify-content: flex-start;
  }
  .sm\:justify-end{
    justify-content: flex-end;
  }
  .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .sm\:rounded-lg{
    border-radius: var(--radius);
  }
  .sm\:text-left{
    text-align: left;
  }
  .sm\:text-large{
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
  }
}
@media (min-width: 768px){
  .md\:absolute{
    position: absolute;
  }
  .md\:w-\[var\(--radix-navigation-menu-viewport-width\)\]{
    width: var(--radix-navigation-menu-viewport-width);
  }
  .md\:w-auto{
    width: auto;
  }
  .md\:gap-8{
    gap: 2rem;
  }
  .md\:\!p-3{
    padding: 0.75rem !important;
  }
  .md\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 1024px){
  .lg\:block{
    display: block;
  }
  .lg\:flex-row{
    flex-direction: row;
  }
  .lg\:gap-3{
    gap: 0.75rem;
  }
}
@media (min-width: 1280px){
  .xl\:\!flex{
    display: flex !important;
  }
  .xl\:w-72{
    width: 18rem;
  }
  .xl\:w-\[95\%\]{
    width: 95%;
  }
  .xl\:min-w-\[300px\]{
    min-width: 300px;
  }
  .xl\:flex-1{
    flex: 1 1 0%;
  }
  .xl\:flex-\[3\]{
    flex: 3;
  }
  .xl\:basis-4{
    flex-basis: 1rem;
  }
  .xl\:basis-5\/12{
    flex-basis: 41.666667%;
  }
  .xl\:basis-\[18rem\]{
    flex-basis: 18rem;
  }
  .xl\:basis-\[35\%\]{
    flex-basis: 35%;
  }
  .xl\:basis-\[50\%\]{
    flex-basis: 50%;
  }
  .xl\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\:flex-row{
    flex-direction: row;
  }
  .xl\:items-start{
    align-items: flex-start;
  }
  .xl\:gap-12{
    gap: 3rem;
  }
  .xl\:gap-2{
    gap: 0.5rem;
  }
}
@media (min-width: 1536px){
  .\32xl\:flex{
    display: flex;
  }
  .\32xl\:h-1\/2{
    height: 50%;
  }
  .\32xl\:w-80{
    width: 20rem;
  }
  .\32xl\:w-\[337px\]{
    width: 337px;
  }
  .\32xl\:w-\[420px\]{
    width: 420px;
  }
  .\32xl\:w-\[700px\]{
    width: 700px;
  }
  .\32xl\:w-\[80\%\]{
    width: 80%;
  }
  .\32xl\:w-full{
    width: 100%;
  }
  .\32xl\:min-w-96{
    min-width: 24rem;
  }
  .\32xl\:min-w-\[1000px\]{
    min-width: 1000px;
  }
  .\32xl\:min-w-\[350px\]{
    min-width: 350px;
  }
  .\32xl\:min-w-\[400px\]{
    min-width: 400px;
  }
  .\32xl\:min-w-\[50\%\]{
    min-width: 50%;
  }
  .\32xl\:max-w-\[1000px\]{
    max-width: 1000px;
  }
  .\32xl\:max-w-\[420px\]{
    max-width: 420px;
  }
  .\32xl\:max-w-\[700px\]{
    max-width: 700px;
  }
  .\32xl\:max-w-fit{
    max-width: fit-content;
  }
  .\32xl\:gap-16{
    gap: 4rem;
  }
  .\32xl\:gap-2{
    gap: 0.5rem;
  }
  .\32xl\:gap-3{
    gap: 0.75rem;
  }
  .\32xl\:\!p-6{
    padding: 1.5rem !important;
  }
  .\32xl\:p-6{
    padding: 1.5rem;
  }
  .\32xl\:pb-1{
    padding-bottom: 0.25rem;
  }
}
.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]){
  padding-right: 0px;
}
.\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\]>[role=checkbox]{
  --tw-translate-y: 2px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.\[\&\>span\]\:line-clamp-1>span{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.\[\&\>svg\]\:h-2\.5>svg{
  height: 0.625rem;
}
.\[\&\>svg\]\:h-3>svg{
  height: 0.75rem;
}
.\[\&\>svg\]\:w-2\.5>svg{
  width: 0.625rem;
}
.\[\&\>svg\]\:w-3>svg{
  width: 0.75rem;
}
.\[\&\>svg\]\:text-muted-foreground>svg{
  --tw-text-opacity: 1;
  color: rgb(113 113 122 / var(--tw-text-opacity));
}
.\[\&\>tr\]\:last\:border-b-0:last-child>tr{
  border-bottom-width: 0px;
}
.\[\&\[data-panel-group-direction\=vertical\]\>div\]\:rotate-90[data-panel-group-direction=vertical]>div{
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.\[\&_\.recharts-cartesian-axis-tick_text\]\:fill-muted-foreground .recharts-cartesian-axis-tick text{
  fill: #71717A;
}
.\[\&_\.recharts-cartesian-grid_line\[stroke\=\'\#ccc\'\]\]\:stroke-border\/50 .recharts-cartesian-grid line[stroke='#ccc']{
  stroke: hsl(var(--border) / 0.5);
}
.\[\&_\.recharts-curve\.recharts-tooltip-cursor\]\:stroke-border .recharts-curve.recharts-tooltip-cursor{
  stroke: hsl(var(--border));
}
.\[\&_\.recharts-dot\[stroke\=\'\#fff\'\]\]\:stroke-transparent .recharts-dot[stroke='#fff']{
  stroke: transparent;
}
.\[\&_\.recharts-layer\]\:outline-none .recharts-layer{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.\[\&_\.recharts-polar-grid_\[stroke\=\'\#ccc\'\]\]\:stroke-border .recharts-polar-grid [stroke='#ccc']{
  stroke: hsl(var(--border));
}
.\[\&_\.recharts-radial-bar-background-sector\]\:fill-muted .recharts-radial-bar-background-sector{
  fill: hsl(var(--muted));
}
.\[\&_\.recharts-rectangle\.recharts-tooltip-cursor\]\:fill-muted .recharts-rectangle.recharts-tooltip-cursor{
  fill: hsl(var(--muted));
}
.\[\&_\.recharts-reference-line_\[stroke\=\'\#ccc\'\]\]\:stroke-border .recharts-reference-line [stroke='#ccc']{
  stroke: hsl(var(--border));
}
.\[\&_\.recharts-sector\[stroke\=\'\#fff\'\]\]\:stroke-transparent .recharts-sector[stroke='#fff']{
  stroke: transparent;
}
.\[\&_\.recharts-sector\]\:outline-none .recharts-sector{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.\[\&_\.recharts-surface\]\:outline-none .recharts-surface{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading]{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading]{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.\[\&_\[cmdk-group-heading\]\]\:text-xs [cmdk-group-heading]{
  font-size: 0.72rem;
}
.\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading]{
  font-weight: 500;
}
.\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground [cmdk-group-heading]{
  --tw-text-opacity: 1;
  color: rgb(113 113 122 / var(--tw-text-opacity));
}
.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 [cmdk-group]:not([hidden]) ~[cmdk-group]{
  padding-top: 0px;
}
.\[\&_\[cmdk-group\]\]\:px-2 [cmdk-group]{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.\[\&_\[cmdk-input-wrapper\]_svg\]\:h-5 [cmdk-input-wrapper] svg{
  height: 1.25rem;
}
.\[\&_\[cmdk-input-wrapper\]_svg\]\:w-5 [cmdk-input-wrapper] svg{
  width: 1.25rem;
}
.\[\&_\[cmdk-input\]\]\:h-12 [cmdk-input]{
  height: 3rem;
}
.\[\&_\[cmdk-item\]\]\:px-2 [cmdk-item]{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.\[\&_\[cmdk-item\]\]\:py-3 [cmdk-item]{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.\[\&_\[cmdk-item\]_svg\]\:h-5 [cmdk-item] svg{
  height: 1.25rem;
}
.\[\&_\[cmdk-item\]_svg\]\:w-5 [cmdk-item] svg{
  width: 1.25rem;
}
.\[\&_svg\]\:pointer-events-none svg{
  pointer-events: none;
}
.\[\&_svg\]\:pointer-events-auto svg{
  pointer-events: auto;
}
.\[\&_svg\]\:invisible svg{
  visibility: hidden;
}
.\[\&_svg\]\:size-4 svg{
  width: 1rem;
  height: 1rem;
}
.\[\&_svg\]\:shrink-0 svg{
  flex-shrink: 0;
}
.\[\&_tr\]\:border-b tr{
  border-bottom-width: 1px;
}

/*# sourceMappingURL=index.css.map */