.kat__alert {
  z-index: 9999999  !important;
}
.daterangepicker{
  top: 100px !important;
}
.input-option-round.default {
  padding: 8px 12px;
  border-radius: 100px;
  border: none;
  outline: none;
}
.input-option-round.default {
  border: 1px solid #c2c2c2;
}
.input-option-round.default:focus {
  border: 1px solid #757575;
}
.input-option-round.primary {
  border: 1px solid #f8bac8;
}

.input-option-round.focus {
  border: 1px solid #ff97af;
}

@media (min-width: 375px) and (max-width: 1023px) {
  p,
  span,
  input,
  a,
  li,
  label {
    font-size: 14px;
  }
}
input {
  border-radius: 0px;
}
button {
  color: var(--Neutral-100);
}
body {
  margin: 0;
  padding: 0;

  --katui-text-primary: #eb2f59;
  --katui-text-neutral-90: #404040;
  --Background-Primary: #fbfbfb;
  --Secondary-Main: #f4d24c;
  --Neutral-30: #ededed;
  --Neutral-05: #c2c2c2;
  --Neutral-06: #9e9e9e;
  --Neutral-07: #757575;
  --Neutral-08: #616161;
  --Neutral-09: #404040;
  --Neutral-10: #0a0a0a;
  --Neutral-100: #0a0a0a;
  --Accent-Succes-Main: #43936c;
  --Accent-Succes-Surface: #d9e9e2;
  --Extended-Light-Green-Main: #d7f5d9;
  --Success-Border: #b8dbca;
  --Accent-Error-Main: #cb3a31;
  --Base-White: #fff;
  --second-Base-White: #f7f7f7;
  --primary-border: #f8bac8;
  --secondary-border: #fdeaee;
  --Primary-Surface: #fdeaee;
  --Secondary-Surface: #fdf6db;
  --Danger-Surface: #fff4f2;
  --Danger-Border: #eeb4b0;
  --Warning-Border: #eeceb0;
  --Warning-Surface: #fff9f2;
  --warning-text: #a7570c;
  --montserrat: "Montserrat", sans-serif;

  /* success */
  --success-border: #b8dbca;
  --success-focused: #43936c20;
  --success-hover: #367a59;
  --success: #43936c;
  --success-pressed: #20573d;
  --success-surface: #d9e9e2;

  /* info */
  --info-border: #b1c5f6;
  --info-focused: #3267e320;
  --info-hover: #2a56bd;
  --info: #3267e3;
  --info-pressed: #193472;
  --info-surface: #d6e1f9;

  /* warning */
  --warning-border: #eeceb0;
  --warning-focused: #cd7b2e20;
  --warning-hover: #bf6919;
  --warning: #cd7b2e;
  --warning-pressed: #734011;
  --warning-surface: #fff9f2;

  /* Danger */
  --danger-border: #eeb4b0;
  --danger-focused: #f9394c20;
  --danger-hover: #bd251c;
  --danger: #cb3a31;
  --danger-pressed: #731912;
  --danger-surface: #f5d8d6;

  /* info */
  --info-border-rgb: 177, 197, 246;
  --info-hover-rgb: 42, 86, 189;
  --info-rgb: 50, 103, 227;
  --info-pressed-rgb: 25, 52, 114;
  --info-surface-rgb: 214, 225, 249;

  /* warning */
  --warning-border-rgb: 238, 206, 176;
  --warning-hover-rgb: 191, 105, 25;
  --warning-rgb: 205, 123, 46;
  --warning-pressed-rgb: 115, 64, 17;
  --warning-surface-rgb: 255, 249, 242;

  /* Danger */
  --danger-border-rgb: 238, 180, 176;
  --danger-hover-rgb: 189, 37, 28;
  --danger-rgb: 203, 58, 49;
  --danger-pressed-rgb: 115, 25, 18;
  --danger-surface-rgb: 245, 216, 214;

  /* success */
  --success-border-rgb: 184, 219, 202;
  --success-hover-rgb: 54, 122, 89;
  --success-rgb: 67, 147, 108;
  --success-pressed-rgb: 32, 87, 61;
  --success-surface-rgb: 217, 233, 226;
}

p,
span,
h1,
h2,
h3,
h3,
h5,
h6,
input,
label,
button,
li {
  font-family: var(--montserrat);
}
/* 
    Animation
*/
.katui-fadeIn {
  animation: fadeIn 0.3s ease-out;
}

.katui-fadeOut {
  animation: fadeOut 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-10%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(10%);
  }
}

.katui-dash-container {
  display: flex;
  width: 100%;
  position: relative;
  height: 100vh;
}

.katui-sidebar {
  border-right: 1px solid var(--Neutral-30, #ededed);
  background: #fff;
  width: 25%;
  position: fixed;
  height: 100vh;
}

.profile-card {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  width: -webkit-fill-available;
}

.profile-img-wrapper {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
}

.profile-img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.sidebar-divider {
  width: 100%;
  display: flex;
  justify-content: center;
}

.line {
  width: 90%;
  border-top: 0.5px solid #d9d9d9;
}

.katui-sidemenu-card {
  padding: 24px;
  position: relative;
  width: -webkit-fill-available;
}

.katui-sidemenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.katui-menu {
  appearance: none;
  padding: 16px 0px;
}

.katui-menu-btn:hover {
  color: var(--katui-text-primary);
}

.katui-menu-btn.active {
  color: var(--katui-text-primary);
}

.katui-menu-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--katui-text-neutral-90);
  font-family: sans-serif;
}

.katui-menu-btn i {
  font-size: 24px;
}
.katui-menu-btn span {
  font-size: 12px;
}

/* KATUI DASH CONTENT */

.katui-content-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: -webkit-fill-available;
  position: relative;
}
.katui-content-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
  overflow-y: auto;
  padding-right: 10px;
  padding-bottom: 80px;
}

.katui-content-body::-webkit-scrollbar,
.canvas-scrollbar::-webkit-scrollbar,
.financial-card-body.on-scroll::-webkit-scrollbar {
  width: 4px;
  padding: 10px;
}

.katui-content-body::-webkit-scrollbar-track,
.canvas-scrollbar::-webkit-scrollbar-track,
.financial-card-body.on-scroll::-webkit-scrollbar-track {
  background-color: transparent;
  padding: 20px;
}
/* 
 {
  background-color: var(--primary-border);
  border-radius: 10px;
} */

.canvas-scrollbar::-webkit-scrollbar-thumb,
.financial-card-body.on-scroll::-webkit-scrollbar-thumb,
.katui-content-body::-webkit-scrollbar-thumb {
  background-color: var(--katui-text-primary);
  border-radius: 10px;
}

.katui-dash-content {
  border-left: 1px solid var(--Neutral-30);
  background: var(--Background-Primary);
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.date-filter-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  padding: 0px 16px;
}

.date-filter-bar {
  display: flex;
  flex-direction: row;
  gap: 12px;
  list-style: none;
  position: relative;
  width: 100%;
}

.date-filter-toolbar.active {
  border-radius: 100px;
  border: 1px solid var(--Neutral-100);
  background: var(--Secondary-Main);
  font-weight: 600;
}
.date-filter-toolbar {
  padding: 8px 12px;
  font-weight: 500;
}
.date-filter-toolbar a {
  text-decoration: none;
  color: var(--Neutral-100);
  font-family: var(--montserrat);
}
.inner-section-detail-wrapper {
  width: 100%;
}
.katui-card-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
  font-size: 24px;
  width: -webkit-fill-available;
}

.katui-dark-button {
  width: 160px;
  border-radius: 100px;
  border: none;
  background: var(--Neutral-100);
  color: var(--Base-White);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
  padding: 12px;
}

.katui-dark-button:hover {
  background: var(--Neutral-09);
}

.katui-regular-card-inline {
  padding: 16px;
  border-radius: 12px;
  background: var(--Base-White, #fff);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.1);
  width: -webkit-fill-available;
  display: inline-flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.regular-card-img-wrap .icon-wrap {
  width: 50px;
  height: 50px;
}

.regular-card-img {
  width: 100%;
}

.regular-card-textwrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.regular-card-title {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.regular-card-content {
  font-size: 24px;
  font-weight: 600;
}

.regular-card-btnwrap {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
}

.financial-recap-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.financail-detail-card {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--Neutral-200, #e3e8ef);
  background: var(--Base-White, #fff);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: fit-content;
}

/* .financail-detail-card.custom-height{
    height: 420px;
} */
.financial-detail-card-header {
  display: flex;
  flex-direction: row;
  position: relative;
  justify-content: space-between;
}

.detail-card-title {
  color: var(--Neutral-100);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}

.detail-goto-link {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 4px;
  color: var(--Primary-Main, #eb2f59);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}

.financial-card-body {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-direction: column;
}
.financial-card-body.on-scroll {
  height: fit-content;
  max-height: 280px;
  overflow: auto;
  padding-right: 8px;
}

.financial-card-body.on-scroll .financial-recap-wrapper {
  gap: 16px;
}
.finacial-recap-inner .line {
  width: 100%;
}

.inner-income-section .caption,
.inner-income-section .amount-balance {
  color: var(--Accent-Succes-Main);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.financial-recap-date {
  color: var(--Neutral-08);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.inner-outcome-section {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.inner-outcome-section .caption,
.inner-outcome-section .amount-balance {
  color: var(--Accent-Error-Main, #cb3a31);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

.finacial-recap-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inner-income-section {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  justify-content: space-between;
}
.inner-details-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.inner-section-balance {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}
.inner-section-img-wrapper {
  width: 42px;
  height: 42px;
  background: var(--Background-Primary, #fbfbfb);
  border-radius: 100%;
  padding: 8px;
}

.inner-section-img-wrapper img {
  width: 100%;
}

.financial-widget-wrapper {
  width: 100%;
  padding: 24px;
}

.financail-detail-card .username {
  color: var(--Neutral-10);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.financail-detail-card .phone-number {
  color: var(--Neutral-09);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  appearance: none;
  text-decoration: none;
}

.financail-detail-card .bank-detail {
  color: var(--Neutral-09, #404040);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  display: flex;
  align-items: center;
  flex-direction: row;
}

.widget-card-container {
  width: 100%;
  gap: 24px;
  display: flex;
  flex-direction: column;
}
.dashboard-financial-wrapper {
  display: flex;
  gap: 24px;
  width: 100%;
  position: relative;
}
.inline-widget-detail-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 24px;
  height: fit-content;
}
.katui-regular-card-column {
  border-radius: 12px;
  background: var(--Base-White);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.1);
  padding: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: fit-content;
}
.card-column-label {
  color: var(--Neutral-09);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.card-column-info {
  color: var(--Neutral-10);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.chart-card-container {
  height: 640px;
  /* max-height: 600px; */
  position: relative;
  width: 100%;
  height: 100%;
}

#financial-chart {
  min-height: 420px;
  max-height: 560px;
  height: 100%;
  width: 100%;
}
.canvas-scrollbar-wrapper {
  border-radius: 16px;
  border: 1px solid var(--Neutral-200, #e3e8ef);
  background: var(--Base-White, #fff);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.katui-primary-outline {
  border-radius: 100px;
  border: 1px solid var(--primary-border);
  background: var(--Base-White);
  font-size: 16px;
  padding: 12px;
  color: var(--katui-text-primary);
  font-family: var(--montserrat);
  cursor: pointer;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.katui-primary-outline:hover {
  background-color: var(--katui-text-primary);
  border: 1px solid transparent;
  color: var(--Base-White);
}

.katui-block-form-wrapper {
  display: flex;
  gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.katui-block-form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.katui-block-form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: row;
}

.block-form-checkbox {
  border: 1px solid var(--Neutral-06);
  border-radius: 4px;
  width: 20px;
  height: 20px;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  outline: none;
  flex-shrink: 0;
}

.block-form-checkbox:checked {
  background-color: var(--katui-text-primary);
  color: var(--Base-White);
  border: none;
}

.block-form-checkbox:checked::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%23fff' viewBox='0 0 256 256'%3E%3Cpath d='M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.katui-block-form-label {
  color: var(--Neutral-09);
  font-family: var(--montserrat);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.block-form-input {
  padding: 12px 16px;
  width: -webkit-fill-available; /* For Safari/Chrome */
  width: fill-available; /* Standard property */
  color: var(--Neutral-09);
  font-family: var(--montserrat);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  /* line-height: 24px; */
  border-radius: 6px;
  border: 1px solid var(--Neutral-05);
  background: var(--Base-White, #fff);
}

.katui-primary-fill {
  border-radius: 100px;
  border: 1px solid var(--Neutral-100);
  background: var(--katui-text-primary);
  padding: 16px 24px;
  margin: 0px auto;
  margin-right: 0px;
  color: var(--Base-White);
  font-family: var(--montserrat);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.katui-primary-fill:hover {
  border: 1px solid transparent !important;
  background-color: var(--primary-border);
  border: none;
}

.katui-secondary-fill {
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 25px;
  background: var(--secondary-border);
  color: var(--katui-text-primary);
  font-family: var(--montserrat);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}
.en-settings-content,
.bi-settings-content,
.sospro-settings-content,
.password-settings-content,
.general-settings-content {
  display: none;
}

.card-coloum-icon-wrapper {
  padding: 8px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-coloum-icon-wrapper img {
  width: 100%;
}
.inline-widget-detail-wrapper:nth-child(1) .katui-regular-card-column:nth-child(1) .card-coloum-icon-wrapper {
  background-color: #f3f1e4;
}

.inline-widget-detail-wrapper:nth-child(1) .katui-regular-card-column:nth-child(2) .card-coloum-icon-wrapper {
  background-color: #f2d1d8;
}

.inline-widget-detail-wrapper:nth-child(2) .katui-regular-card-column:nth-child(1) .card-coloum-icon-wrapper {
  background-color: #ccddde;
}

.inline-widget-detail-wrapper:nth-child(2) .katui-regular-card-column:nth-child(2) .card-coloum-icon-wrapper {
  background-color: #d7f5d9;
}

.onsearch-card {
  border-radius: 12px;
  border: 1px solid var(--Neutral-200, #e3e8ef);
  background: var(--Base-White, #fff);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.1);
  display: flex;
  padding: 24px;
  flex-direction: column;
  gap: 24px;
}
.onsearch-card-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  position: relative;
}

.onsearch-filter-wrapper {
  display: flex;
  width: 100%;
  position: relative;
  gap: 8px;
  align-items: center;
}
.onsearch-input-wrapper {
  width: 100%;
  position: relative;
}

.onsearch-input {
  width: -webkit-fill-available;
  padding: 12px 16px;
  border: 1px solid grey;
  border-radius: 100px;
}
.onsearch-button-wrapper {
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 8px;
}

.onsearch-btn {
  padding: 12px;
  border-radius: 100%;
  border: none;
  background: #000;
  color: #fff;
  font-size: 16px;
  height: 40px;
  width: 40px;
}

.username-text {
  color: var(--Neutral-100);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: calc(60px * 3);
}

.chart-description-wrapper {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.card-description-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.card-description-card:last-of-type .dot {
  padding: 6px;
  border-radius: 100%;
  background: var(--primary-border);
}

.card-description-card:first-of-type .dot {
  padding: 6px;
  border-radius: 100%;
  background: var(--Primary-Surface);
}

.chart-description-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chart-description-content .decsription-title {
  color: var(--Neutral-09);
  font-size: 14px;
  font-weight: 400;
}

.chart-description-content .description-amount {
  color: var(--Neutral-100);
  font-size: 16px;
  font-weight: 500;
}

.search-container {
  display: flex;
  padding: 8px 12px;
  border: 1px solid var(--Neutral-05);
  border-radius: 100px;
  font-size: 14px;
  color: var(--Neutral-06);
  width: 100%;
}

.search-input {
  border: none;
  outline: none;
  width: 100%;
}

.search-button {
  border: none;
  background: none;
  cursor: pointer;
}

.search-button i {
  font-size: 14px;
  color: var(--Neutral-06);
}
.financial-filter-wrapper {
  display: flex;
  width: 100%;
  flex-direction: row;
  gap: 8px;
}
.filter-button-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 330px;
  gap: 8px;
}

.financial-report-wrapper {
  display: flex;
  gap: 24px;
  flex-direction: row;
  width: -webkit-fill-available;
  position: relative;
}

.financial-right-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  width: -webkit-fill-available;
}

.katui-input-botline-form {
  padding: 12px 8px;
  border: none;
  border-radius: none;
  outline: none;
  border-bottom: 1px solid var(--Neutral-05);
  font-size: 16px;
}

.katui-input-botline-label {
  color: var(--Neutral-09);
  font-size: 16px;
  font-weight: 500;
}

.katui-input-botline-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: -webkit-fill-available;
}

.katui-image-input-wrapper {
  width: 120px;
  height: 120px;
  border: 1px dashed var(--katui-text-primary);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--Base-White);
}

.katui-img-input-trigger {
  width: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  outline: none;
  border: none;
  background: none;
  gap: 12px;
}

.katui-img-input-trigger i {
  font-size: 24px;
  color: var(--katui-text-primary);
  font-weight: 600;
}

.katui-img-input-trigger span {
  font-size: 12px;
  color: var(--Neutral-08);
}
.katui-input-botline-form::placeholder,
.katui-input-botline-form::-ms-input-placeholder {
  color: var(--Neutral-05);
}
.daterangepicker.opensleft:after,
.daterangepicker.opensleft:before {
  display: none;
}
.daterangepicker {
  border-radius: 8px !important;
  font-family: var(--montserrat) !important;
}

.date-filter-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  border-radius: unset !important;
  background-color: var(--katui-text-primary) !important;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
  border-radius: unset !important;
  background: var(--primary-border) !important;
  color: var(--Base-White) !important;
}
.drp-selected {
  display: none !important;
}

.drp-buttons {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-end !important;
}
.drp-buttons .katui-primary-fill,
.drp-buttons .katui-primary-outline {
  font-weight: 500 !important;
}
.primary-date-range {
  color: var(--katui-text-primary);
}

.withdraw-history-wrapper {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #d9d9d9;
  padding: 16px 0px 16px 0px;
  gap: 12px;
  width: 100%;
}

.withdraw-date-name-wrapper,
.withdraw-bankinfo-wrapper,
.withdraw-approvement {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.withdraw-date-name-wrapper {
  max-width: 240px;
}
.withdraw-approvement {
  border-radius: 100px;
  padding: 8px 12px;
  font-size: 14px;
  width: 140px;
  text-align: center;
}

.withdraw-approvement.confirm {
  background: var(--second-Base-White);
  color: var(--Accent-Succes-Main);
  border: 1px solid var(--Success-Border);
}

.withdraw-approvement.cancel {
  background: var(--Danger-Surface);
  color: var(--Accent-Error-Main);
  border: 1px solid var(--Danger-Border);
}
.withdraw-approvement.pending {
  background: var(--Warning-Surface);
  color: var(--warning-text);
  border: 1px solid var(--Warning-Border);
}
.withdraw-name,
.bank-name {
  color: var(--Neutral-100);
  font-size: 16px;
  font-weight: 500;
}

.withdraw-date,
.bank-credential {
  font-size: 14px;
  font-weight: 500;
  color: var(--Neutral-08);
}

.history-filter-body {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 12px;
}
.customer-sudo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
/* ========================================
        ALERT!!
======================================== */

.kat__alert {
  position: fixed;
  z-index: 999;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}
.kat__alert.show {
  opacity: 1;
}

.kat__alert-dialog {
  max-width: 720px;
  min-width: 360px;
  border-radius: 8px;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--neutral-10);
  background-color: var(--neutral-10);
  overflow: hidden;
}
.kat__alert.show .kat__alert-dialog {
  animation-duration: 800ms;
  animation-name: tada-open;
}

.kat__alert-content {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background-color: rgba(var(--neutral-30-rgb), 0.6);
}
.kat__alert.info .kat__alert-content {
  background-color: rgba(var(--info-rgb), 0.6);
}
.kat__alert.success .kat__alert-content {
  background-color: rgba(var(--success-rgb), 0.6);
}
.kat__alert.warning .kat__alert-content {
  background-color: rgba(var(--warning-rgb), 0.6);
}
.kat__alert.danger .kat__alert-content {
  background-color: rgba(var(--danger-rgb), 0.6);
}

.kat__alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
  border-radius: 50%;
  background-color: var(--Base-White);
  font-size: 16px;
  color: var(--Neutral-05);
}
.kat__alert.info .kat__alert-icon {
  color: var(--info);
}
.kat__alert.success .kat__alert-icon {
  color: var(--success);
}
.kat__alert.warning .kat__alert-icon {
  color: var(--warning);
}
.kat__alert.danger .kat__alert-icon {
  color: var(--danger);
}

.kat__alert-caption {
  display: flex;
  flex-direction: column;
  align-self: center;
  flex-grow: 1;
  gap: 4px;
}
.kat__alert-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  color: var(--Neutral-100);
}
.kat__alert-description {
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  color: var(--Neutral-100);
}
.kat__alert-close {
  flex-shrink: 0;
  outline: none;
  box-shadow: none;
  border: none;
  background-color: transparent;
  font-size: 14px;
  color: var(--Neutral-08);
  cursor: pointer;
  transition: color 0.25s ease-in-out;
}
.kat__alert-close:hover {
  color: var(--neutral-100);
}

.input-searching, .input-searching:focus {
  border: none;
  outline: none;
  width: 100%;
  background-color: var(--Base-White);
  color: var(--Neutral-100);
}
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  background:
    linear-gradient(45deg, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 43%,var(--Neutral-06) 45%,var(--Neutral-06) 55%,rgba(0,0,0,0) 57%,rgba(0,0,0,0) 100%),
    linear-gradient(135deg, transparent 0%,transparent 43%,var(--Neutral-06) 45%,var(--Neutral-06) 55%,transparent 57%,transparent 100%);
  cursor: pointer;
}
@media (max-width: 450px) {
  .kat__alert-box {
    min-width: 0px;
  }

  .katui-content-body{
    overflow: unset;
  }

  .katui-dash-content{
    overflow: auto;
  }
}

/* Media query for devices with a minimum width of 992px and a maximum width of 1199px (e.g., small laptops and desktops) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .katui-dash-content {
    padding: 30px 20px 20px 300px;
    width: -webkit-fill-available;
  }
  .katui-card-container, .dashboard-financial-wrapper{
    flex-direction: column;
  }
  .financail-detail-card{
    width: -webkit-fill-available;
  }
  .filter-button-wrapper {
    width: fit-content;
  }

  .dark-button-text {
    display: none;
  }
  .financial-right-wrapper {
    width: -webkit-fill-available;
  }
  .financial-filter-wrapper {
    gap: 8px;
  }
  .profile-card {
    padding: 24px;
  }

  .username-text {
    font-size: 14px;
  }
  button#HomeContent {
    width: fit-content;
  }
  .profile-img-wrapper{
    width: 40px;
    height: 40px;
  }
  .katui-header-text{
    font-size: 20px;
  }
  p,span{
    font-size: 12px;
  }
  .regular-card-title, .detail-card-title, .btn-regular-text, .katui-primary-outline{
    font-size: 16px;
  }
  .regular-card-textwrap{
    gap: 4px;
  }
  .financial-report-wrapper{
    flex-direction: column;
  }
}

/* Media query for devices with a minimum width of 1200px (e.g., large laptops and desktops) */
@media only screen and (min-width: 1200px) {
  .katui-dash-content {
    padding: 30px 20px 20px 350px;
    width: -webkit-fill-available;
  }
  .profile-img-wrapper {
    width: 48px;
    height: 48px;
  }
  .profile-card {
    padding: 24px;
  }

  .katui-header-text {
    color: var(--Neutral-100);
    font-size: 24px;
    font-weight: 600;
  }
  .katui-sidebar {
    width: 330px;
  }
}

/* 
@media only screen and (max-width: 414px) and (max-height: 622px) {
  .date-filter-wrapper{
    gap: unset;
  }
  .date-filter-text {
    padding-top: 12px;
  }
} */

@media screen and (max-width: 1024px) {
  .katui-sidebar{
    width: fit-content
    ;
  }
  p,
  span,
  input,
  a,
  li,
  label,
  button {
    font-size: 12px;
  }
  .date-filter-bar, .date-filter-wrapper{
    gap:  8px;
  }
  .date-filter-wrap{
    flex-direction: column-reverse;
    gap: 12px;
  }
  .date-filter-wrapper{
    justify-content: space-between;
  }
  .katui-dash-content {
    padding: 10px 20px 20px 190px;
    width: -webkit-fill-available;
    height: 100vh !important;
  }
  .katui-header-text {
    padding: 24px 10px 0px 10px;
    color: var(--Neutral-10);
    font-family: var(--montserrat);
    font-style: normal;
    font-weight: 600;
  }

  .katui-card-container {
    flex-direction: column;
  }

  .financail-detail-card {
    width: -webkit-fill-available;
  }

  .inline-widget-detail-wrapper{
    flex-direction: row;
  }

  .dashboard-financial-wrapper {
    flex-direction: column;
  }

  .profile-img-wrapper {
    width: 40px;
    height: 40px;
  }

  .username-text {
    font-size: 16px;
  }
  .profile-card {
    padding: 24px;
  }

  .date-filter-toolbar a,
  .dark-button-text {
    font-size: 12px;
  }
  .katui-dark-button {
    width: fit-content;
  }
  .katui-dark-button .dark-button-text {
    display: none;
  }
  .filter-button-wrapper {
    width: fit-content;
    justify-content: flex-end;
  }
  .chart-description-content .decsription-title {
    font-size: 12px;
  }
  .chart-description-content .description-amount {
    font-size: 14px;
  }
  button#HomeContent {
    width: fit-content;
  }
  .profile-img-wrapper{
    width: 40px;
    height: 40px;
  }
  .katui-header-text{
    font-size: 20px;
  }
  p,span{
    font-size: 12px;
  }
  .regular-card-title, .detail-card-title, .btn-regular-text, .katui-primary-outline{
    font-size: 16px;
  }
  .profile-img-wrapper{
    width: 40px;
    height: 40px;
  }
  .regular-card-textwrap{
    gap: 4px;
  }
  .financial-report-wrapper{
    flex-direction: column;
  }

  .katui-content-body{
    padding-bottom: 180px;
  }
/* 
  .btn-regular-text {
    display: none;
  } */
}


@media only screen and (max-width: 600px) {
  .katui-header-text{
    padding: 0px;
  }
  .financail-detail-card .bank-detail {
    align-items: flex-start;
    flex-direction: column;
  }
  .financail-detail-card .bank-detail i {
    display: none;
  }
  .katui-sidebar {
    width: fit-content;
  }
  .katui-dash-content {
    padding: 20px 10px 120px 90px;
    width: -webkit-fill-available;
  }
  .katui-card-container {
    flex-direction: column;
  }

  .financail-detail-card {
    width: -webkit-fill-available;
  }

  .dashboard-financial-wrapper {
    flex-direction: column;
  }
  .katui-menu-btn span,
  .profile-name-wrapper,
  .btn-regular-text,
  .detail-goto-link span {
    display: none;
  }
  .katui-menu-btn {
    justify-content: center;
    align-items: center;
  }
  .profile-card {
    justify-content: center;
    padding: 12px 8px 24px 8px;
  }
  .profile-img-wrapper {
    width: 40px;
    height: 40px;
  }
  .date-filter-wrap {
    flex-direction: column;
    gap: 12px;
  }
  .scrollbar-filter {
    overflow-y: auto;
  }
  /* Hide scrollbar */
  .scrollbar-filter,
  .chart-card-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .scrollbar-filter::-webkit-scrollbar,
  .chart-card-container::-webkit-scrollbar {
    display: none;
  }

  .date-filter-bar {
    justify-content: space-between;
    gap: unset;
  }
  .date-filter-toolbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 10px;
  }
  .katui-dark-button {
    width: 100%;
    padding: 8px;
  }
  .date-filter-wrapper {
    justify-content: space-between;
  }
  /* .katui-dark-button .dark-button-text {
    display: none;
  } */
  .date-filter-text {
    width: 100%;
  }
  .katui-header-text {
    font-size: 16px;
    font-weight: 600;
  }
  .date-filter-toolbar a,
  .financial-recap-date,
  .inner-income-section .caption,
  .inner-income-section .amount-balance,
  .financail-detail-card .phone-number,
  .inner-outcome-section .caption,
  .inner-outcome-section .amount-balance,
  .financail-detail-card .bank-detail {
    font-size: 12px;
  }

  .inner-details-wrapper {
    gap: 6px;
  }
  .inner-section-img-wrapper, .card-coloum-icon-wrapper {
    width: 32px;
    height: 32px;
  }
  .inner-section-img-wrapper {
    display: flex;
  }

  .financail-detail-card,
  .katui-regular-card-inline,
  .canvas-scrollbar-wrapper {
    padding: 12px;
  }
  .regular-card-title,
  .regular-card-content,
  .detail-card-title,
  .detail-goto-link {
    font-size: 16px;
  }

  .regular-card-img-wrap .icon-wrap {
    width: 40px;
    height: 40px;
  }

  .regular-card-btnwrap {
    width: fit-content;
  }

  .katui-regular-card-column {
    width: -webkit-fill-available;
  }
  .inline-widget-detail-wrapper {
    flex-direction: column;
  }

  .chart-card-container {
    overflow-x: auto;
    height: fit-content;
  }
  
  .canvas-container {
    width: 800px;
  }
  .canvas-scrollbar {
    overflow-x: auto;
  }

  .chart-description-wrapper {
    flex-direction: column;
  }

  .chart-description-content .decsription-title {
    font-size: 12px;
  }
  .chart-description-content .description-amount {
    font-size: 14px;
  }
  .withdraw-name,
  .bank-name,
  .withdraw-date,
  .bank-credential {
    font-size: 14px;
  }
  .withdraw-history-wrapper {
    width: 100%;
  }
}


/* Tada Animation */
@keyframes tada-open {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
@-webkit-keyframes tada-open {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
