@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
:root {
  --primary: #2047F4;
  --primary-two: #12376F;
  --primary-light: #bfcbff;
  --primary-three: #FCC015;
  --secondary: #192024;
  --success: #22c55e;
  --info: #16C7F9;
  --warning: #f97316;
  --danger: #F81F58;
  --light: #e2e8f01f;
  --extra-light: #e2e8f08a;
  --muted: #8094ae;
  --dark: #2c323f;
  --white: #ffffff;
  --bg-white: #fff;
  --body-bg: #f7f8ff;
  --surface-bg: #fff;
  --sidebar-bg: #fff;
  --display-color: #30374f;
  --body-color: #30374f;
  --input-bg: #fff;
  --input-border: #e5e5e5;
  --placeholder-color: #858484;
  --border-color: #e5e5e5;
  --display-font: "Manrope", sans-serif;
  --body-font: "Manrope", sans-serif;
  --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;
  --display-1: 4.625rem; /* 74px */
  --display-2: 3.625rem; /* 58px */
  --display-3: 1.875rem; /* 30px */
  --display-4: 1.5rem; /* 24px */
  --display-5: 1.25rem; /* 20px */
  --display-6: 1.125rem; /* 18px */
}

@media (max-width: 1199px) {
  :root {
    --display-1: 3.375rem; /* 24px */
    --display-2: 2.625rem; /* 22px */
    --display-3: 1.625rem; /* 20px */
    --display-4: 1.25rem; /* 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 === */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

*,
::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: var(--body-font);
  font-size: 1rem;
  padding: 0;
  margin: 0;
  font-weight: 400;
  position: relative;
  line-height: 1.7;
  overflow-x: hidden;
}

@media (min-width: 576px) {
  body {
    font-size: 1rem;
  }
}
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.2em;
}

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-hover-primary:hover {
  color: var(--primary) !important;
}

.text-hover-primary-two:hover {
  color: var(--primary-two) !important;
}

.text-hover-primary-light:hover {
  color: var(--primary-light) !important;
}

.text-hover-secondary:hover {
  color: var(--secondary) !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-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;
}

.display-color {
  color: var(--display-color) !important;
}

.body-color {
  color: var(--body-color) !important;
}

.text-main,
.text-primary {
  color: var(--primary) !important;
}

.text-main-two {
  color: var(--primary-two) !important;
}

.text-dark {
  color: var(--secondary) !important;
}

/* === color css end === */
/* === bg css start === */
.bg-light-primary {
  background-color: rgba(32, 71, 244, 0.1254901961) !important;
}

.bg-light-primary-two {
  background-color: rgba(18, 55, 111, 0.1254901961) !important;
}

.bg-light-primary-light {
  background-color: rgba(191, 203, 255, 0.1254901961) !important;
}

.bg-light-secondary {
  background-color: rgba(25, 32, 36, 0.1254901961) !important;
}

.bg-light-success {
  background-color: rgba(34, 197, 94, 0.1254901961) !important;
}

.bg-light-info {
  background-color: rgba(22, 199, 249, 0.1254901961) !important;
}

.bg-light-warning {
  background-color: rgba(249, 115, 22, 0.1254901961) !important;
}

.bg-light-danger {
  background-color: rgba(248, 31, 88, 0.1254901961) !important;
}

.bg-light-light {
  background-color: #e2e8f01f20 !important;
}

.bg-light-extra-light {
  background-color: #e2e8f08a20 !important;
}

.bg-light-muted {
  background-color: rgba(128, 148, 174, 0.1254901961) !important;
}

.bg-light-dark {
  background-color: rgba(44, 50, 63, 0.1254901961) !important;
}

.bg-light-white {
  background-color: rgba(255, 255, 255, 0.1254901961) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-primary-two {
  background-color: var(--primary-two) !important;
}

.bg-primary-light {
  background-color: var(--primary-light) !important;
}

.bg-secondary {
  background-color: var(--secondary) !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-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;
}

.surface-bg {
  background-color: var(--surface-bg);
}

.body-bg {
  background-color: var(--body-bg);
}
/* === bg css end === */

/* === spacing css start === */
.pt-50 {
  padding-block-start: 3.125rem;
}

.pb-50 {
  padding-block-end: 3.125rem;
}

.py-50 {
  padding-block: 3.125rem;
}

.py-100 {
  padding-block: 2.75rem;
}

@media (min-width: 768px) {
  .py-100 {
    padding-block: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .py-100 {
    padding-block: 5rem;
  }
}
@media (min-width: 1400px) {
  .py-100 {
    padding-block: 7.5rem;
  }
}
/* === spacing css end === */

/* === typography css start === */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  color: var(--display-color);
  font-weight: 700;
  font-family: var(--dispplay-font);
  line-height: 1.3;
}

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);
}

h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: var(--primary);
}

.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;
}

@media (min-width: 992px) {
  .border-lg-end {
    border-inline-end: 1px solid var(--border-color) !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 === */
.z-index-1 {
  z-index: 1;
}

.z-index--1 {
  z-index: -1;
}

.opacity-15 {
  opacity: 0.15;
}

.start-10 {
  inset-inline-start: 0.625rem;
}

.top-middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* === position css end === */
/* === section header css start === */
.section-header {
  margin-bottom: 1.5625rem;
}

@media (min-width: 576px) {
  .section-header {
    margin-bottom: 2.1875rem;
  }
}
@media (min-width: 1200px) {
  .section-header {
    margin-bottom: 2.8125rem;
  }
}
.section-title {
  font-size: 1.5rem;
  font-weight: 900;
}

@media (min-width: 576px) {
  .section-title {
    font-size: 1.75rem;
  }
}
@media (min-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
}
@media (min-width: 1400px) {
  .section-title {
    font-size: 3rem;
  }
}
.section-text {
  font-size: 17px;
}

.section-top-title {
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding: 3px 20px;
    margin-bottom: 12px;
    color: #000;
    font-size: 14px;
    background: #fcc015;
    border-radius: 99px;
}

/* === section header css end === */
/* === preloader css start === */
.nir-preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary);
  z-index: 99999;
}

.nir-cube-grid {
  width: 60px;
  height: 60px;
}

.nir-cube-grid .nir-cube {
  width: 33%;
  height: 33%;
  background-color: var(--primary-three);
  float: left;
  -webkit-animation: nir-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: nir-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.nir-cube-grid .nir-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.nir-cube-grid .nir-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.nir-cube-grid .nir-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.nir-cube-grid .nir-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.nir-cube-grid .nir-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.nir-cube-grid .nir-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.nir-cube-grid .nir-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.nir-cube-grid .nir-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.nir-cube-grid .nir-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes nir-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
@keyframes nir-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
/* === preloader css end === */
/* === buttons css start === */
.btn {
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  font-weight: 500;
}

@media (min-width: 1400px) {
  .btn {
    padding: -0.125rem 1.875rem;
  }
}
.btn.btn-lg {
  font-size: 1rem;
  padding: 0.75rem 1.5625rem;
}

@media (min-width: 1400px) {
  .btn.btn-lg {
    font-size: 1.125rem;
    padding: 0.875rem 2.1875rem;
  }
}
.btn.btn-md {
  padding: 0.5rem 1.125rem;
}

@media (min-width: 1400px) {
  .btn.btn-md {
    padding: 0.625rem 1.25rem;
  }
}
.btn.btn-sm {
  font-size: 0.8125rem;
  padding: 0.375rem 0.75rem;
}

.btn-primary {
  background-color: var(--primary) !important;
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary) !important;
  opacity: 0.9;
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:active, .btn-primary:focus {
  background-color: var(--primary) !important;
  color: #fff;
  border-color: var(--primary);
}

.btn-primary.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-primary-two {
  background-color: #12376F !important;
  color: #fff;
  border-color: #12376F;
}

.btn-primary-two:hover {
  background-color: rgba(18, 55, 111, 0.831372549) !important;
  color: #fff;
  border-color: rgba(18, 55, 111, 0.831372549);
}

.btn-primary-two:active, .btn-primary-two:focus {
  background-color: #12376F !important;
  color: #fff;
  border-color: #12376F;
}

.btn-primary-two.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-two .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #12376F;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-primary-three {
    background-color: var(--primary-three) !important;
    color: #000;
    border-color: var(--primary-three);
}

.btn-primary-light {
  background-color: #bfcbff !important;
  color: #fff;
  border-color: #bfcbff;
}

.btn-primary-light:hover {
  background-color: rgba(191, 203, 255, 0.831372549) !important;
  color: #fff;
  border-color: rgba(191, 203, 255, 0.831372549);
}

.btn-primary-light:active, .btn-primary-light:focus {
  background-color: #bfcbff !important;
  color: #fff;
  border-color: #bfcbff;
}

.btn-primary-light.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-light .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #bfcbff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}

.btn-secondary {
  background-color: #192024 !important;
  color: #fff;
  border-color: #192024;
}

.btn-secondary:hover {
  background-color: rgba(25, 32, 36, 0.831372549) !important;
  color: #fff;
  border-color: rgba(25, 32, 36, 0.831372549);
}

.btn-secondary:active, .btn-secondary:focus {
  background-color: #192024 !important;
  color: #fff;
  border-color: #192024;
}

.btn-secondary.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: #192024;
  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-light {
  background-color: #8a97a81f !important;
  color: var(--display-color);
  border-color: rgba(226, 232, 240, 0.1215686275);
}

.btn-light:hover {
  background-color: #e2e8f07b !important;
  color: var(--display-color);
  border-color: #e2e8f07b;
}

.btn-light:active, .btn-light:focus {
  background-color: rgba(226, 232, 240, 0.1215686275) !important;
  color: #fff;
  border-color: rgba(226, 232, 240, 0.1215686275);
}

.btn-light.has-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-light .btn-badge {
  width: 18px;
  height: 18px;
  background-color: #fff;
  color: rgba(226, 232, 240, 0.1215686275);
  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-primary {
  border: 1px solid rgba(32, 71, 244, 0);
  color: var(--primary);
  background-color: rgba(32, 71, 244, 0.1254901961);
}

.btn-light-primary:hover {
  color: #fff;
  background-color: var(--primary);
}

.btn-light-primary-two {
  border: 1px solid rgba(18, 55, 111, 0);
  color: #12376F;
  background-color: rgba(18, 55, 111, 0.1254901961);
}

.btn-light-primary-two:hover {
  color: #fff;
  background-color: #12376F;
}

.btn-light-primary-light {
  border: 1px solid rgba(191, 203, 255, 0);
  color: #bfcbff;
  background-color: rgba(191, 203, 255, 0.1254901961);
}

.btn-light-primary-light:hover {
  color: #fff;
  background-color: #bfcbff;
}

.btn-light-secondary {
  border: 1px solid rgba(25, 32, 36, 0);
  color: #192024;
  background-color: rgba(25, 32, 36, 0.1254901961);
}

.btn-light-secondary:hover {
  color: #fff;
  background-color: #192024;
}

.btn-light-success {
  border: 1px solid rgba(34, 197, 94, 0);
  color: #22c55e;
  background-color: rgba(34, 197, 94, 0.1254901961);
}

.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.1254901961);
}

.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.1254901961);
}

.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.1254901961);
}

.btn-light-danger:hover {
  color: #fff;
  background-color: #F81F58;
}

.btn-light-light {
  border: 1px solid #e2e8f01f;
  color: rgba(226, 232, 240, 0.1215686275);
  background-color: #e2e8f01f;
}

.btn-light-light:hover {
  color: #fff;
  background-color: rgba(226, 232, 240, 0.1215686275);
}

.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.1254901961);
}

.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.1254901961);
}

.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.1254901961);
}

.btn-light-white:hover {
  color: #fff;
  background-color: #ffffff;
}

.btn-icon {
  width: 32px;
  height: 32px;
  padding: 0.3125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

@-webkit-keyframes line {
  from {
    margin-top: -60px;
    margin-left: -90px;
  }
  to {
    margin-top: -60px;
    margin-left: 250px;
  }
}
/* === buttons css end === */
/* === alert css start === */
.alert {
  padding: 0.625rem 0.9375rem;
}

.alert-primary {
  color: var(--primary) !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-primary-two {
  color: var(--primary-two) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-primary-two::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--primary-two);
  border: 1px solid var(--primary-two);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-primary-two::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--primary-two);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-primary-two.border-0::after {
  display: none;
}

.alert-primary-light {
  color: var(--primary-light) !important;
  border: none;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.alert-primary-light::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--primary-light);
  border: 1px solid var(--primary-light);
  opacity: 0.15;
  border-radius: 6px;
}

.alert-primary-light::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid var(--primary-light);
  opacity: 0.35;
  border-radius: 6px;
}

.alert-primary-light.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-success {
  color: var(--success) !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) !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) !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) !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-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: var(--primary) !important;
  color: #fff !important;
}

.badge-primary-two {
  background-color: #12376F !important;
  color: #fff !important;
}

.badge-primary-light {
  background-color: #bfcbff !important;
  color: #fff !important;
}

.badge-secondary {
  background-color: #192024 !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-light {
  background-color: rgba(226, 232, 240, 0.1215686275) !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(32, 71, 244, 0.1254901961) !important;
  color: var(--primary) !important;
}

.badge-light-primary-two {
  background-color: rgba(18, 55, 111, 0.1254901961) !important;
  color: #12376F !important;
}

.badge-light-primary-light {
  background-color: rgba(191, 203, 255, 0.1254901961) !important;
  color: #bfcbff !important;
}

.badge-light-secondary {
  background-color: rgba(25, 32, 36, 0.1254901961) !important;
  color: #192024 !important;
}

.badge-light-success {
  background-color: rgba(34, 197, 94, 0.1254901961) !important;
  color: #22c55e !important;
}

.badge-light-info {
  background-color: rgba(22, 199, 249, 0.1254901961) !important;
  color: #16C7F9 !important;
}

.badge-light-warning {
  background-color: rgba(249, 115, 22, 0.1254901961) !important;
  color: #f97316 !important;
}

.badge-light-danger {
  background-color: rgba(248, 31, 88, 0.1254901961) !important;
  color: #F81F58 !important;
}

.badge-light-light {
  background-color: #e2e8f01f20 !important;
  color: rgba(226, 232, 240, 0.1215686275) !important;
}

.badge-light-extra-light {
  background-color: #e2e8f08a20 !important;
  color: rgba(226, 232, 240, 0.5411764706) !important;
}

.badge-light-muted {
  background-color: rgba(128, 148, 174, 0.1254901961) !important;
  color: #8094ae !important;
}

.badge-light-dark {
  background-color: rgba(44, 50, 63, 0.1254901961) !important;
  color: #2c323f !important;
}

.badge-light-white {
  background-color: rgba(255, 255, 255, 0.1254901961) !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: var(--display-color);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

@media (min-width: 992px) {
  .table thead th:last-child {
    text-align: right;
  }
}
.table tbody td {
  font-size: 1rem;
  vertical-align: middle;
  color: var(--body-color);
  padding: 0.875rem 1.5rem;
}

@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 tr:last-child td {
  border: none;
}

.default-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 8px;
  -webkit-border-radius: 0 0 0 8px;
  -moz-border-radius: 0 0 0 8px;
  -ms-border-radius: 0 0 0 8px;
  -o-border-radius: 0 0 0 8px;
}

.default-table tbody tr:last-child td:last-child {
  border-radius: 0 0 8px 0;
  -webkit-border-radius: 0 0 8px 0;
  -moz-border-radius: 0 0 8px 0;
  -ms-border-radius: 0 0 8px 0;
  -o-border-radius: 0 0 8px 0;
}

.default-table tbody td {
  border-color: var(--border-color);
  background-color: transparent;
}

.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 === */
/* === 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;
}

/* === table responsive css end === */
/* === form css start === */
.form-select, .form-control, textarea {
  border: 1px solid var(--border-color);
  color: var(--display-color) !important;
  background-color: #fff;
  padding: 0.75rem 0.9375rem;
  font-size: 0.9375rem;
}

.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: #fff;
}

.form-select {
  padding: 7px 20px;
  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: 38px;
}

.input-group .form-select, 
.input-group .form-control:not(textarea) {
  height: auto;
}

.form-control[type=file] {
  line-height: 1;
}

.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.5rem;
  color: var(--display-color);
  font-weight: 600;
}

.input-group-text {
  color: var(--body-color);
}

.form-control.is-invalid, .was-validated .form-control:invalid {
  border-color: var(--danger);
}

.invalid-feedback {
  color: var(--danger);
}

/* icon field css start */
.icon-field {
  position: relative;
}

.icon-field .icon {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 40px;
  height: 100%;
  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;
}

.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: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  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: 6px;
  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;
}

.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: 9999;
}

/* === form select two css end === */
/* === card css start === */
.card {
  background-color: var(--surface-bg);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border: 1px solid var(--border-color);
  position: initial;
  color: var(--body-color);
}

.card .card-header {
  background-color: var(--surface-bg);
  padding: 0.875rem 1rem;
  border-color: var(--border-color);
  color: var(--body-color);
}

@media (min-width: 768px) {
  .card .card-header {
    padding: 0.875rem 1.5rem;
  }
}
.card .card-title {
  font-size: 1.125rem !important;
  color: var(--display-color);
}

.card .card-body {
  padding: 0.875rem 1rem;
  color: var(--body-color);
}

@media (min-width: 768px) {
  .card .card-body {
    padding: 0.875rem 1.5rem;
  }
}
.card .card-footer {
  background-color: var(--surface-bg);
  border-color: var(--border-color);
  padding: 0.875rem 1rem;
}

@media (min-width: 768px) {
  .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-header .close[data-bs-dismiss="modal"] {
  width: 28px;
  height: 28px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--danger);
  color: #fff;
  margin-left: auto;
  font-size: 24px;
  border-radius: 4px;
}

/* === modal css end === */
/* === accordion css start === */
.accordion-style-dafault .accordion-item {
  border: none !important;
  border-bottom: 1px solid var(--border-color) !important;
  background-color: var(--bg-white) !important;
  border-radius: 0;
  overflow: hidden;
  padding: 20px 0;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .accordion-style-dafault .accordion-item {
    margin-bottom: 20px;
  }
}
.accordion-style-dafault .accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-style-dafault .accordion-body {
  background-color: transparent;
  padding: 0;
  padding-top: 1rem;
  color: var(--body-color);
}

.accordion-style-dafault .accordion-button {
  padding: 0;
  background: transparent;
  padding-inline-end: 68px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

@media (min-width: 576px) {
  .accordion-style-dafault .accordion-button {
    font-size: 1.125rem;
  }
}
@media (min-width: 992px) {
  .accordion-style-dafault .accordion-button {
    font-size: 1.25rem;
  }
}
.accordion-style-dafault .accordion-button::after {
  background-image: none;
}

.accordion-style-dafault .accordion-button:focus {
  box-shadow: none;
}

.accordion-style-dafault .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--primary);
}

.accordion-style-dafault .accordion-button:not(.collapsed)::after {
  background-image: none;
  color: var(--primary);
}

.accordion-style-dafault .accordion-button[aria-expanded=true]::after, .accordion-style-dafault .accordion-button[aria-expanded=false]::after {
  content: "\f1af";
  font-family: remixicon;
  display: inline-block;
  position: absolute;
  inset-inline-end: 0;
  height: 20px;
  width: 20px;
  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);
}

@media (min-width: 992px) {
  .accordion-style-dafault .accordion-button[aria-expanded=true]::after, .accordion-style-dafault .accordion-button[aria-expanded=false]::after {
    height: 24px;
    width: 24px;
  }
}
.accordion-style-dafault .accordion-button[aria-expanded=false]::after {
  content: "\ea13";
}

.accordion-noarrow .accordion-button::after {
  display: none;
}

.border-accordion {
  border-color: var(--border-color) !important;
}

.border-accordion .accordion-button {
  border-color: var(--border-color) !important;
}

.border-accordion .accordion-button:not(.collapsed) {
  background-color: #fff;
}

.border-accordion .accordion-button:focus {
  box-shadow: none;
}

.step-number {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 992px) {
  .step-number {
    font-size: 1.5rem;
  }
}
/* === accordion css end === */
/* === nav-tabs css start === */
.nav-tabs.bordered-tab {
  border-color: var(--border-color);
}

.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(--display-color);
  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;
}

/* === 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 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 === */
/* === 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: 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;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.image-upload .image-edit-btn input {
  display: none;
}

.image-upload .image-edit-btn input + label {
  display: inline-block;
  padding-inline: 0.75rem;
  height: 28px;
  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: var(--primary);
  color: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}

.image-upload .image-edit-btn input + label:hover {
  background: var(--primary);
  color: #fff;
}

.image-upload .image-edit-btn input + label:before {
  content: "\f603";
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  margin-right: 6px;
}

.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%;
  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: 2px solid #fff;
}

.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 === */
/* === 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 === */
/* === transfer money css start === */
.rt-transfer-box {
  padding: 2.5rem;
  background-color: #fff;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .rt-transfer-box.style-inner {
    padding: 1.25rem 0;
  }
}
@media (max-width: 575px) {
  .rt-transfer-box.rt-banner-transfer-box {
    padding: 1.25rem;
  }
}
@media (min-width: 1400px) {
  .rt-transfer-box.rt-banner-transfer-box {
    margin-inline-start: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .rt-transfer-box.rt-banner-transfer-box .rt-single-transfer > input {
    width: 170px;
  }
}
.rt-single-transfer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.5rem 0.625rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

@media (min-width: 576px) {
  .rt-single-transfer {
    padding: 0.75rem 1rem;
  }
}
.rt-single-transfer > input {
  flex-grow: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--display-color);
  width: 100px;
}

@media (min-width: 576px) {
  .rt-single-transfer > input {
    width: 240px;
    font-size: 1.375rem;
  }
}
.rt-single-transfer > button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  position: relative;
  width: 75px;
  padding-inline-end: 0.625rem;
}

@media (min-width: 576px) {
  .rt-single-transfer > button {
    width: 120px;
    padding-inline-end: 1.5625rem;
  }
}
.rt-single-transfer > button.active::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.rt-single-transfer > button::after {
  position: absolute;
  top: 2px;
  inset-inline-end: 0;
  content: "\ea4e";
  font-family: remixicon !important;
  font-style: normal;
  color: var(--display-color);
  font-size: 0.875rem;
  font-weight: 600;
}

@media (min-width: 576px) {
  .rt-single-transfer > button::after {
    font-size: 1.25rem;
  }
}
.rt-single-transfer > button img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  object-fit: cover;
  -o-object-fit: cover;
}

@media (min-width: 576px) {
  .rt-single-transfer > button img {
    width: 25px;
    height: 25px;
  }
}
.rt-single-transfer > button span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--display-color);
}

@media (min-width: 576px) {
  .rt-single-transfer > button span {
    font-size: 1.375rem;
  }
}
.rt-single-transfer .rt-single-transfer-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-start: 0;
  width: 100%;
  display: none;
  z-index: 9;
}

.rt-single-transfer .rt-single-transfer-dropdown.active {
  display: block;
}

.rt-single-transfer-dropdown {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.rt-single-transfer-dropdown .form-control {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 12px 12px 0 0;
  -webkit-border-radius: 12px 12px 0 0;
  -moz-border-radius: 12px 12px 0 0;
  -ms-border-radius: 12px 12px 0 0;
  -o-border-radius: 12px 12px 0 0;
}

.rt-single-transfer-dropdown .form-control:focus {
  border-color: var(--border-color) !important;
}

.rt-single-transfer-dropdown .rt-currency-list {
  max-height: 200px;
  overflow-y: auto;
}

@media (min-width: 576px) {
  .rt-single-transfer-dropdown .rt-currency-list {
    max-height: 300px;
  }
}
.rt-single-transfer-dropdown .rt-currency-list::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}

.rt-single-transfer-dropdown .rt-currency-list::-webkit-scrollbar-thumb {
  background-color: #c4c4c4;
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
}

.rt-single-transfer-dropdown .rt-currency-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

.rt-single-transfer-dropdown .rt-currency-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  cursor: pointer;
  font-size: 0.875rem;
}

@media (min-width: 992px) {
  .rt-single-transfer-dropdown .rt-currency-list li {
    font-size: 1rem;
    gap: 1rem;
  }
}
.rt-single-transfer-dropdown .rt-currency-list li:hover {
  background-color: #f1f5f9;
}

.rt-single-transfer-dropdown .rt-currency-list li .currency-code {
  font-weight: 600;
  margin-inline-start: auto;
}

.rt-single-transfer-dropdown .rt-currency-list li img {
  height: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  object-fit: cover;
  -o-object-fit: cover;
}

@media (min-width: 992px) {
  .rt-single-transfer-dropdown .rt-currency-list li img {
    height: 25px;
    height: 25px;
  }
}
.rt-single-transfer-dropdown .rt-currency-list .no-data {
  display: none;
  padding: 1rem;
}

.rt-transfer-info-list {
  margin-top: 1.875rem;
}

.rt-transfer-info-list li + li {
  margin-top: 0.5rem;
}

.rt-transfer-info-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.rt-transfer-info-list li span:first-child {
  font-weight: 400;
}

.rt-transfer-info-list li span:last-child {
  font-weight: 600;
  color: var(--display-color);
}

.rt-transfer-info-list li .form-select {
  width: auto;
  padding: 0.125rem 1.25rem 0.125rem 0.625rem;
  height: auto;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  background-size: 20px 10px;
  border: 1px solid var(--border-color);
  font-weight: 500;
}

.rt-transfer-info-list li .form-select:focus {
  border-color: var(--border-color);
}

/* === transfer money 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 === */
/* === 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);
}

.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 {
  max-height: 40px;
  width: 100px;
}

/* === payment gateway 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 === */
/* === icon list css start === */
.icon-list li + li {
  margin-top: 1.25rem;
}

.icon-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.icon-list-icon {
  width: 12px;
  height: 12px;
  position: relative;
  margin-inline-start: 6px;
  margin-block-start: 8px;
  flex-shrink: 0;
}

.icon-list-icon::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.icon-list-icon::after {
  position: absolute;
  content: "";
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  background-color: var(--primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 0.35;
}

.icon-list-content {
  width: 100%;
  margin-top: 1.25rem;
}

@media (min-width: 576px) {
  .icon-list-content {
    width: calc(100% - 40px);
    margin-top: 0;
  }
}
/* === icon list css end === */
/* === social media css start === */
.social-media-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}

.social-media-links li a {
  width: 36px;
  height: 36px;
  background-color: var(--secondary);
  color: #fff;
  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;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.social-media-links li a:hover {
  background-color: var(--primary);
  color: #fff;
}

/* === social media 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 === */
/* === progressbar 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 */
/* === progressbar css end === */
/* === scroll css start === */
.scroll-y {
  overflow-y: auto;
}

.scroll-y::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
}

.scroll-y::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
}

.scroll-y ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

/* === scroll css end === */
/* === divider css start === */
.or-divider {
  text-align: center;
  position: relative;
  z-index: 1;
}

.or-divider::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  z-index: -1;
}

.or-divider span {
  background-color: #fff;
  padding: 0 0.9375rem;
  font-weight: 500;
}

/* === divider css end === */
/* === header css start === */
.header-section {
  background-color: transparent;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.header-section.header-fixed {
    position: fixed;
}

.header-section.header-fixed .header-top {
    display: none;
}

.header-section.header-fixed .header-bottom {
    background-color: var(--primary-two);
}

.header-section .header-top {
  padding-block: 10px;
  background-color: var(--primary-two);
}

.header-section .header-bottom {
  padding-block: 6px;
}

@media (min-width: 1200px) {
  .header-section .header-bottom {
    padding-block: 12px;
  }
}
.logo-part img {
  max-height: 60px;
}

@media (max-width:1399px) {
  .logo-part img {
    max-height: 52px;
  }
}

@media (max-width: 460px) {
  .logo-part img {
    max-height: 35px;
  }
}

.header-info-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-info-list {
  display: none;
}

@media (min-width: 992px) {
  .header-info-list {
    display: flex;
    gap: 16px;
  }
}
.header-info-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  padding-right: 16px;
}

.header-info-list li:last-child {
  padding-right: 0;
}

.header-info-list li:last-child::after {
  display: none;
}

.header-info-list li::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 1px;
  height: 20px;
  background-color: #fff;
  transform: translateY(-50%);
  opacity: 0.15;
}

.header-info-list li i {
  font-size: 18px;
  color: var(--primary-three);
}

.header-info-list li span, .header-info-list li a {
  color: #f1f1f1;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 991px) {
  .header-top-right {
    width: 100%;
    justify-content: space-between;
  }
}
.header-social-links {
  position: relative;
  gap: 16px;
  padding-right: 16px;
}

@media (max-with: 991px) {
  .header-social-links {
    padding-right: 0;
  }
}
.header-social-links::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 1px;
  height: 20px;
  background-color: #fff;
  transform: translateY(-50%);
  opacity: 0.15;
}

@media (max-width: 991px) {
  .header-social-links::after {
    display: none;
  }
}
.header-social-links li a {
  font-size: 14px;
  color: #f1f1f1;
}

.header-social-links li a:hover {
  color: var(--primary);
}

.lang-btn {
  color: #f1f1f1;
  font-size: 14px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding-right: 16px;
  position: relative;
}

.lang-btn::before {
  position: absolute;
  content: "\f282";
  top: 3px;
  right: 0;
  color: #fff;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-size: 12px;
}

.header-main-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .header-main-part {
    padding-block: 8px;
  }
}
.header-menu-list-wrapper {
  transition: all 0.3s;
}

@media (min-width: 1200px) {
  .header-menu-list-wrapper {
    padding-right: 30px;
  }
}
.header-menu-list-wrapper.active {
  left: 0;
}

@media (max-width: 1199px) {
  .header-menu-list-wrapper {
    padding-top: 20px;
    position: fixed;
    top: 0;
    left: -105%;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    z-index: 9;
    box-shadow: 5px 0 10px rgba(0,0,0,0.1);
  }
}
.header-menu-list-wrapper .mobile-menu-close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 18px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

@media (min-width: 1200px) {
  .header-menu-list-wrapper .mobile-menu-close-btn {
    display: none;
  }
}
.mobile-menu-open-btn {
  font-size: 32px;
  margin-left: 8px;
  color: #fff;
}

@media (min-width: 1200px) {
  .mobile-menu-open-btn {
    display: none;
  }
}
@media (min-width: 1200px) {
  .header-menu-list {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .header-menu-list li:first-child a {
    padding-left: 0;
  }
}
.header-menu-list li a {
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 16px;
  display: flex;
  color: var(--display-color);
}

@media (min-width: 1200px) {
  .header-menu-list li a {
    padding: 24px 8px;
    color: #fff;
  }
}

@media (min-width: 1400px) {
  .header-menu-list li a {
    padding: 24px 16px;
  }
}

.header-menu-list li a:hover {
  color: var(--primary-three);
}

.header-menu-list li:hover .header-submenu-list {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.header-menu-list li:hover::after {
  transform: rotate(180deg);
}

.header-menu-list li.submenu-dropdown {
  position: relative;
}

.header-menu-list li.submenu-dropdown::after {
  position: absolute;
  content: "\f282";
  top: 13px;
  right: 12px;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 700 !important;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 1200px) {
  .header-menu-list li.submenu-dropdown::after {
    top: 25px;
    right: -4px;
  }
}
.header-submenu-list {
  background-color: #f1f1f1;
  z-index: 1;
  padding-block: 8px;
  padding-left: 16px;
  border-radius: 0 0 8px 8px;
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -ms-border-radius: 0 0 8px 8px;
  -o-border-radius: 0 0 8px 8px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 1200px) {
  .header-submenu-list {
    position: absolute;
    top: 110%;
    background-color: #fff;
    left: -50px;
    width: 240px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    padding-left: 0;
  }
}
.header-submenu-list li a {
  padding: 8px 16px !important;
}

.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  padding: 9px 22px;
  background-color: var(--primary-three);
  border-radius: 99px;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 460px) {
  .header-call-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}
.header-call-btn:hover {
  color: #000;
  opacity: 0.95;
}

@media (max-width: 460px) {
  .header-call-btn i {
    display: none;
  }
}
.currency-dropdown .dropdown-menu {
  min-width: 100px;
}

/* === header css end === */
/* === footer css start === */
.footer-section {
  position: relative;
  background-color: var(--primary-two);
  z-index: 0;
}

.footer-section .footer-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  z-index: -1;
  opacity: 0.05;
}

.footer-section .footer-top .title {
  color: #fff;
}

.footer-section .footer-top .container {
  padding-block: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 576px) {
  .footer-section .footer-top .container {
    padding-block: 5rem;
  }
}
.footer-section .footer-middle {
  padding: 2.5rem 0;
}

@media (min-width: 576px) {
  .footer-section .footer-middle {
    padding: 120px 0 100px 0;
  }
}
.destination-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 576px) {
  .destination-item {
    gap: 20px;
  }
}
.destination-item img {
  width: 24px;
}

@media (min-width: 576px) {
  .destination-item img {
    width: 36px;
  }
}
.destination-item span {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}

@media (min-width: 576px) {
  .destination-item span {
    font-size: 16px;
  }
}
.subscribe-form {
  position: relative;
}

.subscribe-form input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  padding: 0.625rem 1rem;
  padding-right: 50px;
  padding-left: 2.75rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.subscribe-form input:focus {
  border-color: var(--primary);
}

.subscribe-form input:focus ~ .icon {
  color: var(--primary);
}

.subscribe-form button {
  position: absolute;
  inset-block-start: 4px;
  inset-inline-end: 4px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 40px;
  height: calc(100% - 8px);
  background-color: var(--primary);
  color: #fff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.subscribe-form .icon {
  position: absolute;
  inset-block-start: 50%;
  transform: translateY(-50%);
  inset-inline-start: 12px;
  font-size: 1.25rem;
  opacity: 0.45;
}

.nir-footer-logo {
  max-height: 75px;
}

.nir-footer-item .nir-footer-item-title {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  margin-bottom: 1.875rem;
  color: #fff;
}

.nir-footer-item .nir-footer-item-title::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--primary);
}

.nir-footer-list li + li {
  margin-top: 0.5rem;
}

.nir-footer-list li {
  color: #fff;
}

.nir-footer-list li a {
  color: #fff;
}

.footer-bottom .container {
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* === footer css end === */

/* === banner css start === */
.banner-section {
  position: relative;
  padding-top: 160px;
  padding-bottom: 40px;
  background-color: var(--primary-two);
  z-index: 0;
}

@media (min-width: 1200px) {
  .banner-section {
    padding-top: 200px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .banner-section {
    padding-top: 260px;
    padding-bottom: 140px;
  }
}
.banner-section .banner-img-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  z-index: -1;
  opacity: 0.075;
}

.banner-section .banner-title {
  color: #fff;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (min-width: 576px) {
  .banner-section .banner-title {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .banner-section .banner-title {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .banner-section .banner-title {
    font-size: 42px;
  }
}
@media (min-width: 1400px) {
  .banner-section .banner-title {
    font-size: 56px;
  }
}
.banner-section .banner-title span {
  color: #FF7A15;
  background: -webkit-linear-gradient(305deg, #a4b6ff, #00b67a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-section .banner-details {
  color: #fff;
  opacity: 0.9;
}

@media (min-width: 1400px) {
  .banner-section .banner-details {
    font-size: 18px;
  }
}
.banner-item {
  padding: 2px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.banner-item i {
  color: var(--success);
  font-size: 18px;
}

@media (min-width: 1400px) {
  .banner-item i {
    font-size: 20px;
  }
}
.banner-item span {
  color: #fff;
  font-size: 13px;
}

@media (min-width: 1400px) {
  .banner-item span {
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
    .banner-section .col-xl-6.d-xl-block {
        padding-left: 60px;
    }
}

@media (min-width: 1400px) {
    .banner-section .col-xl-6.d-xl-block {
        padding-left: 120px;
    }
}

.breadcrumb-banner {
  position: relative;
  padding-block: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--primary-two);
  z-index: 0;
}

@media (min-width: 1200px) {
  .breadcrumb-banner {
      padding-top: 170px;
    padding-bottom: 80px;
  }
}

.breadcrumb-banner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(12, 21, 55, 0.8196078431), rgba(31, 36, 55, 0.15));
  z-index: -1;
}

.breadcrumb-banner .breadcrumb-banner-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  z-index: -2;
  opacity: 0.15;
}

.breadcrumb-banner .title {
  font-size: 24px;
}

@media (min-width: 576px) {
  .breadcrumb-banner .title {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-banner .title {
    font-size: 42px;
  }
}
.breadcrumb-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-menu li {
  color: #fff;
}

.breadcrumb-menu li:last-child::after {
  display: none;
}

.breadcrumb-menu li::after {
  content: "/";
  padding-inline: 12px;
}

.breadcrumb-menu li a {
  color: #fff;
}
/* === banner css end === */

/* === top feature css start === */
.top-feature-section {
  padding-block: 40px;
  background-color: #fff;
}

@media (min-width: 1200px) {
  .top-feature-section {
    padding-block: 60px;
  }
}
.top-feature-wrapper div[class*=col] {
  display: flex;
  justify-content: center;
  border-right: 1px solid var(--border-color);
}

.top-feature-wrapper div[class*=col]:last-child {
  border-right: none;
}

@media (max-width: 991px) {
  .top-feature-wrapper div[class*=col]:nth-child(2) {
    border-right: none;
  }
}
.top-feature-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.top-feature-item .icon {
  width: 32px;
  position: relative;
  z-index: 0;
}

.top-feature-item .icon::before {
    position: absolute;
    content: '';
    top: -6px;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--primary-three);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.75;
}

@media (min-width: 576px) {
  .top-feature-item .icon {
    width: 40px;
  }
}
@media (min-width: 1400px) {
  .top-feature-item .icon {
    width: 55px;
  }
}
.top-feature-item .icon img {
  max-height: 45px;
}

.top-feature-item .content {
  width: 100%;
  padding-left: 0;
  text-align: center;
  margin-top: 12px;
}

@media (min-width: 1200px) {
  .top-feature-item .content {
    width: calc(100% - 40px);
    padding-left: 12px;
    text-align: left;
    margin-top: 0;
  }
}
@media (min-width: 1400px) {
  .top-feature-item .content {
    width: calc(100% - 55px);
  }
}
.top-feature-item .title {
  font-size: 16px;
}

@media (min-width: 576px) {
  .top-feature-item .title {
    font-size: 17px;
  }
}
@media (min-width: 1400px) {
  .top-feature-item .title {
    font-size: 20px;
  }
}
/* === top feature css end === */
/* === about css start === */
.about-section {
  position: relative;
  z-index: 0;
}

.about-section::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(var(--primary) 30%, transparent 65%);
  z-index: -1;
  opacity: 0.1;
}

.about-item {
  display: flex;
  flex-wrap: wrap;
}

.about-item .icon {
  width: 65px;
}

.about-item .content {
  width: calc(100% - 65px);
  padding-left: 20px;
}
/* === about css end === */

/* === counter css start === */
.counter-section {
  background: linear-gradient(to top, var(--body-bg), #fff);
  position: relative;
  z-index: 0;
}

.counter-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary);
  z-index: -1;
  opacity: 0.125;
}

.counter-section::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary);
  z-index: -1;
  opacity: 0.125;
}

.counter-item {
  padding-block: 80px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 0;
}

.counter-item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 45px;
  width: 1px;
  height: 100%;
  background-color: var(--primary);
  z-index: -1;
  opacity: 0.125;
}

.counter-item .icon {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid var(--primary);
}

.counter-item .icon img {
  max-width: 80px;
  max-height: 80px;
}

.counter-item .content {
  width: calc(100% - 90px);
  padding-left: 20px;
}

.counter-item .content .amount {
  font-size: 48px;
  margin-bottom: 0;
}

.counter-item .content .caption {
  margin-bottom: 0;
}

@media (max-width: 1399px) {
  .counter-item .icon {
    width: 80px;
    height: 80px;
  }
  .counter-item .icon img {
    max-width: 60px;
    max-height: 60px;
  }
  .counter-item .content {
    width: calc(100% - 80px);
  }
  .counter-item .content .amount {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .counter-item {
    justify-content: center;
    text-align: center;
  }
  .counter-item::after {
    left: 50%;
  }
  .counter-item .content {
    width: 100%;
    padding-left: 0;
    margin-top: 16px;
  }
}

@media (max-width: 991px) {
  .counter-item .icon {
    width: 60px;
    height: 60px;
  }
  .counter-item .icon img {
    width: 40px;
    height: 40px;
  }
  .counter-item .content .amount {
    font-size: 32px;
  }
  .counter-item .content p {
    font-size: 14px;
  }
}

/* === counter css end === */

/* === main feature css start === */
.main-feature-item-content {
  margin-top: 24px;
  text-align: center;
}

/* === main feature css end === */
/* === how work css start === */
.how-work-section {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}

.how-work-section::before {
  position: absolute;
  content: "";
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(var(--primary) 30%, transparent 65%);
  z-index: -1;
  opacity: 0.1;
}

.how-work-wrapper {
  position: relative;
  padding: 16px;
  z-index: 0;
  overflow: hidden;
}

@media (min-width: 576px) {
  .how-work-wrapper {
    padding: 30px;
  }
}
@media (min-width: 992px) {
  .how-work-wrapper {
    padding: 50px;
  }
}
.how-work-wrapper::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #C3E9C5, #84DBE6);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.75;
}

@media (min-width: 992px) {
  .how-work-wrapper::after {
    position: absolute;
    content: "";
    top: -100px;
    right: 10%;
    width: 8px;
    background: #fff;
    height: 139%;
    border-right: 3px dashed var(--primary-two);
    box-shadow: 2px 0 0 27px #fff;
    transform: rotate(-36deg);
    z-index: -1;
  }
}
.how-work-item-wrapper {
  position: relative;
  z-index: 0;
}

.how-work-item-wrapper::before {
  position: absolute;
  content: "";
  top: 20px;
  left: 36px;
  width: 1px;
  height: calc(100% - 40px);
  background-color: var(--primary);
  z-index: -1;
  opacity: 0.6;
}

@media (min-width: 576px) {
  .how-work-item-wrapper::before {
    left: 46px;
  }
}
.how-work-item + .how-work-item {
  margin-top: 16px;
}

@media (min-width: 576px) {
  .how-work-item + .how-work-item {
    margin-top: 24px;
  }
}
.how-work-item {
  padding: 12px;
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (min-width: 576px) {
  .how-work-item {
    padding: 16px;
  }
}
.how-work-item-number {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--display-color);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

@media (min-width: 576px) {
  .how-work-item-number {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
}
.how-work-item-number::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-three);
  z-index: -1;
  border-radius: 50%;
}

.how-work-item-content {
  width: calc(100% - 60px);
  padding-left: 16px;
}

.how-work-item .title {
  margin-bottom: 4px;
}
/* === how work css end === */

/* === main feature css start === */
.main-feature-section {
  position: relative;
  background-color: #fff;
  z-index: 0;
}

.main-feature-section::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(var(--primary) 30%, transparent 65%);
  z-index: -1;
  opacity: 0.075;
}

.main-feature-section::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(var(--primary) 30%, transparent 65%);
  z-index: -1;
  opacity: 0.075;
}

.main-feature-section .main-feature-img-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  z-index: -2;
  opacity: 0.075;
}

.main-feature-item {
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.11);
  transition: all 0.3s;
}

.main-feature-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.main-feature-item-content {
  margin-top: 24px;
  text-align: center;
}

/* === main feature css end === */

/* === package css start === */
.package-section {
  position: relative;
  z-index: 0;
}

.package-section::before {
  position: absolute;
  content: "";
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(var(--primary) 30%, transparent 65%);
  z-index: -1;
  opacity: 0.1;
}

.package-section .package-section-img-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  z-index: -1;
  opacity: 0.15;
}

.package-wrapper .nav-tabs {
  justify-content: center;
  border: none;
  gap: 12px;
}

@media (min-width: 576px) {
  .package-wrapper .nav-tabs {
    gap: 20px;
  }
}
.package-wrapper .nav-tabs .nav-item .nav-link {
  background-color: #fff;
  text-align: center;
  border-radius: 8px;
  color: var(--body-color);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
}

@media (min-width: 576px) {
  .package-wrapper .nav-tabs .nav-item .nav-link {
    padding: 12px 24px;
  }
}
.package-wrapper .nav-tabs .nav-item .nav-link.active {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.package-wrapper .nav-tabs .nav-item .nav-link.active span {
  color: #fff;
}

.package-wrapper .nav-tabs .nav-item .nav-link span {
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
}

@media (min-width: 576px) {
  .package-wrapper .nav-tabs .nav-item .nav-link span {
    font-size: 18px;
  }
}
.package-wrapper .nav-tabs .nav-item .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.package-wrapper .tab-content {
  margin-top: 40px;
}

.package-item {
  padding: 48px 20px 20px 20px;
  background-color: #fff;
  border: 2px solid var(--primary);
  border-radius: 16px;
  overflow: hidden;
}

.package-item[data-title] {
  position: relative;
}

.package-item[data-title]::after {
  position: absolute;
  content: attr(data-title);
  top: 0;
  right: 0;
  padding: 4px 16px 4px 32px;
  background-color: var(--primary-three);
  color: #000;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10% 50%);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

.package-item .package-price {
  font-size: 32px;
  font-weight: 800;
}

@media (min-width: 1400px) {
  .package-item .package-price {
    font-size: 36px;
  }
}

.package-item-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.package-item-top-content {
    width: calc(100% - 120px);
    padding-right: 30px;
}

.package-item .package-thumb {
  width: 120px;
  text-align: center;
}

.package-item .package-thumb img {
    max-height: 105px;
}

.package-item .package-feature-list li + li {
  margin-top: 8px;
}

.package-item .package-feature-list li {
  position: relative;
  padding-left: 32px;
}

.package-item .package-feature-list li span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
  color: var(--primary);
}

.package-item.recommended {
    background: var(--primary);
    border: none;
}

.package-item.recommended[data-title]::after {
    background: var(--primary-three);
    color: #000;
}

.package-feature-list {
    margin-top: 20px;
}

.package-item.recommended .package-name,
.package-item.recommended .package-details,
.package-item.recommended .package-price,
.package-item.recommended .package-feature-list li {
    color: #fff;
}

.package-item.recommended .package-feature-list li i {
    color: var(--primary-three);
}

@media (max-width: 1399px) {
    .package-item-top-content {
        width: calc(100% - 80px);
    }
    .package-item .package-thumb {
        width: 80px;
    }
}
/* === package css end === */

/* === faq css start === */
.faq-section {
  position: relative;
  background-color: var(--surface-bg);
  z-index: 0;
}

.faq-section::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(var(--primary) 30%, transparent 65%);
  z-index: -1;
  opacity: 0.075;
}

.faq-section::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(var(--primary) 30%, transparent 65%);
  z-index: -1;
  opacity: 0.075;
}

.faq-wrapper {
  padding: 40px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.0392156863);
}

.faq-wrapper .accordion-item {
  border: none;
  border-bottom: 1px solid var(--border-color);
}

.faq-wrapper .accordion-item .accordion-header .accordion-button {
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 16px 0;
}

@media (min-width: 576px) {
  .faq-wrapper .accordion-item .accordion-header .accordion-button {
    padding: 24px 0;
  }
}
@media (min-width: 992px) {
  .faq-wrapper .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}
.faq-wrapper .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: #fff;
  box-shadow: none;
  border-color: transparent;
}

.faq-wrapper .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f2e6";
  transform: rotate(0);
}

.faq-wrapper .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}

.faq-wrapper .accordion-item .accordion-header .accordion-button::after {
  content: "\f4fa";
  background-image: none;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-size: 18px;
  margin-top: -8px;
  transition: all 0.3s;
}

@media (min-width: 576px) {
  .faq-wrapper .accordion-item .accordion-header .accordion-button::after {
    font-size: 22px;
  }
}
.faq-wrapper .accordion-item .accordion-body {
  padding: 0 0 16px 0;
}

@media (min-width: 576px) {
  .faq-wrapper .accordion-item .accordion-body {
    padding: 0 0 24px 0;
  }
}
/* === faq css end === */

/* === cta css start === */
.cta-section {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}

.cta-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.cta-wrapper .cta-wrapper-thumb {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  opacity: 0.1;
  z-index: -1;
}
/* === cta css end === */


/* === testimonial css start === */
.testimonial-section {
  position: relative;
  background-color: var(--surface-bg);
  z-index: 0;
}

.testimonial-section::before {
  position: absolute;
  content: "";
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(var(--primary) 30%, transparent 65%);
  z-index: -1;
  opacity: 0.1;
}

.testimonial-section .testimonial-section-img-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  z-index: -2;
  opacity: 0.35;
}

.testimonial-item {
  padding: 24px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(22, 34, 35, 0.05);
}

.testimonial-item .icon {
  width: 45px;
  height: 45px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #999999;
  font-size: 28px;
  margin-bottom: 20px;
}

.testimonial-item .testimonial-details {
  font-size: 18px;
}

.testimonial-item .ratings {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: goldenrod;
}

.testimonial-item .client {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--border-color);
}

.testimonial-item .client .thumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  -o-object-fit: cover;
}

.testimonial-item .client .content {
  width: calc(100% - 60px);
  padding-left: 16px;
}

.testimonial-item .client .content .name {
  font-size: 18px;
  margin-bottom: 4px;
}

.testimonial-slider .slick-list {
  margin: -12px;
}

.testimonial-slider .testimonial-slide {
  padding: 12px;
}

.testimonial-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  gap: 6px;
}

.testimonial-slider .slick-dots li.slick-active button {
  width: 30px;
  border-radius: 99px;
  background-color: var(--primary-two);
}

.testimonial-slider .slick-dots li button {
  width: 11px;
  height: 11px;
  padding: 0;
  font-size: 0px;
  background-color: #ddd;
  border-radius: 50%;
  transition: all 0.3s;
  border: none;
}
/* === testimonial css end === */


/* === blog css start === */
.blog-post {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.035);
}

.blog-post-content {
  padding: 20px;
}

.blog-post-content .blog-post-title ~ p {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}

.blog-post-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* === blog css end === */
/* === visa css start === */
.country-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-top: 24px;
  justify-content: space-between;
}

.country-form-wrapper .form-label {
    color: #fff;
}

.country-form-wrapper .country-find-btn {
  width: 100%;
  background-color: var(--primary-three);
  color: #000;
  font-weight: 600;
  padding: 10px 10px;
  text-align: center;
  border-radius: 6px;
  margin-top: 16px;
}

.country-form-wrapper .country-find-btn:hover {
    color: #000;
}

.single-find-field {
  width: calc(50% - 8px);
}

@media (max-width: 767px) {
  .single-find-field {
    width: 100%;
    margin-bottom: 16px;
  }
}

.single-find-field .country-select {
  height: 51px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
}

/* === visa css end === */
/* === destination css start === */
.destination-section {
  padding-block: 100px;
  background-color: var(--surface-bg);
  position: relative;
  z-index: 0;
}

@media (max-width: 991px) {
  .destination-section {
    padding-block: 70px;
  }
}
@media (max-width: 575px) {
  .destination-section {
    padding-block: 50px;
  }
}
.destination-section .left-el {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.25;
}

/* === destination css end === */
/* === airline css start === */
.airline-section {
  padding-block: 100px;
  position: relative;
  z-index: 0;
}

@media (max-width: 991px) {
  .airline-section {
    padding-block: 70px;
  }
}
@media (max-width: 575px) {
  .airline-section {
    padding-block: 50px;
  }
}
.airline-section .right-el {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.airline-item img {
  max-height: 130px;
}

.airline-slider-two {
  margin-top: 24px;
}

.airline-slider-wrapper {
  padding-left: 40px;
  position: relative;
}

.airline-slider-wrapper::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 20%;
  height: 100%;
  background: linear-gradient(to right, #f5f5f5, rgba(245, 245, 245, 0.15));
  z-index: 1;
}

.airline-slider-wrapper::after {
  position: absolute;
  content: "";
  right: -16px;
  top: 0;
  width: 20%;
  height: 100%;
  background: linear-gradient(to left, #f5f5f5, rgba(245, 245, 245, 0.15));
  z-index: 1;
}

.airline-slider-one .slick-list,
.airline-slider-two .slick-list {
  margin: 0 -12px;
}

.airline-slider-one .single-slide,
.airline-slider-two .single-slide {
  padding: 0 12px;
}

.airline-slider-two {
  transform: rotate(180deg);
}

.airline-slider-two .single-slide {
  transform: rotate(180deg);
}

/* === airline css end === */
/* === choose css start === */
.choose-section {
  padding-block: 100px;
  background-color: var(--surface-bg);
}

@media (max-width: 991px) {
  .choose-section {
    padding-block: 70px;
  }
}
@media (max-width: 575px) {
  .choose-section {
    padding-block: 50px;
  }
}
.choose-item {
  display: flex;
  flex-wrap: wrap;
  padding: 24px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(22, 34, 35, 0.05);
  height: 100%;
}

@media (max-width: 991px) {
  .choose-item {
    justify-content: center;
    text-align: center;
  }
}
.choose-item .icon {
  width: 60px;
}

.choose-item .content {
  margin-top: 16px;
}

@media (min-width: 1400px) {
  .choose-item .content {
    width: calc(100% - 60px);
    padding-left: 20px;
    margin-top: 0;
  }
}
.choose-item .title {
  margin-bottom: 16px;
}

@media (min-width: 1400px) {
  .choose-item .title {
    font-size: 22px;
  }
}
/* === choose css end === */
/* === featured-on css start === */
.featured-on-section {
  padding-block: 100px;
  background-color: var(--surface-bg);
}

@media (max-width: 991px) {
  .featured-on-section {
    padding-block: 70px;
  }
}
@media (max-width: 575px) {
  .featured-on-section {
    padding-block: 50px;
  }
}
.featured-on-item img {
  max-height: 120px;
}

.featured-on-item .title {
  font-weight: 500;
  font-size: 18px;
}

/* === featured-on css end === */
/* === authorized css start === */
.authorized-section {
  padding-block: 100px;
  position: relative;
  z-index: 0;
}

.authorized-section .authorized-right-el {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 280px;
}

.authorized-item {
  background-color: #fff;
}

/* === authorized css end === */
/* === application css start === */
.application-section {
    background-color: #fff;
}

.application-steps {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
}

.single-step {
  position: relative;
  width: 33.3333333333%;
  padding: 16px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--border-color);
  justify-content: center;
}

@media (min-width: 768px) {
  .single-step {
    padding: 16px 24px;
  }
}
@media (min-width: 992px) {
  .single-step {
    justify-content: flex-start;
  }
}
.single-step.active::before {
  opacity: 1;
}

.single-step.active .single-step-number {
  border-color: var(--primary);
  color: var(--primary);
}

.single-step::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 2px;
  width: calc(100% - 2px);
  height: 2px;
  background-color: var(--primary);
  opacity: 0;
}

.single-step::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -6px;
  width: 12px;
  height: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--border-color) var(--border-color) transparent transparent;
  background-color: #fff;
  transform: rotate(45deg);
  margin-top: -6px;
}

.single-step:last-child {
  border-right: none;
}

.single-step:last-child::after {
  display: none;
}

.single-step-number {
  width: 32px;
  height: 32px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  color: var(--display-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.single-step-text {
  font-weight: 500;
  color: var(--display-color);
  width: 100%;
  text-align: center;
  font-size: 14px;
}

@media (min-width: 992px) {
  .single-step-text {
    width: auto;
    text-align: left;
    font-size: 16px;
  }
}
.application-wrapper {
  padding: 20px;
  background-color: #f3f4f6;
  border-radius: 20px;
}

@media (min-width: 768px) {
  .application-wrapper {
    padding: 40px;
  }
}

.application-wrapper .form-select, 
.application-wrapper .form-control, 
.application-wrapper textarea,
.application-wrapper .country-field .country-select {
    border-color: #dadada;
}

.application-wrapper .country-field .country-select {
    background-color: #fff;
}

.application-wrapper .package-wrapper .nav-tabs .nav-item .nav-link {
    padding: 6px 24px 10px 24px;
}

.application-wrapper .package-wrapper .nav-tabs .nav-item .nav-link span {
    font-size: 16px;
    color: var(--display-color);
    line-height: 1;
}

.application-wrapper .package-wrapper .nav-tabs .nav-item .nav-link p {
    line-height: 1.2;
    font-weight: 600;
    font-size: 13px;
}

.application-wrapper .package-wrapper .nav-tabs {
    gap: 16px;
}

.application-wrapper .package-wrapper .nav-tabs .nav-item .nav-link {
    background-color: #DADADA;
}

.application-wrapper .package-wrapper .nav-tabs .nav-item .nav-link.active {
    background-color: var(--primary);
}

.application-wrapper .package-wrapper .nav-tabs .nav-item .nav-link.active span {
    color: #FFF;
}

.application-wrapper .package-item {
    text-align: center;
}

.application-wrapper .package-item .package-thumb {
    width: 100%;
}

.application-wrapper .package-item .package-thumb img {
    max-height: 100%;
    height: 300px;
    object-fit: contain;
}

.application-wrapper {}

.application-wrapper {}

.application-wrapper {}

/* #ECF3F4 */

.icon-item {
  display: flex;
  flex-wrap: wrap;
}

.icon-item .icon {
  width: 45px;
  height: 45px;
  border: 1px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
}

.icon-item .content {
  width: calc(100% - 45px);
  padding-left: 16px;
}

.license-check {
  position: relative;
  display: block;
  height: 100%;
}

.license-check .form-check-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.license-check .form-check-input:checked ~ .form-check-label::after {
  content: "\f26c";
  color: var(--primary);
}

.license-check .form-check-label {
    background-color: #fff;
  border: 1px solid var(--border-color);
  padding: 16px 12px 16px 44px;
  border-radius: 8px;
  display: block;
  position: relative;
  transition: all 0.3s;
  height: 100%;
}

.license-check .form-check-label::after {
  position: absolute;
  content: "\f584";
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-family: bootstrap-icons !important;
  font-weight: 400 !important;
  color: #ddd;
  transition: all 0.3s;
}

.license-check .form-check-label .license-check-img {
  position: absolute;
  right: 12px;
  height: 84%;
  top: 8%;
  opacity: 0.2;
}

.license-check .form-check-label .license-check-class {
    width: 18px;
    height: 18px;
    background: #0a3fa8;
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-transform: uppercase;
}

.license-check .form-check-label p {
  font-size: 14px;
  font-weight: 500;
  color: var(--display-color);
  margin-top: 6px;
}

.single-upload {
  position: relative;
}

.single-upload .single-upload-img {
  height: 250px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.single-upload .single-upload-img img {
  max-height: 200px;
}

.single-upload label {
  padding: 8px 20px;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 14px;
}

.single-upload .delete-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  color: var(--danger);
  display: none;
}

.package-form-check {
  position: relative;
}

.package-form-check .form-check-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.text-circle {
    font-size: 8px;
}

.package-form-check .form-check-label {
  display: block;
}

.package-form-check .form-check-input:checked ~ .form-check-label .package-item {
  background-color: var(--primary);
}

.package-form-check .form-check-input:checked ~ .form-check-label .package-item .package-name,
.package-form-check .form-check-input:checked ~ .form-check-label .package-item .package-price,
.package-form-check .form-check-input:checked ~ .form-check-label .package-item .package-feature-list {
  color: #fff;
}

.package-form-check .form-check-input:checked ~ .form-check-label .package-item .package-details {
  color: #f1f1f1;
}

#loginWrapper,
#registerWrapper {
  display: none;
}

.payment-gateways-wrapper {
  padding: 40px;
  background-color: #fff;
  margin-top: 40px;
  border-radius: 20px;
}

.all-payment-gateways {
  margin-top: 20px;
  max-height: 300px;
  padding-right: 8px;
}

.all-payment-gateways .form-check + .form-check {
  margin-top: 12px;
}

.all-payment-gateways .form-check {
  position: relative;
  display: block;
}

.all-payment-gateways .form-check .form-check-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.all-payment-gateways .form-check .form-check-label {
  display: block;
  padding: 16px 24px 16px 44px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-weight: 600;
  position: relative;
  transition: all 0.3s;
}

.all-payment-gateways .form-check-input:checked ~ .form-check-label {
  border-color: var(--primary);
}

.all-payment-gateways .form-check .form-check-label::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 1px solid #c7c7c7;
  border-radius: 50%;
  transition: all 0.3s;
}

.all-payment-gateways .form-check-input:checked ~ .form-check-label::before {
  border-color: var(--primary);
  box-shadow: inset 0 0 0 2px var(--primary);
}

.order-summery {
  background-color: var(--primary-two);
  position: sticky;
  top: 30px;
}

.order-summery hr {
  border-color: #fff;
}

/* === application css end === */
/* === blog details css start === */
.nir-blog-details {
  padding-block: 2.5rem;
}

.blog-details-content {
  padding: 30px;
}

.nir-blog-details-title {
  font-size: 2.25rem;
}
.blog-share-part {
  padding-inline: 30px;
  padding-bottom: 30px;
}

.blog-share-list ul {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-share-list ul li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  transition: all 0.3s;
}

.blog-share-list ul li a:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.side-blog {
  display: flex;
  flex-wrap: wrap;
}

.side-blog+.side-blog {
  margin-top: 20px;
}

.side-blog-thumb {
  width: 70px;
  height: 60px;
  overflow: hidden;
}

.side-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: 8px;
}

.side-blog-content {
  width: calc(100% - 70px);
  padding-left: 20px;
}

.side-blog-content h6 a {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
}
/* === blog details css end === */

/* === user dashboard css start === */
.nir-user-dashboard {
  padding-block: 2.5rem;
  border-bottom: 2px solid rgba(226, 226, 226, 0.8980392157);
}

@media (min-width: 576px) {
  .nir-user-dashboard {
    padding-block: 5rem;
  }
}
.nir-user-sidebar {
  padding: 1.5rem 1.25rem;
  background-color: var(--surface-bg);
  border-radius: 0.75rem;
  border: 1px solid var(--primary);
}

.nir-user-menu {
  margin-top: 1.25rem;
}

.nir-user-menu li + li {
  margin-top: 0.5rem;
}

.nir-user-menu li a {
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.nir-user-menu li a.active {
  background-color: var(--primary);
  color: #fff;
}

.nir-user-menu li a i {
  font-size: 1.125rem;
}
.nir-user-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 12px 16px;
  background-color: var(--surface-bg);
  border-radius: 12px;
  border: 1px solid var(--primary);
}

.nir-user-card .icon {
  font-size: 1.5rem;
  color: var(--primary);
  width: 55px;
  height: 55px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  z-index: 0;
}

.nir-user-card .icon::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  opacity: 0.1;
  border-radius: 8px;
  z-index: -1;
}

.nir-user-card .content {
  width: calc(100% - 55px);
  padding-left: 16px;
}

.nir-user-card.style-complete .icon {
  color: var(--success);
}

.nir-user-card.style-complete .icon::before {
  background-color: var(--success);
}

.nir-user-card.style-pending .icon {
  color: var(--warning);
}

.nir-user-card.style-pending .icon::before {
  background-color: var(--warning);
}

.user-application-thumb {
    position: relative;
}

.user-application-thumb img {
    border-radius: 12px;
}

.download-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 4px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-btn:hover {
    color: #fff;
}

@media (max-width: 767px) {
  .nir-user-card {
    padding: 8px 12px;
  }

  .nir-user-card .icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .nir-user-card .content {
    width: calc(100% - 44px);
  }

  .nir-user-card .content p {
    font-size: 14px;
  }

  .nir-user-card .content h3 {
    font-size: 22px; 
  }

  .nir-user-dashboard {
    padding-block: 70px;
  }
}

@media (max-width: 575px) {
  .nir-user-dashboard {
    padding-block: 50px;
  }

  .nir-user-card {
    padding: 12px 12px;
    text-align: center;
    justify-content: center;
  }
  .nir-user-card .content {
    width: 100%;
    padding-left: 0;
    margin-top: 16px;
  }

  .nir-user-card .content h3 {
    font-size: 20px;
  }
}

.country-field .country-select {
  height: 45px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
}

.no-data-design {
  padding-block: 50px;
}

.no-data-design .icon {
  font-size: 54px;
  line-height: 0;
  opacity: 0.45;
}

.payment-box {
  padding: 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.payment-box-thumb img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  -o-object-fit: cover;
}

.payment-box-content {
  padding: 20px 10px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  border-radius: 0 0 8px 8px;
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -ms-border-radius: 0 0 8px 8px;
  -o-border-radius: 0 0 8px 8px;
}

.single-reply {
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.tab-btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.tab-btn-group .tab-btn {
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tab-btn-group .tab-btn.active {
  background-color: var(--primary);
  color: #fff;
}

.tab-btn-group .tab-btn .num {
  font-weight: 600;
}

.tab-btn-group .tab-btn .num::before {
  content: '(';
}
.tab-btn-group .tab-btn .num::after {
  content: ')';
}

.divider-or {
  position: relative;
  z-index: 1;
  text-align: center;
}

.divider-or::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.1;
  z-index: -1;
}

.divider-or span {
  padding: 2px 10px;
  background-color: var(--surface-bg);
}



.gateway-option input[type="radio"] {
  display: none;
}

.gateway-card {
  padding: 12px;
  background-color: #fff;
  border: 3px solid #e0e0e0;
  border-radius: 8px;
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
}

.gateway-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  -o-object-fit: cover;
}

.gateway-card .gateway-content {
  width: calc(100% - 50px);
  padding-left: 12px;
}

.gateway-card .gateway-content .title {
  font-size: 16px;
  margin-bottom: 4px;
}

.gateway-card .gateway-content .subtitle {
  font-size: 14px;
  margin-bottom: 0;
}

.gateway-option input[type="radio"]:checked+.gateway-card {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
/* === user dashboard css end === */

/* === country check css start === */
.nir-country-section {
  background-color: var(--surface-bg);
}

.nir-country-section .single-find-field {
  width: 100%;
  max-width: 300px;
}

.country-checker-img {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: 12px;
}
/* === country check css end === */

/* === country list css start === */
.country-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.country-tabs .tab {
  padding: 8px 30px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 99px;
  font-weight: 600;
}

.country-tabs .tab.active {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.country-list {
  padding: 20px;
  background-color: #fff;
  border-radius: 16px;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}

.country-list .country {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  width: 100%;
}

.country-list .country img {
  width: 20px;
  height: 16px;
  object-fit: cover;
  -o-object-fit: cover;
}

.country-list .country span {
  font-weight: 500;
}

@media (max-width: 767px) {
  .country-list .country {
    width: calc(100% / 3);
  }
}

@media (max-width: 575px) {
  .country-tabs .tab {
    padding: 6px 16px;
    font-size: 14px;
  }

  .country-list .country {
    width: calc(100% / 2);
  }
}
/* === country list css end === */

/* === auth section css start === */
.auth-wrapper {
  padding: 16px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
  display: flex;
  flex-wrap: wrap;
}

.auth-wrapper .thumb {
  width: 48%;
}

.auth-wrapper .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: 12px;
}

.auth-wrapper .content {
  width: 52%;
  padding-block: 20px;
  padding-left: 30px;
  padding-right: 12px;
}

.divider-or {
  position: relative;
  z-index: 1;
  text-align: center;
}

.divider-or::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  opacity: 0.1;
  z-index: -1;
}

.divider-or span {
  padding: 2px 10px;
  background-color: #fff;
}

@media (max-width: 991px) {
  .auth-wrapper .thumb {
    width: 100%;
    margin-bottom: 20px;
  }

  .auth-wrapper .content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
/* === auth section css end === */

/* === contact section css start === */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.map-area {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    margin-top: 50px;
}

.map-area iframe {
    height: 550px;
    width: 100%;
}

@media (max-width: 991px) {

    .map-area,
    .contact-area {
        width: 100%;
        padding: 0;
    }

    .map-area iframe {
        height: 450px;
    }

    .contact-area {
        margin-top: 40px;
    }
}


@media (max-width: 575px) {
    .map-area iframe {
        height: 300px;
    }
}

.conact-section ~ .s-pt-120 {
    padding-top: 0 !important;
}

.contact-item {
    padding: 24px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-item .title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.contact-item .title i {
    color: var(--primary);
}


.track-form .form-control {
  height: 54px;
}

.before-track-search {
  padding: 50px 40px;
  background-color: #fff;
  border-radius: 16px;
}

.before-track-search img {
  max-height: 300px;
}

@media (max-width: 575px) {
  .before-track-search {
    padding: 30px 20px;
  }
}

.cookie-modal {
    position: fixed;
    z-index: 9999;
    bottom: 20px;
    left: 20px;
    background: #1e2339;
    padding: 30px;
    border-radius: 16px;
    width: 560px;
}

.cookies-card__icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 24px;
}

.cookie-consent__message {
    margin-bottom: 24px;
}

.cookie-consent__message a {
    color: var(--primary);
    font-weight: 600;
}

.cookie-modal .js-cookie-consent-agree:first-child {
    background: var(--primary);
}

@media (max-width: 991px) {
    .cookie-modal {
        left: 10px;
        width: calc(100% - 20px);
        padding: 20px;
    }
    
    .cookie-consent__message-text {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}


.cart-list li {
    display: flex;
    font-size: 14px;
}

.cart-list li .left {
    width: 45%;
    padding: 16px 20px;
}

.cart-list li .right {
    width: 55%;
    padding: 16px 20px;
}

.list-bg-light {
    background: #e5e9ed52;
}

.info_div .control-label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--display-color);
    font-weight: 600;
}

/* === contact section css end === */

/* === responsive css start === */
@media (max-width: 991px) {
  .about-section::before,
  .how-work-section::before,
  .main-feature-section::before,
  .main-feature-section::after,
  .package-section::before,
  .faq-section::before,
  .faq-section::after,
  .testimonial-section::before {
    width: 550px;
    height: 550px;
  }
}

@media (max-width: 575px) {
  .about-section::before,
  .how-work-section::before,
  .main-feature-section::before,
  .main-feature-section::after,
  .package-section::before,
  .faq-section::before,
  .faq-section::after,
  .testimonial-section::before {
    width: 280px;
    height: 280px;
  }
}
/* === responsive css end === */