
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

:root {
  --bg-white: #fff;
  --body-bg: #f7f7f7;
  --surface-bg: rgba(var(--secpndary), 0.8);
  --sidebar-bg: #191919;
  --display-color: #0f172a;
  --body-color: #5d646d;
  --input-bg: #fff;
  --input-border: #e5e5e5;
  --placeholder-color: #858484;
  --border-color: #d1d5db80;
  --font-2xxl: 2rem;
  --font-2xl: 1.75rem;
  --font-xxl: 1.5rem;
  --font-xl: 1.25rem;
  --font-lg: 1.125rem;
  --font-md: 1rem;
  --font-sm: 0.875rem;
  --font-xs: 0.75rem;
  --font-xxs: 0.625rem;
  --primary: #3B82F6;
  --success: #22c55e;
  --info: #16C7F9;
  --warning: #f97316;
  --danger: #F81F58;

  --primary-dark: #1152bb;
  --success-dark: #0b8036;
  --info-dark: #16C7F9;
  --warning-dark: #a54c0d;
  --danger-dark: #990a30;

  --secondary: #845adf;
  --light: #e2e8f0;
  --extra-light: #e2e8f08a;
  --muted: #8094ae;
  --dark: #2c323f;
  --white: #ffffff;
  --cyan: #00B8F2;
  --indigo: #7F27FF;
  --purple: #8252E9;
  --red: #E30A0A;
  --yellow: #F4941E;
  --orange: #F86624;
  --pink: #DE3ACE;
  --gradient-1: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
  --gradient-2: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
  --gradient-3: linear-gradient(to top, #fad0c4 0%, #ffd1ff 100%);
  --gradient-4: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
  --gradient-5: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
  --gradient-6: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
  --gradient-7: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
  --gradient-8: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  --gradient-9: linear-gradient(to top, #a8edea 0%, #fed6e3 100%);
  --gradient-10: linear-gradient(to top, #96fbc4 0%, #f9f586 100%);
  --display-1: 2rem; /* 32px */
  --display-2: 1.75rem; /* 28px */
  --display-3: 1.5rem; /* 24px */
  --display-4: 1.375rem; /* 22px */
  --display-5: 1.25rem; /* 20px */
  --display-6: 1.125rem; /* 18px */
}

@media (max-width: 1399px) {
  :root {
    --display-1: 1.5rem; /* 24px */
    --display-2: 1.375rem; /* 22px */
    --display-3: 1.15rem; /* 20px */
    --display-4: 1.125rem; /* 18px */
    --display-5: 1.125rem; /* 18px */
    --display-6: 1rem; /* 16px */
  }
}

@media (max-width: 575px) {
  :root {
    --display-1: 1.5rem; /* 24px */
    --display-2: 1.375rem; /* 22px */
    --display-3: 1.25rem; /* 20px */
    --display-4: 1.125rem; /* 18px */
    --display-5: 1.125rem; /* 18px */
    --display-6: 1rem; /* 16px */
  }
}
/* === reset css start === */
/* === reset css start === */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--body-bg);
  color: var(--body-color);
  font-family: "Lexend", sans-serif;
  font-size: 0.9375rem;
  padding: 0;
  margin: 0;
  font-weight: 400;
  position: relative;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  user-select: none;
}

select {
  cursor: pointer;
}

dt {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  clear: both;
  color: inherit;
  opacity: 0.15;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
  font-size: 0.875rem;
}

pre::before, pre::after {
  box-shadow: none !important;
}

pre code {
  max-height: 400px !important;
  overflow-y: auto;
}

pre[class*=language-] > code {
  border-left-color: var(--primary);
  box-shadow: -1px 0 0 0 var(--primary), 0 0 0 1px var(--border-color);
}

address {
  font-style: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  cursor: pointer;
}

*:focus {
  outline: none;
}

button {
  border: none;
}

button:focus {
  outline: none;
}

a {
  text-decoration: none;
  display: inline-block;
  background-color: transparent;
  color: inherit;
}

a, button {
  cursor: revert;
}

a:hover {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

a:hover {
  color: var(--primary);
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

code {
  color: var(--danger);
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* === reset css end === */
/* === reset css end === */
/* === flex css start === */
.item-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* === flex css end === */
/* === color css start === */
.text-primary {
  color: var(--primary) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-info {
  color: var(--info) !important;
}

.text-warning {
  color: var(--warning) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-light {
  color: var(--light) !important;
}

.text-extra-light {
  color: var(--extra-light) !important;
}

.text-muted {
  color: var(--muted) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-hover-primary:hover {
  color: var(--primary) !important;
}

.text-hover-success:hover {
  color: var(--success) !important;
}

.text-hover-info:hover {
  color: var(--info) !important;
}

.text-hover-warning:hover {
  color: var(--warning) !important;
}

.text-hover-danger:hover {
  color: var(--danger) !important;
}

.text-hover-secondary:hover {
  color: var(--secondary) !important;
}

.text-hover-light:hover {
  color: var(--light) !important;
}

.text-hover-extra-light:hover {
  color: var(--extra-light) !important;
}

.text-hover-muted:hover {
  color: var(--muted) !important;
}

.text-hover-dark:hover {
  color: var(--dark) !important;
}

.text-hover-white:hover {
  color: var(--white) !important;
}

.text-cyan {
  color: var(--cyan) !important;
}

.text-indigo {
  color: var(--indigo) !important;
}

.text-purple {
  color: var(--purple) !important;
}

.text-red {
  color: var(--red) !important;
}

.text-yellow {
  color: var(--yellow) !important;
}

.text-orange {
  color: var(--orange) !important;
}

.text-pink {
  color: var(--pink) !important;
}

.display-color {
  color: var(--display-color) !important;
}

.body-color {
  color: var(--body-color) !important;
}

/* === color css end === */
/* === bg css start === */
.bg-primary {
  background-color: var(--primary) !important;
}

.bg-success {
  background-color: var(--success) !important;
}

.bg-info {
  background-color: var(--info) !important;
}

.bg-warning {
  background-color: var(--warning) !important;
}

.bg-danger {
  background-color: var(--danger) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-light {
  background-color: var(--light) !important;
}

.bg-extra-light {
  background-color: var(--extra-light) !important;
}

.bg-muted {
  background-color: var(--muted) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.bg-light-primary {
  background-color: rgba(59, 130, 246, 0.1490196078) !important;
}

.bg-light-success {
  background-color: rgba(34, 197, 94, 0.1490196078) !important;
}

.bg-light-info {
  background-color: rgba(22, 199, 249, 0.1490196078) !important;
}

.bg-light-warning {
  background-color: rgba(249, 115, 22, 0.1490196078) !important;
}

.bg-light-danger {
  background-color: rgba(248, 31, 88, 0.1490196078) !important;
}

.bg-light-secondary {
  background-color: rgba(132, 90, 223, 0.1490196078) !important;
}

.bg-light-light {
  background-color: rgba(226, 232, 240, 0.1490196078) !important;
}

.bg-light-extra-light {
  background-color: #e2e8f08a !important;
}

.bg-light-muted {
  background-color: rgba(128, 148, 174, 0.1490196078) !important;
}

.bg-light-dark {
  background-color: rgba(44, 50, 63, 0.1490196078) !important;
}

.bg-light-white {
  background-color: rgba(255, 255, 255, 0.1490196078) !important;
}

.bg-cyan {
  background-color: var(--cyan) !important;
}

.bg-indigo {
  background-color: var(--indigo) !important;
}

.bg-purple {
  background-color: var(--purple) !important;
}

.bg-red {
  background-color: var(--red) !important;
}

.bg-yellow {
  background-color: var(--yellow) !important;
}

.bg-orange {
  background-color: var(--orange) !important;
}

.bg-pink {
  background-color: var(--pink) !important;
}

.bg-hover-primary {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-hover-primary:hover {
  background-color: var(--primary) !important;
}

.bg-hover-success {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-hover-success:hover {
  background-color: var(--success) !important;
}

.bg-hover-info {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-hover-info:hover {
  background-color: var(--info) !important;
}

.bg-hover-warning {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-hover-warning:hover {
  background-color: var(--warning) !important;
}

.bg-hover-danger {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-hover-danger:hover {
  background-color: var(--danger) !important;
}

.bg-hover-secondary {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-hover-secondary:hover {
  background-color: var(--secondary) !important;
}

.bg-hover-light {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-hover-light:hover {
  background-color: var(--light) !important;
}

.bg-hover-extra-light {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-hover-extra-light:hover {
  background-color: var(--extra-light) !important;
}

.bg-hover-muted {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-hover-muted:hover {
  background-color: var(--muted) !important;
}

.bg-hover-dark {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-hover-dark:hover {
  background-color: var(--dark) !important;
}

.bg-hover-white {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-hover-white:hover {
  background-color: var(--white) !important;
}

.bg-hover-cyan {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-hover-cyan:hover {
  background-color: var(--cyan) !important;
}

.bg-hover-indigo {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-hover-indigo:hover {
  background-color: var(--indigo) !important;
}

.bg-hover-purple {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-hover-purple:hover {
  background-color: var(--purple) !important;
}

.bg-hover-red {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-hover-red:hover {
  background-color: var(--red) !important;
}

.bg-hover-yellow {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-hover-yellow:hover {
  background-color: var(--yellow) !important;
}

.bg-hover-orange {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-hover-orange:hover {
  background-color: var(--orange) !important;
}

.bg-hover-pink {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-hover-pink:hover {
  background-color: var(--pink) !important;
}

.body-bg {
  background-color: var(--body-bg);
}

.bg-gradient-1 {
  background: var(--gradient-1) !important;
}

.bg-gradient-2 {
  background: var(--gradient-2) !important;
}

.bg-gradient-3 {
  background: var(--gradient-3) !important;
}

.bg-gradient-4 {
  background: var(--gradient-4) !important;
}

.bg-gradient-5 {
  background: var(--gradient-5) !important;
}

.bg-gradient-6 {
  background: var(--gradient-6) !important;
}

.bg-gradient-7 {
  background: var(--gradient-7) !important;
}

.bg-gradient-8 {
  background: var(--gradient-8) !important;
}

.bg-gradient-9 {
  background: var(--gradient-9) !important;
}

.bg-gradient-10 {
  background: var(--gradient-10) !important;
}

/* === bg css end === */
/* === shadow css start === */
.shadow-xxl {
  box-shadow: var(--shadow-xxl);
}

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-xs {
  box-shadow: var(--shadow-xs);
}

/* === shadow css end === */
/* === size css start === */

.w-120px {
  max-width: 120px;
}

.w-150px {
  max-width: 150px;
}

@media (max-width: 575px) {
  .w-150px {
    max-width: 120px;
  }
}

/* === size css end === */
/* === spacing css start === */
.ps-10 {
  padding-inline-start: 10px !important;
}

.ps-15 {
  padding-inline-start: 15px !important;
}

.ps-20 {
  padding-inline-start: 20px !important;
}

.ps-25 {
  padding-inline-start: 25px !important;
}

.ps-30 {
  padding-inline-start: 30px !important;
}

.ps-35 {
  padding-inline-start: 35px !important;
}

.ps-40 {
  padding-inline-start: 40px !important;
}

.pe-10 {
  padding-inline-end: 10px !important;
}

.pe-15 {
  padding-inline-end: 15px !important;
}

.pe-20 {
  padding-inline-end: 20px !important;
}

.pe-25 {
  padding-inline-end: 25px !important;
}

.pe-30 {
  padding-inline-end: 30px !important;
}

.pe-35 {
  padding-inline-end: 35px !important;
}

.pe-40 {
  padding-inline-end: 40px !important;
}

.pt-10 {
  padding-block-start: 10px !important;
}

.pt-15 {
  padding-block-start: 15px !important;
}

.pt-20 {
  padding-block-start: 20px !important;
}

.pt-25 {
  padding-block-start: 25px !important;
}

.pt-30 {
  padding-block-start: 30px !important;
}

.pt-35 {
  padding-block-start: 35px !important;
}

.pt-40 {
  padding-block-start: 40px !important;
}

.pb-10 {
  padding-block-end: 10px !important;
}

.pb-15 {
  padding-block-end: 15px !important;
}

.pb-20 {
  padding-block-end: 20px !important;
}

.pb-25 {
  padding-block-end: 25px !important;
}

.pb-30 {
  padding-block-end: 30px !important;
}

.pb-35 {
  padding-block-end: 35px !important;
}

.pb-40 {
  padding-block-end: 40px !important;
}

/* === spacing css end === */
/* === spacing css start === */
/* === spacing css end === */
/* === animation css start === */
/* === animation css end === */
/* === typography css start === */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  color: var(--display-color);
  font-weight: 600;
}

h1, .h1 {
  font-size: var(--display-1);
}

h2, .h2 {
  font-size: var(--display-2);
}

h3, .h3 {
  font-size: var(--display-3);
}

h4, .h4 {
  font-size: var(--display-4);
}

h5, .h5 {
  font-size: var(--display-5);
}

h6, .h6 {
  font-size: var(--display-6);
}

.text-2xxl {
  font-size: var(--font-2xxl) !important;
}

.text-2xl {
  font-size: var(--font-2xl) !important;
}

.text-xxl {
  font-size: var(--font-xxl) !important;
}

.text-xl {
  font-size: var(--font-xl) !important;
}

.text-lg {
  font-size: var(--font-lg) !important;
}

.text-md {
  font-size: var(--font-md) !important;
}

.text-sm {
  font-size: var(--font-sm) !important;
}

.text-xs {
  font-size: var(--font-xs) !important;
}

.text-xxs {
  font-size: var(--font-xxs) !important;
}

.line-height-1 {
  line-height: 1 !important;
}

.text-line-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-line-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-line-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* === typography css end === */
/* === text-align css start === */
.text-start {
  text-align: start !important;
}

.text-end {
  text-align: end !important;
}

/* === text-align css end === */
/* === border css start === */
.border {
  border-color: var(--border-color) !important;
}

.border-start {
  border-inline-start: 1px solid var(--border-color) !important;
}

.border-end {
  border-inline-end: 1px solid var(--border-color) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--border-color) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.border-success {
  border-color: var(--success) !important;
}

.border-info {
  border-color: var(--info) !important;
}

.border-warning {
  border-color: var(--warning) !important;
}

.border-danger {
  border-color: var(--danger) !important;
}

.border-secondary {
  border-color: var(--secondary) !important;
}

.border-light {
  border-color: var(--light) !important;
}

.border-extra-light {
  border-color: var(--extra-light) !important;
}

.border-muted {
  border-color: var(--muted) !important;
}

.border-dark {
  border-color: var(--dark) !important;
}

.border-white {
  border-color: var(--white) !important;
}

.border-cyan {
  border-color: var(--cyan) !important;
}

.border-indigo {
  border-color: var(--indigo) !important;
}

.border-purple {
  border-color: var(--purple) !important;
}

.border-red {
  border-color: var(--red) !important;
}

.border-yellow {
  border-color: var(--yellow) !important;
}

.border-orange {
  border-color: var(--orange) !important;
}

.border-pink {
  border-color: var(--pink) !important;
}

.border-light-primary {
  border-color: rgba(59, 130, 246, 0.3764705882) !important;
}

.border-light-primary:hover {
  border-color: #3B82F6 !important;
}

.border-light-success {
  border-color: rgba(34, 197, 94, 0.3764705882) !important;
}

.border-light-success:hover {
  border-color: #22c55e !important;
}

.border-light-info {
  border-color: rgba(22, 199, 249, 0.3764705882) !important;
}

.border-light-info:hover {
  border-color: #16C7F9 !important;
}

.border-light-warning {
  border-color: rgba(249, 115, 22, 0.3764705882) !important;
}

.border-light-warning:hover {
  border-color: #f97316 !important;
}

.border-light-danger {
  border-color: rgba(248, 31, 88, 0.3764705882) !important;
}

.border-light-danger:hover {
  border-color: #F81F58 !important;
}

.border-light-secondary {
  border-color: rgba(132, 90, 223, 0.3764705882) !important;
}

.border-light-secondary:hover {
  border-color: #845adf !important;
}

.border-light-light {
  border-color: rgba(226, 232, 240, 0.3764705882) !important;
}

.border-light-light:hover {
  border-color: #e2e8f0 !important;
}

.border-light-extra-light {
  border-color: #e2e8f08a !important;
}

.border-light-extra-light:hover {
  border-color: rgba(226, 232, 240, 0.5411764706) !important;
}

.border-light-muted {
  border-color: rgba(128, 148, 174, 0.3764705882) !important;
}

.border-light-muted:hover {
  border-color: #8094ae !important;
}

.border-light-dark {
  border-color: rgba(44, 50, 63, 0.3764705882) !important;
}

.border-light-dark:hover {
  border-color: #2c323f !important;
}

.border-light-white {
  border-color: rgba(255, 255, 255, 0.3764705882) !important;
}

.border-light-white:hover {
  border-color: #ffffff !important;
}

.border-hovered-primary {
  border-color: transparent !important;
}

.border-hovered-primary:hover {
  border-color: var(--primary) !important;
}

.border-hovered-success {
  border-color: transparent !important;
}

.border-hovered-success:hover {
  border-color: var(--success) !important;
}

.border-hovered-info {
  border-color: transparent !important;
}

.border-hovered-info:hover {
  border-color: var(--info) !important;
}

.border-hovered-warning {
  border-color: transparent !important;
}

.border-hovered-warning:hover {
  border-color: var(--warning) !important;
}

.border-hovered-danger {
  border-color: transparent !important;
}

.border-hovered-danger:hover {
  border-color: var(--danger) !important;
}

.border-hovered-secondary {
  border-color: transparent !important;
}

.border-hovered-secondary:hover {
  border-color: var(--secondary) !important;
}

.border-hovered-light {
  border-color: transparent !important;
}

.border-hovered-light:hover {
  border-color: var(--light) !important;
}

.border-hovered-extra-light {
  border-color: transparent !important;
}

.border-hovered-extra-light:hover {
  border-color: var(--extra-light) !important;
}

.border-hovered-muted {
  border-color: transparent !important;
}

.border-hovered-muted:hover {
  border-color: var(--muted) !important;
}

.border-hovered-dark {
  border-color: transparent !important;
}

.border-hovered-dark:hover {
  border-color: var(--dark) !important;
}

.border-hovered-white {
  border-color: transparent !important;
}

.border-hovered-white:hover {
  border-color: var(--white) !important;
}

.border-dashed {
  border-style: dashed !important;
}

/* === border css end === */
/* === hover css start === */
/* === hover css end === */
/* === overlay css start === */
/* Overlay Css Start */
.gradient-overlay {
  position: relative;
  z-index: 1;
}

.gradient-overlay.top-0::before {
  transform: rotate(180deg);
}

.gradient-overlay::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 22%, rgba(0, 0, 0, 0.69) 57.92%, rgba(0, 0, 0, 0.7) 100%);
  left: inherit;
  bottom: inherit;
}

/* Overlay Css End */
/* === overlay css end === */
/* === position css start === */
.top-middle {
  top: 50%;
  transform: translateY(-50%);
}

.top-4 {
  top: 4px;
}

.top-6 {
  top: 6px;
}

.top-8 {
  top: 8px;
}

.top-10 {
  top: 10px;
}

.top-12 {
  top: 12px;
}

.top-14 {
  top: 14px;
}

.top-16 {
  top: 16px;
}

.top-18 {
  top: 18px;
}

.top-20 {
  top: 20px;
}

.bottom-4 {
  bottom: 4px;
}

.bottom-6 {
  bottom: 6px;
}

.bottom-8 {
  bottom: 8px;
}

.bottom-10 {
  bottom: 10px;
}

.bottom-12 {
  bottom: 12px;
}

.bottom-14 {
  bottom: 14px;
}

.bottom-16 {
  bottom: 16px;
}

.bottom-18 {
  bottom: 18px;
}

.bottom-20 {
  bottom: 20px;
}

.start-4 {
  left: 4px;
}

.start-6 {
  left: 6px;
}

.start-8 {
  left: 8px;
}

.start-10 {
  left: 10px;
}

.start-12 {
  left: 12px;
}

.start-14 {
  left: 14px;
}

.start-16 {
  left: 16px;
}

.start-18 {
  left: 18px;
}

.start-20 {
  left: 20px;
}

.end-4 {
  right: 4px;
}

.end-6 {
  right: 6px;
}

.end-8 {
  right: 8px;
}

.end-10 {
  right: 10px;
}

.end-12 {
  right: 12px;
}

.end-14 {
  right: 14px;
}

.end-16 {
  right: 16px;
}

.end-18 {
  right: 18px;
}

.end-20 {
  right: 20px;
}

/* === position css end === */
/* === preloader css start === */
/* === preloader css end === */
/* === buttons css start === */
.btn {
  font-size: 0.875rem;
  padding: 0.4375rem 0.875rem;
  text-transform: capitalize;
}

.btn.btn-lg {
  font-size: 1rem;
  padding: 0.5rem 1rem;
}

.btn.btn-sm {
  font-size: 0.8125rem;
  padding: 0.375rem 0.75rem;
}

.btn-primary {
  background-color: #3B82F6 !important;
  color: #fff;
  border-color: #3B82F6;
}

.btn-primary:hover {
  background-color: rgba(59, 130, 246, 0.831372549) !important;
  color: #fff;
  border-color: rgba(59, 130, 246, 0.831372549);
}

.btn-primary:active, .btn-primary:focus {
  background-color: #3B82F6 !important;
  color: #fff;
  border-color: #3B82F6;
}

.btn-primary.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #3B82F6;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-success {
  background-color: #22c55e !important;
  color: #fff;
  border-color: #22c55e;
}

.btn-success:hover {
  background-color: rgba(34, 197, 94, 0.831372549) !important;
  color: #fff;
  border-color: rgba(34, 197, 94, 0.831372549);
}

.btn-success:active, .btn-success:focus {
  background-color: #22c55e !important;
  color: #fff;
  border-color: #22c55e;
}

.btn-success.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-success .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #22c55e;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-info {
  background-color: #16C7F9 !important;
  color: #fff;
  border-color: #16C7F9;
}

.btn-info:hover {
  background-color: rgba(22, 199, 249, 0.831372549) !important;
  color: #fff;
  border-color: rgba(22, 199, 249, 0.831372549);
}

.btn-info:active, .btn-info:focus {
  background-color: #16C7F9 !important;
  color: #fff;
  border-color: #16C7F9;
}

.btn-info.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-info .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #16C7F9;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-warning {
  background-color: #f97316 !important;
  color: #fff;
  border-color: #f97316;
}

.btn-warning:hover {
  background-color: rgba(249, 115, 22, 0.831372549) !important;
  color: #fff;
  border-color: rgba(249, 115, 22, 0.831372549);
}

.btn-warning:active, .btn-warning:focus {
  background-color: #f97316 !important;
  color: #fff;
  border-color: #f97316;
}

.btn-warning.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-warning .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #f97316;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-danger {
  background-color: #F81F58 !important;
  color: #fff;
  border-color: #F81F58;
}

.btn-danger:hover {
  background-color: rgba(248, 31, 88, 0.831372549) !important;
  color: #fff;
  border-color: rgba(248, 31, 88, 0.831372549);
}

.btn-danger:active, .btn-danger:focus {
  background-color: #F81F58 !important;
  color: #fff;
  border-color: #F81F58;
}

.btn-danger.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-danger .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #F81F58;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-secondary {
  background-color: #845adf !important;
  color: #fff;
  border-color: #845adf;
}

.btn-secondary:hover {
  background-color: rgba(132, 90, 223, 0.831372549) !important;
  color: #fff;
  border-color: rgba(132, 90, 223, 0.831372549);
}

.btn-secondary:active, .btn-secondary:focus {
  background-color: #845adf !important;
  color: #fff;
  border-color: #845adf;
}

.btn-secondary.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #845adf;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-light {
  background-color: #e2e8f0 !important;
  color: #fff;
  border-color: #e2e8f0;
}

.btn-light:hover {
  background-color: rgba(226, 232, 240, 0.831372549) !important;
  color: #fff;
  border-color: rgba(226, 232, 240, 0.831372549);
}

.btn-light:active, .btn-light:focus {
  background-color: #e2e8f0 !important;
  color: #fff;
  border-color: #e2e8f0;
}

.btn-light.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-light .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #e2e8f0;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-extra-light {
  background-color: rgba(226, 232, 240, 0.5411764706) !important;
  color: #fff;
  border-color: rgba(226, 232, 240, 0.5411764706);
}

.btn-extra-light:hover {
  background-color: #e2e8f08a !important;
  color: #fff;
  border-color: #e2e8f08a;
}

.btn-extra-light:active, .btn-extra-light:focus {
  background-color: rgba(226, 232, 240, 0.5411764706) !important;
  color: #fff;
  border-color: rgba(226, 232, 240, 0.5411764706);
}

.btn-extra-light.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-extra-light .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: rgba(226, 232, 240, 0.5411764706);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-muted {
  background-color: #8094ae !important;
  color: #fff;
  border-color: #8094ae;
}

.btn-muted:hover {
  background-color: rgba(128, 148, 174, 0.831372549) !important;
  color: #fff;
  border-color: rgba(128, 148, 174, 0.831372549);
}

.btn-muted:active, .btn-muted:focus {
  background-color: #8094ae !important;
  color: #fff;
  border-color: #8094ae;
}

.btn-muted.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-muted .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #8094ae;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-dark {
  background-color: #2c323f !important;
  color: #fff;
  border-color: #2c323f;
}

.btn-dark:hover {
  background-color: rgba(44, 50, 63, 0.831372549) !important;
  color: #fff;
  border-color: rgba(44, 50, 63, 0.831372549);
}

.btn-dark:active, .btn-dark:focus {
  background-color: #2c323f !important;
  color: #fff;
  border-color: #2c323f;
}

.btn-dark.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-dark .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #2c323f;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-white {
  background-color: #ffffff !important;
  color: #fff;
  border-color: #ffffff;
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.831372549) !important;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.831372549);
}

.btn-white:active, .btn-white:focus {
  background-color: #ffffff !important;
  color: #fff;
  border-color: #ffffff;
}

.btn-white.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-white .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-light {
  color: var(--display-color);
}

.btn-light:hover, .btn-light:focus {
  color: var(--display-color);
}

.btn-light .btn-badge {
  background-color: var(--display-color);
  color: #fff;
}

.btn-light-primary {
  border: 1px solid rgba(59, 130, 246, 0);
  color: #3B82F6;
  background-color: rgba(59, 130, 246, 0.1490196078);
}

.btn-light-primary:hover {
  color: #fff;
  background-color: #3B82F6;
}

.btn-light-success {
  border: 1px solid rgba(34, 197, 94, 0);
  color: #22c55e;
  background-color: rgba(34, 197, 94, 0.1490196078);
}

.btn-light-success:hover {
  color: #fff;
  background-color: #22c55e;
}

.btn-light-info {
  border: 1px solid rgba(22, 199, 249, 0);
  color: #16C7F9;
  background-color: rgba(22, 199, 249, 0.1490196078);
}

.btn-light-info:hover {
  color: #fff;
  background-color: #16C7F9;
}

.btn-light-warning {
  border: 1px solid rgba(249, 115, 22, 0);
  color: #f97316;
  background-color: rgba(249, 115, 22, 0.1490196078);
}

.btn-light-warning:hover {
  color: #fff;
  background-color: #f97316;
}

.btn-light-danger {
  border: 1px solid rgba(248, 31, 88, 0);
  color: #F81F58;
  background-color: rgba(248, 31, 88, 0.1490196078);
}

.btn-light-danger:hover {
  color: #fff;
  background-color: #F81F58;
}

.btn-light-secondary {
  border: 1px solid rgba(132, 90, 223, 0);
  color: #845adf;
  background-color: rgba(132, 90, 223, 0.1490196078);
}

.btn-light-secondary:hover {
  color: #fff;
  background-color: #845adf;
}

.btn-light-light {
  border: 1px solid rgba(226, 232, 240, 0);
  color: #e2e8f0;
  background-color: rgba(226, 232, 240, 0.1490196078);
}

.btn-light-light:hover {
  color: #fff;
  background-color: #e2e8f0;
}

.btn-light-extra-light {
  border: 1px solid #e2e8f08a;
  color: rgba(226, 232, 240, 0.5411764706);
  background-color: #e2e8f08a;
}

.btn-light-extra-light:hover {
  color: #fff;
  background-color: rgba(226, 232, 240, 0.5411764706);
}

.btn-light-muted {
  border: 1px solid rgba(128, 148, 174, 0);
  color: #8094ae;
  background-color: rgba(128, 148, 174, 0.1490196078);
}

.btn-light-muted:hover {
  color: #fff;
  background-color: #8094ae;
}

.btn-light-dark {
  border: 1px solid rgba(44, 50, 63, 0);
  color: #2c323f;
  background-color: rgba(44, 50, 63, 0.1490196078);
}

.btn-light-dark:hover {
  color: #fff;
  background-color: #2c323f;
}

.btn-light-white {
  border: 1px solid rgba(255, 255, 255, 0);
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1490196078);
}

.btn-light-white:hover {
  color: #fff;
  background-color: #ffffff;
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-outline-primary:active, .btn-outline-primary:focus {
  background-color: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}

.btn-outline-success {
  background-color: transparent;
  color: var(--success);
  border-color: var(--success);
}

.btn-outline-success:hover {
  background-color: var(--success);
  color: #fff;
  border-color: var(--success);
}

.btn-outline-success:active, .btn-outline-success:focus {
  background-color: var(--success) !important;
  color: #fff !important;
  border-color: var(--success) !important;
}

.btn-outline-info {
  background-color: transparent;
  color: var(--info);
  border-color: var(--info);
}

.btn-outline-info:hover {
  background-color: var(--info);
  color: #fff;
  border-color: var(--info);
}

.btn-outline-info:active, .btn-outline-info:focus {
  background-color: var(--info) !important;
  color: #fff !important;
  border-color: var(--info) !important;
}

.btn-outline-warning {
  background-color: transparent;
  color: var(--warning);
  border-color: var(--warning);
}

.btn-outline-warning:hover {
  background-color: var(--warning);
  color: #fff;
  border-color: var(--warning);
}

.btn-outline-warning:active, .btn-outline-warning:focus {
  background-color: var(--warning) !important;
  color: #fff !important;
  border-color: var(--warning) !important;
}

.btn-outline-danger {
  background-color: transparent;
  color: var(--danger);
  border-color: var(--danger);
}

.btn-outline-danger:hover {
  background-color: var(--danger);
  color: #fff;
  border-color: var(--danger);
}

.btn-outline-danger:active, .btn-outline-danger:focus {
  background-color: var(--danger) !important;
  color: #fff !important;
  border-color: var(--danger) !important;
}

.btn-outline-secondary {
  background-color: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}

.btn-outline-secondary:hover {
  background-color: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.btn-outline-secondary:active, .btn-outline-secondary:focus {
  background-color: var(--secondary) !important;
  color: #fff !important;
  border-color: var(--secondary) !important;
}

.btn-outline-light {
  background-color: transparent;
  color: var(--light);
  border-color: var(--light);
}

.btn-outline-light:hover {
  background-color: var(--light);
  color: #fff;
  border-color: var(--light);
}

.btn-outline-light:active, .btn-outline-light:focus {
  background-color: var(--light) !important;
  color: #fff !important;
  border-color: var(--light) !important;
}

.btn-outline-extra-light {
  background-color: transparent;
  color: var(--extra-light);
  border-color: var(--extra-light);
}

.btn-outline-extra-light:hover {
  background-color: var(--extra-light);
  color: #fff;
  border-color: var(--extra-light);
}

.btn-outline-extra-light:active, .btn-outline-extra-light:focus {
  background-color: var(--extra-light) !important;
  color: #fff !important;
  border-color: var(--extra-light) !important;
}

.btn-outline-muted {
  background-color: transparent;
  color: var(--muted);
  border-color: var(--muted);
}

.btn-outline-muted:hover {
  background-color: var(--muted);
  color: #fff;
  border-color: var(--muted);
}

.btn-outline-muted:active, .btn-outline-muted:focus {
  background-color: var(--muted) !important;
  color: #fff !important;
  border-color: var(--muted) !important;
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-outline-dark:hover {
  background-color: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.btn-outline-dark:active, .btn-outline-dark:focus {
  background-color: var(--dark) !important;
  color: #fff !important;
  border-color: var(--dark) !important;
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: #fff;
  border-color: var(--white);
}

.btn-outline-white:active, .btn-outline-white:focus {
  background-color: var(--white) !important;
  color: #fff !important;
  border-color: var(--white) !important;
}

.btn-outline-light {
  color: var(--display-color);
}

.btn-outline-light:hover, .btn-outline-light:focus {
  color: var(--display-color) !important;
}

.btn-icon {
  width: 32px;
  height: 32px;
  padding: 0.3125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* === buttons css end === */
/* === alert css start === */
.alert {
  padding: 0.625rem 0.9375rem;
}

.alert-primary {
  color: var(--primary-dark) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-primary::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-primary::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--primary);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-primary.border-0::after {
  display: none;
}

.alert-success {
  color: var(--success-dark) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-success::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--success);
  border: 1px solid var(--success);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-success::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--success);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-success.border-0::after {
  display: none;
}

.alert-info {
  color: var(--info-dark) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-info::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--info);
  border: 1px solid var(--info);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-info::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--info);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-info.border-0::after {
  display: none;
}

.alert-warning {
  color: var(--warning-dark) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-warning::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--warning);
  border: 1px solid var(--warning);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-warning::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--warning);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-warning.border-0::after {
  display: none;
}

.alert-danger {
  color: var(--danger-dark) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-danger::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--danger);
  border: 1px solid var(--danger);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-danger::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--danger);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-danger.border-0::after {
  display: none;
}

.alert-secondary {
  color: var(--secondary) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-secondary::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-secondary::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--secondary);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-secondary.border-0::after {
  display: none;
}

.alert-light {
  color: var(--light) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-light::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--light);
  border: 1px solid var(--light);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-light::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--light);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-light.border-0::after {
  display: none;
}

.alert-extra-light {
  color: var(--extra-light) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-extra-light::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--extra-light);
  border: 1px solid var(--extra-light);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-extra-light::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--extra-light);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-extra-light.border-0::after {
  display: none;
}

.alert-muted {
  color: var(--muted) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-muted::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--muted);
  border: 1px solid var(--muted);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-muted::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--muted);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-muted.border-0::after {
  display: none;
}

.alert-dark {
  color: var(--dark) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-dark::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--dark);
  border: 1px solid var(--dark);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-dark::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--dark);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-dark.border-0::after {
  display: none;
}

.alert-white {
  color: var(--white) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-white::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--white);
  border: 1px solid var(--white);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-white::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--white);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-white.border-0::after {
  display: none;
}

.alert-light {
  color: var(--display-color) !important;
}

.alert-dismissible .btn-close {
  width: 10px;
  height: 7px;
  background-size: 10px;
}

.alert-dismissible .btn-close:focus {
  box-shadow: none;
}

/* === alert css end === */
/* === badge css start === */
.badge {
  font-weight: 500;
  font-size: 0.75rem;
}

.badge-primary {
  background-color: #3B82F6 !important;
  color: #fff !important;
}

.badge-success {
  background-color: #22c55e !important;
  color: #fff !important;
}

.badge-info {
  background-color: #16C7F9 !important;
  color: #fff !important;
}

.badge-warning {
  background-color: #f97316 !important;
  color: #fff !important;
}

.badge-danger {
  background-color: #F81F58 !important;
  color: #fff !important;
}

.badge-secondary {
  background-color: #845adf !important;
  color: #fff !important;
}

.badge-light {
  background-color: #e2e8f0 !important;
  color: #fff !important;
}

.badge-extra-light {
  background-color: rgba(226, 232, 240, 0.5411764706) !important;
  color: #fff !important;
}

.badge-muted {
  background-color: #8094ae !important;
  color: #fff !important;
}

.badge-dark {
  background-color: #2c323f !important;
  color: #fff !important;
}

.badge-white {
  background-color: #ffffff !important;
  color: #fff !important;
}

.badge-light-primary {
  background-color: rgba(59, 130, 246, 0.1490196078) !important;
  color: #3B82F6 !important;
}

.badge-light-success {
  background-color: rgba(34, 197, 94, 0.1490196078) !important;
  color: #22c55e !important;
}

.badge-light-info {
  background-color: rgba(22, 199, 249, 0.1490196078) !important;
  color: #16C7F9 !important;
}

.badge-light-warning {
  background-color: rgba(249, 115, 22, 0.1490196078) !important;
  color: #f97316 !important;
}

.badge-light-danger {
  background-color: rgba(248, 31, 88, 0.1490196078) !important;
  color: #F81F58 !important;
}

.badge-light-secondary {
  background-color: rgba(132, 90, 223, 0.1490196078) !important;
  color: #845adf !important;
}

.badge-light-light {
  background-color: rgba(226, 232, 240, 0.1490196078) !important;
  color: #e2e8f0 !important;
}

.badge-light-extra-light {
  background-color: #e2e8f08a !important;
  color: rgba(226, 232, 240, 0.5411764706) !important;
}

.badge-light-muted {
  background-color: rgba(128, 148, 174, 0.1490196078) !important;
  color: #8094ae !important;
}

.badge-light-dark {
  background-color: rgba(44, 50, 63, 0.1490196078) !important;
  color: #2c323f !important;
}

.badge-light-white {
  background-color: rgba(255, 255, 255, 0.1490196078) !important;
  color: #ffffff !important;
}

.badge-light {
  color: var(--display-color) !important;
}

/* === badge css end === */
/* === table css start === */
.table thead th {
  font-size: 0.875rem;
  color: #404040;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .table thead th:last-child {
    text-align: right;
  }
}
.table tbody td {
  font-size: 0.875rem;
  vertical-align: middle;
  color: var(--body-color);
  padding: 0.875rem 0.75rem;
}

@media (min-width: 992px) {
  .table tbody td:last-child {
    text-align: right;
  }
  .table tbody td:last-child .d-flex {
    justify-content: flex-end;
  }
}
.table.head-light-bg thead th {
  background-color: var(--light);
}

.table.head-rounded thead th {
  border: none;
}

.table.head-rounded thead th:first-child {
  border-radius: 8px 0 0 8px;
}

.table.head-rounded thead th:last-child {
  border-radius: 0 8px 8px 0;
}

.table.head-primary-bg thead th {
  background-color: var(--primary);
  color: #fff;
}

.default-table thead th {
  border-color: var(--border-color);
}

.default-table tbody td {
  border-color: var(--border-color);
}

.bordered-table thead th {
  border: 1px solid var(--border-color);
}

.bordered-table tbody td {
  border: 1px solid var(--border-color);
}

.borderless-table thead th {
  border: none;
}

.borderless-table tbody td {
  border: none;
}

/* === table css end === */
/* === data table css start === */
.dt-container .row {
  margin-top: 1rem !important;
}

.dt-container .row:first-child {
  margin-top: 0 !important;
}

table.dataTable {
  width: 100% !important;
}

.dt-length,
.dt-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dt-length label,
.dt-search label {
  white-space: nowrap;
  font-size: 0.875rem;
}

.dt-search input {
  border-color: var(--border-color) !important;
  padding: 2px 15px !important;
}

.dataTable thead th:hover {
  /* outline: none !important; */
}

.dataTable tbody tr:hover td {
  background-color: #f1f5f9 !important;
}

.dataTable tbody td {
  background-color: #fff;
  /* border: none !important; */
}

.dt-info {
  font-size: 0.875rem;
}

table.dataTable.display > tbody > tr:nth-child(odd) > .sorting_1,
table.dataTable.order-column.stripe > tbody > tr:nth-child(odd) > .sorting_1 {
  box-shadow: none;
}

table.dataTable.display > tbody > tr:nth-child(even) > .sorting_1,
table.dataTable.order-column.stripe > tbody > tr:nth-child(even) > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.054);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.054);
}

table.dataTable.stripe > tbody > tr:nth-child(odd) > *,
table.dataTable.display > tbody > tr:nth-child(odd) > * {
  box-shadow: none;
}

table.dataTable.stripe > tbody > tr:nth-child(even) > *,
table.dataTable.display > tbody > tr:nth-child(even) > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.023);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.023);
}

.dt-paging .pagination .page-item {
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}

.dt-paging .pagination .page-item.active .page-link {
  background-color: var(--primary) !important;
  color: #fff;
}

.dt-paging .pagination .page-item.active .page-link:focus {
  color: #fff;
}

.dt-paging .pagination .page-item .page-link {
  color: var(--body-color);
  border: none;
  background-color: transparent !important;
  padding: 2px 12px !important;
  border-radius: 6px !important;
}

.dt-paging .pagination .page-item .page-link:focus {
  box-shadow: none;
  background-color: var(--light);
  color: var(--display-color);
}

/* === data table css end === */
/* === table responsive css start === */
/*
 * jQuery Basic Table
 * Author: Jerry Low
 */
@media (max-width: 991px) {
  .responsive-table tbody tr td {
    padding: 0;
    border: 1px solid var(--border-color) !important;
    border-bottom: none !important;
  }
  .responsive-table tbody tr td:last-child {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color) !important;
  }
  .responsive-table tbody tr td::before {
    background-color: var(--light);
    padding: 10px;
    color: var(--display-color);
    font-weight: 600 !important;
  }
  .responsive-table tbody tr td .bt-content {
    padding: 7px 15px;
  }
}
table.bt thead,
table.bt tbody th {
  display: none;
}

table.bt tfoot th,
table.bt tfoot td,
table.bt tbody td {
  border: none;
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  vertical-align: top;
  /* IE 9 */
  float: left\9 ;
  width: 100% \9 ;
}

table.bt tfoot th::before,
table.bt tfoot td::before,
table.bt tbody td::before {
  content: attr(data-th) ": ";
  display: inline-block;
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  font-weight: bold;
  width: 6.5em;
}

table.bt tfoot th.bt-hide,
table.bt tfoot td.bt-hide,
table.bt tbody td.bt-hide {
  display: none;
}

table.bt tfoot th .bt-content,
table.bt tfoot td .bt-content,
table.bt tbody td .bt-content {
  vertical-align: top;
}

.bt-wrapper.active {
  max-height: 310px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

table.bt.bt--no-header tfoot td::before,
table.bt.bt--no-header tbody td::before {
  display: none;
}

.no-data-td::before {
  display: none !important;
}

.no-data-td .bt-content {
  width: 100%;
}

/* === table responsive css end === */
/* === text editor css start === */
.note-toolbar.card-header {
  border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
}

/* === text editor css end === */
/* === icon picker css start === */
.iconpicker-popover.in {
  opacity: 1 !important;
}

/* === icon picker css end === */
/* === toastr css start === */
.jq-toast-wrap .jq-toast-single {
  transition: all 0s;
}

.jq-toast-wrap .jq-toast-loader {
  height: 3px;
}

/* === toastr css end === */
/* === form css start === */
.form-select, .form-control, textarea {
  border: 1px solid var(--border-color);
  color: var(--display-color) !important;
  background-color: var(--bg-white);
  padding: 0.5rem 0.9375rem;
  font-size: 0.875rem;
}

.form-select::placeholder, .form-control::placeholder, textarea::placeholder {
  color: var(--placeholder-color);
}

.form-select:focus, .form-select:active, .form-control:focus, .form-control:active, textarea:focus, textarea:active {
  box-shadow: none;
  border-color: var(--primary) !important;
  background-color: transparent;
}

.form-select {
  padding: 0.5625rem 1.875rem 0.5625rem 0.9375rem;
  background-position-x: right;
  background-size: 26px 12px;
}

.form-select.form-select-lg {
  height: 56px;
  font-size: 1.125rem;
}

.form-select.form-select-sm {
  height: 33.5px;
  font-size: 0.8125rem;
  padding: 0.375rem 1.875rem 0.375rem 0.9375rem;
}

.form-select, .form-control:not(textarea) {
  height: 2.75rem;
}

.form-control[type=file] {
  line-height: 2;
}

.form-control[readonly] {
  background-color: var(--light);
}

.form-control.form-control-lg {
  height: 56px;
  font-size: 1.125rem;
}

.form-control.form-control-lg[type=file] {
  line-height: 2.1;
}

.form-control.form-control-sm {
  height: 33.5px;
  font-size: 0.8125rem;
}

.form-control.form-control-sm[type=file] {
  line-height: 1.1;
}

.form-label {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: var(--display-color);
  font-weight: 600;
}

.form-label ~ div[unselectable="on"],
.form-label ~ div[unselectable="on"] ~ div {
  width: 100% !important;
}

.input-group-text {
  color: var(--body-color);
}

.input-group .btn {
  z-index: 1;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
  border-color: var(--danger);
}

.invalid-feedback {
  color: var(--danger);
  display: block;
}

/* icon field css start */
.icon-field {
  position: relative;
}

.icon-field .icon {
  position: absolute;
  top: 22px;
  inset-inline-start: 0;
  width: 40px;
  height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  color: var(--placeholder-color);
}

.icon-field .form-control {
  padding-inline-start: 2.5rem;
}

.icon-field .form-control.form-control-lg ~ .icon {
  top: 18px;
}

.icon-field .form-control.form-control-sm ~ .icon {
  top: 10px;
}

/* icon field css end */
/* input Radio Css Start */
.form-check-input {
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary);
}

.form-check {
  margin-bottom: 0;
  padding-left: 0;
  gap: 12px;
  display: inline-flex;
  align-items: center;
}

.form-check.style-check .form-check-input::before {
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  transform: translate(-50%, -50%) scale(1);
  transition: 0.2s linear;
}

.form-check.style-check .form-check-input::after {
  position: absolute;
  content: "\eb7a";
  font-family: "remixicon";
  display: inline-block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s linear;
  border-radius: inherit !important;
}

.form-check.style-check .form-check-input:checked {
  border-color: var(--primary) !important;
}

.form-check.style-check .form-check-input:checked::after {
  visibility: visible;
  opacity: 1;
}

.form-check .form-check-input {
  border: 1px solid var(--border-color);
  background: transparent;
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
  margin-left: 0;
  margin-top: 0;
  cursor: pointer;
}

.form-check .form-check-input:checked[type=radio] {
  background-image: none;
  border-color: var(--primary);
}

.form-check .form-check-input:checked::before {
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
  opacity: 1;
}

.form-check .form-check-input:checked ~ label {
  color: var(--body-color) !important;
}

.form-check .form-check-input::before {
  position: absolute;
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: var(--primary);
  border-radius: inherit;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s linear;
}

.form-check .form-check-input:focus {
  box-shadow: none;
}

.style-checked .form-check-input {
  background-color: #f1f5f9;
}

.badge[class*=-primary] .form-check-input {
  border-color: var(--primary) !important;
}

.badge[class*=-success] .form-check-input {
  border-color: var(--success) !important;
}

.badge[class*=-info] .form-check-input {
  border-color: var(--info) !important;
}

.badge[class*=-warning] .form-check-input {
  border-color: var(--warning) !important;
}

.badge[class*=-danger] .form-check-input {
  border-color: var(--danger) !important;
}

.badge[class*=-secondary] .form-check-input {
  border-color: var(--secondaryf) !important;
}

.badge[class*=-dark] .form-check-input {
  border-color: var(--dark) !important;
}

/* input Radio Css End */
/* Switch Css Start */
.form-switch {
  padding-inline-start: 0;
}

.form-switch .form-check-input {
  box-shadow: none !important;
  margin: 0;
  position: relative;
  background-color: var(--light);
  border: 0;
  background-image: none !important;
  width: 36px;
  height: 20px;
}

.form-switch .form-check-input:checked {
  background-color: var(--primary);
}

.form-switch .form-check-input:checked::before {
  left: calc(100% - 18px);
  transition: 0.2s linear;
}

.form-switch .form-check-input:checked ~ .form-check-label {
  color: var(--body-color) !important;
}

.form-switch .form-check-input::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
  transition: 0.2s linear;
}

.form-switch.form-switch-sm .form-check-input {
  width: 30px;
  height: 18px;
}

.form-switch.form-switch-sm .form-check-input:checked {
  background-color: var(--primary);
}

.form-switch.form-switch-sm .form-check-input:checked::before {
  left: calc(100% - 16px);
}

.form-switch.form-switch-sm .form-check-input::before {
  width: 12px;
  height: 12px;
  left: 3px;
}

/* Switch Css End */
/* Switch different Color Css start */
.switch-primary .form-check-input:checked {
  background-color: var(--primary) !important;
}

.switch-primary .form-check-input:checked ~ .form-check-label {
  color: var(--primary) !important;
}

.switch-info .form-check-input:checked {
  background-color: var(--info) !important;
}

.switch-info .form-check-input:checked ~ .form-check-label {
  color: var(--info) !important;
}

.switch-success .form-check-input:checked {
  background-color: var(--success) !important;
}

.switch-success .form-check-input:checked ~ .form-check-label {
  color: var(--success) !important;
}

.switch-danger .form-check-input:checked {
  background-color: var(--danger) !important;
}

.switch-danger .form-check-input:checked ~ .form-check-label {
  color: var(--danger) !important;
}

.switch-warning .form-check-input:checked {
  background-color: var(--warning) !important;
}

.switch-warning .form-check-input:checked ~ .form-check-label {
  color: var(--warning) !important;
}

.switch-dark .form-check-input:checked {
  background-color: var(--dark) !important;
}

.switch-dark .form-check-input:checked ~ .form-check-label {
  color: var(--dark) !important;
}

.switch-purple .form-check-input:checked {
  background-color: var(--lilac) !important;
}

.switch-purple .form-check-input:checked ~ .form-check-label {
  color: var(--lilac) !important;
}

/* Switch different Color Css End */
/* input Group Checkbox Css Start */
.btn-check:checked + .btn {
  color: #fff !important;
}

.btn-check:checked + .btn-outline-warning {
  background-color: var(--warning) !important;
  border-color: var(--warning) !important;
}

.btn-check:checked + .btn-outline-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-check:checked + .btn-outline-danger {
  background-color: var(--danger) !important;
  border-color: var(--danger) !important;
}

.btn-check:checked + .btn-outline-success {
  background-color: var(--success) !important;
  border-color: var(--success) !important;
}

.btn-check:checked + .btn-outline-warning {
  background-color: var(--warning) !important;
  border-color: var(--warning) !important;
}

.btn-check:checked + .btn-outline-info {
  background-color: var(--info) !important;
  border-color: var(--info) !important;
}

.btn-check:checked + .btn-outline-lilac {
  background-color: var(--lilac) !important;
  border-color: var(--lilac) !important;
}

/* input Group Checkbox Css End */
/* custom form fields css start */
.form-mobile-field {
  position: relative;
}

.form-mobile-field .form-select {
  width: auto;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  border: 0;
  background-color: transparent;
}

.form-mobile-field .form-control {
  padding-inline-start: 4.375rem;
}

select option {
  background-color: var(--bg-white);
}

.was-validated .form-mobile-field .form-control {
  padding-inline-start: 5.9375rem;
}

/* custom form fields css end */
/* === form css end === */
/* === form select two css start === */
.form-select-two ~ .select2-container {
  display: block;
  width: 100% !important;
}

.form-select-two ~ .select2-container .selection {
  display: block;
}

.form-select-two ~ .select2-container .select2-selection--single {
  min-height: 44px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

.form-select-two ~ .select2-container .select2-selection--single .select2-selection__rendered {
  color: var(--display-color);
  line-height: 42px;
  padding: 0 0.9375rem;
  font-size: 0.875rem;
}

.form-select-two ~ .select2-container .select2-selection--single .select2-selection__arrow b {
  margin-left: -12px;
  margin-top: 5px;
}

.form-select-two ~ .select2-container .select2-selection--multiple {
  min-height: 44px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding-inline: 1rem;
}

.form-select-two ~ .select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
  height: 28px;
  margin-top: 10px;
  font-size: 0.875rem;
}

.form-select-two ~ .select2-container .select2-selection--multiple .select2-selection__choice {
  background-color: var(--light);
  border: 1px solid var(--border-color);
}

.form-select-two ~ .select2-container .select2-selection--multiple .select2-selection__choice:first-child {
  margin-left: 0;
}

.form-select-two ~ .select2-container .select2-selection--multiple .select2-selection__choice__remove {
  border-right: 1px solid var(--border-color);
}

.form-select-two ~ .select2-container .select2-selection--multiple .select2-selection__choice__display {
  font-size: 0.875rem;
}

.select-two-templating ~ .select2-container .select2-selection--single .select2-selection__rendered > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.select2-dropdown {
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

.select2-dropdown .select2-search__field {
  border: 1px solid var(--border-color) !important;
  border-radius: 4px;
  padding: 0 1rem;
  font-size: 0.875rem;
}

.select2-dropdown .select2-results__option {
  font-size: 0.875rem;
  padding: 0.375rem 1rem;
}

.select2-dropdown .select2-results__option--selected {
  background-color: var(--light) !important;
}

.select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--primary) !important;
}

.select2-container {
  transition: all 0s;
  z-index: 1;
}

body[class="modal-open"] .select2-container {
  z-index: 999;
}

/* === form select two css end === */
/* === card css start === */
.card {
  background-color: var(--bg-white);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  box-shadow: 0 0.25rem 1.875rem rgba(46, 45, 116, 0.05);
  border: none;
  position: initial;
  color: var(--body-color);
}

.card .card-header {
  background-color: var(--bg-white);
  padding: 0.875rem 1rem;
  border-color: var(--border-color);
  color: var(--body-color);
}

@media (min-width: 1400px) {
  .card .card-header {
    padding: 0.875rem 1.5rem;
  }
}
.card .card-title {
  font-size: 1.125rem !important;
  font-weight: 600;
  color: var(--display-color);
}

@media (max-width: 575px) {
  .card .card-title {
    font-size: 1rem !important;
  }
}

.card .card-body {
  padding: 0.875rem 1rem;
  color: var(--body-color);
}

@media (min-width: 1400px) {
  .card .card-body {
    padding: 0.875rem 1.5rem;
  }
}
.card .card-footer {
  background-color: var(--bg-white);
  border-color: var(--border-color);
  padding: 0.875rem 1rem;
}

@media (min-width: 1400px) {
  .card .card-footer {
    padding: 0.875rem 1.5rem;
  }
}
/* === card css end === */
/* === modal css start === */
.modal-header .btn-close {
  margin-inline-start: auto;
  margin-inline-end: 0;
}

.modal-title {
  font-size: 1.125rem;
}

/* === modal css end === */
/* === accordion css start === */
/* =========================== Accordion Css start ============================= */
.accordion .accordion-item {
  border: 1px solid var(--border-color) !important;
  background-color: var(--bg-white) !important;
  border-radius: 12px;
  overflow: hidden;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 4px 30px 0px rgba(46, 45, 116, 0.05);
}

.accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.accordion .accordion-body {
  background-color: transparent;
  padding: 0;
  padding-top: 1rem;
  color: var(--body-color);
}

.accordion .accordion-button {
  padding: 0;
  background: transparent;
  padding-inline-end: 68px;
}

.accordion .accordion-button::after {
  background-image: none;
}

.accordion .accordion-button:focus {
  box-shadow: none;
}

.accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--primary);
}

.accordion .accordion-button:not(.collapsed)::after {
  background-image: none;
  color: var(--primary);
}

.accordion .accordion-button[aria-expanded=true]::after, .accordion .accordion-button[aria-expanded=false]::after {
  content: "\f1af";
  font-family: remixicon;
  display: inline-block;
  position: absolute;
  inset-inline-end: 0;
  height: 24px;
  width: 24px;
  border: 2px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  border-radius: 50%;
  line-height: 1;
  color: var(--primary);
}

.accordion .accordion-button[aria-expanded=false]::after {
  content: "\ea13";
}

/* ================================= Accordion Css End =========================== */
/* === accordion css end === */
/* === nav-tabs css start === */
.nav-tabs.bordered-tab {
  border-color: var(--border-color);
}

.nav-tabs .nav-item .nav-link {
  font-weight: 500;
}

.nav-tabs .nav-item .nav-link .text-lg {
  line-height: 1;
}

.nav-tabs.bordered-tab .nav-item .nav-link {
  border: none;
  position: relative;
  color: var(--body-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.nav-tabs.bordered-tab .nav-item .nav-link::after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  opacity: 0;
}

.nav-tabs.bordered-tab .nav-item .nav-link.active {
  margin-bottom: 0;
  color: var(--primary);
}

.nav-tabs.bordered-tab .nav-item .nav-link.active::after {
  opacity: 1;
}

.nav-tabs.bordered-tab .nav-item .nav-link.active .nav-tabs-badge {
  background-color: var(--primary);
}

.nav-tabs.bordered-tab .nav-item .nav-link .nav-tabs-badge {
  width: 18px;
  height: 18px;
  background-color: var(--body-color);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.nav-tabs.pill-tab {
  border: none;
}

.nav-tabs.pill-tab .nav-item .nav-link {
  border: none;
  position: relative;
  color: var(--body-color);
  border-radius: 6px !important;
  padding: 0.375rem 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-tabs.pill-tab .nav-item .nav-link.active {
  margin-bottom: 0;
  background-color: var(--primary);
  color: #fff;
}

.nav-tabs.pill-tab .nav-item .nav-link.active .nav-tabs-badge {
  background-color: #fff;
  color: var(--primary);
}

.nav-tabs.pill-tab .nav-item .nav-link .nav-tabs-badge {
  width: 18px;
  height: 18px;
  background-color: var(--body-color);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.nav-tabs.pill-light-tab {
  border: none;
}

.nav-tabs.pill-light-tab .nav-item .nav-link {
  border: none;
  position: relative;
  color: var(--body-color);
  border-radius: 6px !important;
  padding: 0.375rem 0.9375rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-tabs.pill-light-tab .nav-item .nav-link::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  opacity: 0;
  z-index: -1;
  border-radius: 6px !important;
}

.nav-tabs.pill-light-tab .nav-item .nav-link.active {
  margin-bottom: 0;
  color: var(--primary);
}

.nav-tabs.pill-light-tab .nav-item .nav-link.active::before {
  opacity: 0.25;
}

.nav-tabs.pill-light-tab .nav-item .nav-link.active .nav-tabs-badge {
  background-color: var(--primary);
  color: #fff;
}

.nav-tabs.pill-light-tab .nav-item .nav-link .nav-tabs-badge {
  width: 18px;
  height: 18px;
  background-color: var(--body-color);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.nav-tabs.light-bg-tab {
  background-color: #f1f5f9;
  border-bottom: none;
  padding: 5px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.nav-tabs.light-bg-tab .nav-item .nav-link {
  border: none;
  position: relative;
  color: var(--body-color);
  border-radius: 6px !important;
  padding: 0.375rem 0.9375rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
}

.nav-tabs.light-bg-tab .nav-item .nav-link.active {
  margin-bottom: 0;
  color: var(--primary);
  background-color: #fff;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.05);
}

.nav-tabs.light-bg-tab .nav-item .nav-link.active .nav-tabs-badge {
  background-color: var(--primary);
  color: #fff;
}

.nav-tabs.light-bg-tab .nav-item .nav-link .nav-tabs-badge {
  width: 18px;
  height: 18px;
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--body-color);
  font-size: 0.625rem;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}

.nav-tabs.nav-tabs-sm .nav-item .nav-link {
  font-size: 0.8125rem;
  padding: 0.25rem 0.5rem;
}

.nav-tabs.nav-tabs-gap-0 .nav-item {
  padding-inline: 0.375rem;
}

@media (min-width: 1400px) {
  .nav-tabs.nav-tabs-gap-0 .nav-item {
    padding-inline: 0.75rem;
  }
}
.nav-tabs.nav-tabs-gap-0 .nav-item .nav-link {
  padding-inline: 0;
  padding-block: 0.75rem;
  font-size: 0.875rem;
}

.tab-content {
  margin-top: 1rem;
}

.scrollable-tabs {
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
}

.scrollable-tabs .nav-item .nav-link {
  white-space: nowrap;
}

.nav-tabs-items-3 .nav-item {
  width: calc(100% / 3);
}

.nav-tabs-items-3 .nav-item .nav-link {
  width: 100%;
}
/* === nav-tabs css end === */


/* === pagination css start === */
.pagination .page-item.active .page-link {
  background-color: var(--primary);
  color: #fff;
}

.pagination .page-item .page-link {
  color: var(--body-color);
}

.pagination .page-item .page-link:focus {
  box-shadow: none;
  background-color: var(--light);
  color: var(--display-color);
}

.pagination-style-one .pagination {
  gap: 0.625rem;
}

.pagination-style-one .pagination .page-item.active .page-link {
  background-color: var(--primary);
  color: #fff;
}

.pagination-style-one .pagination .page-item .page-link {
  color: var(--body-color);
  border-radius: 0.25rem !important;
  width: 35px;
  height: 35px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-style-one .pagination .page-item .page-link:focus {
  box-shadow: none;
  background-color: var(--light);
  color: var(--display-color);
}

.pagination-style-two .pagination {
  gap: 0.625rem;
}

.pagination-style-two .pagination .page-item.active .page-link {
  background-color: var(--primary);
  color: #fff;
}

.pagination-style-two .pagination .page-item .page-link {
  color: var(--body-color);
  border-radius: 0.25rem !important;
  width: 35px;
  height: 35px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.pagination-style-two .pagination .page-item .page-link:focus {
  box-shadow: none;
  background-color: var(--light);
  color: var(--display-color);
}

.pagination {
    flex-wrap: wrap;
}

/* === pagination css end === */
/* === avatar css start === */
*[class*=avatar-] {
  object-fit: cover;
  -o-object-fit: cover;
}

*[class*=avatar-].has-circle::before {
  content: "/";
}

.avatar-6xl {
  width: 6.25rem;
  height: 6.25rem;
}

.avatar-5xl {
  width: 5rem;
  height: 5rem;
}

.avatar-4xl {
  width: 4.375rem;
  height: 4.375rem;
}

.avatar-3xl {
  width: 3.75rem;
  height: 3.75rem;
}

.avatar-2xl {
  width: 3.125rem;
  height: 3.125rem;
}

.avatar-xl {
  width: 2.75rem;
  height: 2.75rem;
}

.avatar-lg {
  width: 2.5rem;
  height: 2.5rem;
}

.avatar-md {
  width: 2rem;
  height: 2rem;
}

.avatar-sm {
  width: 1.5rem;
  height: 1.5rem;
}

.avatar-xs {
  width: 1.25rem;
  height: 1.25rem;
}

.avatar-chain-list {
  display: flex;
  align-items: center;
}

.avatar-chain-list li + li {
  margin-left: -0.625rem;
}

/* === avatar css end === */
/* === list-style css start === */
.list-group-item {
  border-color: var(--border-color);
}

.list-group-item.active {
  background-color: var(--primary);
}

/* === list-style css end === */
/* === apex-chart css start === */
.apexcharts-tooltip-style-1 .apexcharts-tooltip {
  padding: 0.75rem 0.5rem;
  border: 1px solid var(--input-bg);
  background-color: var(--white);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}

.apexcharts-tooltip-style-1 .apexcharts-tooltip-title {
  padding: 0 !important;
  background-color: transparent !important;
  font-size: 0.875rem !important;
  color: var(--text-primary-light) !important;
  font-weight: 600 !important;
  border: none !important;
}

.apexcharts-tooltip-style-1 .apexcharts-tooltip-series-group {
  padding: 0;
  display: flex;
  align-items: center;
  padding: 0 !important;
}

.apexcharts-tooltip-style-1 .apexcharts-tooltip-series-group .apexcharts-tooltip-y-group {
  padding: 0 !important;
}

.apexcharts-tooltip-style-1 .apexcharts-tooltip-series-group .apexcharts-tooltip-z-group {
  display: none !important;
}

.apexcharts-tooltip-style-1 .apexcharts-tooltip-series-group .apexcharts-tooltip-marker {
  background-color: var(--primary-600) !important;
}

/* Home Two Widget Chart Css Start*/
.remove-tooltip-title .apexcharts-tooltip-title {
  display: none;
}

.rounded-tooltip-value .apexcharts-tooltip.apexcharts-theme-light {
  background: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.rounded-tooltip-value .apexcharts-tooltip-text-y-label {
  display: none;
}

.rounded-tooltip-value .apexcharts-tooltip-marker {
  display: none;
}

.rounded-tooltip-value .apexcharts-tooltip-text-y-value {
  margin-left: 0;
}

.rounded-tooltip-value .apexcharts-tooltip-text {
  display: flex;
}

/* Home Two Widget Chart Css End*/
/* Chart's text color Css End*/
.apexcharts-xaxis-label, .apexcharts-yaxis-label {
  color: var(--text-secondary-light) !important;
  fill: var(--text-secondary-light);
}

/* Chart's text color Css End*/
/* Home Two Donut Chart Css Start*/
.apexcharts-tooltip-z-none .apexcharts-tooltip-z-group {
  display: none;
}

.title-style .apexcharts-text.apexcharts-datalabel-value {
  display: none;
}

.title-style .apexcharts-text.apexcharts-datalabel-label {
  fill: #4B5563 !important;
  font-size: 14px;
  font-weight: 700 !important;
  font-family: Inter, sans-serif;
}

.circle-none circle {
  display: none;
}

#donutChart {
  height: 0px;
  min-height: 163px !important;
  margin-top: -32px;
}

.margin-16-minus {
  margin: -16px;
}

/* Home Two Donut Chart Css End*/
/* Home Five Radial Chart Css End*/
#semiCircleGauge {
  transform: translateY(22px) translateX(14px);
}

/* Home Five Radial Chart Css End*/
.apexcharts-bar-area:hover {
  fill: var(--brand);
}

.apexcharts-datalabels text {
  filter: none !important; /* Remove any filter applied to data labels */
  text-shadow: none !important; /* Remove any text shadow */
}

.apexcharts-legend-text {
  color: var(--text-secondary-light) !important;
}

.square-marker .apexcharts-legend-marker {
  border-radius: 4px !important;
  width: 16px !important;
  height: 16px !important;
}

.series-gap-24 .apexcharts-legend-series {
  margin: 4px 12px !important;
}

.check-marker .apexcharts-legend-marker {
  position: relative;
}

.check-marker .apexcharts-legend-marker::after {
  position: absolute;
  content: "\eb7a";
  font-family: remixicon;
  display: inline-block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: #fff;
  transition: 0.2s;
}

/* === apex-chart css end === */
/* === progress-bar css start === */
/* Progress bar css start */
.max-w-66 {
  max-width: 66px;
}

.max-w-112 {
  max-width: 112px;
}

.progress {
  background-color: #efefef;
}

.progress-xs {
  height: 4px;
}

.progress-sm {
  height: 8px;
}

.progress-md {
  height: 12px;
}

.progress-lg {
  height: 12px;
}

/* Progress bar css End */
/* === progress-bar css end === */
/* === vector-map css start === */
/* Vector Map Css Start */
#world-map {
  height: 200px;
  background-color: var(--neutral-100);
}

.map-sm {
  height: 160px !important;
}

.jvectormap-goback, .jvectormap-zoomin, .jvectormap-zoomout {
  background: #D1D5DB;
  color: #111827;
}

/* Vector Map Css End */
/* === vector-map css end === */
/* === scroll css start === */
.scroll-sm::-webkit-scrollbar {
  width: 4px !important;
  height: 4px !important;
}

.scroll-sm::-webkit-scrollbar-thumb {
  background-color: #b1b3b8;
}

.scroll-sm::-webkit-scrollbar-thumb:hover {
  background-color: #7e7d7d;
}

.scroll-sm::-webkit-scrollbar-track {
  background-color: #d6d9de;
}

/* === scroll css end === */
/* === slider css start === */
/* Slick Slider Css Start  */
.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.slick-dots .slick-active button {
  background-color: var(--primary-600);
  width: 20px;
}

.slick-dots button {
  width: 10px;
  height: 4px;
  background-color: var(--primary-50);
  text-indent: -999999px;
  border-radius: 50px;
  color: var(--primary-50);
}

/* Dots Circle Style */
.dots-style-circle .slick-dots {
  gap: 8px;
}

.dots-style-circle .slick-dots .slick-active button {
  background-color: var(--primary-600);
  width: 12px;
  height: 12px;
}

.dots-style-circle .slick-dots button {
  width: 8px;
  height: 8px;
  background-color: #5A75AE;
  text-indent: -999999px;
  border-radius: 50%;
}

/* Dots Bottom Position Style */
.dots-positioned .slick-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
}

/* Slick Arrows Css */
.slick-arrow {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  font-size: 32px;
  line-height: 0;
  z-index: 1;
}

.slick-arrow.slick-next {
  left: auto;
  right: 16px;
}

/* Slick Slider Css End */
/* Slider Progress Css Start */
.slider-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
}

.slider-progress span {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 0px;
  height: 100%;
  background-color: var(--primary-600);
  transition: all 0s linear;
}

.slider-progress span.active {
  width: 100%;
}

/* Slider Progress Css End */
/* === slider css end === */
/* === Dropdown css start === */
/* Dropdown Css Start */
.dropdown-toggle::after {
  content: "\ea4e";
  border: none;
  font-family: remixicon !important;
  font-style: normal;
  vertical-align: 0;
}

.dropdown.dropend .dropdown-toggle::after {
  content: "\ea6e";
  border: none;
  font-family: remixicon !important;
  font-style: normal;
  vertical-align: 0;
}

.dropdown.dropup .dropdown-toggle::after {
  content: "\ea78";
  border: none;
  font-family: remixicon !important;
  font-style: normal;
  vertical-align: 0;
}

.dropdown.dropstart .dropdown-toggle::after {
  content: "\ea64";
  border: none;
  font-family: remixicon !important;
  font-style: normal;
  vertical-align: 0;
}

.dropdown-menu {
  background-color: var(--bg-white);
  border-color: var(--border-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0s;
}

.dropdown-item {
  color: var(--body-color);
  font-size: 0.875rem;
  padding: 0.375rem 0.9375rem;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: var(--light);
  color: var(--display-color);
}

.dropdown-item:focus {
  background-color: var(--light) !important;
  color: var(--display-color);
}

.dropdown-menu.language-dropdown-menu .dropdown-item::after {
  content: "\eb79";
  font-family: remixicon !important;
  font-style: normal;
  opacity: 0;
  margin-left: auto;
}

.dropdown-menu.language-dropdown-menu .dropdown-item.active {
  background-color: var(--light);
  color: var(--display-color);
}

.dropdown-menu.language-dropdown-menu .dropdown-item.active::after {
  opacity: 1;
}

.dropdown-menu .dropdown-divider {
  border-color: var(--border-color);
}

.dropdown-menu-lg {
  width: 295px;
}

@media (min-width: 350px) {
  .dropdown-menu-lg {
    width: 345px;
  }
}

@media (min-width: 576px) {
  .dropdown-menu-lg {
    width: 380px;
  }
}
.max-h-300 {
  max-height: 300px;
  overflow-y: auto;
}

.max-h-300::-webkit-scrollbar {
  width: 6px;
  background-color: #fff;
}

.max-h-300::-webkit-scrollbar-thumb {
  background-color: var(--light);
}

/* Dropdown Css End */
/* === Dropdown css end === */
/* === tooltip css start === */
/* Tooltip css start */
.tooltip {
  font-size: 0.75rem;
  --bs-tooltip-color: #fff;
}

.tooltip-primary {
  --bs-tooltip-bg: var(--primary);
}

.tooltip-secondary {
  --bs-tooltip-bg: var(--secondary);
}

.tooltip-success {
  --bs-tooltip-bg: var(--success);
}

.tooltip-info {
  --bs-tooltip-bg: var(--info);
}

.tooltip-warning {
  --bs-tooltip-bg: var(--warning);
}

.tooltip-danger {
  --bs-tooltip-bg: var(--danger);
}

.tooltip-dark {
  --bs-tooltip-bg: var(--dark);
}

.tooltip-light {
  --bs-tooltip-bg: var(--light);
  --bs-tooltip-color: var(--display-color);
}

/* Tooltip css End */
/* === tooltip css end === */
/* === image upload css start === */
.image-upload {
  position: relative;
  width: 200px;
}

.image-upload .image-edit-btn {
  position: absolute;
  right: 8px;
  z-index: 1;
  bottom: 8px;
}

.image-upload .image-edit-btn input {
  display: none;
}

.image-upload .image-edit-btn input + label {
  display: inline-block;
  width: 85px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  font-size: 0.75rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: #FFFFFF;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-weight: 600;
}

.image-upload .image-edit-btn input + label:hover {
  background: var(--primary);
  color: #fff;
}

.image-upload .image-edit-btn input + label:before {
  content: "\f24a";
  font-family: remixicon !important;
  font-style: normal;
  margin-right: 2px;
}

.image-upload .image-edit-btn input + label:after {
  content: attr(data-text);
}

.image-upload .image-preview {
  width: 200px;
  height: 200px;
  position: relative;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0px 0 4px 0px rgba(0, 0, 0, 0.15);
}

.image-upload .image-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: 3px solid #fff;
}

.image-upload.image-upload-sm {
  width: 100px;
}

.image-upload.image-upload-sm .image-preview {
  width: 100px;
  height: 100px;
}

.bg-size-contain {
  background-size: contain !important;
}

.mutiple-img-preview-style-one .img-div + .img-div {
  margin-top: 1rem;
}

.mutiple-img-preview-style-one .img-div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}

.mutiple-img-preview-style-one .img-div img {
  max-height: 40px;
}

.mutiple-img-preview-style-two {
  display: flex;
  flex-wrap: wrap;
}

.mutiple-img-preview-style-two .img-div {
  position: relative;
  width: calc(33.3333333333% - 20px);
  padding: 10px !important;
  margin: 10px;
}

.mutiple-img-preview-style-two .img-div-thumb {
  height: 200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mutiple-img-preview-style-two .img-div-thumb img {
  max-height: 200px;
}

.mutiple-img-preview-style-two .img-div-content {
  text-align: center;
  margin-top: 1rem;
}

.mutiple-img-preview-style-two .img-div .btn {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none !important;
}

/* === image upload css end === */
/* === auth css start === */
.admin-auth-main {
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.admin-auth-body {
  max-width: 450px;
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  padding: 1.875rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* === auth css end === */
/* === date picker css start === */
.ui-datepicker {
  transition: all 0s;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color) !important;
  border-radius: 8px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 0.375rem;
}

.ui-datepicker .ui-datepicker-header {
  background-color: #fff;
  color: var(--display-color);
  border: none;
}

.ui-datepicker .ui-datepicker-title {
  font-size: 0.9375rem;
}

.ui-datepicker .ui-datepicker-title .ui-datepicker-year {
  color: var(--body-color);
}

.ui-datepicker .ui-datepicker-title select {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin: 3px;
  margin-top: -4px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
}

.ui-datepicker .ui-datepicker-prev::after,
.ui-datepicker .ui-datepicker-next::after {
  position: absolute;
  top: 55%;
  transform: translate(-50%, -50%);
  font-family: remixicon !important;
  font-style: normal;
  font-size: 14px;
  color: var(--display-color);
}

.ui-datepicker .ui-datepicker-prev.ui-state-hover,
.ui-datepicker .ui-datepicker-next.ui-state-hover {
  color: var(--display-color);
  font-weight: inherit;
}

.ui-datepicker .ui-datepicker-prev.ui-state-hover {
  left: 2px !important;
  top: 2px !important;
}

.ui-datepicker .ui-datepicker-prev::after {
  content: "\ea64";
  left: 46%;
}

.ui-datepicker .ui-datepicker-next.ui-state-hover {
  right: 2px !important;
  top: 2px !important;
}

.ui-datepicker .ui-datepicker-next::after {
  content: "\ea6e";
  left: 56%;
}

.ui-datepicker .ui-datepicker-calendar th {
  font-size: 0.75rem;
  color: #7c7c7c;
  font-weight: 600;
}

.ui-datepicker .ui-datepicker-calendar td {
  padding: 2px;
}

.ui-datepicker .ui-datepicker-calendar td .ui-state-default {
  background-color: var(--light);
  width: 1.875rem;
  height: 1.875rem;
  border: 1px solid var(--border-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
}

.ui-datepicker .ui-datepicker-calendar td .ui-state-default.ui-state-highlight {
  background-color: var(--primary);
  color: #fff;
  font-weight: 600;
}

.ui-datepicker .ui-datepicker-calendar td .ui-state-default.ui-state-active {
  border-color: var(--primary);
  color: var(--primary);
}

.ui-datepicker-trigger {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 0;
  width: 20px;
}

.ui-datepicker-trigger::after {
  position: absolute;
  content: "\eb27";
  top: 0;
  left: 0;
  font-family: remixicon !important;
  font-style: normal;
  font-size: 18px;
}

.form-control-sm ~ .ui-datepicker-trigger {
  top: 2px;
  right: 10px;
}

/* === date picker css end === */
/* === time picker css start === */
.ti_tx,
.mi_tx,
.mer_tx {
  width: 100%;
  text-align: center;
  margin: 10px 0;
}

.time,
.mins,
.meridian {
  width: 33.3333333333%;
  float: left;
  font-size: 20px;
  color: #2d2e2e;
  font-family: "arial";
  font-weight: 700;
}

.time input,
.mins input,
.meridian input {
  width: 100%;
}

.meridian {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: var(--light);
}

.timepicker_wrap .prev,
.timepicker_wrap .next {
  cursor: pointer;
  padding: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timepicker_wrap .prev::after,
.timepicker_wrap .next::after {
  color: #777;
  font-family: remixicon !important;
  font-style: normal;
  font-size: 0.875rem;
}

.timepicker_wrap .prev {
  background-position: 50% -50%;
}

.timepicker_wrap .prev::after {
  content: "\ea78";
}

.timepicker_wrap .next {
  background-position: 50% 150%;
}

.timepicker_wrap .next::after {
  content: "\ea4e";
}

.time_pick {
  position: relative;
}

/*input{ float:left;}*/
.timepicker_wrap {
  padding: 10px;
  border-radius: 5px;
  z-index: 2;
  display: none;
  width: 240px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  float: left;
  position: absolute;
  top: 27px;
  left: 0px;
  transition: all 0s;
}

.arrow_top {
  position: absolute;
  top: -10px;
  left: 20px;
  background: url(../images/top_arr.png) no-repeat;
  width: 18px;
  height: 10px;
  z-index: 3;
}

/* === time picker css end === */
/* === faq css start === */
/* Faq Css Start */
.responsive-padding-40-150 {
  padding-inline-start: clamp(2rem, -27.4754rem + 39.3333vw, 9.375rem) !important;
  padding-inline-end: clamp(2rem, -27.4754rem + 39.3333vw, 9.375rem) !important;
  padding-block-start: 40px !important;
  padding-block-end: 40px !important;
}

/* Faq Css End */
/* === faq css end === */
/* === editor css start === */
/* Code edit css start */
.ql-toolbar.ql-snow {
  border: 0 !important;
  border-bottom: 1px solid var(--border-color) !important;
  border-radius: inherit !important;
}

.ql-container.ql-snow {
  border: 0 !important;
  border-radius: inherit !important;
}

.ql-editor {
  border-radius: 12px;
  min-height: 600px;
}

.ql-picker-label, .ql-formats {
  color: var(--text-primary-light);
  z-index: 2;
}

.ql-snow .ql-fill, .ql-snow .ql-stroke.ql-fill {
  fill: var(--text-secondary-light);
}

.ql-snow .ql-stroke {
  stroke: var(--text-secondary-light);
}

/* Code edit css end */
/* === editor css end === */
/* === widgets css start === */
/* === widgets css end === */
/* === referral css start === */
.referral-tree .sub-referral-tree {
  padding-inline-start: 3.125rem;
  padding-top: 8px;
  display: none;
  transition: all 0s;
}

.referral-tree .sub-referral-tree.active {
  display: block;
}

.referral-tree .sub-referral-tree li {
  padding: 0.4375rem 0;
}

.referral-tree .sub-referral-tree li.has-referral::before {
  height: calc(100% - 69px);
}

.referral-tree .sub-referral-tree .single-referral {
  position: relative;
}

.referral-tree .sub-referral-tree .single-referral::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -31px;
  width: 20px;
  height: 1px;
  background-color: var(--border-color);
}

.referral-tree .sub-referral-tree .single-referral::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -13px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background-color: var(--border-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.referral-tree .has-referral {
  position: relative;
}

.referral-tree .has-referral::before {
  position: absolute;
  content: "";
  top: 25px;
  left: 20px;
  width: 1px;
  height: calc(100% - 62px);
  background-color: var(--border-color);
}

.referral-tree .has-referral .single-referral {
  padding-left: 1.25rem;
}

.single-referral {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.9375rem;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  gap: 10px;
}

.single-referral:hover {
  border-color: var(--primary);
}

.single-referral .amount {
  text-align: right;
}

.single-referral .expand-btn {
  position: absolute;
  left: 10px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-referral .expand-btn.active::after {
  content: "\ea13";
}

.single-referral .expand-btn::after {
  position: absolute;
  content: "\f1af";
  font-family: remixicon !important;
  font-style: normal;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

/* === referral css end === */
/* === toggle-btn css start === */
.toggle-handle {
  background-color: #fff;
}

.btn.toggle.btn-xs {
  height: 30px !important;
  padding: 0;
}

.btn .toggle-group .btn-xs {
  padding: 4px 10px;
  padding-left: 5px;
  font-size: 13px !important;
}

.btn .toggle-group .btn-xs.toggle-off {
  padding-left: 12px;
}

/* === toggle-btn css end === */
/* === payment gateway css start === */
.gateway-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  -o-object-fit: cover;
  border: 1px solid var(--border-color);
  border-radius: 50%;
}

/* === payment gateway css end === */
/* === theme selection css start === */
/* === theme selection css end === */
/* === sections list css start === */
.single-item + .single-item {
  margin-top: 0.5rem;
}

.single-item {
  border: 1px dashed transparent;
  cursor: move;
}

.single-item.ui-sortable-helper {
  border-color: var(--primary);
}

/* === sections list css end === */
/* === drop zone css start === */
.drop-zone {
  min-height: 300px;
  position: relative;
}

.drop-zone.drop-zone-sm {
  min-height: 200px;
}

.drop-zone .drop-zone-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.drop-zone .drop-zone-thumb:hover .overlay {
  opacity: 1;
}

.drop-zone .drop-zone-thumb .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.drop-zone .drop-zone-thumb .overlay button {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0.25rem 0.625rem;
  background-color: #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  color: var(--danger);
  font-size: 0.625rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* === drop zone css end === */
/* === support ticket css start === */
.all-reply-body {
  max-height: 400px;
  overflow-y: auto;
  padding-inline-end: 0.75rem;
}

.all-reply-body::-webkit-scrollbar {
  width: 6px;
}

.all-reply-body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 20px;
}

.all-reply-body::-webkit-scrollbar-track {
  background-color: var(--light);
  border-radius: 20px;
}

/* === support ticket css end === */
/* === navbar css start === */
.navbar-header {
  height: 4.5rem;
  background-color: var(--bg-white);
  position: sticky;
  top: 0;
  padding: 0.75rem 1.5rem;
  z-index: 2;
  border-inline-start: 1px solid var(--border-color);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
  .navbar-header {
    padding: 0.75rem 1rem;
    height: auto;
  }
}

.navbar-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.navbar-breadcrumb span {
  line-height: 1;
}

.navbar-breadcrumb .home-icon {
  line-height: 1;
  margin-bottom: -2px;
}

.navbar-breadcrumb li {
  font-size: 0.875rem;
}

.navbar-breadcrumb li:last-child::after {
  display: none;
}

.navbar-breadcrumb li::after {
  content: "/";
  padding: 0 0.25rem;
}

.action-icon {
  width: 30px;
  height: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: var(--body-bg);
}

@media (min-width: 576px) {
  .action-icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 575px) {
  .nav-admin-profile img {
    width: 30px;
    height: 30px;
  }
}
/* === navbar css end === */
/* === sidebar css start === */
.sidebar {
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: -100%;
  width: 16.5625rem;
  height: 100vh;
  transition: all 0.3s;
  z-index: 3;
  background-size: cover;
  background-position-x: center;
  background-repeat: no-repeat;
  background-image: url('../../image/common/sidebar-bg.jpg');
}

.sidebar::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 14, 71, 0.7098039216);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}

.sidebar-light {
  background-image: url('../../image/constant_image/sidebar-bg-light.jpg');
  box-shadow: 2px 0 10px #0000000f;
}

.sidebar-light::before {
  background-color: #fafcffd9;
}

@media (min-width: 1200px) {
  .sidebar {
    inset-inline-start: 0;
    width: 13.75rem;
  }
}
@media (min-width: 1400px) {
  .sidebar {
    width: 17.1875rem;
  }
}
@media (min-width: 1650px) {
  .sidebar {
    width: 16.5625rem;
  }
}
.sidebar.sidebar-open {
  inset-inline-start: 0;
}

.sidebar.active {
  width: auto;
}

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


.sidebar.active:hover .sidebar-logo {
  display: inline-block;
}

@media (min-width: 1200px) {
  .sidebar.active:hover {
    inset-inline-start: 0;
  }
}
@media (min-width: 1400px) {
  .sidebar.active:hover {
    width: 17.1875rem;
  }
}
@media (min-width: 1650px) {
  .sidebar.active:hover {
    width: 19.5rem;
  }
}
.sidebar.active:hover .sidebar-logo img.full-logo {
  display: inline-block;
}

.sidebar.active:hover .sidebar-logo img.icon-logo {
  display: none;
}

.sidebar.active:hover .sidebar-menu li a span {
  display: inline-block;
}

.sidebar.active:hover .sidebar-menu li a .sidebar-menu-icon {
  margin-inline-end: 0.75rem;
}

.sidebar.active:hover .sidebar-menu li.dropdown.open .sidebar-submenu {
  display: block !important;
}

.sidebar.active:hover .sidebar-menu li.sidebar-menu-group-title {
  display: inline-block;
}

.sidebar.active:hover .sidebar-menu li.dropdown a::after {
  display: inline-block;
}

.sidebar.active:hover .sidebar-search {
  display: block;
}

.sidebar.active .sidebar-search {
  display: none;
}

.sidebar.active .sidebar-logo img.full-logo {
  display: none;
}

.sidebar.active .sidebar-logo img.icon-logo {
  display: inline-block;
}

.sidebar.active .sidebar-menu li a span {
  display: none;
}

.sidebar.active .sidebar-menu li a .sidebar-menu-icon {
  margin-inline-end: 0;
}

.sidebar.active .sidebar-menu li.dropdown.open .sidebar-submenu {
  display: none !important;
}

.sidebar.active .sidebar-menu li.sidebar-menu-group-title {
  display: none !important;
}

.sidebar.active .sidebar-menu li.dropdown a::after {
  display: none;
}

.sidebar-close-btn {
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-color: #fff;
  color: var(--display-color);
  font-size: 1.125rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1200px) {
  .sidebar-close-btn {
    display: none;
  }
}
.sidebar-close-btn::after {
  position: absolute;
  content: "\f4c8";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: remixicon !important;
  font-style: normal;
}

.sidebar-collapse-btn {
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-color: #fff;
  color: var(--display-color);
  font-size: 1.125rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1200px) {
  .sidebar-collapse-btn {
    display: flex;
  }
}
.sidebar-collapse-btn.active::after {
  content: "\ea6c";
}

.sidebar-collapse-btn::after {
  position: absolute;
  content: "\ea60";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: remixicon !important;
  font-style: normal;
}

.sidebar-logo-area {
  position: relative;
  height: 4.5rem;
  padding: 0.875rem 0.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1400px) {
  .sidebar-logo-area {
    padding: 0.75rem 1rem;
  }
}

.sidebar-logo {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  line-height: 1.2;
}

.sidebar-logo:hover {
  color: #fff;
}

.sidebar-logo img {
  max-height: 3.125rem;
  max-width: 175px;
}

.sidebar-logo img.icon-logo {
  display: none;
  max-width: 40px;
}

.sidebar-menu-area {
  height: calc(100vh - 72px);
  padding: 0.75rem 0.625rem;
  overflow-y: auto;
}

@media (min-width: 1400px) {
  .sidebar-menu-area {
    padding: 0.75rem 1rem;
  }
}
.sidebar-menu-area:hover::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid transparent;
  border-radius: 999px;
}

.sidebar-menu-area::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}

.sidebar-menu-area::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.sidebar-search {
  position: relative;
  display: none;
  margin-bottom: 0.9375rem;
}

@media (min-width: 992px) {
  .sidebar-search {
    display: inline-block;
  }
}
.sidebar-search input {
  width: 100%;
  height: 2.25rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  -ms-border-radius: 0.375rem;
  -o-border-radius: 0.375rem;
  padding-block: 0.3125rem;
  padding-inline-start: 2.375rem;
  padding-inline-end: 1.25rem;
  color: #fff;
}

.sidebar-search input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3764705882);
}

.sidebar-search input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3764705882);
}

.sidebar-search input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3764705882);
}

.sidebar-search input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.3764705882);
}

.sidebar-search input:focus {
  border-color: var(--primary);
}

.sidebar-search .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: 0.75rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.35);
}

.sidebar-menu > li + li {
  margin-top: 0.3125rem;
}

.sidebar-menu li.dropdown > a {
  position: relative;
}

.sidebar-menu li.dropdown > a::after {
  position: absolute;
  content: "\ea6e";
  font-family: remixicon;
  font-style: normal;
  inset-block-start: 50%;
  inset-inline-end: 0.75rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.sidebar-menu li.dropdown.open > a, .sidebar-menu li.dropdown.dropdown-open > a {
  background-color: var(--primary);
  color: #fff;
}

.sidebar-menu li.dropdown.open > a:hover, .sidebar-menu li.dropdown.dropdown-open > a:hover {
  color: #fff;
}

.sidebar-menu li.dropdown.open > a::after, .sidebar-menu li.dropdown.dropdown-open > a::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.sidebar-menu li.dropdown.open .sidebar-submenu {
  display: block;
}

.sidebar-menu li > a.active-page {
  background-color: var(--primary);
  color: #fff;
}

.sidebar-menu li > a.active-page:hover {
  color: #fff;
}

.sidebar-menu li a {
  padding: 0.5rem 0.625rem;
  display: flex;
  align-items: center;
  color: #e6e6e6;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  font-size: 0.875rem;
}

@media (min-width: 1400px) {
  .sidebar-menu li a {
    padding: 0.625rem 0.75rem;
  }
}
.sidebar-menu li a:hover {
  color: var(--primary);
}

.sidebar-menu li a .sidebar-menu-icon {
  font-size: 1.125rem;
  margin-inline-end: 0.5rem;
}

@media (min-width: 1650px) {
  .sidebar-menu li a .sidebar-menu-icon {
    font-size: 1.375rem;
    margin-inline-end: 0.75rem;
  }
}
.sidebar-menu li a i {
  line-height: 1.2;
  width: 24px;
  margin-inline-end: 0.75rem;
  font-size: 1.375rem;
}

.sidebar-menu li a .circle-icon {
  font-size: 0.625rem;
}

.sidebar-menu .sidebar-submenu {
  padding-block-start: 0.75rem;
  display: none;
  padding-inline-start: 1.25rem;
  transition: none;
  position: relative;
}

@media (min-width: 1650px) {
  .sidebar-menu .sidebar-submenu {
    padding-inline-start: 2.25rem;
  }
}
.sidebar-menu .sidebar-submenu::before {
  position: absolute;
  content: "";
  top: 0;
  inset-inline-start: 22px;
  width: 1px;
  height: 100%;
  background-color: #fff;
  opacity: 0.1;
}

.sidebar-menu .sidebar-submenu li.active-page a {
  background-color: transparent;
  color: var(--primary);
}

.sidebar-menu .sidebar-submenu li.active-page a::before {
  background-color: var(--primary);
  opacity: 1;
}

.sidebar-menu .sidebar-submenu li a {
  padding: 0.4375rem 0.75rem;
  position: relative;
}

.sidebar-menu .sidebar-submenu li a:hover::before {
  background-color: var(--primary);
  opacity: 1;
}

.sidebar-menu .sidebar-submenu li a::before {
  position: absolute;
  content: "";
  left: -10px;
  top: 50%;
  height: 1px;
  width: 12px;
  background-color: #fff;
  opacity: 0.1;
}

.sidebar-menu .sidebar-menu-group-title {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  margin-block: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding-top: 0.9375rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 15px;
}

.sidebar-light .sidebar-search input {
  color: var(--display-color);
  background-color: rgba(255, 255, 255, 0.65);
}

.sidebar-light .sidebar-search input::placeholder {
  color: #8c8c8c;
}

.sidebar-light .sidebar-search input::-moz-placeholder {
  color: #8c8c8c;
}

.sidebar-light .sidebar-search input::-webkit-input-placeholder {
  color: #8c8c8c;
}

.sidebar-light .sidebar-search .icon {
  color: #8c8c8c;
}

.sidebar-light .sidebar-menu .sidebar-menu-group-title {
  color: #565656;
  font-weight: 600;
}

.sidebar-light .sidebar-menu li a {
  color: #4b4b4b;
}

.sidebar-light .sidebar-menu li > a.active-page {
  color: #fff;
}

.sidebar-light .sidebar-menu .sidebar-submenu::before,
.sidebar-light .sidebar-menu .sidebar-submenu li a::before {
  background-color: #626262;
}

.sidebar-light .sidebar-menu .sidebar-submenu li.active-page a {
  color: var(--primary);
}

.sidebar-light .sidebar-menu .sidebar-submenu li.active-page a::before {
  background-color: var(--primary);
}

/* === sidebar css end === */
/* === breadcrumb css start === */
/* === breadcrumb css end === */
/* === dashboard body css start === */
.dashboard-main {
  margin-inline-start: 0;
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
  min-height: 100vh;
  transition: all 0.3s;
}

@media (min-width: 1200px) {
  .dashboard-main {
    margin-inline-start: 13.75rem;
  }
}
@media (min-width: 1400px) {
  .dashboard-main {
    margin-inline-start: 17.1875rem;
  }
}
@media (min-width: 1650px) {
  .dashboard-main {
    margin-inline-start: 16.5625rem;
  }
}
.dashboard-main-body {
  padding: 0.9375rem;
}

@media (min-width: 1400px) {
  .dashboard-main-body {
    padding: 1.5rem;
  }
}
.dashboard-main.active {
  margin-inline-start: 4.875rem;
}

.card-icon {
  width: 35px;
  height: 35px;
}

.card-icon-lg {
  width: 45px;
  height: 45px;
}

/* === dashboard body css end === */
/* === footer css start === */
.d-footer {
  padding: 1.375rem 1.5rem;
  background-color: var(--bg-white);
  margin-block-start: auto;
  border-inline-start: 1px solid var(--border-color);
}

/* === footer css end === */

/* pulse css start */
.pulse-circle {
  display: none;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  top: 0;
  right: 0;
}

.pulse-circle::before {
  position: absolute;
  content: '';
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  background-color: var(--primary);
  opacity: 0.25;
  border-radius: 50%;
  animation: pulse 1.5s infinite forwards;
}

.has-pulse {
  position: relative;
}

.has-pulse .pulse-circle {
  display: inline-block;
}

@keyframes pulse {
  0% {
    opacity: 0.45;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0.05;
    transform: scale(1.5, 1.5);
  }
}
/* pulse css end */

/* system update css start */
.system-update-item {
  position: relative;
}

.system-update-item .icon {
  font-size: 96px;
  line-height: 1;
}

.system-update-item .version {
  position: absolute;
  top: 52px;
  left: 39px;
}
/* system update css end */

/* card loader css start */
.card-loader {
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 12px;
}
/* card loader css end  */

/* summer note css start */
.summer-note-form > div {
  width: 100% !important;
}

.nicEdit-main{
  width: 100% !important;
  min-height: 200px !important;
  margin: 0 !important;
}

.offcanvas.offcanvas-end{
  width: 700px;
}
/* summer note css end  */


/* push notification start */
#liveAlertPlaceholder {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9;
}

.single-push-notification {
  position: relative;
  padding: 16px 16px 10px 16px;
  background: var(--primary);
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0, 0.15);
  display: flex;
  width: 475px;
  margin-top: 16px;
  overflow: hidden;
  transition: all 0.5s;
  z-index: 1;
  color: #fff;
}

.single-push-notification::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  /* background-color: var(--success); */
  animation: toaster 4s 1 linear forwards;
}

@keyframes toaster {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

.single-push-notification.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
}

.single-push-notification .single-push-icon {
  width: 30px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.single-push-notification .single-push-details {
  width: calc(100% - 60px);
}

.single-push-notification .single-push-close {
  width: 30px;
  text-align: right;
  font-size: 18px;
}
/* push notification end */

/* new css start */
.theme-item {
  position: relative;
}

.theme-item .theme-active-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--primary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 12px;
}

.segment-row + .segment-row {
  margin-top: 16px;
}

@media (max-width: 991px) {
    .default-table td.w-50 {
        width: 100% !important;
    }
}
/* new css end */