.scroll-box {
  -ms-overflow-style: none; /* IE and Edge */
  /* scrollbar-width: none; */
  /* Firefox */
  overflow-y: auto !important;
}

.scroll-box::-webkit-scrollbar:vertical {
  display: none; /* Chrome, Safari, Opera*/
}

.scroll-box::-webkit-scrollbar:horizontal {
  display: block; /* Ensures horizontal scrollbar is not affected */
}

.on-hover:hover {
  background: var(--list-bg-body-hovered, #f1f3f9);
}

@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 300;
  src: url(/static/fonts/Pretendard-Light.woff) format('woff');
}
@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 400;
  src: url(/static/fonts/Pretendard-Regular.woff) format('woff');
}
@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 500;
  src: url(/static/fonts/Pretendard-Medium.woff) format('woff');
}
@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 600;
  src: url(/static/fonts/Pretendard-SemiBold.woff) format('woff');
}
@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  src: url(/static/fonts/Pretendard-Bold.woff) format('woff');
}

@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 300;
  src: url(/static/fonts/Pretendard-Light.woff2) format('woff2');
}
@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 400;
  src: url(/static/fonts/Pretendard-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 500;
  src: url(/static/fonts/Pretendard-Medium.woff2) format('woff2');
}
@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 600;
  src: url(/static/fonts/Pretendard-SemiBold.woff2) format('woff2');
}
@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  src: url(/static/fonts/Pretendard-Bold.woff2) format('woff2');
}

* {
  font-family: 'Pretendard', sans-serif;
}

#webpack-dev-server-client-overlay {
  display: none;
}

.scroll-box-horizontal {
  -ms-overflow-style: none; /* IE and Edge */
  /* scrollbar-width: none; */
  /* Firefox */
  overflow-y: auto !important;
}

.scroll-box-horizontal::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

:root {
  /* color */
  --primary-color: #3d8bf7;
  --primary-strong-color: #1c69d4;
  --secondary-color: #8f8f8f;
  --black: #000;
  --white: #fff;
  --blue-sky: #93b9ff;
  --blue-smoke: #c9daf4;
  --gray-scorpion: #5d5d5d;
  --gray-carbon: #5c5c5c;
  --white-dawn: #ececec;
  --danger-color: #ff7d7d;

  /* border-color */
  --border-color: #e7e8ea;
  --border-strong-color: #cfcfcf;

  /* bg color */
  --bg-color: #efefef;
  --button-bg-color: #515151;
  --card-bg-color: #fff;
  --bg-strong-color: #f1f1f1;
  --base-bg-color-base-bg-0: #ffffff;
  --base-bg-color-base-bg-5: #f8f9fc;
  --base-bg-color-base-bg-10: #f1f3f9;
  --base-bg-color-base-bg-20: #e2e5f0;
  --base-bg-color-base-bg-30: #cbd1e1;
  --base-bg-color-base-bg-40: #949db8;
  --base-bg-color-base-bg-50: #646e8b;
  --base-bg-color-base-bg-60: #475069;
  --base-bg-color-base-bg-70: #333c55;
  --base-bg-color-base-bg-80: #1e253b;
  --base-bg-color-base-bg-90: #0f162a;

  /* box-shadow color */
  --box-shadow-color: rgba(0, 0, 0, 0.03);
  --box-shadow: 0px 0px 15px 0px var(--box-shadow-color);

  /* hover color */
  --hover-color: #1f915633;

  /* text-color */
  --text-color: #333;

  /* responsive breakpoint defined */
  /* Đổi size thì nhớ cầm key đi check mấy chỗ khác */
  --screen-xs: 480px;
  --screen-xs-max: 575px;
  --screen-xs-min: 480px;

  --screen-sm: 576px;
  --screen-sm-max: 720px;
  --screen-sm-min: 576px;

  --screen-md: 721px;
  --screen-md-max: 1024px;
  --screen-md-min: 721px;

  --screen-lg: 1025px;
  --screen-lg-max: 1199px;
  --screen-lg-min: 1025px;

  --screen-xl: 1200px;
  --screen-xl-max: 1599px;
  --screen-xl-min: 1200px;

  --container-xs: 100%;
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Pretendard', sans-serif !important;
}

html body {
  font-family: 'Pretendard', sans-serif;
  line-height: 1.5;
  overflow-y: overlay;
  background-color: var(--bg-color);
}
span,
div,
p {
  /* font-size: 1rem; */
}
/* Scroll bar */
html *::-webkit-scrollbar {
  border-radius: 0;
  width: 8px;
  height: 8px;
}
html *::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.3);
}
html *::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0);
}
button,
input,
[tabindex] {
  outline: none;
  border: none;
  font-family: 'Pretendard', sans-serif;
}

a[href] {
  text-decoration: none;
}
.text-center {
  text-align: center;
}
.text-end {
  text-align: end;
}
.w-100 {
  width: 100% !important;
}
section {
  padding: 40px 0;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-4 {
  margin-top: 4rem;
}
.ml-1 {
  margin-left: 1rem;
}
.ml-2 {
  margin-left: 2rem;
}
.ml-3 {
  margin-left: 3rem;
}
.ml-4 {
  margin-left: 4rem;
}
.d-flex {
  display: flex;
}
.align-end {
  display: flex;
  align-items: end;
}
.align-center {
  display: flex;
  align-items: center;
}
.content-center {
  display: flex;
  justify-content: center;
}
.content-between {
  display: flex;
  justify-content: space-between;
}
.content-end {
  display: flex;
  justify-content: end;
}
.mr-16 {
  margin-right: 16px;
}
.sep {
  &::before {
    content: '';
    margin: 0 10px;
    width: 1px;
    height: 20px;
    border-radius: 50%;
    background-color: #cccccc69;
  }
}
.bottom-right-corner-sm {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
}
.bottom-right-corner {
  position: absolute;
  right: 20px;
  bottom: 24px;
  z-index: 1;
}
.top-right-corner-sm {
  position: absolute;
  right: 20px;
  top: 12px;
  z-index: 1;
}
.top-right-corner {
  position: absolute;
  right: 20px;
  top: 24px;
  z-index: 1;
}
.hovered:hover {
  opacity: 0.75;
  cursor: pointer;
}

/* Custom tippy tool tip */
html body {
  .ant-dropdown .ant-dropdown-menu {
    box-shadow:
      0px 1px 3px 0 var(--box-shadow-color),
      0 3px 8px 0px var(--box-shadow-color),
      0px 2px 3px 0px var(--box-shadow-color);
  }
  .ant-badge-dot {
    height: 12px;
    width: 12px;
  }
  .ant-upload-wrapper.ant-upload-picture-card-wrapper .ant-upload-list.ant-upload-list-picture-card .ant-upload-list-item-container,
  .ant-upload-wrapper.ant-upload-picture-card-wrapper .ant-upload.ant-upload-select {
    height: 40px;
    width: 40px;
  }
  .ant-upload-wrapper .ant-upload-list.ant-upload-list-picture-card .ant-upload-list-item {
    padding: 4px;
  }
  /* upload stock img */
  .slick-list {
    width: 100%;
  }
  .stock-upload-img.ant-upload-wrapper.ant-upload-picture-card-wrapper
    .ant-upload-list.ant-upload-list-picture-card
    .ant-upload-list-item-container,
  .stock-upload-img.ant-upload-wrapper.ant-upload-picture-card-wrapper .ant-upload.ant-upload-select {
    height: 68px;
    width: 122px;
  }
  .stock-upload-img.ant-upload-wrapper.ant-upload-picture-card-wrapper .ant-upload.ant-upload-select {
    border: 1px solid var(--base-stroke-color-base-stroke-20, #e2e5f0);
    box-sizing: border-box;
    background: none;
  }
  .ant-carousel .slick-prev.slick-disabled,
  .ant-carousel .slick-next.slick-disabled {
    pointer-events: all;
    opacity: 0.2;
  }
  .ant-input-affix-wrapper .ant-input-prefix {
    margin-inline-end: 10px;
  }
  .ant-form-item .ant-form-item-explain-error {
    margin: 2px 0 4px;
    font-size: 14px;
  }
  .ant-modal .ant-modal-content {
    padding: 0;
  }
  .ant-modal .ant-modal-body {
    background-color: var(--base-bg-color-base-bg-0, #ffffff);
  }
  .ant-modal .ant-modal-close {
    inset-inline-end: 24px;
  }
  .ant-form-item .ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before {
    font-family: inherit;
  }
  .ant-input-affix-wrapper.ant-input-outlined input::placeholder {
    opacity: 1;
  }
  .ant-spin .ant-spin-dot-progress {
    position: absolute;
    top: 50%;
    inset-inline-start: 50%;
  }
  .ant-input-number-sm input.ant-input-number-input {
    display: block;
  }
  .ant-table-wrapper .ant-table {
    scrollbar-color: unset;
  }
  /* radio */

  .ant-radio-wrapper {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.025em;
  }

  .ant-radio-wrapper:last-child {
    margin-inline-end: 0;
  }

  .ant-radio-wrapper span.ant-radio + * {
    padding-inline: 0;
    padding-inline-start: 8px;
  }

  .ant-radio-wrapper .ant-radio-disabled.ant-radio-checked .ant-radio-inner::after {
    transform: scale(1);
  }

  .ant-radio-wrapper .ant-radio-checked .ant-radio-inner::after {
    transform: scale(1);
  }

  .ant-radio-wrapper .ant-radio-inner::after {
    width: 6px;
    height: 6px;
    margin-block-start: -3px;
    margin-inline-start: -3px;
    transform: scale(1);
    opacity: 1;
    background: var(--radio-box-fg-selected, #6366f1);
    transition-duration: 0.2s;
  }

  .ant-radio-wrapper .ant-radio-checked .ant-radio-inner {
    background: var(--radio-box-bg-selected, #ffffff);
    border: 1px solid var(--radio-box-stroke-selected, #6366f1);
  }

  .ant-radio:not(.ant-radio-checked) .ant-radio-inner::after {
    background: var(--radio-box-fg-enabled, #cbd1e1);
  }

  .ant-radio.ant-radio-disabled.ant-radio-checked .ant-radio-inner::after {
    background: var(--radio-box-fg-check-disabled, #cbd1e1);
  }

  .ant-radio.ant-radio-disabled .ant-radio-inner {
    background: var(--radio-box-bg-check-disabled, #e2e5f0);
    border-color: transparent;
  }

  .ant-radio.ant-radio-disabled:not(.ant-radio-checked) .ant-radio-inner {
    border-color: transparent;
  }

  .ant-radio.ant-radio-disabled:not(.ant-radio-checked) .ant-radio-inner::after {
    background: var(--radio-box-fg-disabled, #ffffff);
  }

  .ant-radio-wrapper:hover .ant-radio:not(.ant-radio-disabled) .ant-radio-inner {
    border-color: var(--button-primary-bg-hoverd, #4338ca);
  }

  .ant-radio-wrapper:hover .ant-radio-inner::after {
    background: var(--button-primary-bg-hoverd, #4338ca);
  }

  /* checkbox */
  .ant-checkbox-wrapper {
    font-size: 14px;
    color: #333c55;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.025em;
  }
  .ant-checkbox-group {
    align-items: flex-start;
    flex-wrap: nowrap;
  }
  .ant-checkbox-label {
    white-space: nowrap;
  }
  .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner {
    border-color: transparent;
  }

  .ant-checkbox-disabled .ant-checkbox-inner:after {
    border-color: var(--check-box-fg-check-disabled, #cbd1e1);
  }

  /* .ant-checkbox-wrapper:not(.ant-checkbox-wrapper-disabled):hover .ant-checkbox-checked:not(.ant-checkbox-disabled) .ant-checkbox-inner {
    background: var(--button-primary-bg-hoverd, #4338ca);
  } */

  /* select */
  .ant-select-focused.ant-select-outlined .ant-select-selector {
    box-shadow: none !important;
  }
  .ant-select-selector .ant-select-selection-item {
    color: #333c55 !important;
  }

  .ant-select-disabled .ant-select-selector {
    background-color: var(--input-bg-disabled, #f1f3f9) !important;
    border-color: var(--input-stroke-disabled, #cbd1e1) !important;
    color: var(--input-fg-disabled, #475069) !important;
  }
  .ant-select-disabled .ant-select-selection-item {
    color: #646e8b;
  }
  .ant-select-arrow {
    color: #333c55 !important;
  }
  .ant-select-selection-placeholder,
  .ant-select:hover .ant-select-selector .ant-select-selection-item {
    /* color: #646e8b !important; */
    color: var(--fg-placeholder, #949db8) !important;
  }
  .ant-select:hover .ant-select-selector {
    border-color: #646e8b !important;
    background-color: #f1f3f9;
  }
  /* selectDropdown */
  .ant-select-dropdown {
    padding: 0 !important;
    border: 1px solid #cbd1e1;
    /* border-top: none; */
    background-color: #ffffff;
    border-radius: 4px;
  }
  .ant-select-item-option-selected {
    border-radius: 0 !important;
  }
  .ant-select-open > .ant-select-selector {
    border-radius: 4px !important;
  }
  .ant-select-single.ant-select-sm .ant-select-selector .ant-select-selection-item {
    font-size: 12px;
  }
  /* Tabs operations */
  .ant-tabs-nav-operations {
    flex: 1;
  }

  /* antd input */
  input::placeholder {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.025em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--fg-placeholder, #949db8) !important;
  }

  .ant-input::placeholder {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.025em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--fg-placeholder, #949db8) !important;
  }

  .ant-input-outlined.ant-input-disabled,
  .ant-input-number-disabled .ant-input-number-input,
  .ant-picker-outlined.ant-picker-disabled {
    background-color: var(--input-bg-disabled, #f1f3f9);
    border-color: var(--input-stroke-disabled, #cbd1e1);
    color: var(--input-fg-disabled, #475069);
  }

  .ant-input-outlined.ant-input-disabled,
  .ant-picker-outlined.ant-picker-disabled:hover {
    background-color: var(--input-bg-disabled, #f1f3f9) !important;
    border-color: var(--input-stroke-disabled, #cbd1e1) !important;
  }
  .ant-input.ant-input-outlined.ant-input-sm {
    height: 28px;
  }
  /* antd switch */
  .ant-switch {
    background-color: var(--base-bg-color-base-bg-20, #e2e5f0);
  }

  .ant-switch:hover {
    background-color: var(--base-bg-color-base-bg-20, #e2e5f0) !important;
  }

  .ant-switch.ant-switch-checked {
    background-color: var(--primary-bg-color-primary-bg-50, #6366f1);
  }

  .ant-switch.ant-switch-checked:hover:not(.ant-switch-disabled) {
    background-color: var(--primary-bg-color-primary-bg-50, #6366f1) !important;
  }

  .ant-switch-disabled .ant-switch-handle::before {
    background-color: var(--base-bg-color-base-bg-30, #cbd1e1);
  }

  .ant-switch-disabled.ant-switch.ant-switch-checked {
    background-color: var(--base-bg-color-base-bg-20, #e2e5f0);
  }
  /* CarouSell */
  .ant-carousel .slick-prev::after,
  .ant-carousel .slick-next::after {
    display: none !important;
  }
  .slick-list {
    height: 100%;
    border-radius: 8px;
  }

  /* Popover */
  .ant-popover-inner {
    padding: 0;
  }
  /* Date picker */
  .ant-picker:hover {
    border-color: #646e8b;
    background-color: #f1f3f9;
  }
  .ant-picker-outlined:focus-within {
    border-color: #646e8b;
  }

  /* antd button text */
  .ant-btn > span:not(:only-child) {
    align-self: center;
  }
  /* antd date picker */
  .ant-picker-small {
    padding: 4px 7px 4px;
    input {
      font-size: 12px !important;
    }
  }
  .ant-form-item .ant-form-item-label > label.ant-form-item-no-colon::after {
    width: 0;
    margin: 0;
  }

  /* tooltip */
  .ant-tooltip-inner {
    white-space: break-spaces;
    max-height: 400px;
    overflow-y: scroll;
  }

  .ant-typography .ant-typography-edit {
    margin-inline-start: 8px;
  }
  .ant-typography-edit-content {
    margin: 0;
    inset-inline-start: 0;
  }

  .ant-image-preview-root .ant-image-preview-img {
    max-height: unset;
    height: 100%;
    object-fit: contain;
    width: 100%;
  }
}

.add-item {
  animation: shakeUp 0.3s forwards ease-in-out;
}
/* Input type */

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Common style */
.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000b7;
  z-index: 1000;
  animation: fadeIn 0.2s ease-in-out;
}
.app-loader:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1399;
  background-color: #8f8f8f29;
  content: '';
}
.app-loader {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1400;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .fw-mb {
    width: 100%;
  }
  .ant-checkbox {
    .ant-checkbox-inner {
      /* width: 10px;
      height: 10px; */
      /* border-radius: 2px; */
    }
    .ant-checkbox-inner:after {
      /* width: 4px;
      height: 4px;
      border-width: 1px; */
    }
  }
}

@media screen and (max-width: 768px) {
  input,
  textarea,
  select {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  /* Target tất cả các input, textarea của Antd */
  .ant-input,
  .ant-select-selection-item,
  .ant-select-selection-placeholder,
  .ant-input-number-input,
  .ant-picker-input > input {
    font-size: 16px !important;
  }
}

.PNhetTJ94IGW16hiQdAk {
  padding: 10px;
}

.ot3aOfXzCJTE5LVkuJgC {
  background-color: white;
  color: black;
  position: absolute;
  top: 50%;
  left: 0;
  padding: 0 !important;
  transform: translate(0%, -50%);
}

.BmtedUvVHb5hLMBcUgur {
  background-color: white;
  color: black;
  /* border-radius: 10px; */
  padding: 0 !important;
}

.gUvhd9KSMFR4MrGMBB1z {
  display: none;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.025em;
}

.tFDfaF6GG2Lz9csYKHm8 {
  display: block;
  /* font-size: 1.4rem !important; */
}

.KTupIVU2Mxu2ah7W9Afl {
  display: none;
  /* font-size: 0.8rem !important; */
}

.mMZ7Npv54CIqHFrvLq03 {
  font-size: 0.8rem !important;
}
.tAmgNJusS_h4an4Kb0AY {
  padding: 5px 20px;
  background-color: #f9f9f9;
  border-radius: 20px;
}
.cMHiBHMEVObAJynndjVg {
  padding: 0px;
}
@media (min-width: 1200px) {
  .ot3aOfXzCJTE5LVkuJgC {
    display: none;
  }

  .gUvhd9KSMFR4MrGMBB1z {
    display: block;
  }
}

@media (min-width: 992px) {
  .KTupIVU2Mxu2ah7W9Afl {
    display: inline-flex;
  }

  .BmtedUvVHb5hLMBcUgur {
    display: none;
  }
}

@media (min-width: 480px) {
  .PNhetTJ94IGW16hiQdAk {
    padding: 0px 24px;
  }
  .tAmgNJusS_h4an4Kb0AY {
    padding: 15px 40px;
  }
  .cMHiBHMEVObAJynndjVg {
    padding: 15px 20px;
  }
}

.breadcrumb-container {
}
.breadcrumb-container .ant-breadcrumb li:not(.ant-breadcrumb-separator) {
  cursor: pointer;
}

.breadcrumb-container .ant-breadcrumb li:last-child .ant-breadcrumb-link {
  font-weight: 600;
}

.breadcrumb-container .ant-breadcrumb .ant-breadcrumb-separator {
  margin-inline: 0;
}

.breadcrumb-container .ant-breadcrumb ol {
  gap: 8px;
}

.filter-date-range .ant-picker .ant-picker-input {
  /* display: none; */
  width: 0;
  overflow: hidden;
}

.filter-date-range .ant-picker .ant-picker-range-separator {
  display: none;
  width: 0;
}

.filter-date-range .ant-picker .ant-picker-active-bar {
  display: none;
  width: 0;
}

.filter-date-range-dropdown {
  /* width: 182px; */
  margin-top: -28px;
  border: 1px solid var(--base-stroke-color-base-stroke-30, #cbd1e1);
}

.filter-date-range-dropdown .ant-picker-panel .ant-picker-header {
  background: var(--base-bg-color-base-bg-10, #f1f3f9);
  height: 29px;
}

.filter-date-range-dropdown .ant-picker-panel .ant-picker-header-view {
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-date-range-dropdown .ant-picker-panel > *:first-child button.ant-picker-header-next-btn {
  visibility: visible !important;
}

.filter-date-range-dropdown .ant-picker-panel > *:first-child button.ant-picker-header-super-next-btn {
  visibility: visible !important;
}

.filter-date-range-dropdown .ant-picker-panels > *:last-child {
  display: none !important;
}

.filter-date-range-dropdown.ant-picker-dropdown .ant-picker-range-arrow {
  display: none;
}

.filter-date-range-dropdown.ant-picker-dropdown .ant-picker-body {
  margin-top: 28px;
  padding: 8px;
}

.filter-date-range-dropdown.ant-picker-dropdown .ant-picker-footer {
  border-top: none;
}

.filter-date-range-dropdown .ant-picker-month-btn {
  font-weight: 400 !important;
  font-size: 12px !important;
  line-height: 18px !important;
  letter-spacing: -0.025em;
  text-align: center !important;
}

.filter-date-range-dropdown .ant-picker-year-btn {
  font-weight: 400 !important;
  font-size: 12px !important;
  line-height: 18px !important;
  letter-spacing: -0.025em;
  text-align: center !important;
}

.iLcElw1y380AKvMO39YB {
  padding: 8px 16px;
  border-top: 1px solid var(--list-stroke-footer, #cbd1e1);
  background-color: var(--list-bg-footer, #f1f3f9);
  /* border-bottom-right-radius: 8px;
 border-bottom-left-radius: 8px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.YEd0Z8Ymt2Q2OsDPhCIJ {
  cursor: pointer;
  display: flex;
  min-width: 28px;
  padding: 0px 5px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: var(--sm, 4px);
  background: var(--pagination-bg-enabled, #f1f3f9);
  color: var(--pagination-fg-number-enabled, #475069);
  text-align: center;
  /* Button/button-sm */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
  letter-spacing: -0.35px;
}

.YEd0Z8Ymt2Q2OsDPhCIJ:hover {
  background: var(--pagination-bg-hovered, #cbd1e1);
}

.YEd0Z8Ymt2Q2OsDPhCIJ:active {
  background: var(--pagination-bg-pressed, #475069);
  color: var(--pagination-fg-number-pressed, #fff);
}

.YEd0Z8Ymt2Q2OsDPhCIJ svg {
  font-size: 30px;
  stroke-width: 1.33333;
  width: 16px;
  height: 16px;
}

.EtJryy916yXjlFOqLqGp {
  background: #646e8b !important;
  color: var(--pagination-fg-number-pressed, #fff);
}

.S2MpTkYso30LzCqs63ZT {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  min-width: 0;
}

.a0KtBRDbFvazYQu5f915 {
  color: var(--list-fg-label, #646e8b);
  /* Body/body-text-lg */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
  letter-spacing: -0.35px;
}

.dtEbbno84rHACyQer5wg {
  color: var(--list-fg-label, #646e8b);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.025em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.PiMW40NOKGPlrxX7r4Aa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 4px;
  min-width: 0;
  max-width: fit-content;
}

.X79Nx8DL5LpfavA95kDg {
  display: flex;
  align-items: center;
  gap: 4px;
}

.IRVCmKzY2sURrktmauAk {
  position: relative;
  scrollbar-width: none;
  min-width: 0px;
  max-width: fit-content;
  overflow: hidden;
}
.DJSq8Xq9w6gA_M1qrlkE::-webkit-scrollbar {
  display: none;
}

.DJSq8Xq9w6gA_M1qrlkE {
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  align-items: center;
  gap: 4px;
}

.FcC2CzmVnYz3VFIKrCtQ {
  position: absolute;
  top: 0;
  right: -1px;
  width: 23px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(241, 243, 249, 0) 0%, rgba(241, 243, 249, 0.8) 37%, #f1f3f9 100%);
}

.Or5vLMi6XGu9_OltjkXH {
  /* margin-top: 10px; */
  border: 1px solid var(--gray-1);
  background: white;
  overflow-x: auto;
  /* border-radius: 10px; */
  box-shadow: var(--box-shadow);
  font-size: 1rem;
}

.Or5vLMi6XGu9_OltjkXH table {
  width: 100%;
  /* border-collapse: collapse; */
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.Or5vLMi6XGu9_OltjkXH tbody tr:nth-child(odd) {
  background: var(--list-bg-body-odd-enabled, #ffffff);
}

.Or5vLMi6XGu9_OltjkXH tbody tr:nth-child(even) {
  background: var(--list-bg-body-even-enabled, #f8f9fc);
}

.Or5vLMi6XGu9_OltjkXH tbody tr:hover {
  /* background: var(--list-bg-body-hovered, #e2e5f0); */
  background: var(--list-bg-body-hovered, #f1f3f9);
}

.Or5vLMi6XGu9_OltjkXH td {
  /* vertical-align: middle; */
  text-wrap: nowrap;
  padding-inline: 8px;
}

.Or5vLMi6XGu9_OltjkXH tbody tr:focus {
  background-color: var(--list-bg-body-pressed, #e0e7ff);
}

.Or5vLMi6XGu9_OltjkXH tbody tr:active {
  background-color: var(--list-bg-body-pressed, #e0e7ff);
}

.Or5vLMi6XGu9_OltjkXH th {
  color: #646e8b;
  font-weight: 500;
  text-wrap: nowrap;
}

.Or5vLMi6XGu9_OltjkXH thead th {
  position: sticky;
  top: 0;
  border-bottom: 1px solid #cbd1e1;
}

.Or5vLMi6XGu9_OltjkXH tr th:first-of-type {
  padding-left: 16px !important;
}

.Or5vLMi6XGu9_OltjkXH tr th:last-of-type {
  padding-right: 16px !important;
}

.Or5vLMi6XGu9_OltjkXH td:first-of-type {
  padding-left: 16px !important;
}

.Or5vLMi6XGu9_OltjkXH td:last-of-type {
  padding-right: 16px !important;
}

.Nf7jrnQc6KURxtH6oWPX {
  margin: 0px auto;
  width: fit-content;
  padding: 8px;
}

.dzgRq4wLnPOn61ZbvXfs {
  color: var(--gray-scorpion);
  position: relative;
  font-size: 1.1rem;
}

.dzgRq4wLnPOn61ZbvXfs::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  border-radius: 10px;
  height: calc(100% - 10px);
  background-color: #00000073;
}

.dzgRq4wLnPOn61ZbvXfs.pOo7h5V7xe7NcXT397u2::before {
  left: unset;
  margin: auto;
  right: -9px;
}

.PYd0bJh_OiTAeNs95vC_ {
  color: var(--primary-color);
  margin-right: 9px;
  padding-right: 9px;
  font-size: 1.1rem;
  white-space: nowrap;
}

.kFcoFKqFRNQ3DyHv8U6W {
  color: var(--primary-color);
  margin-left: 9px;
  padding-left: 9px;
  font-size: 1.1rem;
}

.bgfVNHE4M1GuR7Ny_pua {
  display: flex;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: flex-end;
}

.E0QJiiXJ_5LYHnq1qzWX {
  border-radius: 6px;
  background-color: #ededed;
  padding: 2px 4px;
  margin-bottom: 16px;
  width: fit-content;
}

.XOtvt96unAG93hxHFh3A {
  position: relative;
  width: fit-content;
  padding: 4px 0;
  border-radius: 5px;
  line-height: 16px;
  color: var(--base-fg-color-base-fg-50, #646e8b);
  cursor: pointer;
  transition: all 0.1s;
}
.XOtvt96unAG93hxHFh3A:hover {
  color: #333c55;
}
.XOtvt96unAG93hxHFh3A:active {
  color: #4338ca;
}
.XOtvt96unAG93hxHFh3A.FOM4EynSVnTkoumryQQZ {
  color: #6366f1;
}
.XOtvt96unAG93hxHFh3A.V0BT7Kb6YaLQh1QpLH0K {
  color: #646e8b;
}
.lDGW7fPwIBy_0y_2RHpV {
  color: inherit;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
  letter-spacing: -0.35px;
}

.rhZmdAkq0Mbi6bClOGkR {
  padding: 0 20px;
  margin-top: 4px;
}
.lD45wbFkq9VG9XHfMj0e {
  transition: all 0.2s;
  font-size: 16px;
}
.LLP507b6sBZYpImKrAck {
  transform: rotate(90deg);
}

/* .node.isChild::before{
  position: absolute;
  content: '';
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--border-strong-color);
}
.node.isChild::after{
  position: absolute;
  content: '';
  left: -32px;
  bottom: 50%;
  width: 2px;
  height: 20px;
  background-color: var(--border-strong-color);
} */

.applied-filter-container::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  transform: translateY(100%);
}

.applied-filter-container:hover .applied-filter-tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.applied-filter-tooltip::before {
  /* content: '';
  position: absolute;
  display: block;
  width: 12px;
  height: 10px;
  background: var(--base-bg-color-base-bg-80, #1e253b);
  border-radius: 3px;
  clip-path: polygon(50% 6%, 92% 88%, 8% 88%);
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%); */
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid #1e253b;
  z-index: 0;
}

.applied-filter-tooltip {
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
  pointer-events: none;
}

.ant-popover .ant-popover-inner {
  padding: 4px;
}

.ant-popover .ant-popover-arrow:before {
  background: #1e253b;
}

.vertical-form-item .ant-form-item-row {
  gap: 8px;
}

.horizontal-form-item .ant-form-item-row {
  gap: 8px;
}

.vertical-form-item .ant-form-item-label {
  padding: 0px !important;
  height: 18px !important;
  line-height: unset;
  display: flex;
  align-items: center;
}

.vertical-form-item .ant-form-item-no-colon {
  height: 18px !important;
  line-height: unset;
}

.RGAAjr75MhBSM160dCh_ {
  border-radius: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.HNdurMCNjoMOuKUTUDun {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid black;
  font-size: 13px;
}

.HNdurMCNjoMOuKUTUDun td {
  border: 1px solid black;
  padding: 10px 12px;
}

.cobCj4mLpd9TEMidu2Tr {
  width: 130px;
}

.PLClIEdEi2F7ebbql1As {
  width: 180px;
}

.ZqnpijrwS7F12LOzBPU0 {
  width: 90px;
}

.Z1ba_n44m26tK5X00cqI {
  text-align: center;
  padding: 28px 12px;
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 700;
}

.DDogOdbUJlLDR_odqSjV {
  border-top: none;
  border-right: 1px solid #93a3d3;
  font-weight: 500;
}

.bwC_WG7qdan7kqgDwo05 {
  border-top: none;
  text-align: right;
  font-weight: 500;
}

.taEWNo4R1awr25Twzk6b {
  font-weight: 600;
  background-color: #f7f8ff;
}

.bJGrPYJAxbtd5P1RMne2 {
  /* background: #f0f3fa; */
  font-weight: 600;
}

.zOwURfA4EPx5iQRGw0ld {
  font-weight: 500;
}

.aNpCe0EdDTNTWYWndkg5 {
  padding: 0;
}

.bFsqCyQNAa3ypabbcLNQ {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
}

.bFsqCyQNAa3ypabbcLNQ td {
  border-left: 1px solid #93a3d3;
  border-right: none;
  border-top: none;
  border-bottom: none;
  background-image: linear-gradient(135deg, transparent 48%, #7c8ec7 50%, transparent 52%);
}

.bFsqCyQNAa3ypabbcLNQ td:first-of-type {
  border-left: none;
}

:root {
  --tab-nav-height: 38px;
}

.common-list-tab-container .ant-tabs-nav {
  height: 32px;
  border-bottom: 1px solid var(--base-stroke-color-base-stroke-20, #e2e5f0);
  user-select: none;
}

.common-list-tab-container .ant-tabs-tabpane {
  height: 100%;
}

.common-list-tab-container .ant-tabs-tab {
  /* width: 142px; */
  justify-content: center;
  position: relative;
}

.common-list-tab-container .ant-tabs-top {
  height: 100%;
}

.common-list-tab-container .ant-tabs-content-holder {
  height: calc(100% - 32px);
  overflow-y: hidden;
  /* border: 1px solid var(--base-stroke-color-base-stroke-20, #e2e5f0); */
  border-top: none;
  /* border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px; */
  flex: none;
}

.common-list-tab-container .ant-tabs-tab.ant-tabs-tab-active {
  font-weight: 600;
}

.common-list-tab-container .ant-tabs-content.ant-tabs-content-top {
  height: 100%;
  overflow-y: auto;
}

/* HOVER */
.common-list-tab-container .ant-tabs-tab:hover:not(.ant-tabs-tab-disabled):not(.ant-tabs-tab-active) {
  color: var(--tab-info-fg-hovered, #475069);
  background-color: var(--tab-info-bg-hovered, #f1f3f9);
}

.common-list-tab-container .ant-tabs-tab:hover:not(.ant-tabs-tab-disabled):not(.ant-tabs-tab-active)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  border-bottom: 1px solid var(--tab-info-stroke-hovered, #cbd1e1);
}

/* PRESSED */
.common-list-tab-container .ant-tabs-tab:focus:not(.ant-tabs-tab-disabled) {
  background-color: var(--tab-info-bg-pressed, #e2e5f0);
  color: var(--tab-info-fg-pressed, #0f162a);
}

.common-list-tab-container .ant-tabs-tab:focus:not(.ant-tabs-tab-disabled):not(.ant-tabs-tab-active)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--tab-info-stroke-pressed, #0f162a);
}

.common-list-tab-container .ant-tabs-tab:active:not(.ant-tabs-tab-disabled) {
  background-color: var(--tab-info-bg-pressed, #e2e5f0);
}

.common-list-tab-container .ant-tabs-tab:active:not(.ant-tabs-tab-disabled) .ant-tabs-tab-btn {
  color: var(--tab-info-fg-pressed, #0f162a);
}

.common-list-tab-container .ant-tabs-tab:active:not(.ant-tabs-tab-disabled):not(.ant-tabs-tab-active)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--tab-info-stroke-pressed, #0f162a);
}

/* Disabled */
.common-list-tab-container .ant-tabs-tab.ant-tabs-tab-disabled {
  cursor: not-allowed;
  color: color-mix(in srgb, var(--tab-info-fg-enabled, #646e8b) 50%, transparent);
  background-color: color-mix(in srgb, var(--tab-info-bg-enabled, #ffffff) 50%, transparent);
  border-color: color-mix(in srgb, var(--tab-info-stroke-enabled, #cbd1e1) 50%, transparent);
}

.common-list-tab-container .ant-tabs-top > .ant-tabs-nav::before {
  border-bottom-width: 0px;
}

:root {
  --tab-nav-height: 38px;
}

.list-tab-container .ant-tabs-nav {
  height: 100%;
  /* border: 1px solid var(--base-stroke-color-base-stroke-20, #e2e5f0); */
  border-bottom: none;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  user-select: none;
  padding-left: 16px;
}
.list-tab-container .ant-tabs-tab {
  width: 142px;
  justify-content: center;
  position: relative;
}

.list-tab-container .ant-tabs-top {
  height: 100%;
}

.list-tab-container .ant-tabs-content-holder {
  max-height: calc(100% - var(--tab-nav-height));
  overflow-y: hidden;
  border: 1px solid var(--base-stroke-color-base-stroke-20, #e2e5f0);
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  flex: none;
}

.list-tab-container .ant-tabs-tab.ant-tabs-tab-active {
  font-weight: 600;
}

.list-tab-container .ant-tabs-content.ant-tabs-content-top {
  height: 100%;
  overflow-y: auto;
}

/* HOVER */
.list-tab-container .ant-tabs-tab:hover:not(.ant-tabs-tab-disabled):not(.ant-tabs-tab-active) {
  color: var(--tab-info-fg-hovered, #475069);
  background-color: var(--tab-info-bg-hovered, #f1f3f9);
}

.list-tab-container .ant-tabs-tab:hover:not(.ant-tabs-tab-disabled):not(.ant-tabs-tab-active)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* height: 1px;
    background-color: ; */
  border-bottom: 1px solid var(--tab-info-stroke-hovered, #cbd1e1);
}

/* PRESSED */
.list-tab-container .ant-tabs-tab:focus:not(.ant-tabs-tab-disabled) {
  background-color: var(--tab-info-bg-pressed, #e2e5f0);
  color: var(--tab-info-fg-pressed, #0f162a);
}

.list-tab-container .ant-tabs-tab:focus:not(.ant-tabs-tab-disabled):not(.ant-tabs-tab-active)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--tab-info-stroke-pressed, #0f162a);
}

.list-tab-container .ant-tabs-tab:active:not(.ant-tabs-tab-disabled) {
  background-color: var(--tab-info-bg-pressed, #e2e5f0);
}

.list-tab-container .ant-tabs-tab:active:not(.ant-tabs-tab-disabled) .ant-tabs-tab-btn {
  color: var(--tab-info-fg-pressed, #0f162a);
}

.list-tab-container .ant-tabs-tab:active:not(.ant-tabs-tab-disabled):not(.ant-tabs-tab-active)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--tab-info-stroke-pressed, #0f162a);
}

/* Disabled */
.list-tab-container .ant-tabs-tab.ant-tabs-tab-disabled {
  cursor: not-allowed;
  color: color-mix(in srgb, var(--tab-info-fg-enabled, #646e8b) 50%, transparent);
  background-color: color-mix(in srgb, var(--tab-info-bg-enabled, #ffffff) 50%, transparent);
  border-color: color-mix(in srgb, var(--tab-info-stroke-enabled, #cbd1e1) 50%, transparent);
}

.list-tab-container .ant-tabs-top > .ant-tabs-nav::before {
  border-bottom-width: 0px;
}

table.OQgG8Pse8XWuR3bq19Vj  {
  width: 100%;
  /* text-align: center; */
  border-collapse: collapse;
  table-layout: fixed;
  border-radius: var(--radius-radius-list, 8px) var(--radius-radius-list, 8px) 0px 0px;
  overflow: hidden;
}
.OQgG8Pse8XWuR3bq19Vj thead {
  border-bottom: 1px solid var(--list-stroke-header, #CBD1E1);
  background: var(--list-bg-header, #F1F3F9);
}

.OQgG8Pse8XWuR3bq19Vj tbody tr:nth-child(odd) {
  background: var(--list-bg-body-odd-enabled, #ffffff);
}

.OQgG8Pse8XWuR3bq19Vj tbody tr:nth-child(even) {
  background: var(--list-bg-body-even-enabled, #f8f9fc);
}

.OQgG8Pse8XWuR3bq19Vj tbody tr:hover {
  /* background: var(--list-bg-body-hovered, #e2e5f0); */
  background: var(--list-bg-body-hovered, #f1f3f9);
}

.OQgG8Pse8XWuR3bq19Vj td {
  /* vertical-align: middle; */
  text-wrap: nowrap;
  padding-inline: 8px;
  height: 28px;
  color: #333C55;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 133.333% */
  letter-spacing: -0.3px;
}

.OQgG8Pse8XWuR3bq19Vj tbody tr:focus {
  background-color: var(--list-bg-body-pressed, #e0e7ff);
}

.OQgG8Pse8XWuR3bq19Vj tbody tr:active {
  background-color: var(--list-bg-body-pressed, #e0e7ff);
}

.OQgG8Pse8XWuR3bq19Vj th {
  color: #646E8B;
  font-weight: 500;
  text-wrap: nowrap;
  padding: 8px;
  text-align: start;
}

.OQgG8Pse8XWuR3bq19Vj th:first-of-type {
  padding-left: 16px !important;
}

.OQgG8Pse8XWuR3bq19Vj th:last-of-type {
  padding-right: 16px !important;
}

.OQgG8Pse8XWuR3bq19Vj td:first-of-type {
  padding-left: 16px !important;
}

.OQgG8Pse8XWuR3bq19Vj td:last-of-type {
  padding-right: 16px !important;
}

.header-tab-container .ant-tabs-nav-wrap {
}

.header-tab-container .ant-tabs-tab-btn {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header-tab-container .ant-tabs-nav-wrap {
}

.header-tab-container .ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-wrap::before {
  box-shadow: none;
}

.header-tab-container .ant-tabs-nav-list {
  gap: 8px;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 20px;
  padding-right: 20px;
}

.header-tab-container .ant-tabs-nav-operations {
  display: none !important;
}

.header-tab-container .ant-tabs-tab {
  height: 100%;
  width: 100%;
  border: 1px solid var(--tab-screen-stroke-enabled, #cbd1e1);
  border-radius: 4px !important;
}

.header-tab-container .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
}

.header-tab-container .ant-tabs-tab-btn {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
}

.header-tab-container .ant-tabs-tab.ant-tabs-tab-active {
  border: 1px solid var(--tab-screen-stroke-enabled, #6366f1) !important;
}

.header-tab-container .ant-tabs-tab-active {
  background: var(--tab-screen-bg-selected, #e0e7ff) !important;
}

.header-tab-container .ant-tabs-tab-remove {
  color: var(--tab-screen-fg-enabled, #646e8b);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.header-tab-container .ant-tabs-tab-active > .ant-tabs-tab-remove {
  color: var(--tab-screen-fg-selected, #6366f1) !important;
}

.header-tab-container .ant-tabs-tab:hover:not(.ant-tabs-tab-disabled) {
  background: var(--tab-screen-bg-hovered, #e2e5f0);
  border: 1px solid var(--tab-screen-stroke-hovered, #646e8b);
}

.header-tab-container .ant-tabs-tab:hover:not(.ant-tabs-tab-disabled) > .ant-tabs-tab-remove {
  color: var(--tab-screen-fg-hovered, #333c55);
}

.header-tab-container .ant-tabs-tab:focus:not(.ant-tabs-tab-disabled) {
  color: var(--button-secondary-fg-pressed, #4338ca);
  background: var(--button-secondary-bg-pressed, #e0e7ff);
  border: 1px solid var(--button-secondary-stroke-pressed, #4338ca);
}

.header-tab-container .ant-tabs-tab:focus:not(.ant-tabs-tab-disabled) > .ant-tabs-tab-remove {
  color: var(--button-secondary-fg-pressed, #4338ca);
}

.header-tab-container .ant-tabs-tab:active:not(.ant-tabs-tab-disabled) {
  color: var(--button-secondary-fg-pressed, #4338ca);
  background: var(--button-secondary-bg-pressed, #e0e7ff);
  border: 1px solid var(--button-secondary-stroke-pressed, #4338ca);
}

.header-tab-container .ant-tabs-tab:active:not(.ant-tabs-tab-disabled) > .ant-tabs-tab-remove {
  color: var(--button-secondary-fg-pressed, #4338ca);
}

.header-tab-container .ant-tabs-tab:hover:not(.ant-tabs-tab-disabled) .ant-tabs-tab-btn {
}

/* ant-tabs-tab-disabled */
.header-tab-container .ant-tabs-tab.ant-tabs-tab-disabled {
  cursor: not-allowed;
  color: color-mix(in srgb, var(--tab-screen-fg-enabled, #646e8b) 50%, transparent);
  background-color: color-mix(in srgb, var(--tab-screen-bg-enabled, #ffffff) 50%, transparent);
  border-color: color-mix(in srgb, var(--tab-screen-stroke-enabled, #cbd1e1) 50%, transparent);
}

/* color-mix(in srgb, var(--tab-screen-fg-enabled, #646e8b) 50%, transparent) */

.LeftBar.ant-menu-dark .ant-menu-submenu > .ant-menu-submenu-title,
.LeftBar.ant-menu-dark > .ant-menu-item {
  width: 164px;
  height: 44px;
  margin: 6px auto;
  border-radius: 4px;
  color: white;
  padding-left: 16px !important;
}

.LeftBar.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title {
  background-color: #6366f1;
}
.LeftBar.ant-menu-dark .ant-menu-submenu > .ant-menu-sub .ant-menu-item.ant-menu-item-only-child {
  width: 164px;
  height: 40px;
  margin: 4px auto;
  border-radius: 4px;
  padding-left: 28px !important;
  color: #cbd1e1;
  font-size: 14px;
  display: list-item;
  .ant-menu-title-content {
    margin-left: -6px;
  }
}

.LeftBar.ant-menu-dark .ant-menu-submenu > .ant-menu-sub .ant-menu-item.ant-menu-item-only-child:hover,
.LeftBar.ant-menu-dark .ant-menu-submenu:not(.ant-menu-submenu-selected) > .ant-menu-submenu-title:hover,
.LeftBar.ant-menu-dark > .ant-menu-item:not(.ant-menu-item-selected):hover {
  background-color: #475069;
}

.LeftBar.ant-menu-dark .ant-menu-submenu > .ant-menu-sub .ant-menu-item.ant-menu-item-only-child:active,
.LeftBar.ant-menu-dark .ant-menu-submenu:not(.ant-menu-submenu-selected) > .ant-menu-submenu-title:active,
.LeftBar.ant-menu-dark > .ant-menu-item:not(.ant-menu-item-selected):active {
  background-color: #333c55;
}
.LeftBar.ant-menu-dark .ant-menu-submenu > .ant-menu-sub .ant-menu-item.ant-menu-item-only-child:active {
  color: #949db8;
}
.LeftBar.ant-menu-dark .ant-menu-submenu > .ant-menu-sub .ant-menu-item-selected.ant-menu-item.ant-menu-item-only-child {
  background-color: #646e8b;
  color: white;
}
.LeftBar.ant-menu-dark.ant-menu-inline-collapsed > .ant-menu-item .ant-menu-item-icon + span,
.LeftBar.ant-menu-dark.ant-menu-inline-collapsed
  > .ant-menu-item-group
  > .ant-menu-item-group-list
  > .ant-menu-item
  .ant-menu-item-icon
  + span,
.LeftBar.ant-menu-dark.ant-menu-inline-collapsed
  > .ant-menu-item-group
  > .ant-menu-item-group-list
  > .ant-menu-submenu
  > .ant-menu-submenu-title
  .ant-menu-item-icon
  + span,
.LeftBar.ant-menu-dark.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-item-icon + span,
.LeftBar.ant-menu-dark.ant-menu-inline-collapsed > .ant-menu-item .anticon + span,
.LeftBar.ant-menu-dark.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .anticon + span,
.LeftBar.ant-menu-dark.ant-menu-inline-collapsed
  > .ant-menu-item-group
  > .ant-menu-item-group-list
  > .ant-menu-submenu
  > .ant-menu-submenu-title
  .anticon
  + span,
.LeftBar.ant-menu-dark.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .anticon + span {
  opacity: 1;
}

.menu-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.menu-item.menu-item-1 span {
  color: var(--side-navigation-bar-1depth-fg, #ffffff);
}

.menu-item.menu-item-2 span {
  color: var(--side-navigation-bar-2depth-fg-enabled, #cbd1e1);
}

.menu-item.menu-item-3 span {
  color: var(--side-navigation-bar-3depth-fg-enabled, #cbd1e1);
}

.menu-item.menu-item-1 .item-dotty {
  background: var(--side-navigation-bar-1depth-fg, #ffffff);
  flex-shrink: 0;
}

.menu-item.menu-item-2 .item-dotty {
  background: var(--side-navigation-bar-2depth-fg-enabled, #cbd1e1);
  flex-shrink: 0;
}

.menu-item.menu-item-3 .item-dotty {
  background: var(--side-navigation-bar-3depth-fg-enabled, #cbd1e1);
  flex-shrink: 0;
}

.menu-item-1:hover {
  background: var(--side-navigation-bar-1depth-bg-hovered, #475069);
}

.menu-item-2:hover {
  background: var(--side-navigation-bar-2depth-bg-hovered, #475069);
}

.menu-item-3:hover {
  background: var(--side-navigation-bar-3depth-bg-hovered, #475069);
}

.menu-item-1.selected {
  background: var(--side-navigation-bar-1depth-bg-selected, #6366f1);
}

.menu-item-2.selected {
  background: var(--side-navigation-bar-2depth-bg-selected, #646e8b);
}

.menu-item-3.selected {
  background: var(--side-navigation-bar-3depth-bg-selected, #333c55);
}

.menu-item.menu-item-1.selected span {
  color: var(--side-navigation-bar-3depth-fg-selected, #ffffff);
}

.menu-item.menu-item-2.selected span {
  color: var(--side-navigation-bar-3depth-fg-selected, #ffffff);
}

.menu-item.menu-item-3.selected span {
  color: var(--side-navigation-bar-3depth-fg-selected, #ffffff);
}

.menu-item.menu-item-1.selected .item-dotty {
  background: var(--side-navigation-bar-3depth-fg-selected, #ffffff);
}

.menu-item.menu-item-2.selected .item-dotty {
  background: var(--side-navigation-bar-3depth-fg-selected, #ffffff);
}

.menu-item.menu-item-3.selected .item-dotty {
  background: var(--side-navigation-bar-3depth-fg-selected, #ffffff);
}

.menu-item-1:active {
  background: var(--side-navigation-bar-1depth-bg-pressed, #333c55);
}

.menu-item-2:active {
  background: var(--side-navigation-bar-2depth-bg-pressed, #333c55);
}

.menu-item-3:active {
  background: var(--side-navigation-bar-3depth-bg-pressed, #333c55);
}

html body .Q5inn__fScP5XRzsLEXT {
  padding: 12px 0px;
  position: fixed;
  background-color: var(--base-bg-color-base-bg-80, #1e253b);
}
.p_lZxScZDLEqztkEKkPR {
  color: #5c5c5c;
  font-size: 12px;
  padding: 4px;
  width: 100%;
  text-align: center;
}
.p_lZxScZDLEqztkEKkPR.pvM_D6PVvBzJFAr55SAl {
  color: #000;
  background-color: #ececec;
  border-radius: 6px;
}
.VPy4QW3lFgB9PXkRGp08 {
  position: relative;
  margin-top: 15px;
  margin-left: 8px;
  margin-right: 8px;
  padding-left: 8px;
}
.VPy4QW3lFgB9PXkRGp08::before {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 82%;
  width: 2px;
  border-radius: 10px;
  background-color: #ececec;
}

.dw8EZgUcqlAsmcsKUIXs {
  margin:auto auto;
  border-right:1px solid rgba(128, 128, 128, 0.281);
  width:99%
}

.hZ7M1me3JFCn0y818jlj {
  width: 100%;
  padding-left: 15px;
  color: var(--gray-carbon);
}

.bV8sW8ToL8XfGfwHBnGV {
  background-color: var(--white-dawn);
  border-right: 2px solid var(--primary-color);
}
html .Q5inn__fScP5XRzsLEXT::-webkit-scrollbar-thumb{
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.182);
}
html .Q5inn__fScP5XRzsLEXT::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: rgba(28, 28, 28, 0.144);
}
/* title */
.title-xl {
  font-size: 20px;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -0.025em;
}

.title-lg {
  font-size: 18px;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -0.025em;
}

.title-md {
  font-size: 16px;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -0.025em;
}

.title-sm {
  font-size: 14px;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -0.025em;
}

.title-xs {
  font-size: 12px;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -0.025em;
}

.title-xxs {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.025em;
}

/* body */
.body-text-lg {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.025em;
}

.body-text-sm {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.025em;
}

.body-value-lbl {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.025em;
}

.body-value-val {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.025em;
}

.body-data-val {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.025em;
}

.body-data-lbl {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.025em;
}

/* caption */
.caption {
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: -0.025em;
}

/* Button */
.button-lg {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.025em;
}

.button-md {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.025em;
}

.button-sm {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.025em;
}

.button-xs {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.025em;
}

.body-text-lg {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.025em;
}

