@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
:root {
  --heading-font: "Playfair Display", serif;
  --body-font: "Albert Sans", sans-serif;

  --primary-color: 0, 154, 207; /*rgb( 0, 154, 207)*/
  --primary-dark: 31, 135, 204; /*rgb( 31, 135, 204)*/
  --primary-light: 72, 166, 230; /*rgb( 72, 166, 230)*/
  --secondary-color: 48, 175, 44; /*rgb( 48, 175, 44)*/
  --secondary-dark: 236, 159, 14; /*rgb( 236, 159, 14)*/
  --secondary-light: 252, 195, 89; /*rgb( 252, 195, 89)*/

  --text-color: 51, 51, 51; /*rgb( 51, 51, 51)*/
  --section-background: 244, 244, 244; /*rgb( 244, 244, 244)*/
  --accent-color: 231, 76, 60; /*rgb( 231, 76, 60)*/

  --light-color: 236, 240, 241; /*rgb( 236, 240, 241)*/
  --dark-color: 44, 62, 80; /*rgb( 44, 62, 80)*/

  --white: 255, 255, 255; /*rgb( 255, 255, 255)*/
  --black: 0, 0, 0; /*rgb( 0, 0, 0)*/

  --border-radius: 5px;
  --shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar {
  width: 8px;
  background-color: rgb(var(--dark-color));
}
::-webkit-scrollbar-thumb {
  width: 8px;
  background-color: rgb(var(--primary-light));
  border-radius: 4px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul,
ol {
  list-style: none;
}
body {
  font-family: var(--body-font);
  background-color: var(--background-color);
  color: rgb(var(--text-color));
  line-height: 1.6;
}
p {
  margin-bottom: 0rem;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--heading-font);
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #f3f4f6;
}

/* Form Design Start */
.form-control {
  padding: 10px 12px;
  font-size: 16px;
  border-radius: 5px;
}
.form-control[readonly],
.form-control[disabled] {
  background-color: #f3f4f6 !important;
  user-select: none;
  pointer-events: none;
}
.daterange-input .form-control[readonly],
.daterange-input .form-control[disabled] {
  background-color: transparent !important;
  user-select: unset;
  pointer-events: unset;
}
.form-control:focus {
  outline: none;
  border-color: rgb(var(--primary-color));
  box-shadow: unset;
}
.form-check:checked {
  background-color: rgb(var(--primary-color));
  border-color: rgb(var(--primary-color));
}

.form-group {
  position: relative;
}

.form-group .form-label {
  font-weight: 500;
  margin-bottom: 2px;
  display: block;
  color: rgb(var(--text-color));
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  z-index: 9;
  padding-inline: 4px;
  background-color: rgb(var(--white));
  font-size: 18px;
}

.form-group:has(.select2) .form-label,
.form-select + .form-label,
.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
  opacity: 1;
  top: 0;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgb(var(--primary-color));
  left: 12px;
}
.form-group:has(.select2) .form-label {
  line-height: 1;
  top: -2px;
}

.form-control[type="file"] {
  padding: 0;
}
.form-control[type="file"]::file-selector-button {
  display: inline-block;
  padding: 4px 8px;
  margin: 6px 8px;
  font-size: 16px;
  border-radius: var(--border-radius);
  background-color: rgb(var(--primary-color));
  color: rgb(var(--white));
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 4px;
}
.form-control[type="file"]:hover::file-selector-button {
  background-color: rgb(var(--primary-light)) !important;
  box-shadow: var(--shadow);
  color: rgb(var(--white));
}
.form-control[type="file"]::file-selector-button:focus {
  outline: none;
  box-shadow: unset;
}
.form-control[type="file"]::file-selector-button:focus-visible {
  outline: 2px solid rgb(var(--primary-color));
  outline-offset: 2px;
  box-shadow: unset;
}

.form-select {
  height: 46px;
}
.form-check-input {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 8px;
  cursor: pointer;
}
.form-check-input:checked {
  background-color: rgb(var(--primary-color));
  border-color: rgb(var(--primary-color));
  box-shadow: unset;
}
.form-check-input:focus {
  outline: none;
  border-color: rgb(var(--primary-color));
  box-shadow: unset;
}

.form-select:focus {
  outline: none;
  border-color: rgb(var(--primary-color));
  box-shadow: unset;
}

/* Form Design Start */
/* Button Styles Start */
.btn {
  --btn-color: var(--white);
  --btn-bg: var(--primary-color);

  background-color: rgb(var(--btn-bg)) !important;
  color: rgb(var(--btn-color)) !important;
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: var(--border-radius);
  border: 1px solid rgb(var(--btn-border, var(--btn-bg))) !important;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}
.btn.btn-sm {
  padding: 7px 12px;
  font-size: 14px;
}

.btn:hover {
  background-color: color-mix(
    in oklab,
    rgb(var(--btn-bg)),
    #000000 20%
  ) !important;
  box-shadow: var(--shadow);
}
.btn:active {
  background-color: rgb(var(--btn-bg), 0.2) !important;
  color: rgb(var(--btn-bg)) !important;
  box-shadow: unset !important;
}
.btn-primary {
  --btn-bg: var(--primary-color);
}
.btn-secondary {
  --btn-bg: var(--secondary-color);
}
.btn-info {
  --btn-bg: var(--bs-info-rgb);
}
.btn-success {
  --btn-bg: var(--bs-success-rgb);
}
.btn-warning {
  --btn-bg: var(--bs-warning-rgb);
}
.btn-danger {
  --btn-bg: var(--bs-danger-rgb);
}

.btn.outline {
  background-color: transparent !important;
  color: rgb(var(--btn-bg)) !important;
}
.btn.outline:hover {
  background-color: rgb(var(--btn-bg), 0.1) !important;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background-color: rgb(var(--secondary-color));
  color: rgb(var(--white));
}
.btn-secondary:hover {
  background-color: rgb(--secondary-dark);
}
.btn-secondary:active {
  background-color: rgb(--secondary-light);
}

/* Button Styles End */

/* Sidebar Styles Start */

.sidebar-header {
  padding: 1.5rem;
}

.sidebar {
  --sidebar-space: 16px;
  width: calc(300px - var(--sidebar-space));
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  margin: var(--sidebar-space) 0px;
  position: fixed;
  z-index: 1050;
  top: 0;
  bottom: 0;
  left: var(--sidebar-space);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1199px) {
  .sidebar {
    --sidebar-space: 10px;
  }
}
@media screen and (max-width: 575px) {
  .sidebar {
    overflow-y: auto;
  }
}
body:has(.sidebar.collapsed) .toggle-menu-btn {
  pointer-events: none !important;
}

.sidebar.collapsed {
  width: calc(80px - var(--sidebar-space));
  align-items: center;
  text-align: center;
}
.sidebar span {
  white-space: nowrap;
}

.sidebar.collapsed .nav-link span,
.sidebar.collapsed h5 span,
.sidebar.collapsed .text-center span {
  display: none;
}
.sidebar.collapsed .nav-link .info {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar.collapsed .arrow-icon {
  display: none !important;
  font-size: 14px;
}

.sidebar h5 {
  font-weight: 600;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar .nav-link {
  color: #1f1f1f;
  border-radius: 10px;
  padding: 10px 12px;
  transition: background 0.2s, color 0.2s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 5px;
}
.sidebar .nav-link .info {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
}

.sidebar.collapsed .nav-link {
  justify-content: center;
}

.sidebar .nav-item:hover .nav-link,
.sidebar .nav-item .nav-link.active {
  background-color: rgba(0, 0, 0, 0.05);
  color: #000;
}
.sidebar.collapsed .nav-item:hover .nav-link,
.sidebar.collapsed .nav-item .nav-link.active {
  background-color: transparent;
  color: rgb(var(--primary-color));
}

.nav-item.position-relative {
  position: relative;
}

.submenu-card {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: -10px;
  width: 220px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 10px;
  z-index: 1060;
  background: rgb(255, 255, 255);
  text-align: left;
  display: none;
}

@media screen and (max-width: 575px) {
  .submenu-card {
    position: static;
    display: block;
    margin-left: 10px;
    padding-left: 0px;
    box-shadow: unset;
    border: 0;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding-bottom: 8px;
    width: 100%;
  }
}

.has-submenu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-menu__list .nav-item {
  padding-inline: 10px;
}

.submenu-card a {
  display: block;
  padding: 8px 12px;
  margin-bottom: 5px;
  border-radius: 8px;
  color: #1f1f1f;
  text-decoration: none;
}

.submenu-card a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.affiliate-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.affiliate-card .collapsed-info {
  display: none;
}

.content-wrapper {
  margin-left: 300px;
  width: calc(100% - 300px);
  display: flex;
  flex-direction: column;
  transition: margin-left 0.3s ease;
  min-height: 100dvh;
}

.sidebar.collapsed ~ .content-wrapper {
  margin-left: 80px;
  width: calc(100% - 80px);
}

@media (max-width: 1199px) {
  .sidebar:not(.collapsed) {
    transform: translateX(-100%);
    left: -28px;
  }
  .sidebar-header_close {
    all: unset;
    position: absolute;
    top: -3px;
    right: 5px;
    font-size: 26px;
    color: #340000;
  }
  .sidebar.collapsed .sidebar-header_close {
    display: none;
  }

  .sidebar.show {
    transform: translateX(0);
    left: 13px;
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1049;
  }

  .overlay.show {
    display: block;
  }

  .content-wrapper {
    margin-left: 0;
    width: 100%;
  }
}

/* Sidebar Styles End */

/* Topbar Styles Start */
.topbar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 -8px 0px rgb(241 242 244), 0 0 4px 1px rgba(0, 0, 0, 0.05);
  height: 56px;
  border-radius: 12px;
  margin: 1rem 1rem 0 1rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  transition: transform 0.3s ease;
  z-index: 1040;
}
@media screen and (max-width: 1199px) {
  .topbar {
    margin: 10px 10px 0 10px;
    padding: 0 14px;
    height: 65px;
  }
}

.topbar.hidden {
  transform: translateY(-100%);
}

.main-content {
  padding-block: 18px;
  padding-inline: 18px;
  background-color: #ffffff;
  border-radius: 12px;
  margin: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex: 1;
}

.main-content:has(main > .container-fluid) {
  padding-inline: 8px;
}

@media screen and (max-width: 1199px) {
  .main-content {
    margin: 10px;
  }
  .main-content:has(main > .container-fluid) {
    padding-inline: 0px;
  }
}

.collapse-btn {
  cursor: pointer;
  padding: 10px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  width: 100%;
}

.affiliate-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Topbar Styles End */

/* Sidebar Collapsed Styles Start */

.sidebar.collapsed .manager-expanded {
  display: none !important;
}

.sidebar:not(.collapsed) .manager-collapsed {
  display: none !important;
}

.sidebar.collapsed .manager-collapsed {
  display: block !important;
}

/* Show full logo by default */
.sidebar-logo-expanded {
  display: inline;
}

.sidebar-logo-collapsed {
  display: none;
}

/* When sidebar is collapsed (toggled on #main) */
.sidebar-collapsed .sidebar-logo-expanded {
  display: none !important;
}

.sidebar-collapsed .sidebar-logo-collapsed {
  display: inline !important;
}
/* Sidebar Collapsed Styles End */

/* Card Styles Start */
.db-card {
  --color: rgb(var(--primary-color));
  border-radius: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px hsl(0deg 0% 0% / 4.6%);
  transition: box-shadow 0.3s ease;
  position: relative;
  padding: 16px;
  z-index: 1;
  overflow: hidden;
  flex: 1 1 230px;
  max-width: 350px;
}
@media screen and (max-width: 1299px) {
  .db-card {
    padding: 12px;
  }
}

@media screen and (max-width: 575px) {
  .db-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.db-card.primary {
  --color: rgb(var(--primary-color));
}
.db-card.secondary {
  --color: rgb(var(--secondary-color));
}
.db-card.success {
  --color: rgb(var(--bs-success-rgb));
}
.db-card.danger {
  --color: rgb(var(--bs-danger-rgb));
}
.db-card.warning {
  --color: rgb(var(--bs-warning-rgb));
}
.db-card.info {
  --color: rgb(var(--bs-info-rgb));
}
.db-card.dark {
  --color: rgb(var(--bs-dark-rgb));
}
.db-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--color);
  opacity: 0.4;
  z-index: -1;
}

.db-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 26px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color);
  z-index: -1;
  filter: blur(86px);
  opacity: 0.4;
}

.db-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color);
  color: var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: absolute;
  top: 20px;
  right: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.068);
}
@media screen and (max-width: 1299px) {
  .db-card__icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

.db-card-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 14px;
}
.db-card-title {
  font-family: var(--body-font);
  margin-bottom: 10px;
}

@media screen and (max-width: 1299px) {
  .db-card-title {
    font-size: 22px;
  }
}

.db-card-text {
  font-weight: 500;
}
.db-card .report {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.062);
  color: var(--report-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 1299px) {
  .db-card .report {
    font-size: 12px;
    padding: 4px 4px;
  }
}

.db-card .report.up {
  --report-color: rgb(var(--bs-success-rgb));
}
.db-card .report.down {
  --report-color: rgb(var(--bs-danger-rgb));
}

/* Dashboard Styles End */

/* Table Design Start */

.table {
  --radios: 5px;
  --border: rgb(var(--black), 0.15);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radios);
  border: 1px solid var(--border);
  vertical-align: middle;
}

.table thead tr,
.table thead th,
.table tbody tr,
.table tbody td {
  border: 0;
}
.table thead th,
.table tbody td {
  max-width: 200px;
}
/* .table thead {
  position: sticky;
  top: 0;
  z-index: 1;
} */
.table th {
  position: sticky;
  top: 0;
  background: white; /* required for visibility */
  z-index: 1;
  border-bottom: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

.table thead th {
  background-color: color-mix(
    in oklab,
    rgb(var(--white)) 95%,
    rgb(var(--primary-color)) 5%
  );
  color: rgb(var(--dark-color));
  border-bottom: 1px solid var(--border);
  padding: 12px;
  text-align: left;
  font-weight: 600;
  top: 0;
  white-space: nowrap;
}

.table thead th:first-child {
  border-top-left-radius: var(--radios);
}
.table thead th:last-child {
  border-top-right-radius: var(--radios);
}
.table tbody tr:last-child td:first-child {
  border-bottom-left-radius: var(--radios);
}
.table tbody tr:last-child td:last-child {
  border-bottom-right-radius: var(--radios);
}
.table tbody tr td {
  border-bottom: 1px solid var(--border);
}
.table tbody tr:last-child td {
  border-bottom: 0;
}
/* Table Design End */

.wrap {
  position: relative;
  margin: 10em auto 30em;
  max-width: 960px;
  overscroll-behavior: contain;
  timeline-scope: --scroller;
}

.headers {
  top: 0;
  position: -webkit-sticky;
  position: sticky;
  z-index: 1;
  overflow: hidden;
}

@keyframes --sync {
  to {
    translate: calc(-100% + ((22% + 5.5px) * 2));
  }
}

.tracks {
  scroll-timeline: --scroller inline;
}

.scroller {
  animation: --sync linear both;
  animation-timeline: --scroller;
}

th {
  overflow: auto;
  scroll-snap-type: x mandatory;
}

.table-container ::-webkit-scrollbar,
.scenes::-webkit-scrollbar,
.scroller::-webkit-scrollbar {
  display: none;
}

/* .table-container {
  min-height: 100%;
  max-height: 100dvh;
  overflow: auto;
  position: sticky;
  top: 0;
  z-index: 1055;
} */
.table-container {
  overflow: auto;
}
.table-container::-webkit-scrollbar {
  width: 0px;
}

table {
  width: 1000px;
  border-collapse: collapse;
}

th,
td {
  padding: 8px;
  border: 1px solid #ccc;
}

thead {
  background: white;
  will-change: transform;
}

.form-subtitle {
  margin-top: 25px;
  margin-bottom: 22px;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}
.select2-container .select2-selection--multiple {
  min-height: 46px;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__display {
  line-height: 32px;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove {
  line-height: 32px;
}

.select2-container .select2-search--inline .select2-search__field {
  height: 34px;
  line-height: 34px;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__clear {
  height: 34px;
}

.select2-container--default .select2-selection--multiple {
  border-color: var(--bs-border-color) !important;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  background: #f3f3f3;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove {
  border-color: var(--bs-border-color) !important;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  border-color: var(--bs-border-color) !important;
}

.select2-container--focus .select2-selection--multiple,
.select2-container--open .select2-selection--multiple,
.select2-dropdown {
  border-color: rgb(var(--primary-color)) !important;
}

.cap-row {
  margin-top: 10px;
}

@media screen and (max-width: 575px) {
  .cap-row:has(+ .cap-row) {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--bs-border-color);
  }
}

.form-group .form-control[type="file"] + .form-label {
  line-height: 0.8;
}
.search-area {
  max-width: 300px;
}
.search-area .input-group-text {
  border: 1px solid var(--bs-border-color) !important;
  background-color: transparent !important;
  color: var(--bs-card-color) !important;
  transition: all 0.3s ease;
}
.search-area .input-group-text:hover {
  background-color: rgb(var(--primary-color), 0.1) !important;
  color: rgb(var(--primary-color)) !important;
  border-color: rgb(var(--primary-color)) !important;
}
.search-area .input-group-text svg {
  width: 22px;
  height: 22px;
}
.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mw-fit {
  max-width: fit-content;
}
.animation-tab {
  --space: 3px;
  position: relative;
  background-color: #f3f4f6;
  z-index: 1;
  border-radius: 3px;
  padding-inline: 3px;
  border-radius: 5px;
  border: 0;
  flex-wrap: nowrap;
  overflow: hidden;
  overflow-x: auto;
  padding-block: 5px;
}

::-webkit-scrollbar {
  height: 5px;
}

.tab-bg {
  position: absolute;
  height: calc(100% - (var(--space) * 2));
  top: var(--space);
  border-radius: 5px;
  background-color: #fff;
  z-index: -1;
  transition: all 0.2s;
  display: none;
}

.animation-tab .nav-item {
  flex-shrink: 0;
}
.animation-tab .nav-link {
  border: 0;
  color: rgb(var(--text-color));
  transition: all 0.2s;
}
.animation-tab .nav-link.active {
  background: #fff;
  color: rgb(var(--primary-color));
}
.animation-tab .nav-link:hover {
  color: rgb(var(--primary-light));
}
@media screen and (min-width: 576px) {
  .animation-sm .tab-bg {
    display: block;
  }

  .animation-sm .nav-link.active {
    background-color: transparent;
  }
}
@media screen and (min-width: 992px) {
  .animation-md .tab-bg {
    display: block;
  }

  .animation-md .nav-link.active {
    background-color: transparent;
  }
}
@media screen and (min-width: 1200px) {
  .animation-lg .tab-bg {
    display: block;
  }

  .animation-lg .nav-link.active {
    background-color: transparent;
  }
}
@media screen and (min-width: 1300px) {
  .animation-xl .tab-bg {
    display: block;
  }

  .animation-xl .nav-link.active {
    background-color: transparent;
  }
}
@media screen and (min-width: 1400px) {
  .animation-xxl .tab-bg {
    display: block;
  }

  .animation-xxl .nav-link.active {
    background-color: transparent;
  }
}

.justify-between {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.collapse-header .header-icon {
  transition: all 0.3s;
}

.collapse-header[aria-expanded="false"] .header-icon {
  transform: rotate(180deg);
}
@media screen and (min-width: 1199px) {
  .page-title {
    display: none;
  }
}
.shadow-unset,
.shadow-0 {
  box-shadow: unset;
}
.btn-close:active,
.btn-close:focus {
  box-shadow: unset !important;
}
input[name="daterange"] {
  min-width: 210px;
}
.card .card-header {
  border-bottom: 0;
}
.summary-card__icon {
  --basic: var(--primary-color);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: rgb(var(--basic), 0.08);
  border: 1px solid rgb(var(--basic));
  font-size: 22px;
  color: rgb(var(--basic));
}
.summary-card__icon.paid {
  --basic: 219, 21, 21;
}
.summary-card__icon.ballance {
  --basic: 40, 167, 69;
}
.summary-card__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .summary-card__item {
    flex-direction: column;
  }
}
.summary-card .amount {
  font-size: 20px;
  font-weight: 500;
  color: rgb(var(--dark-color));
  margin-bottom: 5px;
  line-height: 1;
}

.summary-card .name {
  font-size: 14px;
  font-weight: 500;
  color: #808080;
}
.filter-group-btn .btn.active {
  background-color: rgb(var(--primary-color)) !important;
  color: rgb(var(--white)) !important;
}
