@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.btn:focus, .btn:active,
input:focus,
input:active {
  outline: none !important;
  box-shadow: none !important;
}

.loader-box {
  display: none;
  /* Overlay for demonstration */
}
.loader-box .loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.loader-box .loader {
  position: relative;
  width: 70px;
  height: 70px;
}
.loader-box .loader-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #00e2c3;
  border-right-color: #4287f5;
  border-bottom-color: #b146ff;
  animation: spin 1.5s linear infinite;
}
.loader-box .loader-circle:nth-child(1) {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  top: 5px;
  left: 5px;
  animation-duration: 1.5s;
  animation-direction: reverse;
}
.loader-box .loader-circle:nth-child(3) {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  animation-duration: 1.8s;
}
.loader-box .loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader-box .s-logo {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(135deg, #00e2c3 0%, #4287f5 50%, #b146ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px rgba(177, 70, 255, 0.3);
}
.loader-box .loader-text {
  margin-top: 10px;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.8;
  letter-spacing: 1px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-box .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 29, 41, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
}

.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 34px;
  height: 19px;
  z-index: 2;
  position: absolute;
  left: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #A830E8;
}

input:focus + .slider {
  box-shadow: 0 0 1px #A830E8;
}

input:checked + .slider:before {
  transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.alert-box-base {
  color: red;
}
.alert-box-base .text {
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.sendwin-gradient-animated {
  background: linear-gradient(270deg, rgba(60, 247, 162, 0.85) 0%, rgba(6, 232, 255, 0.85) 33%, rgba(177, 26, 255, 0.85) 67%, rgba(255, 97, 211, 0.85) 100%);
  background-size: 300% 300%;
  animation: sendwin-gradient-animation 8s ease infinite;
}

@keyframes sendwin-gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
html {
  scroll-behavior: smooth;
}

.bg-custom-dark {
  background-color: #000;
}

.btn-common {
  border-radius: var(--radius-md, 8px);
  background: var(--Component-colors-Components-Buttons-Secondary-error-button-secondary-error-bg, #FFF);
  /* Shadows/shadow-xs-skeuomorphic */
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(16, 24, 40, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(16, 24, 40, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
  /* Text sm/Semibold */
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-sm, 20px);
  /* 142.857% */
  padding: 8px 12px;
}
.btn-common.btn-red {
  color: var(--Component-colors-Components-Buttons-Secondary-error-button-secondary-error-fg, #B42318);
  border: 1px solid var(--Component-colors-Components-Buttons-Secondary-error-button-secondary-error-border, #FDA29B);
}
.btn-common .btn-green {
  color: var(--Component-colors-Components-Buttons-Secondary-success-button-secondary-success-fg, #1E7E34);
  border: 1px solid var(--Component-colors-Components-Buttons-Secondary-success-button-secondary-success-border, #A0EAC8);
}

body {
  font-family: "Poppins", serif;
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 24px;
  font-style: normal;
  overflow-x: hidden;
  height: 100dvh;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  body #wrapper #content-wrapper {
    max-width: calc(100% - 80px);
  }
}
@media screen and (max-width: 767.98px) {
  body .sidebar {
    width: 80px;
  }
}
@media screen and (max-width: 767.98px) {
  body .sidebar .sidebar-brand-icon {
    display: block !important;
  }
}
@media screen and (max-width: 767.98px) {
  body .sidebar .sidebar-brand-text {
    display: none;
  }
}
body .sidebar .nav-item.active .inactive-icon {
  display: none;
}
body .sidebar .nav-item.active .active-icon {
  display: inline-block;
}
body .sidebar .nav-item .nav-link {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  body .sidebar .nav-item .nav-link {
    padding: 10px 0px;
    width: 100%;
  }
}
body .sidebar .nav-item .nav-link img {
  width: 24px;
}
body .sidebar .nav-item .nav-link .active-icon {
  display: inline-block;
}
body .sidebar .nav-item .nav-link span {
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 767.98px) {
  body .sidebar .nav-item .nav-link span {
    display: none;
  }
}
body .sidebar .sidebar-card {
  align-items: flex-start;
  background-image: url("../../img/sidebar-footer.png");
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  border-radius: 0;
  height: 200px;
  background-size: 100% 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
body .sidebar .sidebar-card .sub {
  color: var(--colors-text-text-primary-900, #F5F5F6);
  /* Text xl/Semibold */
  font-size: var(--Font-size-text-xl, 20px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-xl, 30px);
  /* 150% */
  margin-bottom: 0;
  height: 30px;
}
body .sidebar .sidebar-card .title {
  color: var(--colors-text-text-primary-900, #F5F5F6);
  margin-bottom: 0;
  /* Display sm/Bold */
  font-size: var(--Font-size-display-sm, 30px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--Line-height-display-sm, 38px);
  height: 38px;
  /* 126.667% */
}
body .sidebar .sidebar-card .upgrade-btn {
  border: 2px solid var(--Gradient-skeuemorphic-gradient-border, rgba(255, 255, 255, 0.12));
  background: var(--Component-colors-Components-Buttons-Primary-button-primary-bg, #121926);
  /*Shadows/shadow-xs-skeuomorphic*/
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(12, 17, 29, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(12, 17, 29, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(255, 255, 255, 0));
  color: var(--Component-colors-Components-Buttons-Primary-button-primary-fg, #FFF);
  /*Textmd/Semibold*/
  font-size: var(--Font-size-text-md, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-md, 24px);
  border-radius: var(--radius-md, 12px);
  -webkit-border-radius: var(--radius-md, 12px);
  -moz-border-radius: var(--radius-md, 12px);
  -ms-border-radius: var(--radius-md, 12px);
  -o-border-radius: var(--radius-md, 12px);
}
body.sidebar-toggled .sidebar .sidebar-card {
  display: none !important;
}
body.sidebar-toggled .content-wrapper {
  width: 100% !important;
  max-width: 100% !important;
}
body.sidebar-toggled .navbar-top .sidebarToggle .active-icon {
  display: none !important;
}
body.sidebar-toggled .navbar-top .sidebarToggle .inactive-icon {
  display: inline-block !important;
}
body .content-wrapper {
  position: relative;
}
body .content-wrapper .navbar-top {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  left: 0;
  border-bottom: 1px solid var(--Colors-Border-border-secondary, #E4E7EC);
  background: #000 !important;
  /* Shadows/shadow-xs-skeuomorphic */
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(16, 24, 40, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(16, 24, 40, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
}
body .content-wrapper .navbar-top .sidebarToggle {
  border-radius: var(--radius-md, 8px);
  border: none;
  background: var(--Component-colors-Components-Buttons-Secondary-button-secondary-bg, #FFF);
  /* Shadows/shadow-xs-skeuomorphic */
}
body .content-wrapper .navbar-top .sidebarToggle .active-icon {
  display: inline-block;
}
body .content-wrapper .navbar-top .sidebarToggle .inactive-icon {
  display: none;
}
body .content-wrapper .content-section {
  padding: 32px 0px;
}
body .content-wrapper .content-section .breadcrumb-section {
  display: flex;
  margin-bottom: 20px;
  gap: 15px;
  align-items: center;
}
body .content-wrapper .content-section .breadcrumb-section a {
  color: var(--Component-colors-Components-Breadcrumbs-breadcrumb-fg, #475467);
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--Line-height-text-sm, 20px);
  /* 142.857% */
  text-decoration: none;
}
body .content-wrapper .content-section .header-section {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .content-wrapper .content-section .header-section .title {
  color: var(--colors-text-text-primary-900, #101828);
  font-style: normal;
  font-weight: 900;
  line-height: var(--Line-height-display-sm, 38px);
  display: flex;
  align-items: center;
  font-size: var(--Font-size-display-sm, 24px);
}
body .content-wrapper .content-section .header-section .title .status {
  border-radius: var(--radius-full, 9999px);
  border: 1px solid var(--Component-colors-Utility-Brand-utility-brand-200, #EED6FA);
  background: var(--Component-colors-Utility-Brand-utility-brand-50, #F9F5FF);
  color: var(--Component-colors-Utility-Brand-utility-brand-700, #9117D3);
  text-align: center;
  /*Textsm/Medium*/
  font-family: var(--Font-family-font-family-body, Poppins);
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--Line-height-text-sm, 20px);
  padding: 3px 10px;
  -webkit-border-radius: var(--radius-full, 9999px);
  -moz-border-radius: var(--radius-full, 9999px);
  -ms-border-radius: var(--radius-full, 9999px);
  -o-border-radius: var(--radius-full, 9999px);
}
body .content-wrapper .content-section .header-section .edit-btn {
  color: var(--Component-colors-Components-Buttons-Secondary-color-button-secondary-color-fg, #202939);
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-sm, 20px);
  /* 142.857% */
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--Component-colors-Components-Buttons-Secondary-color-button-secondary-color-border, #CDD5DF);
  background: var(--Component-colors-Components-Buttons-Secondary-color-button-secondary-color-bg, #FFF);
  /* Shadows/shadow-xs-skeuomorphic */
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(16, 24, 40, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(16, 24, 40, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
}
body .content-wrapper .content-section .header-section .edit-btn img {
  width: 25px;
}
body .content-wrapper .content-section .header-section .message-btn {
  padding: var(--spacing-md, 8px) var(--spacing-lg, 12px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xs, 4px);
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--Component-colors-Components-Buttons-Secondary-color-button-secondary-color-border, #CDD5DF);
  background: var(--Component-colors-Components-Buttons-Secondary-color-button-secondary-color-bg, #FFF);
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(16, 24, 40, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(16, 24, 40, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
  color: var(--Component-colors-Components-Buttons-Secondary-color-button-secondary-color-fg, #202939);
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-sm, 20px);
}
body .content-wrapper .content-section .header-section .status-btn {
  border-radius: var(--radius-md, 8px);
  background: var(--Component-colors-Components-Buttons-Secondary-error-button-secondary-error-bg, #FFF);
  /* Shadows/shadow-xs-skeuomorphic */
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(16, 24, 40, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(16, 24, 40, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
  /* Text sm/Semibold */
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-sm, 20px);
  /* 142.857% */
  padding: 8px 12px;
}
body .content-wrapper .content-section .header-section .status-btn.btn-red {
  color: var(--Component-colors-Components-Buttons-Secondary-error-button-secondary-error-fg, #B42318);
  border: 1px solid var(--Component-colors-Components-Buttons-Secondary-error-button-secondary-error-border, #FDA29B);
}
body .content-wrapper .content-section .header-section .status-btn .btn-green {
  color: var(--Component-colors-Components-Buttons-Secondary-success-button-secondary-success-fg, #1E7E34);
  border: 1px solid var(--Component-colors-Components-Buttons-Secondary-success-button-secondary-success-border, #A0EAC8);
}
body .content-wrapper .content-section .header-section .button-section {
  display: flex;
  gap: 20px;
  align-items: center;
}
body .content-wrapper .content-section .header-section .button-section .btn-red-fill {
  border-radius: var(--radius-md, 8px);
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: var(--Component-colors-Components-Buttons-Primary-error-button-primary-error-bg, #D92D20);
  /* Shadows/shadow-xs-skeuomorphic */
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(16, 24, 40, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(16, 24, 40, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
  color: var(--Colors-Foreground-fg-white, #FFF);
  /* Text sm/Semibold */
  font-family: var(--Font-family-font-family-body, Poppins);
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-sm, 20px);
  /* 142.857% */
  padding: 10px 14px;
}
body .content-wrapper .content-section .header-section .button-section .light-btn {
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--Component-colors-Components-Buttons-Secondary-color-button-secondary-color-border, #CDD5DF);
  background: var(--Component-colors-Components-Buttons-Secondary-color-button-secondary-color-bg, #FFF);
  /* Shadows/shadow-xs-skeuomorphic */
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(16, 24, 40, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(16, 24, 40, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
  color: var(--Component-colors-Components-Buttons-Secondary-color-button-secondary-color-fg, #202939);
  /* Text sm/Semibold */
  font-family: var(--Font-family-font-family-body, Poppins);
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-sm, 20px);
  /* 142.857% */
  padding: 10px 14px;
}
body .content-wrapper .content-section .header-section .button-section .light-btn img {
  width: 20px;
}
body .content-wrapper .content-section .tab-section .nav-tabs {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--Colors-Border-border-secondary, #E4E7EC);
  display: flex;
  gap: 20px;
}
body .content-wrapper .content-section .tab-section .nav-tabs .nav-link {
  color: var(--colors-text-text-quaternary-500, #667085);
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-sm, 20px);
  /* 142.857% */
  display: flex;
  padding: 0px var(--spacing-xs, 4px) var(--spacing-lg, 12px) var(--spacing-xs, 4px);
  border: navajowhite;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  background-color: transparent;
}
body .content-wrapper .content-section .tab-section .nav-tabs .nav-link:hover {
  border: navajowhite;
}
body .content-wrapper .content-section .tab-section .nav-tabs .nav-link.active {
  border-bottom: 2px solid var(--colors-foreground-fg-secondary-700, #344054);
}
body .content-wrapper .content-section .page-card {
  border-radius: var(--radius-xl, 12px);
  border: 1px solid var(--Colors-Border-border-secondary, #E4E7EC);
  background: var(--Colors-Background-bg-primary, #FFF);
  /* Shadows/shadow-xs */
  box-shadow: 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
}
body .content-wrapper .content-section .page-card .page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
}
@media screen and (max-width: 768px) {
  body .content-wrapper .content-section .page-card .page-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
body .content-wrapper .content-section .page-card .page-header .datatable-filter-section {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  body .content-wrapper .content-section .page-card .page-header .datatable-filter-section {
    flex-direction: column;
    align-items: flex-start;
  }
}
body .content-wrapper .content-section .page-card .page-header .datatable-filter-section .search-input-group {
  position: relative;
}
body .content-wrapper .content-section .page-card .page-header .datatable-filter-section .search-input-group input {
  border-radius: 55px;
  -webkit-border-radius: 55px;
  -moz-border-radius: 55px;
  -ms-border-radius: 55px;
  -o-border-radius: 55px;
  padding-right: 30px;
}
body .content-wrapper .content-section .page-card .page-header .datatable-filter-section .search-input-group .search-icon {
  position: absolute;
  right: 15px;
  top: 19px;
  z-index: 4;
}
body .content-wrapper .content-section .page-card .page-header .title {
  color: var(--colors-text-text-primary-900, #101828);
  /* Text lg/Semibold */
  font-size: var(--Font-size-text-lg, 18px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-lg, 28px);
  /* 155.556% */
  margin-bottom: 0;
}
body .content-wrapper .content-section .page-card .page-header .form-select {
  width: 150px;
  padding: 6px 12px;
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--Colors-Border-border-secondary, #E4E7EC);
  background: var(--Colors-Background-bg-primary, #FFF);
  color: var(--colors-text-text-primary-900, #101828);
  font-size: var(--Font-size-text-sm, 14px);
  line-height: var(--Line-height-text-sm, 20px);
}
body .content-wrapper .content-section .page-card .page-header .form-select:focus {
  outline: none;
  border-color: var(--colors-foreground-fg-secondary-700, #344054);
}
body .content-wrapper .content-section .page-card .page-header .page-header-btn {
  color: var(--Component-colors-Components-Buttons-Primary-button-primary-fg, #FFF);
  /* Text sm/Semibold */
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-sm, 20px);
  border-radius: var(--radius-md, 8px);
  border: 2px solid var(--Gradient-skeuemorphic-gradient-border, rgba(255, 255, 255, 0.12));
  background: var(--Component-colors-Components-Buttons-Primary-button-primary-bg, #121926);
  /* Shadows/shadow-xs-skeuomorphic */
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(16, 24, 40, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(16, 24, 40, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
  /* 142.857% */
  height: 36px;
}
body .content-wrapper .content-section .page-card .page-header .page-header-btn.btn-red {
  background: var(--Component-colors-Components-Buttons-Primary-error-button-primary-error-bg, #D92D20);
}
body .content-wrapper .content-section .page-card .page-table-section {
  position: relative;
}
body .content-wrapper .content-section .page-card .page-table-section .search-section {
  width: 100%;
  max-width: 768px;
  margin: auto;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
}
body .content-wrapper .content-section .page-card .page-table-section .search-section .search-input {
  padding: 10px 15px;
  height: 55px;
  border-radius: 55px;
  -webkit-border-radius: 55px;
  -moz-border-radius: 55px;
  -ms-border-radius: 55px;
  -o-border-radius: 55px;
}
body .content-wrapper .content-section .page-card .page-table-section .search-section .search-btn {
  position: absolute;
  right: 0px;
}
body .content-wrapper .content-section .page-card .page-table-section.file-table .dataTables_filter {
  display: none !important;
}
body .content-wrapper .content-section .page-card .page-table-section .dataTables_filter input[type=search] {
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--Colors-Border-border-primary, #D0D5DD);
  background: var(--Colors-Background-bg-primary, #FFF);
  padding: 10px;
  margin-right: 10px;
}
body .content-wrapper .content-section .page-card .page-table-section .custom-datatable tbody .name {
  color: var(--colors-text-text-primary-900, #101828);
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--Line-height-text-sm, 20px);
  /* 142.857% */
  display: flex;
  align-items: center;
  gap: 10px;
}
body .content-wrapper .content-section .page-card .page-table-section .custom-datatable tbody .name .file-type {
  width: 20px;
}
body .content-wrapper .content-section .page-card .page-table-section .custom-datatable tbody .action-btn-section {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
body .content-wrapper .content-section .page-card .page-table-section .custom-datatable tbody .action-btn-section .btn {
  padding: 0;
  min-height: 36px;
  min-width: 36px;
}
body .content-wrapper .content-section .page-card .page-table-section .custom-datatable tbody .action-btn-section .btn img {
  width: 100%;
  height: 100%;
}
body .content-wrapper .content-section .page-card .page-table-section .custom-datatable tbody .action-btn-section .btn.message-btn {
  display: flex;
  padding: var(--spacing-md, 8px) var(--spacing-lg, 12px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xs, 4px);
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--Component-colors-Components-Buttons-Secondary-color-button-secondary-color-border, #CDD5DF);
  background: var(--Component-colors-Components-Buttons-Secondary-color-button-secondary-color-bg, #FFF);
  /* Shadows/shadow-xs-skeuomorphic */
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(16, 24, 40, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(16, 24, 40, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
  color: var(--Component-colors-Components-Buttons-Secondary-color-button-secondary-color-fg, #202939);
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-sm, 20px);
  /* 142.857% */
}
body .content-wrapper .content-section .page-card .page-table-section .custom-datatable tbody .action-btn-section .btn.message-btn img {
  width: 20px;
}
body .content-wrapper .content-section .page-card .page-table-section .custom-pagination {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  bottom: 0;
  padding: 20px 20px;
}
body .content-wrapper .content-section .page-card .page-accordion-section .accordion {
  padding: 0px 20px;
  background-color: transparent;
}
body .content-wrapper .content-section .page-card .page-accordion-section .accordion .card {
  border: 1px solid var(--Colors-Border-border-secondary, #E4E7EC);
  border-radius: var(--radius-md, 8px);
  margin-bottom: 20px;
  box-shadow: 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
}
body .content-wrapper .content-section .page-card .page-accordion-section .accordion .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0px;
}
body .content-wrapper .content-section .page-card .page-accordion-section .accordion .card .card-header .btn {
  text-decoration: none;
  font-size: 14px;
  color: var(--colors-text-text-primary-900, #101828);
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}
body .content-wrapper .content-section .page-card .page-accordion-section .accordion .card .card-header .btn[aria-expanded=true] .arrow-icon img.plus-icon {
  display: none;
}
body .content-wrapper .content-section .page-card .page-accordion-section .accordion .card .card-header .btn[aria-expanded=true] .arrow-icon img.minus-icon {
  display: block;
}
body .content-wrapper .content-section .page-card .page-accordion-section .accordion .card .card-header .btn .arrow-icon {
  background-color: #e9ebee;
  border-radius: 50%;
  padding: 5px;
}
body .content-wrapper .content-section .page-card .page-accordion-section .accordion .card .card-header .btn .arrow-icon img {
  width: 15px;
  height: 15px;
}
body .content-wrapper .content-section .page-card .page-accordion-section .accordion .card .card-header .btn .arrow-icon img.plus-icon {
  display: block;
}
body .content-wrapper .content-section .page-card .page-accordion-section .accordion .card .card-header .btn .arrow-icon img.minus-icon {
  display: none;
}
body .content-wrapper .content-section .page-card .page-accordion-section .accordion .card .card-body {
  padding-top: 0;
  font-size: 13px;
}
body .card-section .card-box {
  border-radius: var(--radius-xl, 12px);
  border: 1px solid var(--Colors-Border-border-secondary, #E4E7EC);
  background: var(--Colors-Background-bg-primary, #FFF);
  /* Shadows/shadow-xs */
  box-shadow: 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
  margin-bottom: 24px;
}
body .card-section .card-box .box-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
}
body .card-section .card-box .box-body .left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
body .card-section .card-box .box-body .left .box-title {
  gap: 10px;
  display: flex;
  align-items: center;
  color: var(--colors-text-text-primary-900, #222);
  font-size: var(--Font-size-text-md, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--Line-height-text-md, 24px);
  /* 150% */
  margin-bottom: 0;
}
body .card-section .card-box .box-body .left .box-title.separate {
  flex-direction: column;
  align-items: flex-start;
}
body .card-section .card-box .box-body .left .box-data {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
body .card-section .card-box .box-body .left .box-data .text-section {
  display: flex;
  flex-direction: row;
  align-items: end;
  gap: 10px;
}
body .card-section .card-box .box-body .left .box-data .text-section .text {
  color: var(--colors-text-text-success-primary-600, #079455);
  text-align: center;
  /* Text sm/Medium */
  font-family: var(--Font-family-font-family-body, Poppins);
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 142.857% */
}
body .card-section .card-box .box-body .left .box-value {
  color: var(--colors-text-text-primary-900, #101828);
  font-size: var(--Font-size-display-md, 24px);
  font-style: normal;
  font-weight: 700;
  /* 122.222% */
  letter-spacing: -0.72px;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
body .card-section .card-box .box-body .left .box-value.small {
  font-size: 20px;
  line-height: 100%;
}
body .card-section .card-box .box-body .left .storage-combo {
  display: flex;
  gap: 30px;
}
body .card-section .card-box .box-body .left .storage-combo .combo {
  display: flex;
  font-size: 12px;
  gap: 5px;
}
body .card-section .card-box .box-body .left .card-link {
  display: flex;
  justify-content: flex-end;
  font-size: 12px;
  color: #3B3B3C;
}
body .card-section .card-box .box-body .box-title-big {
  color: var(--colors-text-text-primary-900, #101828);
  /* Display xs/Semibold */
  font-family: var(--Font-family-font-family-display, Poppins);
  font-size: var(--Font-size-display-xs, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-display-xs, 32px);
  /* 133.333% */
  display: flex;
  justify-content: space-between;
}
body .card-section .card-box .box-body .box-title-big .chart-select {
  display: flex;
  align-items: center;
}
body .card-section .card-box .box-body .box-title-big .chart-select .date-range-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: #64748b;
  font-size: 14px;
  cursor: pointer;
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--Component-colors-Components-Buttons-Secondary-button-secondary-border, #D0D5DD);
  background: var(--Component-colors-Components-Buttons-Secondary-button-secondary-bg, #FFF);
  /* Shadows/shadow-xs-skeuomorphic */
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(16, 24, 40, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(16, 24, 40, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
}
body .card-section .card-box .box-body .box-title-big .chart-select .date-range-btn .text {
  color: var(--Colors-Text-text-placeholder, #667085);
  /* Text sm/Semibold */
  font-family: var(--Font-family-font-family-body, Poppins);
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-sm, 20px);
  /* 142.857% */
}
body .card-section .card-box .box-body .box-title-big .chart-select .date-range-btn:hover {
  background: #f8fafc;
}
body .card-section .card-box .box-body .box-title-big .chart-select .date-range-btn i {
  font-size: 14px;
}
body .card-section .card-box .box-body .data-info {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
body .card-section .card-box .box-body .data-info .data-label {
  color: var(--colors-text-text-tertiary-600, #475467);
  /* Text sm/Medium */
  font-family: var(--Font-family-font-family-body, Poppins);
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--Line-height-text-sm, 20px);
  /* 142.857% */
}
body .card-section .card-box .box-body .data-info .data-value {
  color: var(--colors-text-text-secondary-700, #344054);
  /* Text md/Medium */
  font-family: var(--Font-family-font-family-body, Poppins);
  font-size: var(--Font-size-text-md, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--Line-height-text-md, 24px);
  /* 150% */
}
body .card-section .card-box .box-body .input-section label {
  display: flex;
  width: 100%;
}
body .card-section .card-box .box-body .input-section input {
  width: 100%;
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--Colors-Border-border-primary, #D0D5DD);
  background: var(--Colors-Background-bg-primary, #FFF);
  padding: 10px;
}
body .card-section .card-box .box-body .input-section .upload-btn {
  width: 100%;
  height: 100px !important;
  align-items: center;
  display: flex;
  justify-content: center;
  background-color: #f5f5f5;
}
body .card-section .card-box .box-body .preview-section {
  height: 200px;
  text-align: left;
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  border-radius: 0;
  height: 200px;
  background-size: 100% 100%;
  flex-direction: column;
  font-size: 0.875rem;
  padding: 1rem;
  background-color: #121926;
  width: 280px;
}
body .card-section .card-box .box-body .preview-section .sub {
  color: var(--colors-text-text-primary-900, #F5F5F6);
  margin-bottom: 0;
  font-size: var(--Font-size-display-sm, 30px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--Line-height-display-sm, 38px);
  height: 38px;
  overflow: hidden;
}
body .card-section .card-box .box-body .preview-section .title {
  height: 30px;
  overflow: hidden;
  color: var(--colors-text-text-primary-900, #F5F5F6);
  font-size: var(--Font-size-text-xl, 20px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-xl, 30px);
  margin-bottom: 0;
}
body .card-section .card-box .box-body .preview-section .upgrade-btn {
  border: 2px solid var(--Gradient-skeuemorphic-gradient-border, rgba(255, 255, 255, 0.12));
  background: var(--Component-colors-Components-Buttons-Primary-button-primary-bg, #121926);
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(12, 17, 29, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(12, 17, 29, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(255, 255, 255, 0));
  color: var(--Component-colors-Components-Buttons-Primary-button-primary-fg, #FFF);
  font-size: var(--Font-size-text-md, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-md, 24px);
  border-radius: var(--radius-md, 12px);
  -webkit-border-radius: var(--radius-md, 12px);
  -moz-border-radius: var(--radius-md, 12px);
  -ms-border-radius: var(--radius-md, 12px);
  -o-border-radius: var(--radius-md, 12px);
}
body .card-section .card-box .box-body .form-btn-dark {
  border-radius: var(--radius-md, 8px);
  border: 2px solid var(--Gradient-skeuemorphic-gradient-border, rgba(255, 255, 255, 0.12));
  background: var(--Component-colors-Components-Buttons-Primary-button-primary-bg, #121926);
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(16, 24, 40, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(16, 24, 40, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
  color: var(--Component-colors-Components-Buttons-Primary-button-primary-fg, #FFF);
  font-size: var(--Font-size-text-md, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-md, 24px);
}
body .card-section .card-box .box-footer {
  padding: 24px;
  text-align: right;
  color: var(--Component-colors-Components-Buttons-Tertiary-color-button-tertiary-color-fg, #111927);
  border-top: 1px solid var(--Colors-Border-border-secondary, #E4E7EC);
  /* Text sm/Semibold */
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-sm, 20px);
  /* 142.857% */
}
body .card-section .card-box .box-footer a {
  color: inherit;
}
body .card-section .card-box .box-footer .footer-dark-btn {
  border-radius: var(--radius-md, 8px);
  border: 2px solid var(--Gradient-skeuemorphic-gradient-border, rgba(255, 255, 255, 0.12));
  background: var(--Component-colors-Components-Buttons-Primary-button-primary-bg, #121926);
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(16, 24, 40, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(16, 24, 40, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
  color: var(--Component-colors-Components-Buttons-Primary-button-primary-fg, #FFF);
  font-size: var(--Font-size-text-md, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-md, 24px);
}
body .card-section .card-box .box-footer .footer-btn-primary {
  border-radius: var(--radius-md, 8px);
  border: 2px solid var(--Gradient-skeuemorphic-gradient-border, rgba(255, 255, 255, 0.12));
  background: var(--Component-colors-Components-Buttons-Primary-button-primary-bg, #121926);
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(16, 24, 40, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(16, 24, 40, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
  color: var(--Component-colors-Components-Buttons-Primary-button-primary-fg, #FFF);
  font-size: var(--Font-size-text-md, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-md, 24px);
}
body .card-section .card-box .box-footer .footer-btn-danger {
  border-radius: var(--radius-md, 8px);
  border: 2px solid var(--Gradient-skeuemorphic-gradient-border, rgba(255, 255, 255, 0.12));
  background: var(--Component-colors-Components-Buttons-Primary-error-button-primary-error-bg, #D92D20);
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(16, 24, 40, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(16, 24, 40, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
  color: var(--Component-colors-Components-Buttons-Primary-error-button-primary-error-fg, #FFF);
  font-size: var(--Font-size-text-md, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-md, 24px);
}
body .card-section .card-box.authenticator-card .box-body .left .card-icon {
  width: 50px;
  margin: auto;
}
body .card-section .card-box.authenticator-card .box-body .left .box-value {
  justify-content: center;
}
body .card-section .card-box.authenticator-card .box-body .left .box-title {
  justify-content: center;
  font-size: 16px;
}
body .card-section .card-box.authenticator-card .box-footer {
  text-align: center;
  padding-top: 0;
  border-top: none;
}
body .card-section .card-box.authenticator-card .box-footer .btn {
  width: 100%;
  max-width: 200px;
}

.form-label-dark {
  color: var(--colors-text-text-secondary-700, #344054);
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--Line-height-text-sm, 20px);
}

.custom-modal .modal-dialog.small-modal {
  max-width: 540px;
}
.custom-modal .modal-dialog.large-modal {
  max-width: 720px;
}
.custom-modal .modal-dialog .modal-content {
  border-radius: 16px;
}
.custom-modal .modal-dialog .modal-content .modal-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  border-bottom: 0;
}
.custom-modal .modal-dialog .modal-content .modal-header .close-modal {
  padding: 0 !important;
}
.custom-modal .modal-dialog .modal-content .modal-body {
  padding: 0px 24px;
}
.custom-modal .modal-dialog .modal-content .modal-body .modal-form .form-label {
  color: var(--colors-text-text-secondary-700, #344054);
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--Line-height-text-sm, 20px);
  /* 142.857% */
}
.custom-modal .modal-dialog .modal-content .modal-body .modal-form .form-input {
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--Colors-Border-border-primary, #D0D5DD);
  background: var(--Colors-Background-bg-primary, #FFF);
  /* Shadows/shadow-xs */
  box-shadow: 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
  overflow: hidden;
  color: var(--Colors-Text-text-placeholder, #667085);
  font-size: var(--Font-size-text-md, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--Line-height-text-md, 24px);
  height: 44px;
}
.custom-modal .modal-dialog .modal-content .modal-body .modal-form .form-input.message-textarea {
  height: unset !important;
}
.custom-modal .modal-dialog .modal-content .modal-body .modal-form .form-radio-section {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.custom-modal .modal-dialog .modal-content .modal-body .modal-form .form-radio-section .radio-item {
  display: flex;
  gap: 12px;
}
.custom-modal .modal-dialog .modal-content .modal-body .modal-form .form-radio-section .radio-item .form-radio-label {
  color: var(--colors-text-text-secondary-700, #344054);
  /* Text md/Medium */
  font-family: var(--Font-family-font-family-body, Poppins);
  font-size: var(--Font-size-text-md, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--Line-height-text-md, 24px);
  margin-bottom: 0;
  /* 150% */
}
.custom-modal .modal-dialog .modal-content .modal-body .modal-form .form-radio-section .radio-item .radio-section {
  position: relative;
  display: flex;
}
.custom-modal .modal-dialog .modal-content .modal-body .modal-form .form-radio-section .radio-item .radio-section .radio-icon {
  width: 20px;
}
.custom-modal .modal-dialog .modal-content .modal-body .modal-form .form-radio-section .radio-item .radio-section .radio-icon.active-icon {
  display: none;
}
.custom-modal .modal-dialog .modal-content .modal-body .modal-form .form-radio-section .radio-item .radio-section .radio-icon.inactive-icon {
  display: block;
}
.custom-modal .modal-dialog .modal-content .modal-body .modal-form .form-radio-section .radio-item .radio-section .form-radio {
  opacity: 0;
  z-index: 1;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  margin: 0;
  cursor: pointer;
}
.custom-modal .modal-dialog .modal-content .modal-body .modal-form .form-radio-section .radio-item .radio-section .form-radio:checked ~ .radio-icon.active-icon {
  display: block;
}
.custom-modal .modal-dialog .modal-content .modal-body .modal-form .form-radio-section .radio-item .radio-section .form-radio:checked ~ .radio-icon.inactive-icon {
  display: none;
}
.custom-modal .modal-dialog .modal-content .modal-body .title {
  color: var(--colors-text-text-primary-900, #101828);
  font-size: var(--Font-size-text-lg, 18px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-lg, 28px);
  /* 155.556% */
  margin-bottom: 20px;
}
.custom-modal .modal-dialog .modal-content .modal-body .text {
  color: var(--colors-text-text-tertiary-600, #475467);
  /* Text sm/Regular */
  font-size: var(--Font-size-text-sm, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--Line-height-text-sm, 20px);
  margin-bottom: 0;
  /* 142.857% */
}
.custom-modal .modal-dialog .modal-content .modal-body .package-preview {
  color: var(--colors-text-text-primary-900, #101828);
  font-size: var(--Font-size-text-lg, 13px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-lg, 28px);
}
.custom-modal .modal-dialog .modal-content .modal-body .package-preview .card-text {
  display: flex;
}
.custom-modal .modal-dialog .modal-content .modal-body .package-duration-btn-group {
  display: flex;
  padding: var(--spacing-sm, 6px);
  align-items: center;
  gap: var(--spacing-md, 8px);
  border-radius: var(--spacing-md, 8px);
  border: 1px solid var(--Colors-Border-border-secondary, #E4E7EC);
  background: var(--Colors-Background-bg-secondary_alt);
}
.custom-modal .modal-dialog .modal-content .modal-body .package-duration-btn-group .package-duration-btn {
  display: flex;
  height: 44px;
  padding: var(--spacing-md, 8px) var(--spacing-lg, 12px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md, 8px);
  border-radius: var(--spacing-sm, 6px);
  color: var(--colors-text-text-quaternary-500, #667085);
  font-size: var(--Font-size-text-md, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-md, 24px);
}
.custom-modal .modal-dialog .modal-content .modal-body .package-duration-btn-group .package-duration-btn.active {
  background: var(--Component-colors-Components-Buttons-Primary-button-primary-bg, #121926);
  color: var(--Component-colors-Components-Buttons-Primary-button-primary-fg, #FFF);
}
.custom-modal .modal-dialog .modal-content .modal-footer {
  border-top: 1px solid #E4E7EC;
  padding: 24px;
  align-items: flex-start;
  gap: var(--spacing-lg, 12px);
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 0;
}
.custom-modal .modal-dialog .modal-content .modal-footer * {
  margin: 0;
}
.custom-modal .modal-dialog .modal-content .modal-footer .btn {
  min-height: 48px;
}
.custom-modal .modal-dialog .modal-content .modal-footer .modal-white-btn {
  display: flex;
  padding: 10px var(--spacing-xl, 16px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm, 6px);
  flex: 1 0 0;
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--Component-colors-Components-Buttons-Secondary-button-secondary-border, #D0D5DD);
  background: var(--Component-colors-Components-Buttons-Secondary-button-secondary-bg, #FFF);
  /* Shadows/shadow-xs-skeuomorphic */
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(16, 24, 40, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(16, 24, 40, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
  color: var(--Component-colors-Components-Buttons-Secondary-button-secondary-fg, #344054);
  font-size: var(--Font-size-text-md, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-md, 24px);
  /* 150% */
}
.custom-modal .modal-dialog .modal-content .modal-footer .modal-red-btn {
  display: flex;
  padding: 10px var(--spacing-xl, 16px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm, 6px);
  flex: 1 0 0;
  border-radius: var(--radius-md, 8px);
  border: 2px solid var(--Gradient-skeuemorphic-gradient-border, rgba(255, 255, 255, 0.12));
  background: var(--Component-colors-Components-Buttons-Primary-error-button-primary-error-bg, #D92D20);
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(16, 24, 40, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(16, 24, 40, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
  color: var(--Colors-Foreground-fg-white, #FFF);
  font-size: var(--Font-size-text-md, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-md, 24px);
}
.custom-modal .modal-dialog .modal-content .modal-footer .modal-red-btn-outline {
  flex: 1 0 0;
  padding: 10px var(--spacing-xl, 16px);
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--Component-colors-Components-Buttons-Secondary-error-button-secondary-error-border, #FDA29B);
  background: var(--Component-colors-Components-Buttons-Secondary-error-button-secondary-error-bg, #FFF);
  /* Shadows/shadow-xs-skeuomorphic */
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(16, 24, 40, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(16, 24, 40, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
  color: var(--Component-colors-Components-Buttons-Secondary-error-button-secondary-error-fg, #B42318);
  /* Text md/Semibold */
  font-family: var(--Font-family-font-family-body, Poppins);
  font-size: var(--Font-size-text-md, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-md, 24px);
  /* 150% */
}
.custom-modal .modal-dialog .modal-content .modal-footer .modal-black-btn {
  color: var(--Component-colors-Components-Buttons-Primary-button-primary-fg, #FFF);
  /* Text md/Semibold */
  font-family: var(--Font-family-font-family-body, Poppins);
  font-size: var(--Font-size-text-md, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-height-text-md, 24px);
  /* 150% */
  display: flex;
  padding: 10px var(--spacing-xl, 16px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm, 6px);
  flex: 1 0 0;
  border-radius: var(--radius-md, 8px);
  border: 2px solid var(--Gradient-skeuemorphic-gradient-border, rgba(255, 255, 255, 0.12));
  background: var(--Component-colors-Components-Buttons-Primary-button-primary-bg, #121926);
  /* Shadows/shadow-xs-skeuomorphic */
  box-shadow: 0px 0px 0px 1px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner-border, rgba(16, 24, 40, 0.18)) inset, 0px -2px 0px 0px var(--Colors-Effects-Shadows-shadow-skeumorphic-inner, rgba(16, 24, 40, 0.05)) inset, 0px 1px 2px 0px var(--Colors-Effects-Shadows-shadow-xs, rgba(16, 24, 40, 0.05));
}
.custom-modal .modal-dialog .modal-content .modal-footer.modal-footer-center {
  justify-content: center;
}
.custom-modal .modal-dialog .modal-content .modal-footer.modal-justify-end {
  justify-content: flex-end;
}
.custom-modal .modal-dialog .modal-content .modal-footer.modal-justify-end .btn {
  flex: unset;
}
.custom-modal .modal-dialog .modal-content .modal-footer.justify-footer {
  justify-content: space-between;
}
.custom-modal .modal-dialog .modal-content .modal-footer.justify-footer .btn {
  flex: unset;
}

/* === range theme and appearance === */
/* === range theme and appearance === */
.custom-range-input-bar {
  font-size: 1.5rem;
  width: 100%;
  color: #A830E8;
  --thumb-height: 0.825em;
  --track-height: 0.25em;
  --track-color: rgba(0, 0, 0, 0.2);
  --brightness-hover: 180%;
  --brightness-down: 80%;
  --clip-edges: 0.125em;
  /* === range commons === */
  position: relative;
  background: rgba(255, 255, 255, 0);
  overflow: hidden;
  /* === WebKit specific styles === */
  /* === Firefox specific styles === */
}
.custom-range-input-bar:active {
  cursor: grabbing;
}
.custom-range-input-bar:disabled {
  filter: grayscale(1);
  opacity: 0.3;
  cursor: not-allowed;
}
.custom-range-input-bar, .custom-range-input-bar::-webkit-slider-runnable-track, .custom-range-input-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  -webkit-transition: all ease 100ms;
  transition: all ease 100ms;
  height: var(--thumb-height);
}
.custom-range-input-bar::-webkit-slider-runnable-track, .custom-range-input-bar::-webkit-slider-thumb {
  position: relative;
}
.custom-range-input-bar::-webkit-slider-thumb {
  --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px);
  --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px);
  --clip-bottom: calc(var(--thumb-height) - var(--clip-top));
  --clip-further: calc(100% + 1px);
  --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0 100vmax currentColor;
  width: var(--thumb-width, var(--thumb-height));
  background: linear-gradient(currentColor 0 0) scroll no-repeat left center/50% calc(var(--track-height) + 1px);
  background-color: currentColor;
  box-shadow: var(--box-fill);
  border-radius: var(--thumb-width, var(--thumb-height));
  filter: brightness(100%);
  -webkit-clip-path: polygon(100% -1px, var(--clip-edges) -1px, 0 var(--clip-top), -100vmax var(--clip-top), -100vmax var(--clip-bottom), 0 var(--clip-bottom), var(--clip-edges) 100%, var(--clip-further) var(--clip-further));
          clip-path: polygon(100% -1px, var(--clip-edges) -1px, 0 var(--clip-top), -100vmax var(--clip-top), -100vmax var(--clip-bottom), 0 var(--clip-bottom), var(--clip-edges) 100%, var(--clip-further) var(--clip-further));
}
.custom-range-input-bar:hover::-webkit-slider-thumb {
  filter: brightness(var(--brightness-hover));
  cursor: grab;
}
.custom-range-input-bar:active::-webkit-slider-thumb {
  filter: brightness(var(--brightness-down));
  cursor: grabbing;
}
.custom-range-input-bar::-webkit-slider-runnable-track {
  background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center/100% calc(var(--track-height) + 1px);
}
.custom-range-input-bar:disabled::-webkit-slider-thumb {
  cursor: not-allowed;
}
.custom-range-input-bar, .custom-range-input-bar::-moz-range-track, .custom-range-input-bar::-moz-range-thumb {
  -moz-appearance: none;
       appearance: none;
  -moz-transition: all ease 100ms;
  transition: all ease 100ms;
  height: var(--thumb-height);
}
.custom-range-input-bar::-moz-range-track, .custom-range-input-bar::-moz-range-thumb, .custom-range-input-bar::-moz-range-progress {
  background: rgba(255, 255, 255, 0);
}
.custom-range-input-bar::-moz-range-thumb {
  background: currentColor;
  border: 0;
  width: var(--thumb-width, var(--thumb-height));
  border-radius: var(--thumb-width, var(--thumb-height));
  cursor: grab;
}
.custom-range-input-bar:active::-moz-range-thumb {
  cursor: grabbing;
}
.custom-range-input-bar::-moz-range-track {
  width: 100%;
  background: var(--track-color);
}
.custom-range-input-bar::-moz-range-progress {
  -moz-appearance: none;
       appearance: none;
  background: currentColor;
  transition-delay: 30ms;
}
.custom-range-input-bar::-moz-range-track, .custom-range-input-bar::-moz-range-progress {
  height: calc(var(--track-height) + 1px);
  border-radius: var(--track-height);
}
.custom-range-input-bar::-moz-range-thumb, .custom-range-input-bar::-moz-range-progress {
  filter: brightness(100%);
}
.custom-range-input-bar:hover::-moz-range-thumb, .custom-range-input-bar:hover::-moz-range-progress {
  filter: brightness(var(--brightness-hover));
}
.custom-range-input-bar:active::-moz-range-thumb, .custom-range-input-bar:active::-moz-range-progress {
  filter: brightness(var(--brightness-down));
}
.custom-range-input-bar:disabled::-moz-range-thumb {
  cursor: not-allowed;
}/*# sourceMappingURL=common.css.map */