/*===========================
		COMMON css
===========================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #5d657b;
  overflow-x: hidden;
  background: #f1f5f9;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

button {
  border: none;
}

a:hover {
  color: #365CF5;
}

button,
a {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

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

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin: 0px;
}

.img-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.para-width-500 {
  max-width: 500px;
  width: 100%;
}

@media (max-width: 767px) {
  .container {
    padding: 0 30px;
  }

  .table td p {
    font-size: 14px !important;
  }
}

/* ========== cart style ========== */
.card-style {
  background: #fff;
  box-sizing: border-box;
  padding: 25px 20px;
  margin: 15px;
  position: relative;
  border-radius: 7px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

@media (max-width: 767px) {
  .card-style {
    padding: 20px;
  }
}

.card-style .jvm-zoom-btn {
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  right: 30px;
  bottom: 30px;
  cursor: pointer;
}

.card-style .jvm-zoom-btn.jvm-zoomin {
  bottom: 70px;
}

.card-style .dropdown-toggle {
  border: none;
  background: none;
}

.card-style .dropdown-toggle::after {
  display: none;
}

/* Les boutons colorés Bootstrap (tableau contenus, etc.) : sans ceci, fond none + texte clair = invisible sur carte blanche */
.card-style .dropdown-toggle.btn-primary {
  background-color: var(--bs-primary, #0d6efd);
  border: 1px solid var(--bs-primary, #0d6efd);
  color: #fff;
}
.card-style .dropdown-toggle.btn-success {
  background-color: var(--bs-success, #198754);
  border: 1px solid var(--bs-success, #198754);
  color: #fff;
}

.card-style .dropdown-menu {
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07);
}

.card-style .dropdown-menu li:hover a {
  color: #365CF5 !important;
}

.card-style .dropdown-menu li a {
  display: block;
  font-size: 14px;
}

.error-box {
  max-width: 330px;
  margin: 50px auto;
}

.error-box img {
  max-width: 350px;
}

@media (max-width: 767px) {
  .error-box {
    margin: 25px auto;
  }

  .error-box img {
    max-width: 180px;
  }

  .error-box h1 {
    font-size: 28px;
  }
}

.error-box a {
  border-radius: 7px;
  padding: 7px 25px;
}

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

.more-btn-wrapper .dropdown-menu {
  border: 0.5px solid #efefef;
  box-shadow: 0px 5px 10px rgba(26, 25, 85, 0.08);
  border-radius: 5px;
}

.more-btn-wrapper .dropdown-menu .dropdown-item:active,
.more-btn-wrapper .dropdown-menu .dropdown-item:focus {
  background: none;
}

.more-btn-wrapper .dropdown-menu .dropdown-item a {
  width: 100%;
  border-radius: 4px;
  color: #1A2142;
}

.more-btn-wrapper .dropdown-menu .dropdown-item i {
  font-weight: 700;
}

/* ======= Border Radius ========= */
.radius-4 {
  border-radius: 4px;
}

.radius-10 {
  border-radius: 10px;
}

.radius-30 {
  border-radius: 30px;
}

.radius-50 {
  border-radius: 50px;
}

.radius-full {
  border-radius: 50%;
}

.scroll-top {
  width: 45px;
  height: 45px;
  background: #365CF5;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  border-radius: 5px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.scroll-top:hover {
  color: #fff;
  background: rgba(54, 92, 245, 0.8);
}

.form-control:focus {
  box-shadow: none;
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus,
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus,
.form-check-input.is-valid:focus,
.was-validated .form-check-input:valid:focus,
.form-check-input.is-invalid:focus,
.was-validated .form-check-input:invalid:focus,
.form-check-input:focus,
.radio-style.radio-success .form-check-input:focus,
.radio-style.radio-warning .form-check-input:focus,
.radio-style.radio-danger .form-check-input:focus {
  box-shadow: none;
}

.hover-underline:hover {
  text-decoration: underline;
}

.apexcharts-tooltip-z-group,
.apexcharts-tooltip-goals-group {
  display: none;
}

/* ========= Theme Change Css ============= */
.darkTheme {
  color: #838C9A;
}

.darkTheme .text-gray {
  color: rgba(255, 255, 255, 0.5) !important;
}

.darkTheme .card-style {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.darkTheme .card-style .dropdown-menu {
  background: #02021E;
}

.darkTheme .card-style .dropdown-item:focus,
.darkTheme .card-style .dropdown-item:active,
.darkTheme .card-style .dropdown-item:hover {
  background: none;
}

.darkTheme .more-btn-wrapper .dropdown-menu {
  border-color: #14142D;
}

.darkTheme .more-btn-wrapper .dropdown-menu .dropdown-item a {
  color: #fff;
}

.darkTheme .apexcharts-text {
  fill: #838C9A;
}

/* ============= typography css ============= */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #1A2142;
  margin: 0;
}

h1,
.h1 {
  font-size: 32px;
  font-weight: 700;
}

h2,
.h2 {
  font-size: 28px;
  font-weight: 600;
}

h3,
.h3 {
  font-size: 24px;
  font-weight: 500;
}

h4,
.h4 {
  font-size: 20px;
  font-weight: 600;
}

h5,
.h5 {
  font-size: 16px;
  font-weight: 700;
}

h6,
.h6 {
  font-size: 17px;
  font-weight: 600;
}

.text-bold {
  font-weight: 600;
}

.text-semi-bold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

.text-regular {
  font-weight: 400;
}

.text-light {
  font-weight: 300;
}

.text-sm {
  font-size: 14px;
  line-height: 26px;
}

.text-xs {
  font-size: 12px;
}

/* ========== breadcrumb ============ */
.title-wrapper .breadcrumb-wrapper,
.title-wrapper .title {
  margin-bottom: 30px;
}

@media (max-width: 767px) {

  .title-wrapper .breadcrumb-wrapper,
  .title-wrapper .title {
    margin-bottom: 10px;
  }
}

.breadcrumb-wrapper {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .breadcrumb-wrapper {
    justify-content: flex-start;
  }
}

.breadcrumb-wrapper .breadcrumb li {
  font-size: 14px;
  color: #365CF5;
}

.breadcrumb-wrapper .breadcrumb li a {
  color: #5d657b;
}

.breadcrumb-wrapper .breadcrumb li a:hover {
  color: #365CF5;
}

/* =========== Theme Change Css ============== */
.darkTheme h1,
.darkTheme h2,
.darkTheme h3,
.darkTheme h4,
.darkTheme h5,
.darkTheme h6,
.darkTheme .h1,
.darkTheme .h2,
.darkTheme .h3,
.darkTheme .h4,
.darkTheme .h5,
.darkTheme .h6 {
  color: #fff;
}

.darkTheme .text-dark {
  color: rgba(255, 255, 255, 0.7) !important;
}

.darkTheme .breadcrumb-wrapper .breadcrumb li a {
  color: #838C9A;
}

.darkTheme .breadcrumb-wrapper .breadcrumb-item+.breadcrumb-item::before {
  color: #838C9A;
}

.darkTheme .update-image label {
  color: #02021E;
}

/* ========== Badges css ========== */
/* badges base styles */
.main-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 4px 10px;
  font-weight: 600;
  font-size: 10px;
  line-height: 14px;
  border-radius: 3px;
  z-index: 5;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.main-badge:hover {
  color: inherit;
}

.badge-xl {
  padding: 10px 10px 10px 15px;
  font-weight: 500;
  font-size: 14px;
  justify-content: space-between;
  max-width: 150px;
  width: 100%;
}

.badge-xl span {
  padding: 4px 8px;
}

/* primary buttons */
.primary-badge {
  background: #365CF5;
  color: #fff;
}

.primary-badge:hover {
  color: #fff;
}

.primary-badge-light {
  background: rgba(54, 92, 245, 0.08);
  color: #365CF5;
}

.primary-badge-light:hover {
  color: #365CF5;
}

/* secondary buttons */
.secondary-badge {
  background: #00c1f8;
  color: #fff;
}

.secondary-badge:hover {
  color: #fff;
}

.secondary-badge-light {
  background: rgba(0, 193, 248, 0.08);
  color: #00c1f8;
}

.secondary-badge-light:hover {
  color: #00c1f8;
}

/* success buttons */
.success-badge {
  background: #219653;
  color: #fff;
}

.success-badge:hover {
  color: #fff;
}

.success-badge-light {
  background: rgba(33, 150, 83, 0.08);
  color: #219653;
}

.success-badge-light:hover {
  color: #219653;
}

/* danger buttons */
.danger-badge {
  background: #d50100;
  color: #fff;
}

.danger-badge:hover {
  color: #fff;
}

.danger-badge-light {
  background: rgba(213, 1, 0, 0.08);
  color: #d50100;
}

.danger-badge-light:hover {
  color: #d50100;
}

/* warning buttons */
.warning-badge {
  background: #f7c800;
  color: #fff;
}

.warning-badge:hover {
  color: #fff;
}

.warning-badge-light {
  background: rgba(247, 200, 0, 0.08);
  color: #f7c800;
}

.warning-badge-light:hover {
  color: #f7c800;
}

/* info buttons */
.info-badge {
  background: #97ca31;
  color: #fff;
}

.info-badge:hover {
  color: #fff;
}

.info-badge-light {
  background: rgba(151, 202, 49, 0.08);
  color: #97ca31;
}

.info-badge-light:hover {
  color: #97ca31;
}

/* dark buttons */
.dark-badge {
  background: #1A2142;
  color: #fff;
}

.dark-badge:hover {
  color: #fff;
}

.dark-badge-light {
  background: rgba(26, 33, 66, 0.08);
  color: #1A2142;
}

.dark-badge-light:hover {
  color: #1A2142;
}

/* ========== buttons group css ========= */
.badges-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ======= Theme Change Css =========== */
/* ======= Theme Change Css =========== */
.darkTheme .dark-badge {
  background: #02021E;
}

.darkTheme .db__cell {
  background: #14142d;
}

.darkTheme .db__counter-value {
  color: #fff;
}

.darkTheme .db__select {
  background: #14142d;
  color: #fff;
}

.darkTheme .dark-badge-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
}

.darkTheme .light-badge-outline {
  color: #efefef;
}

/* ========== Breadcrumb css ========== */
/* breadcrumb base styles */
.base-breadcrumb {
  border-radius: 6px;
  border: 1px solid #DFE5EF;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 17px 30px;
}

.base-breadcrumb li,
.base-breadcrumb a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.base-breadcrumb li i,
.base-breadcrumb a i {
  line-height: 1;
}

.base-breadcrumb li {
  font-size: 14px;
  font-weight: 500;
}

.base-breadcrumb li a,
.base-breadcrumb li span {
  display: flex;
  color: #5d657b;
}

.base-breadcrumb li.active {
  color: #365CF5;
}

.breadcrumb-two {
  gap: 12px;
}

.breadcrumb-two li {
  gap: 12px;
}

.breadcrumb-two li span {
  max-width: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #5d657b;
}

.breadcrumb-two a {
  gap: 5px;
}

.breadcrumb-three a {
  gap: 5px;
}

/* ========== Theme Change ==========  */
.darkTheme .base-breadcrumb {
  border-color: #3F4053;
}

/* ========== Buttons css ========== */
/* ========== Buttons css ========== */
/* buttons base styles */
.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 15px 45px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  border-radius: 3px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.4s ease-in-out;
  border: 1px solid transparent;
  overflow: hidden;
}

.main-btn i {
  font-size: 17px;
}

.main-btn svg {
  fill: currentColor;
}

.main-btn:hover {
  color: inherit;
}

.group-btn {
  display: inline-flex;
  border: 1px solid #DFE5EF;
  border-radius: 3px;
}

.group-btn.square-btn .main-btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.group-btn.square-btn .main-btn:last-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.group-btn.rounded-full .main-btn:first-child {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.group-btn.rounded-full .main-btn:last-child {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.group-btn .main-btn {
  border-radius: 0;
}

.group-btn .main-btn:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.group-btn .main-btn:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.group-btn .main-btn:not(.group-btn .main-btn:last-child) {
  border-right: 1px solid #DFE5EF;
}

.btn-sm {
  padding: 0.3rem 0.55rem;
  font-weight: 400;
}

/* buttons hover effect */
.btn-hover {
  position: relative;
  overflow: hidden;
}

.btn-hover::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: 50%;
  left: 50%;
  padding: 50%;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0);
  -moz-transform: translate3d(-50%, -50%, 0) scale(0);
  -ms-transform: translate3d(-50%, -50%, 0) scale(0);
  -o-transform: translate3d(-50%, -50%, 0) scale(0);
  transform: translate3d(-50%, -50%, 0) scale(0);
}

.btn-hover:hover::after {
  -webkit-transform: translate3d(-50%, -50%, 0) scale(1.3);
  -moz-transform: translate3d(-50%, -50%, 0) scale(1.3);
  -ms-transform: translate3d(-50%, -50%, 0) scale(1.3);
  -o-transform: translate3d(-50%, -50%, 0) scale(1.3);
  transform: translate3d(-50%, -50%, 0) scale(1.3);
}

/* Dropdown buttons */
.base-dropdown-btn .main-btn {
  padding: 8px 15px;
}

.base-dropdown-btn .main-btn svg {
  fill: currentColor;
}

.base-dropdown-btn .dropdown-menu {
  box-shadow: 0px 12px 24px -4px rgba(145, 158, 171, 0.12), 0px 0px 2px 0px rgba(145, 158, 171, 0.2);
  border-radius: 3px;
  border: none;
}

.base-dropdown-btn .dropdown-item {
  padding: 8px 15px;
  color: #5d657b;
  font-weight: 500;
}

.base-dropdown-btn .dropdown-item:hover {
  color: #5d657b !important;
  background: #f5f8fc;
}

/* primary buttons */
.primary-btn {
  background: #365CF5;
  color: #fff;
}

.primary-btn:hover {
  color: #fff;
}

.primary-btn-outline {
  background: transparent;
  color: #365CF5;
  border-color: #365CF5;
}

.primary-btn-outline:hover {
  color: #fff;
  background: #365CF5;
}

.primary-btn-light {
  background: rgba(54, 92, 245, 0.12);
  color: #365CF5;
}

.primary-btn-light:hover {
  color: #365CF5;
}

.primary-btn-group {
  background: transparent;
  border: 1px solid transparent;
  color: #365CF5;
}

.primary-btn-group.active,
.primary-btn-group:hover {
  color: #fff;
  background: #365CF5;
  border-color: #365CF5 !important;
}

/* secondary buttons */
.secondary-btn {
  background: #00c1f8;
  color: #fff;
}

.secondary-btn:hover {
  color: #fff;
}

.secondary-btn-outline {
  background: transparent;
  color: #00c1f8;
  border-color: #00c1f8;
}

.secondary-btn-outline:hover {
  color: #fff;
  background: #00c1f8;
}

.secondary-btn-light {
  background: rgba(0, 193, 248, 0.12);
  color: #00c1f8;
}

.secondary-btn-light:hover {
  color: #00c1f8;
}

.secondary-btn-group {
  background: transparent;
  border: 1px solid transparent;
  color: #00c1f8;
}

.secondary-btn-group.active,
.secondary-btn-group:hover {
  color: #fff;
  background: #00c1f8;
  border-color: #00c1f8 !important;
}

/* success buttons */
.success-btn {
  background: #219653;
  color: #fff;
}

.success-btn:hover {
  color: #fff;
}

.success-btn-outline {
  background: transparent;
  color: #219653;
  border-color: #219653;
}

.success-btn-outline:hover {
  color: #fff;
  background: #219653;
}

.success-btn-light {
  background: rgba(33, 150, 83, 0.12);
  color: #219653;
}

.success-btn-light:hover {
  color: #219653;
}

.success-btn-group {
  background: transparent;
  border: 1px solid transparent;
  color: #219653;
}

.success-btn-group.active,
.success-btn-group:hover {
  color: #fff;
  background: #219653;
  border-color: #219653 !important;
}

/* danger buttons */
.danger-btn {
  background: #d50100;
  color: #fff;
}

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

.danger-btn-outline {
  background: transparent;
  color: #d50100;
  border-color: #d50100;
}

.danger-btn-outline:hover {
  color: #fff;
  background: #d50100;
}

.danger-btn-light {
  background: rgba(213, 1, 0, 0.12);
  color: #d50100;
}

.danger-btn-light:hover {
  color: #d50100;
}

.danger-btn-group {
  background: transparent;
  border: 1px solid transparent;
  color: #d50100;
}

.danger-btn-group.active,
.danger-btn-group:hover {
  color: #fff;
  background: #d50100;
  border-color: #d50100 !important;
}

/* warning buttons */
.warning-btn {
  background: #f7c800;
  color: #fff;
}

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

.warning-btn-outline {
  background: transparent;
  color: #f7c800;
  border-color: #f7c800;
}

.warning-btn-outline:hover {
  color: #fff;
  background: #f7c800;
}

.warning-btn-light {
  background: rgba(247, 200, 0, 0.12);
  color: #f7c800;
}

.warning-btn-light:hover {
  color: #f7c800;
}

.warning-btn-group {
  background: transparent;
  border: 1px solid transparent;
  color: #f7c800;
}

.warning-btn-group.active,
.warning-btn-group:hover {
  color: #fff;
  background: #f7c800;
  border-color: #f7c800 !important;
}

/* info buttons */
/* info buttons */
.info-btn {
  background: #97ca31;
  color: #fff;
}

.info-btn:hover {
  color: #fff;
}

.info-btn-outline {
  background: transparent;
  color: #97ca31;
  border-color: #97ca31;
}

.info-btn-outline:hover {
  color: #fff;
  background: #97ca31;
}

.info-btn-light {
  background: rgba(151, 202, 49, 0.12);
  color: #97ca31;
}

.info-btn-light:hover {
  color: #97ca31;
}

.info-btn-group {
  background: transparent;
  border: 1px solid transparent;
  color: #97ca31;
}

.info-btn-group.active,
.info-btn-group:hover {
  color: #fff;
  background: #97ca31;
  border-color: #97ca31 !important;
}

/* dark buttons */
/* dark buttons */
.dark-btn {
  background: #1A2142;
  color: #fff;
}

.dark-btn:hover {
  color: #fff;
}

.dark-btn-outline {
  background: transparent;
  color: #1A2142;
  border-color: #1A2142;
}

.dark-btn-outline:hover {
  color: #fff;
  background: #1A2142;
}

.dark-btn-light {
  background: rgba(26, 33, 66, 0.12);
  color: #1A2142;
}

.dark-btn-light:hover {
  color: #1A2142;
}

.dark-btn-group {
  background: transparent;
  border: 1px solid transparent;
  color: #1A2142;
}

.dark-btn-group.active,
.dark-btn-group:hover {
  color: #fff;
  background: #1A2142;
  border-color: #1A2142 !important;
}

/* light buttons */
/* light buttons */
.light-btn {
  background: #DFE5EF;
  color: #1A2142;
}

.light-btn:hover {
  color: #1A2142;
}

.light-btn-outline {
  background: transparent;
  color: #1A2142;
  border-color: #DFE5EF;
}

.light-btn-outline:hover {
  color: #1A2142;
  background: #DFE5EF;
}

.light-btn-light {
  background: rgba(223, 229, 239, 0.5);
  color: #1A2142;
}

.light-btn-light:hover {
  color: #1A2142;
}

.light-btn-group {
  background: transparent;
  border: 1px solid transparent;
  color: #000;
}

.light-btn-group.active,
.light-btn-group:hover {
  color: #000;
  background: #DFE5EF;
  border-color: #DFE5EF !important;
}

/* active buttons */
/* active buttons */
.active-btn {
  background: #365CF5;
  color: #fff;
}

.active-btn:hover {
  color: #fff;
}

.active-btn-outline {
  background: transparent;
  color: #365CF5;
  border-color: #365CF5;
}

.active-btn-outline:hover {
  color: #fff;
  background: #365CF5;
}

.active-btn-light {
  background: rgba(54, 92, 245, 0.12);
  color: #365CF5;
}

.active-btn-light:hover {
  color: #365CF5;
}

.active-btn-group {
  background: transparent;
  border: 1px solid transparent;
  color: #365CF5;
}

.active-btn-group.active,
.active-btn-group:hover {
  color: #fff;
  background: #365CF5;
  border-color: #365CF5 !important;
}

/* deactive buttons */
/* deactive buttons */
.deactive-btn {
  background: #E9E9E9;
  color: #8F9AAD;
}

.deactive-btn:hover {
  color: #8F9AAD;
}

.deactive-btn-outline {
  background: transparent;
  color: #8F9AAD;
  border-color: #E9E9E9;
}

.deactive-btn-outline:hover {
  color: #8F9AAD;
  background: #E9E9E9;
}

.deactive-btn-light {
  background: #e9e9e9;
  color: #8F9AAD;
}

.deactive-btn-light:hover {
  color: #8F9AAD;
}

.deactive-btn-group {
  background: transparent;
  border: 1px solid transparent;
  color: #9AA4CA;
}

.deactive-btn-group.active,
.deactive-btn-group:hover {
  color: #9AA4CA;
  background: #CBE1FF;
  border-color: #CBE1FF !important;
}

/* =========  square-btn ========= */
.square-btn {
  border-radius: 0px;
}

/* =========  rounded-md ========= */
.rounded-md {
  border-radius: 10px;
}

/* =========  rounded-full ========= */
.rounded-full {
  border-radius: 30px;
}

/* ========== buttons group css ========= */
.buttons-group {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.buttons-group li {
  margin: 10px;
}

/* ====== Status Button ====== */
/* ====== Status Button ====== */
.status-btn {
  padding: 7px 15px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 400;
}

.status-btn.primary-btn {
  color: #fff;
  background: #365cf5;
  white-space: nowrap;
}

.status-btn.active-btn {
  color: #365CF5;
  background: rgba(54, 92, 245, 0.1);
}

.status-btn.close-btn {
  color: #d50100;
  background: rgba(213, 1, 0, 0.1);
}

.status-btn.warning-btn {
  color: #f7c800;
  background: rgba(247, 200, 0, 0.1);
}

.status-btn.info-btn {
  color: #97ca31;
  background: rgba(151, 202, 49, 0.1);
}

.status-btn.success-btn {
  color: #219653;
  background: rgba(33, 150, 83, 0.1);
}

.status-btn.secondary-btn {
  color: #00c1f8;
  background: rgba(0, 193, 248, 0.1);
}

.status-btn.dark-btn {
  color: #1A2142;
  background: rgba(26, 33, 66, 0.1);
}

.status-btn.orange-btn {
  color: #f2994a;
  background: rgba(242, 153, 74, 0.1);
}

/* ======= Theme Change Css =========== */
/* ======= Theme Change Css =========== */
.darkTheme .dark-btn {
  background: #02021E;
}

.darkTheme .dark-btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
}

.darkTheme .light-btn-outline {
  color: #efefef;
}

.darkTheme .group-btn {
  border-color: #3F4053;
}

.darkTheme .group-btn .main-btn:not(.darkTheme .group-btn .main-btn:last-child) {
  border-right: 1px solid #3F4053;
}

/* ========== Accordion css ========== */
/* ========== Accordion css ========== */
/* accordion base styles */
.base-accordion {
  box-shadow: 0px 10px 14px -4px rgba(145, 158, 171, 0.1), 0px 0px 2px 0px rgba(145, 158, 171, 0.2);
}

.base-accordion .accordion-item {
  background: transparent;
  border-color: #DFE5EF;
}

.base-accordion .accordion-button {
  font-size: 14px;
  font-weight: 500;
  color: #1A2142;
  padding: 20px 35px;
}

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

.base-accordion .accordion-button:not(.collapsed) {
  color: inherit;
  box-shadow: none;
  background-color: initial;
}

.base-accordion .accordion-button:after {
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='16' viewBox='0 0 15 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.4297 5.35156C13.4297 5.49219 13.3828 5.63281 13.2656 5.72656L7.875 11.0234C7.66406 11.2344 7.33594 11.2344 7.125 11.0234L1.73437 5.72656C1.52344 5.51563 1.52344 5.1875 1.73437 4.97656C1.94531 4.76562 2.27344 4.76562 2.48437 4.97656L7.5 9.89844L12.5156 4.95312C12.7266 4.74219 13.0547 4.74219 13.2656 4.95312C13.3594 5.09375 13.4297 5.21094 13.4297 5.35156Z' fill='currentColor'/%3E%3C/svg%3E%0A");
}

.base-accordion .accordion-body {
  padding: 22px 35px 25px;
  border-top: 1px solid #DFE5EF;
  font-size: 14px;
  font-weight: 500;
  color: #5d657b;
}

.accordion-two {
  padding: 17px;
  border: 1px solid #DFE5EF;
  border-radius: 6px;
}

.accordion-two .accordion-item {
  border: none;
}

.accordion-two .accordion-item:not(:last-child) {
  margin-bottom: 15px;
}

.accordion-two .accordion-button {
  border: none;
  border-radius: 6px;
  padding: 14px 18px;
  background: #F5F8FC;
}

.accordion-two .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #365CF5;
}

.accordion-two .accordion-button:not(.collapsed):after {
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='16' viewBox='0 0 15 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.4297 5.35156C13.4297 5.49219 13.3828 5.63281 13.2656 5.72656L7.875 11.0234C7.66406 11.2344 7.33594 11.2344 7.125 11.0234L1.73437 5.72656C1.52344 5.51563 1.52344 5.1875 1.73437 4.97656C1.94531 4.76562 2.27344 4.76562 2.48437 4.97656L7.5 9.89844L12.5156 4.95312C12.7266 4.74219 13.0547 4.74219 13.2656 4.95312C13.3594 5.09375 13.4297 5.21094 13.4297 5.35156Z' fill='white'/%3E%3C/svg%3E%0A");
}

.accordion-two .accordion-body {
  border: none;
  padding: 20px 18px 10px;
}

/* ============ Theme Change Css ============== */
/* ============ Theme Change Css ============== */
.darkTheme .base-accordion .accordion-item {
  background: transparent;
  border-color: #3F4053;
}

.darkTheme .base-accordion .accordion-body {
  border-color: #3F4053;
  color: #838C9A;
}

.darkTheme .base-accordion .accordion-button {
  color: #fff;
  background: transparent;
}

.darkTheme .base-accordion .accordion-button:after {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.1158 5.82187C16.1158 5.99062 16.0596 6.15937 15.9189 6.27187L9.45019 12.6281C9.19707 12.8812 8.80332 12.8812 8.5502 12.6281L2.08145 6.27187C1.82832 6.01874 1.82832 5.62499 2.08144 5.37187C2.33457 5.11874 2.72832 5.11874 2.98145 5.37187L9.00019 11.2781L15.0189 5.34374C15.2721 5.09062 15.6658 5.09062 15.9189 5.34374C16.0314 5.51249 16.1158 5.65312 16.1158 5.82187Z' fill='white'/%3E%3C/svg%3E%0A");
}

.darkTheme .accordion-two {
  border-color: #3F4053;
}

.darkTheme .accordion-two .accordion-button {
  background-color: #02021E;
}

.darkTheme .accordion-two .accordion-button:not(.collapsed) {
  background-color: #365CF5;
}

/* ============ alerts css ============ */
/* ============ alerts css ============ */
.alert-box {
  display: flex;
  position: relative;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .alert-box {
    padding-left: 0px !important;
  }
}

.alert-box .left {
  max-width: 75px;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: #d50100;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .alert-box .left {
    display: none;
  }
}

.alert-box .left h5 {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  color: #fff;
}

.alert-box .alert {
  margin-bottom: 0px;
  padding: 25px 40px;
}

@media (max-width: 767px) {
  .alert-box .alert {
    padding: 20px;
  }
}

/* Alert Primary */
.primary-alert .left {
  background: #365CF5;
}

.primary-alert .alert {
  color: #365CF5;
  border: 1px solid #365CF5;
  background: rgba(54, 92, 245, 0.2);
  width: 100%;
}

.primary-alert .alert .alert-heading {
  color: #365CF5;
  margin-bottom: 15px;
}

/* Alert Danger */
.danger-alert .left {
  background: #d50100;
}

.danger-alert .alert {
  color: #d50100;
  border: 1px solid #d50100;
  background: rgba(213, 1, 0, 0.2);
  width: 100%;
}

.danger-alert .alert .alert-heading {
  color: #d50100;
  margin-bottom: 15px;
}

/* Alert warning */
.warning-alert .left {
  background: #f7c800;
}

.warning-alert .alert {
  color: #f7c800;
  border: 1px solid #f7c800;
  background: rgba(247, 200, 0, 0.2);
  width: 100%;
}

.warning-alert .alert .alert-heading {
  color: #f7c800;
  margin-bottom: 15px;
}

/* Alert warning */
.warning-alert .left {
  background: #f7c800;
}

.warning-alert .alert {
  color: #f7c800;
  border: 1px solid #f7c800;
  background: rgba(247, 200, 0, 0.2);
  width: 100%;
}

.warning-alert .alert .alert-heading {
  color: #f7c800;
  margin-bottom: 15px;
}

/* Alert info */
.info-alert .left {
  background: #97ca31;
}

.info-alert .alert {
  color: #97ca31;
  border: 1px solid #97ca31;
  background: rgba(151, 202, 49, 0.2);
  width: 100%;
}

.info-alert .alert .alert-heading {
  color: #97ca31;
  margin-bottom: 15px;
}

/* Alert success */
.success-alert .left {
  background: #219653;
}

.success-alert .alert {
  color: #219653;
  border: 1px solid #219653;
  background: rgba(33, 150, 83, 0.2);
  width: 100%;
}

.success-alert .alert .alert-heading {
  color: #219653;
  margin-bottom: 15px;
}

/* Alert secondary */
.secondary-alert .left {
  background: #00c1f8;
}

.secondary-alert .alert {
  color: #00c1f8;
  border: 1px solid #00c1f8;
  background: rgba(0, 193, 248, 0.2);
  width: 100%;
}

.secondary-alert .alert .alert-heading {
  color: #00c1f8;
  margin-bottom: 15px;
}

/* Alert gray */
.gray-alert .left {
  background: #5d657b;
}

.gray-alert .alert {
  color: #5d657b;
  border: 1px solid #5d657b;
  background: rgba(93, 101, 123, 0.2);
  width: 100%;
}

.gray-alert .alert .alert-heading {
  color: #5d657b;
  margin-bottom: 15px;
}

/* Alert black */
.black-alert .left {
  background: #000;
}

.black-alert .alert {
  color: #000;
  border: 1px solid #000;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
}

.black-alert .alert .alert-heading {
  color: #000;
  margin-bottom: 15px;
}

/* Alert orange */
.orange-alert .left {
  background: #f2994a;
}

.orange-alert .alert {
  color: #f2994a;
  border: 1px solid #f2994a;
  background: rgba(242, 153, 74, 0.2);
  width: 100%;
}

.orange-alert .alert .alert-heading {
  color: #f2994a;
  margin-bottom: 15px;
}

/* ========== cards css =========== */
/* ========== cards css =========== */
/* card-style-1 */
.card-style-1 {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 10px;
  padding: 25px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.card-style-1:hover {
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.card-style-1 .card-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 0 30px;
}

@media (max-width: 767px) {
  .card-style-1 .card-meta {
    padding: 0 20px;
  }
}

.card-style-1 .card-meta .image {
  max-width: 40px;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
}

.card-style-1 .card-meta .image img {
  width: 100%;
}

.card-style-1 .card-meta .text p {
  color: #1A2142;
}

.card-style-1 .card-meta .text p a {
  color: inherit;
}

.card-style-1 .card-meta .text p a:hover {
  color: #365CF5;
}

.card-style-1 .card-image {
  border-radius: 10px;
  margin-bottom: 25px;
  overflow: hidden;
}

.card-style-1 .card-image a {
  display: block;
}

.card-style-1 .card-image img {
  width: 100%;
}

.card-style-1 .card-content {
  padding: 0px 30px;
}

@media (max-width: 767px) {
  .card-style-1 .card-content {
    padding: 0px 20px;
  }
}

.card-style-1 .card-content h4 a {
  color: inherit;
  margin-bottom: 15px;
  display: block;
}

.card-style-1 .card-content h4 a:hover {
  color: #365CF5;
}

/* card-style-2 */
.card-style-2 {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 4px;
  padding: 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.card-style-2:hover {
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.card-style-2 .card-image {
  border-radius: 4px;
  margin-bottom: 30px;
  overflow: hidden;
}

.card-style-2 .card-image a {
  display: block;
}

.card-style-2 .card-image img {
  width: 100%;
}

.card-style-2 .card-content {
  padding: 0px 10px;
}

@media (max-width: 767px) {
  .card-style-2 .card-content {
    padding: 0px;
  }
}

.card-style-2 .card-content h4 a {
  color: inherit;
  margin-bottom: 15px;
  display: block;
}

.card-style-2 .card-content h4 a:hover {
  color: #365CF5;
}

/* card-style-3 */
.card-style-3 {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 4px;
  padding: 25px 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.card-style-3:hover {
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.card-style-3 .card-content h4 a {
  color: inherit;
  margin-bottom: 15px;
  display: block;
}

.card-style-3 .card-content h4 a:hover {
  color: #365CF5;
}

.card-style-3 .card-content a.read-more {
  font-weight: 500;
  color: #1A2142;
  margin-top: 20px;
}

.read-more {
  display: flex;
  align-items: center;
}

.card-style-3 .card-content a.read-more:hover {
  color: #365CF5;
  letter-spacing: 2px;
}

/* card-style-4 */
.card-style-4 {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 4px;
  padding: 20px 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.card-style-4:hover {
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.card-style-4 .card-image {
  border-radius: 50%;
  margin: auto;
  margin-bottom: 30px;
  max-width: 250px;
  width: 100%;
  overflow: hidden;
}

.card-style-4 .card-image a {
  display: block;
}

.card-style-4 .card-image img {
  width: 100%;
}

.card-style-4 .card-content {
  margin-bottom: 10px;
}

.card-style-4 .card-content h4 a {
  color: inherit;
  margin-bottom: 15px;
  display: block;
}

.card-style-4 .card-content h4 a:hover {
  color: #365CF5;
}

.card-style-4 .card-content a.read-more {
  font-weight: 500;
  color: #1A2142;
  margin-top: 20px;
}

.card-style-4 .card-content a.read-more:hover {
  color: #365CF5;
  letter-spacing: 2px;
}

/* card-style-5 */
.card-style-5 {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 4px;
  padding: 20px;
  display: flex;
  align-items: center;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.card-style-5:hover {
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .card-style-5 {
    display: block;
  }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
  .card-style-5 {
    display: flex;
  }
}

.card-style-5 .card-image {
  margin: auto;
  margin-right: 20px;
  border-radius: 4px;
  max-width: 180px;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .card-style-5 .card-image {
    margin-right: auto;
    margin-bottom: 20px;
    max-width: 100%;
  }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
  .card-style-5 .card-image {
    margin-right: 20px;
    margin-bottom: 0px;
    max-width: 180px;
  }
}

.card-style-5 .card-image a {
  display: block;
}

.card-style-5 .card-image img {
  width: 100%;
}

@media (max-width: 767px) {
  .card-style-5 .card-image img {
    width: 100%;
  }
}

.card-style-5 .card-content {
  margin-bottom: 10px;
}

.card-style-5 .card-content h4 a {
  color: inherit;
  margin-bottom: 15px;
  display: block;
}

.card-style-5 .card-content h4 a:hover {
  color: #365CF5;
}

.card-style-5 .card-content .main-btn {
  margin-top: 20px;
}

/* ======= card-style-6 ======== */
.card-style-6 {
  padding: 25px 30px;
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.card-style-6:hover {
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
(max-width: 767px) {
  .card-style-6 {
    padding: 20px;
  }
}

.card-style-6 .card-image {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
}

.card-style-6 .card-image a {
  display: block;
}

.card-style-6 .card-image a img {
  width: 100%;
}

.card-style-6 .card-action {
  display: flex;
}

.card-style-6 .card-action .action {
  display: flex;
  align-items: center;
}

.card-style-6 .card-action .action a {
  color: #5d657b;
  font-size: 14px;
}

.card-style-6 .card-action .action a:hover {
  text-decoration: underline;
}

.card-style-6 .card-action .action button {
  border: none;
  background: none;
  display: flex;
  color: #1A2142;
  margin-right: 10px;
  font-size: 16px;
}

.card-style-6 .card-action .action button:hover {
  color: #365CF5;
}

.action i {
  color: #000;
}

/* ======= icon-card ======== */
/* ======= icon-card ======== */
.icon-card {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 25px 15px;
  border-radius: 7px;
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.icon-card.icon-card-3 {
  display: block;
  padding: 0px;
}

.icon-card.icon-card-3 .card-content {
  display: flex;
  padding: 20px;
  padding-bottom: 0;
}

.icon-card.icon-card-4 {
  display: block;
  padding: 25px;
}

.icon-card.icon-card-4 .icon {
  max-width: 50px;
  height: 50px;
  border-radius: 5px;
  background: rgb(54 92 245 / 24%);
}

.icon-card.icon-card-4 .text-danger-2 i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.icon-card.icon-card-4 .card-content {
  margin-top: 18px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .icon-card h6 {
    font-size: 15px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .icon-card h3 {
    font-size: 20px;
  }
}

.icon-card.icon-card-2 {
  display: block;
}

.icon-card.icon-card-2 .progress {
  height: 7px;
}

.icon-card.icon-card-2 .progress .progress-bar {
  border-radius: 4px;
}

.icon-card .icon {
  max-width: 45px;
  width: 100%;
  height: 45px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-right: 20px;
  background: rgba(54, 92, 245, 0.1);
  color: #365CF5;
  font-weight: 700;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .icon-card .icon {
    margin-right: 10px;
  }
}

.icon-card .icon.purple {
  background: rgb(54 92 245 / 15%);
}

.icon-card .icon.success {
  background: #2196531a;
}

.icon-card .icon.primary {
  background: rgba(54, 92, 245, 0.1);
}

.icon-card .icon.orange {
  background: rgb(213 1 0 / 9%);
  color: #f2994a;
}

.icon-card .icon.blue-light {
  background: rgb(33 150 83 / 16%);
  color: #49BEFF;
}

.icon-card .icon.opacity-100.purple {
  background: #9b51e0;
  color: #fff;
}

.icon-card .icon.opacity-100.success {
  background: #219653;
  color: #fff;
}

.icon-card .icon.opacity-100.primary {
  background: #365CF5;
  color: #fff;
}

.icon-card .icon.opacity-100.orange {
  background: #f2994a;
  color: #fff;
}

.icon-card .icon.opacity-100.deep-blue {
  background: #345d9d;
  color: #fff;
}

.card-wrapper {
  display: flex;
  width: 100%;
  padding: 25px 15px;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.card-wrapper .single-card-wrapper {
  padding: 0px 15px;
  margin-top: 20px;
}

.card-wrapper .single-card {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 30px;
  width: 100%;
}

.card-wrapper .single-card .bg-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  left: 0;
  z-index: -1;
}

.card-wrapper .single-card h3 {
  font-weight: bold;
  font-size: 24px;
  color: #fff;
  margin-bottom: 36px;
}

.card-wrapper .single-card .card-info {
  display: flex;
  align-items: center;
}

.card-wrapper .single-card .card-info span {
  font-weight: 500;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.card-wrapper .single-card .card-info p {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}

.content .feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ========= Theme Change Css =========== */
/* ========= Theme Change Css =========== */
.darkTheme .card-style-6,
.darkTheme .card-style-1 {
  background: #14142D;
  border-color: #3F4053;
}

.darkTheme .card-style-6 .card-meta .text p,
.darkTheme .card-style-1 .card-meta .text p {
  color: #e5e5e5;
}

.darkTheme .card-style-6 .card-action .action button,
.darkTheme .card-style-1 .card-action .action button {
  color: #efefef;
}

.darkTheme .card-style-6 .card-action .action button:hover,
.darkTheme .card-style-1 .card-action .action button:hover {
  color: #365CF5;
}

.darkTheme .icon-card,
.darkTheme .card-style-5,
.darkTheme .card-style-2 {
  background: #14142D;
  border-color: #02021E;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
}

.darkTheme .card-style-4,
.darkTheme .card-style-3 {
  background: #14142D;
  border-color: #02021E;
}

.darkTheme .card-style-4 .card-content a.read-more,
.darkTheme .card-style-3 .card-content a.read-more {
  color: #e5e5e5;
}

.darkTheme .card-style-4 .card-content a.read-more:hover,
.darkTheme .card-style-3 .card-content a.read-more:hover {
  color: #365CF5;
}

.darkTheme .activity-card .status-btn,
.darkTheme .activity-card .button-group {
  border-color: #3F4053;
}

/* ========== Carousel Bar css ========== */
/* ========== Carousel Bar css ========== */

/* carousel base styles */
.base-carousel .swiper-button-prev,
.base-carousel .swiper-button-next {
  max-width: 38px;
  width: 100%;
  height: 38px;
  border-radius: 50%;
  background-color: #fff;
  color: #1A2142;
}

.base-carousel .swiper-button-prev i,
.base-carousel .swiper-button-next i {
  font-weight: 600;
  font-size: 18px;
}

.base-carousel .swiper-button-prev.swiper-button-disabled,
.base-carousel .swiper-button-next.swiper-button-disabled {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  opacity: 1;
}

.base-carousel .swiper-button-prev:after,
.base-carousel .swiper-button-next:after {
  display: none;
}

.base-carousel .swiper-button-prev {
  left: 18px;
}

.base-carousel .swiper-button-next {
  right: 18px;
}

.base-carousel .swiper-pagination-bullet {
  margin: 0 3px;
  width: 18px;
  height: 4px;
  border-radius: 20px;
  background: #fff;
  opacity: 0.5;
}

.base-carousel .swiper-pagination-bullet-active {
  width: 26px;
  opacity: 1;
}

/* =========== tabs css ============== */
/* =========== tabs css ============== */

/* ==== tab style 1 ==== */
.tab-style-1 nav {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
}

.tab-style-1 nav button {
  border: none;
  background: transparent;
  margin-right: 40px;
  padding-bottom: 15px;
  position: relative;
  font-weight: 500;
  color: #5d657b;
}

.tab-style-1 nav button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.5px;
  width: 0;
  height: 3px;
  background: #365CF5;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.tab-style-1 nav button:hover,
.tab-style-1 nav button.active {
  color: #365CF5;
}

.tab-style-1 nav button:hover::after,
.tab-style-1 nav button.active::after {
  width: 100%;
}

.tab-style-1 .tab-content p {
  font-size: 14px;
}

/* ==== tab style 2 ==== */
.tab-style-2 nav {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
}

.tab-style-2 nav button {
  border: none;
  background: transparent;
  margin-right: 20px;
  padding: 10px 14px;
  position: relative;
  font-weight: 500;
  color: #5d657b;
}

.tab-style-2 nav button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 1px;
  background: #365CF5;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.tab-style-2 nav button:hover,
.tab-style-2 nav button.active {
  color: #365CF5;
  background: rgba(54, 92, 245, 0.1);
}

.tab-style-2 nav button:hover::after,
.tab-style-2 nav button.active::after {
  width: 100%;
}

.tab-style-2 .tab-content p {
  font-size: 14px;
}

/* ==== tab style 3 ==== */
.tab-style-3 nav {
  margin-bottom: 20px;
}

.tab-style-3 nav button {
  margin-right: 20px;
  padding: 10px 16px;
  position: relative;
  font-weight: 500;
  font-size: 16px;
}

.tab-style-3 nav button:hover,
.tab-style-3 nav button.active {
  color: #fff;
  background: #365CF5;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tab-style-3 nav button {
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .tab-style-3 nav button {
    margin-right: 5px;
    font-size: 14px;
    padding: 8px 14px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
(max-width: 767px) {
  .tab-style-3 nav button i {
    margin-right: 2px;
  }
}

.tab-style-3 .tab-content p {
  font-size: 14px;
}

/* ==== tab style 4 ==== */
.tab-style-4 nav {
  margin-bottom: 10px;
  display: inline-flex;
  background: #efefef;
  padding: 6px;
  border-radius: 4px;
}

.tab-style-4 nav button {
  margin-right: 20px;
  padding: 10px 14px;
  position: relative;
  font-weight: 500;
  border: none;
  background: transparent;
  border-radius: 4px;
  color: #5d657b;
}

.tab-style-4 nav button:hover,
.tab-style-4 nav button.active {
  color: #fff;
  background: #365CF5;
}

@media (max-width: 767px) {
  .tab-style-4 nav button {
    margin-right: 12px;
  }
}

.tab-style-4 .tab-content p {
  font-size: 14px;
}

/* ==== tab style 5 ==== */
.tab-style-5 {
  display: flex;
}

.tab-style-5 nav {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 4px;
  padding: 4px;
  margin-right: 30px;
  height: 100%;
}

.tab-style-5 nav button {
  width: 50px;
  height: 50px;
  position: relative;
  font-weight: 700;
  border: none;
  background: transparent;
  border-radius: 4px;
  color: #5d657b;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
}

.tab-style-5 nav button::after {
  content: "";
  position: absolute;
  right: -54px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  width: 35px;
  height: 35px;
  background: #fff;
  border: 1px solid #efefef;
  border-right: 0px;
  border-top: 0px;
  display: none;
}

.tab-style-5 nav button:hover,
.tab-style-5 nav button.active {
  color: #fff;
  background: #365CF5;
}

.tab-style-5 nav button.active::after {
  display: block;
}

.tab-style-5 .tab-content p {
  font-size: 14px;
}

/* ==== tab style 6 ==== */
.tab-style-6 nav {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
}

.tab-style-6 nav button {
  border: none;
  background: transparent;
  margin-right: 40px;
  padding-bottom: 15px;
  position: relative;
  font-weight: 500;
  color: #5d657b;
}

.tab-style-6 nav button:hover,
.tab-style-6 nav button.active {
  color: #365CF5;
}

.tab-style-6 .tab-content p {
  font-size: 14px;
}

/* ========= Theme Change Css ============= */
.darkTheme .tab-style-1 nav,
.darkTheme .tab-style-2 nav,
.darkTheme .tab-style-6 nav {
  border-color: rgba(239, 239, 239, 0.2);
}

.darkTheme .tab-style-1 nav button,
.darkTheme .tab-style-2 nav button,
.darkTheme .tab-style-6 nav button {
  color: #fff;
}

.darkTheme .tab-style-1 nav button:hover,
.darkTheme .tab-style-1 nav button.active,
.darkTheme .tab-style-2 nav button:hover,
.darkTheme .tab-style-2 nav button.active,
.darkTheme .tab-style-6 nav button:hover,
.darkTheme .tab-style-6 nav button.active {
  color: #365CF5;
}

.darkTheme .tab-style-3 nav button {
  background: rgba(2, 2, 30, 0.8);
}

.darkTheme .tab-style-3 nav button:hover,
.darkTheme .tab-style-3 nav button.active {
  color: #fff;
  background: #365CF5;
}

.darkTheme .tab-style-4 nav {
  background: #02021E;
}

.darkTheme .tab-style-4 nav button {
  color: rgba(255, 255, 255, 0.5);
}

.darkTheme .tab-style-4 nav button.active,
.darkTheme .tab-style-4 nav button:hover {
  color: #fff;
}

.darkTheme .tab-style-5 nav {
  background: #1A2142;
  border-color: #02021E;
}

.darkTheme .tab-style-5 nav button::after {
  background: #1A2142;
  border-color: #02021E;
}

/* =========== tables css =========== */
/* =========== tables css =========== */
.table {
  border-collapse: inherit;
  border-spacing: 0px;
}

.table> :not(caption)>*>* {
  padding: 10px 5px;
  border-bottom-color: #efefef;
  vertical-align: middle;
}

.table> :not(:last-child)> :last-child>* {
  border-bottom-color: #efefef;
}

.table tbody tr:first-child>* {
  padding-top: 15px;
}

.table tbody tr:last-child>* {
  border-bottom-color: transparent;
  padding-bottom: 0px;
}

.table th h6 {
  font-size: 14px;
  font-weight: 600;
  color: #1A2142;
}

.table td.min-width {
  padding: 15px 5px;
}

@media (max-width: 767px) {
  .table td.min-width {
    min-width: 150px;
  }
}

.table td p {
  font-size: 14px;
  line-height: 1.5;
  color: #5d657b;
}

.table td p a {
  color: inherit;
}

.table td p a:hover {
  color: #365CF5;
}

.table .lead-info {
  min-width: 200px;
}

.table .lead-email {
  min-width: 150px;
  white-space: nowrap;
}

.table .lead-phone {
  min-width: 150px;
}

.table .lead-company {
  min-width: 140px;
}

.table .referrals-image {
  min-width: 150px;
}

.table .referrals-image .image {
  width: 55px;
  max-width: 100%;
  height: 55px;
  border-radius: 4px;
  overflow: hidden;
}

.table .referrals-image .image img {
  width: 100%;
}

.table .lead {
  display: flex;
  align-items: center;
}

.table .lead .lead-image {
  max-width: 35px;
  width: 100%;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.table .lead .lead-image img {
  width: 100%;
}

.table .lead .lead-text {
  width: 100%;
}

.table .employee-image {
  width: 32px;
  max-width: 100%;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
}

.table .employee-image img {
  width: 100%;
}

.table .action {
  display: flex;
  align-items: center;
}

.table .action button {
  border: none;
  background: transparent;
  padding: 0px 6px;
  font-size: 17px;
}

.table .action button.edit:hover {
  color: #365CF5;
}

.table .action button::after {
  display: none;
}

.table .action .dropdown-menu {
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07);
}

.table .action .dropdown-menu .dropdown-item:focus,
.table .action .dropdown-menu .dropdown-item:hover,
.table .action .dropdown-menu .dropdown-item:active {
  background: none;
}

.table .action .dropdown-menu li:hover a {
  color: #365CF5 !important;
}

.table .action .dropdown-menu li a {
  display: block;
}

.top-selling-table tr th,
.top-selling-table tr td {
  vertical-align: middle;
  padding: 10px 5px;
}

.top-selling-table tr .min-width {
  min-width: 80px;
  white-space: nowrap;
}

.top-selling-table .form-check-input[type=checkbox] {
  margin-left: 5px;
}

.top-selling-table .form-check-input[type=checkbox]:checked {
  background-color: #365CF5;
  border-color: #365CF5;
}

.top-selling-table .product {
  display: flex;
  align-items: center;
  min-width: 150px;
}

.top-selling-table .product .image {
  border-radius: 5px;
  overflow: hidden;
  margin-right: 15px;
  max-width: 40px;
  width: 100%;
  height: 40px;
}

.top-selling-table .product .image img {
  width: 100%;
}

.top-selling-table .product p {
  width: 100%;
}

@media (max-width: 767px) {
  .referrals-table-card .title .right {
    width: 100%;
  }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
  .referrals-table-card .title .right {
    width: auto;
  }
}

.referrals-table-card .referrals-table td {
  padding: 10px;
}

/* ===== lead-table ===== */
/* ===== lead-table ===== */
.lead-table th,
.lead-table td {
  padding: 10px 5px;
}

.lead-table .name {
  min-width: 120px;
}

.lead-table .email {
  min-width: 130px;
}

.lead-table .project {
  min-width: 150px;
}

.lead-table .status {
  min-width: 120px;
  text-align: center;
}

.lead-table .action {
  min-width: 60px;
}

.clients-table-card .table .employee-info {
  min-width: 150px;
}

.clients-table th,
.clients-table td {
  padding: 5px;
}

.clients-table th.min-width,
.clients-table td.min-width {
  min-width: 150px;
}

.clients-table .employee-image {
  margin-right: 0px;
}

.table-pagination ul li a {
  width: 32px;
  height: 32px;
  background: #e5e5e5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
}

.table-pagination ul li a:hover,
.table-pagination ul li a.active {
  background: #365CF5;
  color: #fff;
}

.table-search form {
  max-width: 270px;
  position: relative;
}

.table-search form input {
  width: 100%;
  border: 1px solid #efefef;
  background: rgba(239, 239, 239, 0.5);
  border-radius: 4px;
  height: 40px;
  padding-left: 44px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.table-search form input:focus {
  border-color: #365CF5;
}

.table-search form button {
  position: absolute;
  border: none;
  background: transparent;
  left: 16px;
  top: 0;
  height: 46px;
  color: #5d657b;
}

.striped-table td,
.striped-table th {
  padding-left: 5px;
  padding-right: 5px;
}

.dataTable-pagination li:hover a,
.dataTable-pagination .active a,
.dataTable-pagination .active a:focus,
.dataTable-pagination .active a:hover {
  background: #365CF5;
  color: #fff;
  border-radius: 3px;
}

.dataTable-pagination .ellipsis:hover a {
  background: transparent;
  color: #333;
}

.dataTable-selector {
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.dataTable-input {
  width: 100%;
  border: 1px solid #efefef;
  background: rgba(239, 239, 239, 0.5);
  border-radius: 4px;
  height: 46px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.dataTable-input:focus {
  border-color: #365CF5;
}

.dataTable-input:focus {
  border-color: #365CF5;
}

.dataTable-table>tbody>tr>td,
.dataTable-table>tbody>tr>th,
.dataTable-table>tfoot>tr>td,
.dataTable-table>tfoot>tr>th,
.dataTable-table>thead>tr>td,
.dataTable-table>thead>tr>th {
  padding: 15px 10px;
}

@media (max-width: 767px) {
  .dataTable-top>div:last-child.dataTable-search {
    margin-top: 12px;
    float: left;
  }
}

@media (max-width: 767px) {
  .dataTable-pagination ul li {
    margin: 5px 0;
  }
}

.activity-card .button-group {
  display: flex;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #efefef;
}

.activity-card .button-group a {
  font-weight: 500;
  font-size: 12px;
  padding: 4px 16px;
  display: inline-block;
  color: #02021E;
  border-radius: 50px;
  margin: 3px;
}

.activity-card .button-group a.active,
.activity-card .button-group a:hover {
  background: #365CF5;
  color: #fff;
}

.activity-table td {
  min-width: 90px;
  padding: 10px;
  border: none;
}

.activity-table td.time {
  min-width: 110px;
}

.activity-table .icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.activity-table .icon .status {
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: -1px;
  right: -1px;
}

.activity-table .status-btn {
  font-size: 12px;
  border-radius: 50px;
  border: 1px solid #efefef;
  padding: 4px 14px;
  color: #5d657b;
  min-width: 90px;
  text-align: center;
}

.sell-order-table th,
.sell-order-table td {
  min-width: 60px;
  padding: 10px 5px;
  border: none;
}

/* ========== Theme Change Css ============= */
/* ========== Theme Change Css ============= */
.darkTheme .table> :not(caption)>*>* {
  border-bottom-color: #3F4053;
}

.darkTheme .table> :not(:last-child)> :last-child>* {
  border-bottom-color: #3F4053;
}

.darkTheme .table th h6 {
  color: #fff;
}

.darkTheme .table td p {
  color: #838C9A;
}

.darkTheme .table .action button {
  color: rgba(255, 255, 255, 0.7);
}

.darkTheme .table .action button.edit:hover {
  color: #365CF5;
}

.darkTheme .table-search form input {
  border-color: #1A2142;
  background: rgba(2, 2, 30, 0.5);
  color: #efefef;
}

.darkTheme .table-pagination ul li a {
  background: rgba(2, 2, 30, 0.5);
  color: #efefef;
}

.darkTheme .table-pagination ul li a:hover,
.darkTheme .table-pagination ul li a.active {
  background: #365CF5;
  color: #fff;
}

.darkTheme .activity-card .button-group a {
  color: rgba(239, 239, 239, 0.5);
}

.darkTheme .activity-card .button-group a.active,
.darkTheme .activity-card .button-group a:hover {
  color: #fff;
}

.darkTheme .dataTable-table th a::after {
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.darkTheme .dataTable-table th a::before {
  border-top-color: rgba(255, 255, 255, 0.7);
}

.darkTheme .dataTable-wrapper.no-footer .dataTable-container {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.darkTheme .dataTable-selector {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(239, 239, 239, 0.2);
}

.darkTheme .dataTable-selector:focus {
  outline: none;
}

.darkTheme .dataTable-selector option {
  background: #02021E;
}

.darkTheme .dataTable-input {
  background: #02021E;
  color: rgba(255, 255, 255, 0.7);
  border-color: #3F4053;
}

.darkTheme .dataTable-input:focus {
  background: #02021E;
}

.darkTheme .dataTable-pagination li a {
  color: rgba(255, 255, 255, 0.5);
}

.darkTheme .dataTable-pagination li:hover a,
.darkTheme .dataTable-pagination .active a,
.darkTheme .dataTable-pagination .active a:focus,
.darkTheme .dataTable-pagination .active a:hover {
  background: #365CF5;
  color: #fff;
}

/* ========== Pagination css ========== */
/* ========== Pagination css ========== */

/* pagination base styles */
.base-pagination .page-link {
  color: #5d657b;
  border-color: #DFE5EF;
  padding: 8px 14px;
}

.base-pagination .page-link i {
  vertical-align: middle;
  margin-bottom: 3px;
}

.base-pagination .page-link:hover {
  color: #365CF5;
  background: #F5F8FC;
}

.base-pagination .page-link:focus {
  color: none;
  background-color: none;
  box-shadow: none;
}

.base-pagination.pagination-lg .page-link {
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 500;
}

.base-pagination.pagination-sm .page-link {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
}

/* ========== Theme Change ==========  */
.darkTheme .base-pagination .page-link {
  color: #838C9A;
  border-color: #3F4053;
  background: #1A2142;
}

/* ========== Progress Bar css ========== */
/* ========== Progress Bar css ========== */

/* progress base styles */
.progress-wrapper {
  --orange: 245, 128, 97;
  --blue-light: 79, 144, 255;
  --green-light: 46, 216, 175;
  --blue: 86, 123, 255;
  --yellow: 252, 166, 27;
  --green: 151, 202, 49;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.progress-wrapper .orange-bg {
  background-color: rgba(var(--orange), 1);
}

.progress-wrapper .orange-bg-light {
  background-color: rgba(var(--orange), 0.1);
}

.progress-wrapper .blue-bg {
  background-color: rgba(var(--blue), 1);
}

.progress-wrapper .blue-bg-light {
  background-color: rgba(var(--blue), 0.1);
}

.progress-wrapper .yellow-bg {
  background-color: rgba(var(--yellow), 1);
}

.progress-wrapper .yellow-bg-light {
  background-color: rgba(var(--yellow), 0.1);
}

.progress-wrapper .green-bg {
  background-color: rgba(var(--green), 1);
}

.progress-wrapper .green-bg-light {
  background-color: rgba(var(--green), 0.1);
}

.progress-wrapper .blue-light-bg {
  background-color: rgba(var(--blue-light), 1);
}

.progress-wrapper .blue-light-bg-light {
  background-color: rgba(var(--blue-light), 0.1);
}

.progress-wrapper .green-light-bg {
  background-color: rgba(var(--green-light), 1);
}

.progress-wrapper .green-light-bg-light {
  background-color: rgba(var(--green-light), 0.1);
}

.progress-item {
  width: 100%;
  height: 8px;
  background-color: transparent;
  border-radius: 30px;
  overflow: hidden;
}

.progress-item-lg {
  height: 16px;
}

.progress-item .progress-item-bar {
  height: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 10px;
  color: #fff;
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 8px;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 7px;
  }
}

/* ========== List Bar css ========== */
/* ========== List Bar css ========== */

/* list base styles */
.base-list-box {
  border: 1px solid #DFE5EF;
  border-radius: 7px;
  padding: 24px 25px;
}

.base-list-box ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.base-list-box ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.base-list-box ul li i {
  color: #365CF5;
  font-size: 16px;
}

.base-list-box .form-check {
  padding-left: 28px;
  min-height: 16px;
  margin-bottom: 0;
}

.base-list-box .form-check label {
  user-select: none;
  cursor: pointer;
}

.base-list-box .form-check-input {
  border-color: #DFE5EF;
  width: 16px;
  height: 16px;
  margin-left: -28px;
  margin-top: 3px;
  cursor: pointer;
}

.base-list-box .form-check-input:checked {
  border-color: #365CF5;
  background-color: #365CF5;
}

/* ========== Theme Change ==========  */
.darkTheme .base-list-box {
  border-color: #3F4053;
}

/* =========== form elements css ========== */
/* =========== form elements css ========== */

/* ===== input style ===== */
.input-style-1 {
  position: relative;
  margin-bottom: 30px;
}

.input-style-1 label {
  font-size: 14px;
  font-weight: 500;
  color: #1A2142;
  display: block;
  margin-bottom: 10px;
}

.input-style-1 input,
.input-style-1 textarea {
  width: 100%;
  background: rgba(239, 239, 239, 0.5);
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 14px;
  color: #5d657b;
  resize: none;
  transition: all 0.3s;
}

@media (max-width: 767px) {

  .input-style-1 input,
  .input-style-1 textarea {
    font-size: 14px;
  }
}

.input-style-1 input:focus,
.input-style-1 textarea:focus {
  border-color: #365CF5;
  background: #fff;
}

.input-style-1 input[type=date],
.input-style-1 input[type=time],
.input-style-1 textarea[type=date],
.input-style-1 textarea[type=time] {
  background: transparent;
}

.input-style-1 input.light-bg[type=date],
.input-style-1 input.light-bg[type=time],
.input-style-1 textarea.light-bg[type=date],
.input-style-1 textarea.light-bg[type=time] {
  background: rgba(239, 239, 239, 0.5);
}

.input-style-1 input.light-bg[type=date]:focus,
.input-style-1 input.light-bg[type=time]:focus,
.input-style-1 textarea.light-bg[type=date]:focus,
.input-style-1 textarea.light-bg[type=time]:focus {
  background: #fff;
}

.input-style-2 {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.input-style-2 label {
  font-size: 14px;
  font-weight: 500;
  color: #1A2142;
  display: block;
  margin-bottom: 10px;
}

.input-style-2 input,
.input-style-2 textarea {
  width: 100%;
  background: rgba(239, 239, 239, 0.5);
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 14px;
  color: #5d657b;
  resize: none;
  transition: all 0.3s;
}

.input-style-2 input:focus,
.input-style-2 textarea:focus {
  border-color: #365CF5;
  background: #fff;
}

.input-style-2 input[type=date],
.input-style-2 input[type=time],
.input-style-2 textarea[type=date],
.input-style-2 textarea[type=time] {
  background: transparent;
}

.input-style-2 input[type=date]::-webkit-inner-spin-button,
.input-style-2 input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.input-style-2 input[type=date]~.icon {
  z-index: -1;
}

.input-style-2 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 17px;
}

.input-style-3 {
  position: relative;
  margin-bottom: 30px;
}

.input-style-3 label {
  font-size: 14px;
  font-weight: 500;
  color: #1A2142;
  display: block;
  margin-bottom: 10px;
}

.input-style-3 input,
.input-style-3 textarea {
  width: 100%;
  background: rgba(239, 239, 239, 0.5);
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 14px;
  padding-left: 45px;
  color: #5d657b;
  resize: none;
  transition: all 0.3s;
}

.input-style-3 input:focus,
.input-style-3 textarea:focus {
  border-color: #365CF5;
  background: #fff;
}

.input-style-3 .icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  padding: 16px;
  margin-top: 3px;
}

/* ========= select style ========== */
/* ========= select style ========== */

.select-style-1 {
  margin-bottom: 30px;
}

.select-style-1 label {
  font-size: 14px;
  font-weight: 500;
  color: #1A2142;
  display: block;
  margin-bottom: 10px;
}

.select-style-1 .select-position {
  position: relative;
}

.select-style-1 .select-position::after {
  border-bottom: 2px solid #5d657b;
  border-right: 2px solid #5d657b;
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.select-style-1 .select-position.select-sm::after {
  margin-top: -8px;
}

.select-style-1 .select-position.select-sm select {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
}

.select-style-1 .select-position select {
  width: 100%;
  background: transparent;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 14px;
  padding-right: 35px;
  color: #5d657b;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.select-style-1 .select-position select:focus {
  border-color: #365CF5;
  outline: none;
}

.select-style-1 .select-position select.light-bg {
  background: rgba(239, 239, 239, 0.5);
}

.select-style-1 .select-position select.light-bg:focus {
  background: #fff;
}

.select-style-1 .select-position select.radius-30 {
  border-radius: 30px;
}

.select-style-2 {
  margin-bottom: 30px;
}

.select-style-2 .select-position {
  position: relative;
}

.select-style-2 .select-position.select-sm::after {
  margin-top: -8px;
}

.select-style-2 .select-position.select-sm::before {
  margin-top: 0;
}

.select-style-2 .select-position.select-sm select {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
}

.select-style-2 .select-position::before,
.select-style-2 .select-position::after {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.select-style-2 .select-position::before {
  margin-top: 0px;
  border-bottom: 1px solid #5d657b;
  border-right: 1px solid #5d657b;
}

.select-style-2 .select-position::after {
  margin-top: -8px;
  border-top: 1px solid #5d657b;
  border-left: 1px solid #5d657b;
}

.select-style-2 .select-position select {
  width: 100%;
  background: transparent;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 14px;
  padding-right: 38px;
  color: #5d657b;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.select-style-2 .select-position select:focus {
  border-color: #365CF5;
  outline: none;
}

.select-style-2 .select-position select.light-bg {
  background: rgba(239, 239, 239, 0.5);
}

.select-style-2 .select-position select.light-bg:focus {
  background: #fff;
}

.select-style-2 .select-position select.select-sm {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
}

.select-style-3 {
  margin-bottom: 30px;
}

.select-style-3 .select-position {
  position: relative;
}

.select-style-3 .select-position::after {
  border-bottom: 2px solid #5d657b;
  border-right: 2px solid #5d657b;
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  margin-top: -7px;
  pointer-events: none;
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.select-style-3 .select-position.select-sm::after {
  margin-top: -8px;
}

.select-style-3 .select-position.select-sm select {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
}

.select-style-3 .select-position select {
  width: 100%;
  background: transparent;
  border: transparent;
  border-radius: 10px;
  padding-right: 38px;
  color: #000;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.select-style-3 .select-position select:focus {
  border-color: #365CF5;
  outline: none;
}

.select-style-3 .select-position select.light-bg {
  background: rgba(239, 239, 239, 0.5);
}

.toggle-switch {
  padding-left: 60px;
  min-height: 30px;
}

.toggle-switch .form-check-input {
  width: 50px;
  height: 28px;
  margin-left: -60px;
  cursor: pointer;
}

.toggle-switch label {
  margin-top: 6px;
  font-size: 14px;
  color: #1A2142;
  cursor: pointer;
  user-select: none;
}

.checkbox-style {
  padding-left: 40px;
  min-height: 22px;
}

.checkbox-style .form-check-input {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  margin-left: -40px;
  cursor: pointer;
  margin-top: 6px;
}

.checkbox-style .form-check-input:checked {
  background-color: #365CF5;
  border-color: #365CF5;
}

.checkbox-style .form-check-input:disabled {
  cursor: auto;
}

.checkbox-style .form-check-input:disabled~label {
  cursor: auto;
}

.checkbox-style label {
  margin-top: 6px;
  cursor: pointer;
  user-select: none;
}

.checkbox-style.checkbox-success .form-check-input:checked {
  background-color: #219653;
  border-color: #219653;
}

.checkbox-style.checkbox-warning .form-check-input:checked {
  background-color: #f7c800;
  border-color: #f7c800;
}

.checkbox-style.checkbox-danger .form-check-input:checked {
  background-color: #d50100;
  border-color: #d50100;
}

.radio-style {
  padding-left: 40px;
  min-height: 22px;
}

.radio-style .form-check-input {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-left: -40px;
  cursor: pointer;
  margin-top: 7px;
}

.radio-style .form-check-input:disabled {
  cursor: auto;
}

.radio-style .form-check-input:disabled~label {
  cursor: auto;
}

.radio-style label {
  margin-top: 6px;
  cursor: pointer;
  user-select: none;
}

.radio-style.radio-success .form-check-input:checked {
  background-color: #219653;
  border-color: #219653;
}

.radio-style.radio-warning .form-check-input:checked {
  background-color: #f7c800;
  border-color: #f7c800;
}

.radio-style.radio-danger .form-check-input:checked {
  background-color: #d50100;
  border-color: #d50100;
}

@media (max-width: 767px) {
  .button-group .main-btn {
    width: 100%;
  }
}

.buy-sell-form .input-group {
  display: flex;
}

.buy-sell-form .input-group input {
  width: 60%;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  color: #5d657b;
}

.buy-sell-form .input-group input:focus {
  border-color: #365CF5;
}

.buy-sell-form .input-group .select-style-1 {
  width: 40%;
}

.buy-sell-form .input-group .select-style-1 .select-position::after {
  width: 8px;
  height: 8px;
}

.buy-sell-form .input-group select {
  border: 1px solid #e2e8f0;
  border-radius: 0px 4px 4px 0px;
  padding: 8px 16px;
  padding-right: 24px;
  font-size: 14px;
  color: #5d657b;
}

.buy-sell-form .buy-sell-btn .main-btn {
  display: block;
  width: 100%;
  font-weight: 500;
}

.buy-sell-form .buy-sell-btn .main-btn:hover {
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

.buy-sell-form .buy-sell-btn .main-btn.success-btn {
  background: #08c18d;
}

.buy-sell-form .buy-sell-btn .main-btn.danger-btn {
  background: #eb5757;
}

.buy-sell-form .field-group-2 label {
  font-size: 12px;
}

.buy-sell-form .field-group-2 .input-group input {
  font-size: 12px;
  width: 70%;
}

.buy-sell-form .field-group-2 .input-group span {
  font-size: 12px;
  padding: 8px 16px;
  width: 30%;
  background: #e2e8f0;
  text-align: center;
  border-radius: 0px 4px 4px 0px;
  border: 1px solid #e2e8f0;
}

.buy-sell-form .input-group-2 label {
  font-size: 12px;
  color: #5d657b;
  margin-bottom: 8px;
  display: block;
}

.buy-sell-form .input-group-2 .select-position::after {
  width: 8px;
  height: 8px;
}

.buy-sell-form .input-group-2 select {
  padding: 8px 12px;
  font-size: 12px;
  color: #5d657b;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  width: 100%;
}

/* ========== Theme Change Css =========== */
/* ========== Theme Change Css =========== */

.darkTheme .input-style-1 label,
.darkTheme .input-style-2 label,
.darkTheme .input-style-3 label {
  color: #fff;
}

.darkTheme .input-style-1 input,
.darkTheme .input-style-1 textarea,
.darkTheme .input-style-2 input,
.darkTheme .input-style-2 textarea,
.darkTheme .input-style-3 input,
.darkTheme .input-style-3 textarea {
  background: rgba(2, 2, 30, 0.2);
  border-color: #3F4053;
  color: rgba(255, 255, 255, 0.7);
}

.darkTheme .input-style-1 input:focus,
.darkTheme .input-style-1 textarea:focus,
.darkTheme .input-style-2 input:focus,
.darkTheme .input-style-2 textarea:focus,
.darkTheme .input-style-3 input:focus,
.darkTheme .input-style-3 textarea:focus {
  background: #1A2142;
  border-color: #efefef;
}

.darkTheme .input-style-1 input::placeholder,
.darkTheme .input-style-1 textarea::placeholder,
.darkTheme .input-style-2 input::placeholder,
.darkTheme .input-style-2 textarea::placeholder,
.darkTheme .input-style-3 input::placeholder,
.darkTheme .input-style-3 textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.darkTheme .input-style-1 input.light-bg[type=date],
.darkTheme .input-style-1 input.light-bg[type=time],
.darkTheme .input-style-1 textarea.light-bg[type=date],
.darkTheme .input-style-1 textarea.light-bg[type=time],
.darkTheme .input-style-2 input.light-bg[type=date],
.darkTheme .input-style-2 input.light-bg[type=time],
.darkTheme .input-style-2 textarea.light-bg[type=date],
.darkTheme .input-style-2 textarea.light-bg[type=time],
.darkTheme .input-style-3 input.light-bg[type=date],
.darkTheme .input-style-3 input.light-bg[type=time],
.darkTheme .input-style-3 textarea.light-bg[type=date],
.darkTheme .input-style-3 textarea.light-bg[type=time] {
  background: rgba(2, 2, 30, 0.2);
  border-color: #02021E;
  color: rgba(255, 255, 255, 0.7);
}

.darkTheme .input-style-1 input.light-bg[type=date]:focus,
.darkTheme .input-style-1 input.light-bg[type=time]:focus,
.darkTheme .input-style-1 textarea.light-bg[type=date]:focus,
.darkTheme .input-style-1 textarea.light-bg[type=time]:focus,
.darkTheme .input-style-2 input.light-bg[type=date]:focus,
.darkTheme .input-style-2 input.light-bg[type=time]:focus,
.darkTheme .input-style-2 textarea.light-bg[type=date]:focus,
.darkTheme .input-style-2 textarea.light-bg[type=time]:focus,
.darkTheme .input-style-3 input.light-bg[type=date]:focus,
.darkTheme .input-style-3 input.light-bg[type=time]:focus,
.darkTheme .input-style-3 textarea.light-bg[type=date]:focus,
.darkTheme .input-style-3 textarea.light-bg[type=time]:focus {
  background: #1A2142;
  border-color: #efefef;
}

.darkTheme .select-style-1 label,
.darkTheme .select-style-2 label,
.darkTheme .select-style-3 label {
  color: #fff;
}

.darkTheme .select-style-1 select,
.darkTheme .select-style-2 select,
.darkTheme .select-style-3 select {
  border-color: rgba(223, 229, 239, 0.2);
  color: #838C9A;
}

.darkTheme .select-style-1 select:focus,
.darkTheme .select-style-2 select:focus,
.darkTheme .select-style-3 select:focus {
  background: #14142D;
  border-color: rgba(223, 229, 239, 0.2);
}

.darkTheme .select-style-1 select.light-bg,
.darkTheme .select-style-2 select.light-bg,
.darkTheme .select-style-3 select.light-bg {
  background: rgba(20, 20, 45, 0.2);
  border-color: rgba(223, 229, 239, 0.2);
  color: #838C9A;
}

.darkTheme .select-style-1 select.light-bg:focus,
.darkTheme .select-style-2 select.light-bg:focus,
.darkTheme .select-style-3 select.light-bg:focus {
  background: rgba(20, 20, 45, 0.2);
  border-color: rgba(223, 229, 239, 0.2);
}

.darkTheme .select-style-3 select {
  color: #fff;
}

.darkTheme .toggle-switch label {
  color: #fff;
}

.darkTheme .checkbox-style .form-check-input {
  border-color: #3F4053;
  background-color: transparent;
}

.darkTheme .checkbox-style .form-check-input:checked {
  background-color: #365CF5;
  border-color: #365CF5;
}

.darkTheme .checkbox-style label {
  color: #fff;
}

.darkTheme .checkbox-style.checkbox-success .form-check-input:checked {
  background-color: #219653;
  border-color: #219653;
}

.darkTheme .checkbox-style.checkbox-warning .form-check-input:checked {
  background-color: #f7c800;
  border-color: #f7c800;
}

.darkTheme .checkbox-style.checkbox-danger .form-check-input:checked {
  background-color: #d50100;
  border-color: #d50100;
}

.darkTheme .radio-style .form-check-input {
  background-color: transparent;
  border-color: rgba(239, 239, 239, 0.5);
}

.darkTheme .radio-style .form-check-input:checked {
  background-color: #365CF5;
  border-color: #365CF5;
}

.darkTheme .radio-style label {
  color: #fff;
}

.darkTheme .radio-style.radio-success .form-check-input:checked {
  background-color: #219653;
  border-color: #219653;
}

.darkTheme .radio-style.radio-warning .form-check-input:checked {
  background-color: #f7c800;
  border-color: #f7c800;
}

.darkTheme .radio-style.radio-danger .form-check-input:checked {
  background-color: #d50100;
  border-color: #d50100;
}

.darkTheme .field-group-2 .input-group input {
  border-color: #efefef;
  color: rgba(255, 255, 255, 0.7);
}

.darkTheme .field-group-2 .input-group span {
  background: #e2e8f0;
  color: #1A2142;
  border: 1px solid #e2e8f0;
}

.darkTheme .input-group-2 select {
  border-color: #3F4053;
}

.darkTheme .field-group .input-group input {
  color: rgba(255, 255, 255, 0.7);
  border-color: #3F4053;
}

.darkTheme .field-group .select-style-1 select {
  border-color: #3F4053;
}

/* ========== Form Editors ========= */
/* ========== Form Editors ========= */
.form-editor-wrapper .ql-toolbar.ql-snow {
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px 4px 0px 0px;
}

.form-editor-wrapper .ql-container.ql-snow {
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 4px 4px;
}

.form-editor-wrapper .ql-container.ql-snow .ql-editor {
  min-height: 350px;
}

.form-editor-wrapper .ql-bubble .ql-tooltip {
  z-index: 999;
}

/* ======= Theme Change ========== */
/* ======= Theme Change ========== */
.darkTheme .ql-editor.ql-blank::before {
  color: rgba(239, 239, 239, 0.5);
}

.darkTheme .ql-snow .ql-picker {
  color: rgba(255, 255, 255, 0.5);
}

.darkTheme .ql-snow .ql-formats .ql-stroke {
  stroke: rgba(255, 255, 255, 0.5);
}

.darkTheme .ql-snow .ql-formats .ql-fill {
  fill: rgba(255, 255, 255, 0.5);
}

.darkTheme .form-editor-wrapper .ql-toolbar.ql-snow,
.darkTheme .form-editor-wrapper .ql-container.ql-snow {
  border-color: #3F4053;
}

/* ============= notification css ============= */
/* ============= notification css ============= */
.single-notification {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #efefef;
}

.single-notification.readed {
  opacity: 0.7;
}

.single-notification:first-child {
  padding-top: 0px;
}

.single-notification:last-child {
  padding-bottom: 0px;
  border-bottom: 0px;
}

.single-notification .checkbox {
  max-width: 50px;
  width: 100%;
  padding-top: 10px;
}

@media (max-width: 767px) {
  .single-notification .checkbox {
    display: none;
  }
}

.single-notification .checkbox input {
  background-color: #efefef;
  border-color: #e5e5e5;
}

.single-notification .checkbox input:checked {
  background-color: #365CF5;
  border-color: #365CF5;
}

.single-notification .notification {
  display: flex;
  width: 100%;
}

@media (max-width: 767px) {
  .single-notification .notification {
    flex-direction: column;
  }
}

.single-notification .notification .image {
  max-width: 50px;
  width: 100%;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .single-notification .notification .image {
    margin-bottom: 15px;
  }
}

.single-notification .notification .image img {
  width: 100%;
}

.single-notification .notification .content {
  display: block;
  max-width: 800px;
}

.single-notification .notification .content h6 {
  margin-bottom: 15px;
}

.single-notification .notification .content p {
  margin-bottom: 10px;
}

.single-notification .action {
  display: inline-flex;
  justify-content: flex-end;
  padding-top: 10px;
}

@media (max-width: 767px) {
  .single-notification .action {
    display: none;
  }
}

.single-notification .action button {
  border: none;
  background: transparent;
  color: #5d657b;
  margin-left: 20px;
  font-size: 18px;
}

.single-notification .action button.delete-btn:hover {
  color: #d50100;
}

.single-notification .action .dropdown-toggle::after {
  display: none;
}

/* ========== Theme Change Css ============== */
/* ========== Theme Change Css ============== */
.darkTheme .single-notification {
  border-color: #02021E;
}

/* ========== header css ========== */
/* ========== header css ========== */
.header {
  padding: 20px 0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 99;
}

.header .header-left .menu-toggle-btn .main-btn {
  padding: 10px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .header-left .header-search {
  max-width: 270px;
  width: 100%;
}

.header .header-left .header-search form {
  max-width: 270px;
  width: 100%;
  position: relative;
}

.header .header-left .header-search form input {
  width: 100%;
  border: 1px solid #efefef;
  background: rgba(239, 239, 239, 0.5);
  border-radius: 8px;
  padding: 10px 10px 10px 44px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.header .header-left .header-search form input:focus {
  border-color: #365CF5;
  background: #fff;
}

.header .header-left .header-search form button {
  position: absolute;
  border: none;
  background: transparent;
  left: 16px;
  top: 0;
  height: 46px;
  color: #5d657b;
  font-weight: 700;
}

.header .header-left .header-search form button i {
  margin-top: 7px;
}

.header .header-right {
  display: flex;
  justify-content: flex-end;
}

.header .header-right button {
  background: transparent;
  border-radius: 5px;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #1A2142;
  border: 1px solid #e2e6f1;
}

.header .header-right button svg {
  fill: currentColor;
}

.header .header-right button::after {
  display: none;
}

.header .header-right button .before {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #FD5812;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
}

.header .header-right button .before:before {
  inset: 0;
  content: "";
  border-radius: 50%;
  position: absolute;
  background: #FD5812;
  animation: ripple 1.2s ease-out infinite;
}

@keyframes ripple {

  0%,
  35% {
    transform: scale(0);
    opacity: 1
  }

  50% {
    transform: scale(1.5);
    opacity: .8
  }

  to {
    opacity: 0;
    transform: scale(4)
  }
}

.header .header-right .dropdown-menu {
  width: 350px;
  border: 1px solid #efefef;
  padding: 10px 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 21px !important;
  right: 0;
  position: absolute;
  transform: translate3d(0px, 60px, 0px);
  border-radius: 10px;
}

.header .header-right .dropdown-menu li {
  padding: 3px 0px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-bottom: 1px solid #efefef;
  position: relative;
  z-index: 2;
}

.header .header-right .dropdown-menu li:hover a {
  color: #365CF5;
  background: #f3f3f3;
}

.header .header-right .dropdown-menu li:last-child {
  border-bottom: none;
}

.header .header-right .dropdown-menu li a {
  padding: 8px 12px;
  display: flex;
  color: rgba(0, 0, 0, 0.7);
  border-radius: 6px;
}

.header .header-right .dropdown-menu li a .image {
  max-width: 35px;
  width: 100%;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
}

.header .header-right .dropdown-menu li a .image img {
  width: 100%;
}

.header .header-right .dropdown-menu li a .content {
  width: 100%;
}

.header .header-right .dropdown-menu li a .content h6 {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 600;
  line-height: 1;
}

.header .header-right .dropdown-menu li a .content p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0px;
  line-height: 1.4;
}

.header .header-right .dropdown-menu li a .content span {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}

.header .header-right .dropdown-box {
  position: relative;
}

.header .header-right .notification-box,
.header .header-right .header-message-box {
  position: relative;
}

.header .header-right .notification-box .dropdown-menu.dropdown-menu-end {
  transform: translate3d(0px, 60px, 0px);
}

.header .header-right .header-message-box .dropdown-menu.dropdown-menu-end {
  transform: translate3d(0px, 60px, 0px);
}

.header .header-right .profile-box {
  display: flex;
  position: relative;
}

.header .header-right .profile-box button {
  width: auto;
}

.header .header-right .profile-box .dropdown-menu {
  width: 10rem;
  min-width: 190px;
  border: none;
  border-radius: 4px;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 16px rgba(0, 0, 0, 0.1);
  padding: 8px;
}

.header .header-right .profile-box .dropdown-menu.dropdown-menu-end {
  transform: translate3d(0px, 60px, 0px);
}

.header .header-right .profile-box .dropdown-menu li {
  border-bottom: none;
  padding: 0;
}

.header .header-right .profile-box .dropdown-menu li a {
  font-size: 14px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 10px 8px;
  color: rgba(26, 33, 66, 0.5);
}

.header .header-right .profile-box .dropdown-menu li a i {
  margin-right: 8px;
  font-weight: 700;
}

.header .header-right .profile-box .dropdown-menu li a:hover {
  color: #1a2142;
  background: #f3f3f3;
}

.header .header-right .profile-box .dropdown-menu li.divider {
  margin: 4px 0;
  height: 1px;
  display: block;
  background: rgba(28, 28, 28, 0.05);
}

.header .header-right .profile-box .dropdown-menu .author-info {
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 6px;
  cursor: pointer;
}

.header .header-right .profile-box .dropdown-menu .author-info .image {
  flex: none;
}

.header .header-right .profile-box .dropdown-menu .author-info .image img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.header .header-right .profile-box .dropdown-menu .author-info .content {
  padding-left: 8px;
}

.header .header-right .profile-box .dropdown-menu .author-info .content h4 {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.header .header-right .profile-box .dropdown-menu .author-info .content a {
  font-size: 12px;
  line-height: 1rem;
  color: rgba(26, 33, 66, 0.4);
  padding: 0;
  display: inline;
  background-color: initial;
}

.header .header-right .profile-box .dropdown-menu .author-info .content a:hover {
  background: initial;
}

.header .header-right .profile-box .dropdown-menu .author-info:hover {
  background: #f3f3f3;
}

.header .header-right .profile-box .dropdown-menu .author-info:hover a {
  color: #1a2142;
}

.header .header-right .profile-box .profile-info {
  margin: 0 5px;
}

.header .header-right .profile-box .profile-info .info {
  display: flex;
  align-items: center;
}

.header .header-right .profile-box .profile-info .info .image {
  border: 1px solid #e2e6f1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-right: 14px;
  position: relative;
}

.header .header-right .profile-box .profile-info .info .image img {
  width: 100%;
  border-radius: 50%;
}

.header .header-right .profile-box .profile-info .info p {
  font-size: 12px;
  text-align: left;
}

/* ========= Dark Theme Css ========== */
/* ========= Dark Theme Css ========== */
.darkTheme .header {
  background: #14142D;
}

.darkTheme .header .header-search form input {
  background: #14142D;
  border-color: #3F4053;
  color: #5d657b;
}

.darkTheme .header .header-search form input:focus {
  background-color: #14142D;
  border-color: #efefef;
}

.darkTheme .header .header-right button {
  background: rgba(255, 255, 255, 0.1);
  border-color: transparent;
  color: #fff;
}

.darkTheme .header .header-right button span {
  border-color: #1A2142;
}

.darkTheme .header .header-right .dropdown-menu {
  background: #02021E;
  border-color: #1A2142;
}

.darkTheme .header .header-right .dropdown-menu li {
  border-color: rgba(239, 239, 239, 0.2);
}

.darkTheme .header .header-right .dropdown-menu li a {
  color: #fff;
}

.darkTheme .header .header-right .dropdown-menu li a .content h6 {
  color: #fff;
}

.darkTheme .header .header-right .dropdown-menu li a .content p {
  color: #838C9A;
}

.darkTheme .header .header-right .dropdown-menu li a .content span {
  color: rgba(255, 255, 255, 0.7);
}

.darkTheme .header .header-right .dropdown-menu li:hover a {
  color: #fff;
  background: #14142D;
}

.darkTheme .header .header-right .profile-info .info h6 {
  color: #fff;
}

.darkTheme .header .header-right .profile-info .info .image {
  border-color: #DFE5EF;
}

.darkTheme .header .header-right .profile-info .info .image .status {
  border-color: #02021E;
}

.darkTheme .header .header-right .profile-box .profile-info .info p {
  color: #838C9A;
}

.darkTheme .header .header-right .profile-box .dropdown-menu li a {
  color: rgba(255, 255, 255, 0.5);
}

.darkTheme .header .header-right .profile-box .dropdown-menu li a:hover {
  color: white;
  background: #14142D;
}

.darkTheme .header .header-right .profile-box .dropdown-menu li.divider {
  background: rgba(28, 28, 28, 0.05);
}

.darkTheme .header .header-right .profile-box .dropdown-menu .author-info .content a {
  color: rgba(255, 255, 255, 0.4);
}

.darkTheme .header .header-right .profile-box .dropdown-menu .author-info .content a:hover {
  background: initial;
}

.darkTheme .header .header-right .profile-box .dropdown-menu .author-info:hover {
  background: #14142D;
}

.darkTheme .header .header-right .profile-box .dropdown-menu .author-info:hover a {
  color: white;
}

/* ========== Dashboards css ================= */
/* ========== Dashboards css ================= */
@media (max-width: 767px) {
  #doughnutChart1 {
    height: 250px !important;
  }
}

.legend3 {
  flex-wrap: wrap;
}

.legend3 li {
  margin-right: 25px;
}

.legend3 li div {
  white-space: nowrap;
}

.legend3 li .bg-color {
  position: relative;
  margin-left: 12px;
  border-radius: 50%;
}

.legend3 li .bg-color::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: inherit;
  left: -12px;
  top: 5px;
}

.legend3 li .text {
  margin-left: 10px;
}

.legend3 li .text p {
  display: flex;
  align-items: center;
  width: 100%;
}

@media (max-width: 767px) {
  .legend3 h2 {
    font-size: 22px;
  }
}

.legend-marketing .icon {
  width: 44px;
  height: 44px;
  border-radius: 5px;
  background: #ECF2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.legend-marketing .bg-color {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 12px;
  margin-top: 8px;
}

.legend-marketing .text h5 {
  font-size: 18px;
  margin-top: 5px;
}

.todo-list-wrapper ul li.todo-list-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  margin-bottom: 25px;
}

.todo-list-wrapper ul li.todo-list-item:last-child {
  margin-bottom: 0px;
}

.todo-list-wrapper ul li.todo-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
}

@media (max-width: 767px) {
  .todo-list-wrapper ul li.todo-list-item {
    display: block;
  }

  .todo-list-wrapper ul li.todo-list-item .todo-status {
    margin-top: 20px;
  }
}

.todo-list-wrapper ul li.todo-list-item.success::before {
  background: #219653;
}

.todo-list-wrapper ul li.todo-list-item.primary::before {
  background: #365CF5;
}

.todo-list-wrapper ul li.todo-list-item.orange::before {
  background: #f2994a;
}

.todo-list-wrapper ul li.todo-list-item.danger::before {
  background: #d50100;
}

.cards-title {
  font-size: 18px;
  line-height: 22px;
}

.external-link {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.external-link .link-item {
  padding: 10px 15px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.external-link .link-item:hover {
  background: rgba(223, 229, 239, 0.2);
}

.external-link .link-name {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #1A2142;
}

.card-top-chanels .top-chanels-item {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 11px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .card-top-chanels .top-chanels-item {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.featured-tab .nav {
  gap: 12px;
}

.featured-tab .nav button {
  background: transparent;
  border: none;
  font-weight: 500;
  font-size: 14px;
  color: #64748B;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.featured-tab .nav button:hover,
.featured-tab .nav button.active {
  color: #1A2142;
  background: rgba(223, 229, 239, 0.3);
}

.featured-tab .status-badge {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 30px;
}

.featured-tab .status-badge.queue {
  background: rgba(240, 149, 12, 0.08);
  color: #F0950C;
}

.featured-tab .status-badge.sent {
  background: rgba(16, 185, 129, 0.08);
  color: #10B981;
}

.featured-tab .tab-item-title:hover {
  color: #365CF5;
  cursor: pointer;
}

.card-click-rate .device-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-click-rate .device-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.card-click-rate .device-list li span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.card-click-rate .device-list li:nth-child(1n) span {
  background: #365CF5;
}

.card-click-rate .device-list li:nth-child(2n) span {
  background: #ECF2FF;
}

.card-click-rate .device-list li:nth-child(3n) span {
  background: #F9F9FD;
}

.card-click-rate .apexcharts-tooltip-series-group {
  padding-top: 4px;
}

.card-click-rate .apexcharts-tooltip-z-group,
.card-click-rate .apexcharts-tooltip-goals-group {
  display: none;
}

/* ====== Theme Change CSS ====== */
/* ====== Theme Change CSS ====== */
.darkTheme .featured-tab .nav button {
  color: #838C9A;
  background: #17172C;
  border-radius: 5px;
}

.darkTheme .featured-tab .nav button:hover,
.darkTheme .featured-tab .nav button.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 34px;
}

.darkTheme .external-link .link-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* ============ signin css ============= */
/* ============ signin css ============= */
.auth-row {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.auth-cover-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px;
  position: relative;
  z-index: 1;
  height: 100%;
}

@media (max-width: 767px) {
  .auth-cover-wrapper {
    padding: 30px 20px;
  }
}

.auth-cover-wrapper .auth-cover .title {
  text-align: cover;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .auth-cover-wrapper .auth-cover .title h1 {
    font-size: 24px;
  }
}

.auth-cover-wrapper .auth-cover .cover-image {
  max-width: 100%;
  margin: auto;
}

.auth-cover-wrapper .auth-cover .cover-image img {
  width: 100%;
}

.auth-cover-wrapper .auth-cover .shape-image {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 5%;
}

.signin-wrapper {
  background: #fff;
  padding: 60px;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .signin-wrapper {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .signin-wrapper {
    padding: 30px;
  }
}

.signin-wrapper .form-wrapper {
  width: 100%;
}

.signin-wrapper .singin-option button {
  font-size: 16px;
  font-weight: 600;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .signin-wrapper .singin-option button {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .signin-wrapper .singin-option button {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 767px) {
  .signin-wrapper .singin-option button {
    width: 100%;
  }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
  .signin-wrapper .singin-option button {
    width: auto;
  }
}

.signin-wrapper .singin-option a:hover {
  text-decoration: underline;
}

/* ============ Theme Change Css ============== */
/* ============ Theme Change Css ============== */
.darkTheme .auth-row {
  background: #14142D;
}

.darkTheme .signin-wrapper {
  background: #14142D;
}

.darkTheme .signin-wrapper .danger-btn-outline {
  background: transparent;
  color: rgba(213, 1, 0, 0.8);
  border-color: rgba(213, 1, 0, 0.8);
}

.darkTheme .signin-wrapper .danger-btn-outline:hover {
  color: #fff;
  background: #d50100;
}

/* ============ signup css ============= */
/* ============ signup css ============= */
.auth-row {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.auth-cover-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px;
  position: relative;
  z-index: 1;
  height: 100%;
}

@media (max-width: 767px) {
  .auth-cover-wrapper {
    padding: 30px 20px;
  }
}

.auth-cover-wrapper .auth-cover .title {
  text-align: cover;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .auth-cover-wrapper .auth-cover .title h1 {
    font-size: 24px;
  }
}

.auth-cover-wrapper .auth-cover .cover-image {
  max-width: 100%;
  margin: auto;
}

.auth-cover-wrapper .auth-cover .cover-image img {
  width: 100%;
}

.auth-cover-wrapper .auth-cover .shape-image {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 5%;
}

.signup-wrapper {
  background: #fff;
  padding: 60px;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .signup-wrapper {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .signup-wrapper {
    padding: 30px;
  }
}

.signup-wrapper .form-wrapper {
  width: 100%;
}

.signup-wrapper .singup-option button {
  font-size: 16px;
  font-weight: 600;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .signup-wrapper .singup-option button {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .signup-wrapper .singup-option button {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 767px) {
  .signup-wrapper .singup-option button {
    width: 100%;
  }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
  .signup-wrapper .singup-option button {
    width: auto;
  }
}

.signup-wrapper .singup-option a:hover {
  text-decoration: underline;
}

/* ============ Theme Change Css ============== */
/* ============ Theme Change Css ============== */
.darkTheme .auth-row {
  background: #14142D;
}

.darkTheme .signup-wrapper {
  background: #14142D;
}

.darkTheme .signup-wrapper .danger-btn-outline {
  background: transparent;
  color: rgba(213, 1, 0, 0.8);
  border-color: rgba(213, 1, 0, 0.8);
}

.darkTheme .signup-wrapper .danger-btn-outline:hover {
  color: #fff;
  background: #d50100;
}

/* ============ reset-password css ============= */
/* ============ reset-password css ============= */
.auth-row {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.auth-cover-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px;
  position: relative;
  z-index: 1;
  height: 100%;
}

@media (max-width: 767px) {
  .auth-cover-wrapper {
    padding: 30px 20px;
  }
}

.auth-cover-wrapper .auth-cover .title {
  text-align: cover;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .auth-cover-wrapper .auth-cover .title h1 {
    font-size: 24px;
  }
}

.auth-cover-wrapper .auth-cover .cover-image {
  max-width: 100%;
  margin: auto;
}

.auth-cover-wrapper .auth-cover .cover-image img {
  width: 100%;
}

.auth-cover-wrapper .auth-cover .shape-image {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 5%;
}

.reset-password-wrapper {
  background: #fff;
  padding: 60px;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .reset-password-wrapper {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .reset-password-wrapper {
    padding: 30px;
  }
}

.reset-password-wrapper .form-wrapper {
  width: 100%;
}

/* ============ Theme Change Css ============== */
/* ============ Theme Change Css ============== */
.darkTheme .auth-row {
  background: #14142D;
}

.darkTheme .reset-password-wrapper {
  background: #14142D;
}

/* ============ task css ============= */
/* ============ task css ============= */
.task-table.task-completed {
  text-decoration: line-through;
}

.task-table .table tr {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.task-table .table tr:hover {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.task-table .table tr:last-child>* {
  padding-bottom: 15px;
}

.task-table .table td {
  padding: 10px;
}

.task-table .table td.min-width {
  min-width: 150px;
}

.task-table .table td.name-title {
  min-width: 200px;
}

.task-table .table td:first-child>* {
  padding-left: 30px;
}

.task-table .table td:last-child>* {
  padding-right: 30px;
}

.task-table .table td .action .delete-btn:hover {
  color: #d50100 !important;
}

.task-table .table td .action .link-btn:hover {
  color: #365CF5 !important;
}

.task-table .table td .action .more-btn:hover {
  color: #365CF5;
}

/* =========== settings css ============== */
/* =========== settings css ============== */
.settings-card-1 .profile-info .profile-image {
  max-width: 75px;
  width: 100%;
  height: 75px;
  border-radius: 50%;
  margin-right: 20px;
  position: relative;
  z-index: 1;
}

.settings-card-1 .profile-info .profile-image img {
  width: 100%;
  border-radius: 50%;
}

.settings-card-1 .profile-info .profile-image .update-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: #efefef;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99;
}

.settings-card-1 .profile-info .profile-image .update-image:hover {
  opacity: 0.9;
}

.settings-card-1 .profile-info .profile-image .update-image input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 99;
}

.settings-card-1 .profile-info .profile-image .update-image label {
  cursor: pointer;
  z-index: 99;
}

/* ============== clients css ============ */
/* ============== clients css ============ */
.client-profile-wrapper {
  background: #fff;
  border-radius: 4px;
}

.client-profile-wrapper .client-cover {
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
  position: relative;
  height: 160px;
}

.client-profile-wrapper .client-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.client-profile-wrapper .client-cover .update-image {
  position: absolute;
  right: 30px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  padding: 1px 15px;
  display: inline-block;
  width: auto;
  color: #1A2142;
  z-index: 9999;
  cursor: pointer;
}

.client-profile-wrapper .client-cover .update-image:hover {
  opacity: 0.9;
}

@media (max-width: 767px) {
  .client-profile-wrapper .client-cover .update-image {
    right: 50%;
    bottom: 50%;
    -webkit-transform: translate(50%, 50%);
    -moz-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    -o-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
    white-space: nowrap;
  }
}

.client-profile-wrapper .client-cover .update-image input {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 99999;
  cursor: pointer;
}

.client-profile-wrapper .client-cover .update-image label {
  z-index: 99;
  cursor: pointer;
}

.client-profile-wrapper .client-cover .update-image label i {
  margin-right: 10px;
}

.client-profile-wrapper .client-profile-photo {
  position: relative;
  margin-top: -80px;
}

@media (max-width: 767px) {
  .client-profile-wrapper .client-profile-photo {
    margin-top: -50px;
  }
}

.client-profile-wrapper .client-profile-photo .image {
  max-width: 170px;
  width: 100%;
  height: 170px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  border: 6px solid #fff;
}

@media (max-width: 767px) {
  .client-profile-wrapper .client-profile-photo .image {
    max-width: 120px;
    height: 120px;
  }
}

.client-profile-wrapper .client-profile-photo .image img {
  width: 100%;
  border-radius: 50%;
}

.client-profile-wrapper .client-profile-photo .image .update-image {
  position: absolute;
  right: 0px;
  bottom: 0px;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #efefef;
  color: #1A2142;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  cursor: pointer;
}

.client-profile-wrapper .client-profile-photo .image .update-image:hover {
  opacity: 0.9;
}

.client-profile-wrapper .client-profile-photo .image .update-image input {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  cursor: pointer;
}

.client-profile-wrapper .client-profile-photo .image .update-image label {
  z-index: 99;
  cursor: pointer;
}

.client-profile-wrapper .client-info {
  padding: 30px;
}

.client-profile-wrapper .client-info .socials {
  display: flex;
  align-items: center;
}

.client-profile-wrapper .client-info .socials li a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(239, 239, 239, 0.5);
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  color: #5d657b;
  font-size: 16px;
  margin-right: 20px;
}

.client-profile-wrapper .client-info .socials li a:hover {
  color: #fff;
  background: #365CF5;
  border-color: #365CF5;
}

.clients-table-card .dropdown-toggle {
  border: none;
  background: none;
}

.clients-table-card .dropdown-toggle::after {
  display: none;
}

/* ============ Theme Change Css =============== */
/* ============ Theme Change Css =============== */
.darkTheme .client-profile-wrapper {
  background: #14142D;
}

.darkTheme .client-profile-wrapper .client-info .socials li a {
  background: rgba(26, 33, 66, 0.5);
  border: 1px solid #3F4053;
  color: #fff;
}

.darkTheme .client-profile-wrapper .client-info .socials li a:hover {
  color: #fff;
  background: #365CF5;
  border-color: #365CF5;
}

/* ============ profile css ============= */
/* ============ profile css ============= */

.profile-wrapper {
  background: #fff;
  border-radius: 4px;
}

.profile-wrapper .profile-cover {
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
  position: relative;
  height: 160px;
}

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

.profile-wrapper .profile-cover .update-image {
  position: absolute;
  right: 30px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  padding: 1px 15px;
  display: inline-block;
  width: auto;
  color: #1A2142;
}

@media (max-width: 767px) {
  .profile-wrapper .profile-cover .update-image {
    right: 50%;
    bottom: 50%;
    -webkit-transform: translate(50%, 50%);
    -moz-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    -o-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
    white-space: nowrap;
  }
}

.profile-wrapper .profile-cover .update-image input {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.profile-wrapper .profile-cover .update-image label i {
  margin-right: 10px;
}

.profile-wrapper .profile-photo {
  position: relative;
  margin-top: -80px;
  margin-left: 40px;
  margin-right: 40px;
  max-width: 240px;
  width: 100%;
}

@media (max-width: 767px) {
  .profile-wrapper .profile-photo {
    margin-top: -50px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.profile-wrapper .profile-photo .image {
  max-width: 170px;
  width: 100%;
  height: 170px;
  border-radius: 50%;
  position: relative;
  border: 6px solid #fff;
}

@media (max-width: 767px) {
  .profile-wrapper .profile-photo .image {
    max-width: 120px;
    height: 120px;
  }
}

.profile-wrapper .profile-photo .image img {
  width: 100%;
  border-radius: 50%;
}

.profile-wrapper .profile-photo .image .update-image {
  position: absolute;
  right: 0px;
  bottom: 0px;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #efefef;
  color: #1A2142;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-wrapper .profile-photo .image .update-image input {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.profile-wrapper .profiles-activities {
  padding-right: 40px;
}

@media (max-width: 767px) {
  .profile-wrapper .profiles-activities {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.profile-wrapper .profiles-activities .more-btn-wrapper button {
  border: none;
  background: none;
}

@media (max-width: 767px) {
  .profile-wrapper .profiles-activities .more-btn-wrapper button {
    display: none;
  }
}

.profile-wrapper .profiles-activities .more-btn-wrapper button::after {
  display: none;
}

.profile-wrapper .profile-info {
  margin: 30px;
  padding: 30px 0px;
  border-top: 1px solid #efefef;
}

@media (max-width: 767px) {
  .profile-wrapper .profile-info {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.profile-wrapper .profile-info p a:hover {
  color: #365CF5 !important;
}

.profile-wrapper .profile-info .socials {
  display: flex;
  align-items: center;
}

.profile-wrapper .profile-info .socials li a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(239, 239, 239, 0.5);
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  color: #5d657b;
  font-size: 16px;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .profile-wrapper .profile-info .socials li a {
    margin-right: 10px;
  }
}

.profile-wrapper .profile-info .socials li a:hover {
  color: #fff;
  background: #365CF5;
  border-color: #365CF5;
}

/* ========== Theme Change Css ============= */
/* ========== Theme Change Css ============= */
.darkTheme .more-btn-wrapper .dropdown-menu {
  background-color: #02021E;
}

.darkTheme .more-btn-wrapper .dropdown-menu .dropdown-item:hover {
  background-color: #1A2142;
}

.darkTheme .profile-wrapper {
  background: #14142D;
}

.darkTheme .profile-wrapper .profiles-activities ul li p {
  color: #fff;
}

.darkTheme .profile-wrapper .profile-info {
  border-color: #3F4053;
}

.darkTheme .profile-wrapper .profile-info .socials li a {
  background: rgba(26, 33, 66, 0.5);
  border: 1px solid #3F4053;
  color: #fff;
}

.darkTheme .profile-wrapper .profile-info .socials li a:hover {
  color: #fff;
  background: #365CF5;
  border-color: #365CF5;
}

.darkTheme .profile-wrapper .socials li a {
  background: rgba(26, 33, 66, 0.5);
  border: 1px solid #02021E;
  color: #fff;
}

.darkTheme .profile-wrapper .socials li a:hover {
  color: #fff;
  background: #365CF5;
  border-color: #365CF5;
}

/* ============ chat css =========== */
/* ============ chat css =========== */
.chat-list-card {
  padding: 30px 0;
}

.chat-list-card>.title {
  padding: 0 30px;
}

.chat-list-card form {
  padding: 0 30px;
}

@media (max-width: 767px) {
  .chat-list-card form {
    padding: 0px 20px;
  }
}

.chat-list-wrapper .chat-list {
  padding: 0 30px;
}

@media (max-width: 767px) {
  .chat-list-wrapper .chat-list {
    padding: 0px 20px;
  }
}

.chat-list-wrapper .chat-list:hover {
  background: rgba(54, 92, 245, 0.1);
}

.chat-list-wrapper .chat-list:last-child {
  border-bottom: 0px;
}

.chat-list-wrapper .chat-list:last-child .chat-list-item {
  border-bottom: 0px solid #efefef;
}

.chat-list-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #efefef;
  padding: 20px 0;
}

.chat-list-item .image {
  max-width: 35px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  margin-right: 10px;
}

.chat-list-item .image img {
  width: 100%;
  border-radius: 50%;
}

.chat-list-item .image .status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #5d657b;
}

.chat-list-item .image .status.active {
  background: #365CF5;
}

.chat-list-item p {
  color: #5d657b;
  line-height: 1.4;
}

.chat-list-item .content {
  width: 100%;
}

.chat-list-item .content .title {
  display: flex;
  justify-content: space-between;
}

.chat-list-item .content .title span {
  font-size: 14px;
  color: #5d657b;
}

.chat-list-item .content button {
  border: none;
  background: transparent;
  margin-left: 15px;
  font-size: 14px;
}

/* === === === Message box css === === === */
/* === === === Message box css === === === */
.message-box-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.message-box {
  display: flex;
  margin-bottom: 20px;
}

.message-box .image {
  max-width: 35px;
  width: 100%;
  height: 35px;
  border-radius: 50%;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .message-box .image {
    margin-right: 10px;
  }
}

.message-box .image img {
  width: 100%;
  border-radius: 50%;
}

.message-box .content-box {
  border: 1px solid #efefef;
  padding: 12px 30px;
  border-radius: 4px;
  max-width: 550px;
  width: 100%;
}

@media (max-width: 767px) {
  .message-box .content-box {
    padding: 12px;
  }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
  .message-box .content-box {
    padding: 12px 18px;
  }
}

.message-box .content-box .content p {
  font-size: 14px;
  line-height: 22px;
}

.message-box.right {
  flex-direction: row-reverse;
}

.message-box.right .image {
  margin-right: 0px;
  margin-left: 20px;
}

@media (max-width: 767px) {
  .message-box.right .image {
    margin-left: 10px;
  }
}

/* ============ Message Form ============ */
/* ============ Message Form ============ */
.message-form form {
  display: flex;
}

.message-form form .message-field {
  width: 100%;
  position: relative;
}

.message-form form .message-field .file-emoji {
  position: absolute;
  right: 15px;
  top: 0;
  display: flex;
}

.message-form form .message-field .file-emoji .file-upload {
  width: 40px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.message-form form .message-field .file-emoji .file-upload input {
  opacity: 0;
}

.message-form form .message-field .file-emoji .file-upload span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

.message-form form .message-field .file-emoji button {
  border: 1px solid transparent;
  background: transparent;
  width: 40px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.message-form form button.send-btn {
  max-width: 60px;
  width: 100%;
  height: 50px;
  background: #365CF5;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 18px;
  margin-left: 10px;
}

@media (max-width: 767px) {
  .message-form form button.send-btn {
    display: none;
  }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
  .message-form form button.send-btn {
    display: flex;
  }
}

/* ============= Chat about css ============= */
/* ============= Chat about css ============= */
.chat-about .chat-about-profile {
  padding: 20px 0;
  border-bottom: 1px solid #efefef;
}

.chat-about .chat-about-profile .image {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.chat-about .chat-about-profile .image img {
  width: 100%;
}

.chat-about .activity-meta {
  padding-top: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #efefef;
}

.chat-about .activity-meta ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 12px;
}

.chat-about .profile-info {
  padding-top: 20px;
}

.chat-about .profile-info ul li {
  font-size: 14px;
  margin-bottom: 12px;
}

.doughnutChart-legend ul {
  display: flex;
  flex-wrap: wrap;
}

.doughnutChart-legend ul li {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
  font-size: 14px;
}

.doughnutChart-legend ul li.orange .left::before {
  background: #f2994a;
}

.doughnutChart-legend ul li.danger .left::before {
  background: #d50100;
}

.doughnutChart-legend ul li.warning .left::before {
  background: #f7c800;
}

.doughnutChart-legend ul li .left {
  position: relative;
  padding-left: 20px;
}

.doughnutChart-legend ul li .left::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #365CF5;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.doughnutChart-legend ul li .right {
  text-align: left;
  padding: 0 10px;
}

/* ========== Theme Change Css ============= */
/* ========== Theme Change Css ============= */
.darkTheme .chat-list-item {
  border-bottom-color: #3F4053;
}

.darkTheme .message-box .content-box {
  border-color: #3F4053;
}

.darkTheme .message-form form .message-field .file-emoji button {
  color: #fff;
}

.darkTheme .message-form form .message-field .file-emoji .file-upload span {
  color: #fff;
}

.darkTheme .chat-about .chat-about-profile {
  border-bottom-color: #3F4053;
}

.darkTheme .chat-about .chat-about-profile .content h5 {
  color: #fff;
}

.darkTheme .chat-about .activity-meta {
  border-bottom-color: #3F4053;
}

/* ============= Pricing css =============== */
/* ============= Pricing css =============== */
.monthly-pricing-section .section-title {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 60px;
  text-align: center;
}

.monthly-pricing-section .section-title h1 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .monthly-pricing-section .section-title h1 {
    width: 100%;
  }
}

.single-pricing {
  background: #fff;
  -webkit-box-shadow: 0px 10px 35px rgba(210, 210, 210, 0.17);
  -moz-box-shadow: 0px 10px 35px rgba(210, 210, 210, 0.17);
  box-shadow: 0px 10px 35px rgba(210, 210, 210, 0.17);
  border-radius: 5px;
  padding: 55px 30px;
  text-align: center;
  position: relative;
}

@media (max-width: 767px) {
  .single-pricing {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 850px) {
  .single-pricing {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.single-pricing.active {
  -webkit-transform: scale(1.05, 1);
  -moz-transform: scale(1.05, 1);
  -ms-transform: scale(1.05, 1);
  -o-transform: scale(1.05, 1);
  transform: scale(1.05, 1);
  z-index: 2;
  padding-top: 125px;
  padding-bottom: 65px;
  background: #365cf52b;
}

@media (max-width: 767px) {
  .single-pricing.active {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    padding-top: 55px;
    padding-bottom: 55px;
  }
}

.single-pricing.active .popular {
  position: absolute;
  left: 30px;
  top: 65px;
  padding: 5px 15px;
  border-radius: 30px;
  background: #365CF5;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .single-pricing.active .popular {
    top: 15px;
  }
}

.single-pricing .pricing-header h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.single-pricing .pricing-header h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-pricing .pricing-header h3 {
    font-size: 20px;
  }
}

.single-pricing .pricing-header .price {
  border-top: 1px solid rgb(93 101 123 / 35%);
  border-bottom: 1px solid rgb(93 101 123 / 35%);
  margin-bottom: 25px;
}

.single-pricing .pricing-header .price h1 {
  padding: 20px 0px;
}

.single-pricing .pricing-header .price h1 span {
  color: #5d657b;
}

.single-pricing .pricing-body ul {
  margin-bottom: 15px;
}

.single-pricing .pricing-body ul li {
  padding-bottom: 20px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

/* ======= Pricing Table ======= */
/* ======= Pricing Table ======= */
.pricing-table {
  text-align: center;
}

.pricing-table thead tr th {
  border-right: 1px solid #efefef;
  min-width: 150px;
}

.pricing-table thead tr th h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.pricing-table thead tr th h1 {
  color: #365CF5;
}

.pricing-table thead tr th h1 span {
  font-size: 14px;
  color: #5d657b;
  font-weight: 400;
}

.pricing-table tbody tr td {
  vertical-align: middle;
  border-right: 1px solid #3F4053;
  min-width: 150px;
  padding: 20px 10px;
}

.pricing-table tbody tr td:first-child {
  text-align: left;
}

/* ========= Theme Change Css ============= */
/* ========= Theme Change Css ============= */
.darkTheme .single-pricing {
  background: #14142D;
  -webkit-box-shadow: 0px 10px 35px rgba(2, 2, 30, 0.17);
  -moz-box-shadow: 0px 10px 35px rgba(2, 2, 30, 0.17);
  box-shadow: 0px 10px 35px rgba(2, 2, 30, 0.17);
}

.darkTheme .single-pricing .pricing-body ul li {
  color: rgba(255, 255, 255, 0.5);
}

.darkTheme .pricing-table thead tr th {
  border-right-color: rgba(239, 239, 239, 0.2);
}

.darkTheme .pricing-table tbody tr td {
  border-right-color: rgba(239, 239, 239, 0.2);
}

.darkTheme .pricing-table tbody tr td p {
  color: #fff;
}

.darkTheme .pricing-table tbody tr td p i {
  color: #fff;
}

/* ============ Projects Css =========== */
/* ============ Projects Css =========== */
.project-card .card-body {
  padding: 15px 0px;
}

.project-card .card-body .chart-wrapper {
  display: flex;
  align-items: center;
}

.project-card .card-body .chart-wrapper .chart {
  max-width: 70px;
  width: 100%;
  height: 70px;
  position: relative;
  margin-bottom: 25px;
  margin-right: 20px;
}

.project-card .card-body .chart-wrapper .chart span {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card .card-body .chart-wrapper .ldBar-chart {
  position: relative;
}

.project-card .card-body .chart-wrapper .ldBar-chart .baseline {
  stroke: inherit;
  stroke-width: 8px;
  opacity: 0.1;
}

.project-card .card-body .chart-wrapper .ldBar-chart .mainline {
  stroke: inherit;
  stroke-width: 8px;
}

.project-card .card-body .chart-wrapper .ldBar-chart .ldBar-label {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.project-card .card-body .chart-wrapper .chart-body {
  width: 250px;
  margin: auto;
}

.project-card .card-body .chart-wrapper .chart-body .ldBar-label {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  flex-direction: column;
}

.project-card .card-body .chart-wrapper .chart-body .ldBar-label::after {
  content: "Task completed";
  font-size: 14px;
  display: block;
  width: 100%;
  font-weight: 500;
  color: #5d657b;
}

.project-card .card-footer .project-image {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.project-card .card-footer .project-image ul {
  display: flex;
  align-items: center;
}

.project-card .card-footer .project-image ul li {
  width: 28px;
  height: 28px;
  border: 2px solid #fff;
  overflow: hidden;
  margin-left: -10px;
  border-radius: 50%;
}

.project-card .card-footer .project-image ul li:first-child {
  margin-left: 0px;
}

.project-card .card-footer .project-image ul li img {
  width: 100%;
}

.project-card .card-footer .project-image a {
  margin-left: 10px;
  color: #5d657b;
  font-size: 14px;
}

.activity-wrapper ul li {
  display: flex;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
}

.activity-wrapper ul li:last-child {
  padding-bottom: 0px;
}

.activity-wrapper ul li::after {
  content: "";
  width: 2px;
  height: 100%;
  border-left: 1px dashed rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 25px;
  top: 0;
  z-index: -1;
}

@media (max-width: 375px) {
  .activity-wrapper ul li {
    flex-direction: column;
  }

  .activity-wrapper ul li::after {
    display: none;
  }

  .activity-wrapper ul li .icon {
    margin-bottom: 10px;
  }

  .activity-wrapper ul li .content .title {
    flex-wrap: wrap;
  }
}

.activity-wrapper ul li.primary .icon {
  border-color: rgba(54, 92, 245, 0.1);
}

.activity-wrapper ul li.primary .icon i {
  background: rgba(54, 92, 245, 0.1);
  color: #365CF5;
}

.activity-wrapper ul li.danger .icon {
  border-color: rgba(213, 1, 0, 0.1);
}

.activity-wrapper ul li.danger .icon i {
  background: rgba(213, 1, 0, 0.1);
  color: #d50100;
}

.activity-wrapper ul li.success .icon {
  border-color: rgba(33, 150, 83, 0.1);
}

.activity-wrapper ul li.success .icon i {
  background: rgba(33, 150, 83, 0.1);
  color: #219653;
}

.activity-wrapper ul li.orange .icon {
  border-color: rgba(242, 153, 74, 0.1);
}

.activity-wrapper ul li.orange .icon i {
  background: rgba(242, 153, 74, 0.1);
  color: #f2994a;
}

.activity-wrapper ul li .icon {
  max-width: 50px;
  width: 100%;
  height: 50px;
  position: relative;
  border-radius: 50%;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  background: #fff;
  font-size: 20px;
}

.activity-wrapper ul li .icon i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-wrapper ul li .content p a {
  color: #5d657b;
}

.stroke-primary {
  stroke: #365CF5;
}

.stroke-success {
  stroke: #219653;
}

.stroke-orange {
  stroke: #f2994a;
}

.stroke-warning {
  stroke: #f7c800;
}

.stroke-info {
  stroke: #97ca31;
}

.stroke-danger {
  stroke: #d50100;
}

.darkTheme .activity-wrapper ul li::after {
  border-color: rgba(255, 255, 255, 0.1);
}

/* =========== Invoice Css ============= */
/* =========== Invoice Css ============= */
.invoice-card .invoice-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: 1;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .invoice-card .invoice-header {
    flex-direction: column;
  }
}

.invoice-card .invoice-header .invoice-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .invoice-card .invoice-header .invoice-logo {
    order: -1;
    margin-bottom: 30px;
  }
}

.invoice-card .invoice-header .invoice-logo img {
  width: 100%;
}

@media (max-width: 767px) {
  .invoice-card .invoice-header .invoice-date {
    margin-top: 30px;
  }
}

.invoice-card .invoice-header .invoice-date p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}

.invoice-card .invoice-header .invoice-date p span {
  font-weight: 500;
}

.invoice-card .invoice-address {
  padding-top: 30px;
  display: flex;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .invoice-card .invoice-address {
    display: block;
  }
}

.invoice-card .invoice-address .address-item {
  margin-right: 30px;
  min-width: 250px;
}

.invoice-card .invoice-address .address-item h5 {
  margin-bottom: 15px;
}

.invoice-card .invoice-address .address-item h1 {
  margin-bottom: 10px;
  font-size: 24px;
}

.invoice-card .invoice-address .address-item p {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .invoice-card .invoice-action ul li {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .invoice-card .invoice-action ul li a {
    width: 100%;
  }
}

.invoice-table th,
.invoice-table td {
  padding: 10px 8px;
}

.invoice-table .service {
  min-width: 150px;
}

.invoice-table .desc {
  min-width: 150px;
}

.invoice-table .qty {
  min-width: 150px;
}

.invoice-table .amount {
  min-width: 100px;
}

/* ========== Modals Css ============ */
/* ========== Modals Css ============ */
.warning-modal .warning-card .icon {
  font-size: 120px;
  line-height: 1;
}

/* ============== Icons Css ===========*/
/* ============== Icons Css ===========*/
.icons-wrapper .icons,
.icons-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.icons-wrapper .icons>div,
.icons-wrapper .icons li,
.icons-wrapper ul>div,
.icons-wrapper ul li {
  display: flex;
  align-items: center;
  margin: 10px;
  flex-basis: 215px;
}

@media (max-width: 400px) {

  .icons-wrapper .icons>div,
  .icons-wrapper .icons li,
  .icons-wrapper ul>div,
  .icons-wrapper ul li {
    flex-basis: 100%;
  }
}

.icons-wrapper .icons>div i,
.icons-wrapper .icons li i,
.icons-wrapper ul>div i,
.icons-wrapper ul li i {
  max-width: 45px;
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #efefef;
  border-radius: 4px;
  background: transparent;
  color: #1A2142;
  font-size: 20px;
  margin-right: 10px;
}

.icons-wrapper .icons>div span,
.icons-wrapper .icons li span,
.icons-wrapper ul>div span,
.icons-wrapper ul li span {
  color: #1A2142;
  user-select: all;
}

/* ========= Theme Change Css =========== */
/* ========= Theme Change Css =========== */
.darkTheme .icons-wrapper .icons>div i,
.darkTheme .icons-wrapper .icons li i,
.darkTheme .icons-wrapper ul>div i,
.darkTheme .icons-wrapper ul li i {
  color: #fff;
  border-color: #3F4053;
}

.darkTheme .icons-wrapper .icons>div span,
.darkTheme .icons-wrapper .icons li span,
.darkTheme .icons-wrapper ul>div span,
.darkTheme .icons-wrapper ul li span {
  color: #838C9A;
}

/* ============ Calendar Css ============= */
/* ============ Calendar Css ============= */
.calendar-card .fc {
  height: 450px !IMPORTANT;
}

.calendar-card .fc#calendar-full {
  height: 600px;
}

.calendar-card .fc table {
  border: none;
}

.calendar-card .fc .fc-toolbar-title {
  font-size: 16px;
  font-weight: 500;
}

.calendar-card .fc .fc-button {
  background: transparent;
  border: none;
  color: #5d657b;
  text-transform: capitalize;
}

.calendar-card .fc .fc-button:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #365CF5;
}

.calendar-card .fc th {
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-right: 0px;
}

.calendar-card .fc th a {
  color: #5d657b;
  font-weight: 400;
}

.calendar-card .fc .fc-day {
  border-width: 4px;
  background: #fff;
}

.calendar-card .fc .fc-day.fc-day-today .fc-daygrid-day-frame {
  background: #365cf5;
}

.calendar-card .fc .fc-day.fc-day-today .fc-daygrid-day-frame a {
  color: #fff;
}

.calendar-card .fc .fc-day .fc-daygrid-day-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: #f9f9f9;
  border-radius: 6px;
}

.calendar-card .fc .fc-day .fc-daygrid-day-frame a {
  color: #5d657b;
}

.calendar-card .fc-theme-standard td,
.calendar-card .fc-theme-standard th {
  border-color: transparent;
}

/* ========= Theme Change Css ============ */
/* ========= Theme Change Css ============ */
.darkTheme .calendar-card .fc .fc-button {
  color: #fff;
}

.darkTheme .calendar-card .fc th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.darkTheme .calendar-card .fc th a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.darkTheme .calendar-card .fc .fc-day {
  padding: 5px;
  background: #14142D;
}

.darkTheme .calendar-card .fc .fc-day.fc-day-today .fc-daygrid-day-frame {
  background: #365CF5;
}

.darkTheme .calendar-card .fc .fc-day.fc-day-today .fc-daygrid-day-frame a {
  color: #fff;
}

.darkTheme .calendar-card .fc .fc-day .fc-daygrid-day-frame {
  background: #02021E;
}

.darkTheme .calendar-card .fc .fc-day .fc-daygrid-day-frame a {
  color: #efefef;
}

/* =========== Kanban Css ============= */
/* =========== Kanban Css ============= */
.invisible {
  display: none;
}

.kanban-header {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .kanban-header {
    display: block;
  }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
  .kanban-header {
    display: flex;
  }
}

.kanban-header .kanban-header-members {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .kanban-header .kanban-header-members {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
  .kanban-header .kanban-header-members {
    margin-bottom: 0px;
  }
}

.kanban-header .kanban-header-members .members-image {
  padding-left: 20px;
}

.kanban-header .kanban-header-members .members-image img {
  width: 38px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  margin-left: -20px;
}

.kanban-header .kanban-header-members .add-member-button {
  background: transparent;
  border: none;
  font-size: 14px;
  padding-left: 12px;
}

.kanban-header .kanban-header-members .add-member-button i {
  font-size: 12px;
  font-weight: 700;
  padding-right: 4px;
}

.kanban-header .add-task-button button i {
  font-weight: 700;
  padding-right: 4px;
  font-size: 14px;
}

.kanban-card-wrapper .card-wrapper-title {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.kanban-card {
  background: #fff;
  border-radius: 6px;
  border-bottom: 3px solid;
  border-bottom-color: #365CF5;
  box-shadow: 0px 1px 4px rgba(26, 25, 85, 0.08);
  margin-bottom: 24px;
}

.kanban-card .kanban-button {
  padding: 25px 22px;
  text-align: left;
  width: 100%;
}

.kanban-card .kanban-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.kanban-card .priority {
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(54, 92, 245, 0.1);
  color: #365CF5;
}

.kanban-card .tooltip-icon {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background-color: #eff2f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kanban-card .tooltip-icon i {
  font-size: 14px;
  font-weight: 700;
}

.kanban-card h4 {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 12px;
}

.kanban-card .kanban-card-footer {
  margin-bottom: 25px;
  padding: 0px 22px;
}

.kanban-card .kanban-card-footer .more-btn::after {
  display: none;
}

.kanban-card.high {
  border-bottom-color: #365cf5;
}

.kanban-card.high .priority {
  background: rgba(250, 90, 120, 0.1);
  color: #fa5a78;
}

.kanban-card.low {
  border-bottom-color: #ff2423;
}

.kanban-card.low .priority {
  background: rgba(66, 210, 157, 0.1);
  color: #42d29d;
}

.kanban-card.medium {
  border-bottom-color: #9b51e0;
}

.kanban-card.medium .priority {
  background: rgba(155, 81, 224, 0.1);
  color: #9b51e0;
}

.task-details-modal .modal-title,
.add-task-modal .modal-title {
  font-size: 24px;
  font-weight: 600;
}

@media (max-width: 767px) {

  .task-details-modal .modal-title,
  .add-task-modal .modal-title {
    font-size: 20px;
  }
}

.task-details-modal .close-button,
.add-task-modal .close-button {
  position: absolute;
  right: 30px;
  top: 20px;
  color: #5d657b;
}

.task-details-modal .close-button:hover,
.add-task-modal .close-button:hover {
  color: #fa5a78;
}

.task-details-modal .modal-dialog,
.add-task-modal .modal-dialog {
  max-width: 1075px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {

  .task-details-modal .modal-dialog,
  .add-task-modal .modal-dialog {
    max-width: 95%;
  }
}

.task-details-modal .modal-dialog .modal-content,
.add-task-modal .modal-dialog .modal-content {
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

.task-details-modal .input-style-1 input,
.task-details-modal .input-style-1 textarea,
.add-task-modal .input-style-1 input,
.add-task-modal .input-style-1 textarea {
  padding-top: 11px;
  padding-bottom: 11px;
  border-radius: 6px;
}

.task-details-modal .select-style-1 .select-position select,
.add-task-modal .select-style-1 .select-position select {
  padding-top: 11px;
  padding-bottom: 11px;
  border-radius: 6px;
}

.task-details-modal .task-modal-left,
.add-task-modal .task-modal-left {
  padding: 40px;
  position: relative;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .task-details-modal .task-modal-left,
  .add-task-modal .task-modal-left {
    padding-bottom: 0px;
  }
}

@media (max-width: 767px) {

  .task-details-modal .task-modal-left,
  .add-task-modal .task-modal-left {
    padding: 25px;
    padding-bottom: 0px;
  }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {

  .task-details-modal .task-modal-left,
  .add-task-modal .task-modal-left {
    padding: 40px;
    padding-bottom: 0px;
  }
}

.task-details-modal .task-modal-left h5,
.add-task-modal .task-modal-left h5 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 40px;
}

.task-details-modal .task-modal-right,
.add-task-modal .task-modal-right {
  padding: 40px;
  padding-top: 108px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .task-details-modal .task-modal-right,
  .add-task-modal .task-modal-right {
    padding-top: 0px;
  }
}

@media (max-width: 767px) {

  .task-details-modal .task-modal-right,
  .add-task-modal .task-modal-right {
    padding: 25px;
    padding-top: 0px;
  }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {

  .task-details-modal .task-modal-right,
  .add-task-modal .task-modal-right {
    padding: 40px;
    padding-top: 0px;
  }
}

.task-details-modal .task-modal-right .btn,
.add-task-modal .task-modal-right .btn {
  height: 42px;
  align-items: center;
}

.task-details-modal .modal-dialog {
  max-width: 820px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .task-details-modal .modal-dialog {
    max-width: 95%;
  }
}

.task-details-modal .modal-body {
  padding: 40px;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .task-details-modal .modal-body {
    padding: 25px;
    padding-bottom: 5px;
  }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
  .task-details-modal .modal-body {
    padding: 40px;
    padding-bottom: 20px;
  }
}

.task-details-modal .priority {
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  margin-left: 15px;
}

.task-details-modal .desc {
  font-size: 18px;
  margin-bottom: 18px;
}

.task-details-modal .modal-meta-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -25px;
}

.task-details-modal .modal-meta-wrapper .modal-meta {
  padding: 0 25px;
  border-right: 1px solid #efefef;
  margin-bottom: 20px;
}

.task-details-modal .modal-meta-wrapper .modal-meta:last-child {
  border: none;
}

/* ========= Theme Change Css =========== */
/* ========= Theme Change Css =========== */
.darkTheme .kanban-header {
  background: #14142D;
  border-color: #3F4053;
}

.darkTheme .kanban-header .kanban-header-members .members-image img {
  border-color: #3F4053;
}

.darkTheme .kanban-card {
  background: #14142D;
}

.darkTheme .kanban-card .tooltip-icon {
  background-color: #02021E;
}

.darkTheme .add-task-modal .modal-content {
  background: #14142D;
}

.darkTheme .task-details-modal .modal-content {
  background: #14142D;
}

.darkTheme .task-details-modal .modal-meta-wrapper .modal-meta {
  border-color: rgba(239, 239, 239, 0.5);
}

/* =========== File Manager css =========== */
/* =========== File Manager css =========== */
.file-manager-cards-wrapper .icon-card .content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.file-manager-cards-wrapper .icon-card .content .file-size {
  font-size: 14px;
  font-weight: 600;
}

.recent-files .recent-file-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.recent-files .recent-file-item:last-child {
  margin-bottom: 0px;
}

.recent-files .recent-file-item .icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f6f6f8;
  margin-right: 14px;
}

.recent-files .recent-file-item h6 {
  font-size: 16px;
  font-weight: 500;
}

.file-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

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

.file-item .icon {
  max-width: 40px;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #f6f6f8;
  margin-right: 15px;
}

.file-item .file-size-wrapper {
  margin-top: 12px;
  position: relative;
  width: 100%;
  height: 5px;
  border-radius: 30px;
  background: #e6e9ed;
  overflow: hidden;
}

.file-item .file-size-wrapper .file-size {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 30px;
}

.file-card .card-body {
  display: flex;
  align-items: center;
}

.file-card .file-chart-content {
  padding-left: 15px;
}

.file-card .file-chart-content h5 {
  font-size: 20px;
  font-weight: 600;
}

.file-card .chart-wrapper {
  display: flex;
  align-items: center;
}

.file-card .chart-wrapper .ldBar-chart {
  position: relative;
}

.file-card .chart-wrapper .ldBar-chart .baseline {
  stroke: inherit;
  stroke-width: 10px;
  opacity: 0.1;
}

.file-card .chart-wrapper .ldBar-chart .mainline {
  stroke: inherit;
  stroke-width: 10px;
}

.file-card .chart-wrapper .ldBar-chart .ldBar-label {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.file-card .chart-wrapper .chart-body {
  width: 125px;
}

@media (min-width: 1400px) and (max-width: 1600px) {
  .file-card .chart-wrapper .chart-body {
    width: 115px;
  }
}

.file-card .chart-wrapper .chart-body .ldBar-label {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #000;
}

.file-card .chart-wrapper .chart-body .ldBar-label:after {
  content: "%";
}

.file-card .clean-button {
  position: absolute;
  right: -26px;
  top: 50%;
  margin-top: -10px;
  transform: rotate(-90deg);
  background: #3959db;
  color: #fff;
  border-radius: 5px 5px 0px 0px;
  border: none;
  padding: 4px 20px;
}

/* ======= Theme Change ========== */
/* ======= Theme Change ========== */
.darkTheme .recent-files .recent-file-item .icon {
  background: #02021E;
}

.darkTheme .file-item .file-size-wrapper,
.darkTheme .file-item .icon {
  background: #02021E;
}

.darkTheme .file-card .chart-wrapper .chart-body .ldBar-label {
  color: #fff;
}

/* =========== Sidebar css =========== */
/* =========== Sidebar css =========== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 999999;
}

#preloader .spinner {
  width: 80px;
  height: 80px;
  border: 5px solid #365CF5;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spinner 0.9s linear infinite;
}

@keyframes spinner {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ========== Option Css ============== */
/* ========== Option Css ============== */
.option-btn {
  position: fixed;
  bottom: 30px;
  right: 40px;
  width: 55px;
  height: 55px;
  background: #365CF5;
  font-size: 24px;
  color: #fff;
  border: none;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  z-index: 999;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-btn i {
  animation: rotate 2s infinite linear;
}

.rightSidebar .option-btn {
  right: auto;
  left: 50px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.option-overlay {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  right: 0;
  top: 0;
  position: fixed;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  z-index: 9999;
}

.option-overlay.show {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.option-header {
  border-bottom: 1px solid #e2e2e2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.option-header h5 {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.option-header p {
  font-size: 12px;
  line-height: 1.2;
}

.option-header .option-btn-close {
  background: none;
  border: 0px;
  margin-left: 5px;
}

.option-header .option-btn-close i {
  font-weight: 700;
  font-size: 14px;
}

.option-box {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  overflow-y: auto;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  padding: 20px;
  z-index: 99999;
}

.option-box.show {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.option-box li {
  margin-right: 15px;
}

.option-box li:last-child {
  margin-right: 0px;
}

.option-box li button {
  display: block;
  background: none;
  border: none;
  padding: 8px 8px 8px 20px;
  position: relative;
}

.option-box li button::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #365CF5;
  background: transparent;
  left: 0;
  top: calc(50% - 6px);
  border-radius: 50%;
}

.option-box li button.active {
  color: #365CF5;
}

.option-box li button.active::before {
  background: #365CF5;
}

.option-box .promo-box {
  max-width: 100%;
}

.option-box .promo-box h3 {
  font-size: 16px;
}

.option-box .promo-box p {
  font-size: 13px;
}

/* =========== Sidebar css =========== */
/* =========== Sidebar css =========== */
.sidebar-nav-wrapper {
  background: #fff;
  width: 250px;
  padding: 20px 0px;
  height: 100vh;
  position: fixed;
  overflow-y: scroll;
  overflow-x: hidden;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0px 0px 30px 0px rgba(200, 208, 216, 0.3);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .sidebar-nav-wrapper {
    -webkit-transform: translateX(-260px);
    -moz-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    -o-transform: translateX(-260px);
    transform: translateX(-260px);
  }
}

.sidebar-nav-wrapper.active {
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .sidebar-nav-wrapper.active {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
}

.sidebar-nav-wrapper .navbar-logo {
  padding: 0 25px;
  margin-bottom: 30px;
  margin-top: 10px;
}

.sidebar-nav-wrapper .navbar-logo img {
  max-width: 160px;
}

.sidebar-nav-wrapper .sidebar-nav .divider {
  padding: 5px 25px;
  width: 100%;
}

.sidebar-nav-wrapper .sidebar-nav .divider hr {
  height: 1px;
  background: #E9EEF1;
}

.sidebar-nav-wrapper .sidebar-nav ul.collapsing {
  transition: none;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item {
  position: relative;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children>a {
  color: #1A2142;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children>a:not(.collapsed) .icon {
  color: #365CF5;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children>a::after {
  content: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.34306 7.76387L9.02356 3.8071C9.32923 3.47851 9.11273 2.91666 8.68048 2.91666L1.31947 2.91666C0.887218 2.91666 0.670743 3.47851 0.976393 3.8071L4.6569 7.76387C4.8464 7.96758 5.15356 7.96758 5.34306 7.76387Z' fill='%239AA4CA'/%3E%3C/svg%3E%0A");
  position: absolute;
  right: 25px;
  top: 11px;
  font-size: 12px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children>a.collapsed {
  color: #9AA4CA;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children>a.collapsed::before {
  opacity: 0;
  visibility: hidden;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children>a.collapsed::after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul {
  padding: 10px 24px 40px 57px;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul li {
  margin-bottom: 12px;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul li:last-child {
  margin-bottom: 0px;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul li a {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  display: flex;
  align-items: center;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul li a.active,
.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul li a:hover {
  color: #1A2142;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul li a i {
  font-size: 16px;
  margin-right: 15px;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul li a span.text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul li a span.pro-badge {
  background: #365CF5;
  color: #fff;
  padding: 2.5px 7px;
  border-radius: 30px;
  font-size: 10px;
  line-height: 13px;
  font-weight: 600;
  margin-left: 10px;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item a {
  display: flex;
  align-items: center;
  color: #9AA4CA;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 7px 25px;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item a span.text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item a span.pro-badge {
  background: #365CF5;
  color: #fff;
  padding: 2.5px 7px;
  border-radius: 30px;
  font-size: 10px;
  line-height: 13px;
  font-weight: 600;
  margin-left: 10px;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item a .icon {
  margin-right: 12px;
  margin-top: -4px;
  font-size: 18px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item a .icon svg {
  fill: currentColor;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.active>a,
.sidebar-nav-wrapper .sidebar-nav ul .nav-item.active>a.collapsed,
.sidebar-nav-wrapper .sidebar-nav ul .nav-item:hover>a,
.sidebar-nav-wrapper .sidebar-nav ul .nav-item:hover>a.collapsed {
  color: #1A2142;
}

.sidebar-nav-wrapper .sidebar-nav ul .nav-item.active>a .icon,
.sidebar-nav-wrapper .sidebar-nav ul .nav-item.active>a.collapsed .icon,
.sidebar-nav-wrapper .sidebar-nav ul .nav-item:hover>a .icon,
.sidebar-nav-wrapper .sidebar-nav ul .nav-item:hover>a.collapsed .icon {
  color: #365CF5;
}

.sidebar-nav-wrapper.style-2 .sidebar-nav ul .nav-item.nav-item-has-children ul li a.active,
.sidebar-nav-wrapper.style-2 .sidebar-nav ul .nav-item.nav-item-has-children ul li a:hover {
  color: #fff;
  border-color: #365CF5;
  background: #365CF5;
}

.sidebar-nav-wrapper.style-2 .sidebar-nav ul .nav-item.nav-item-has-children ul li a.active span.pro-badge,
.sidebar-nav-wrapper.style-2 .sidebar-nav ul .nav-item.nav-item-has-children ul li a:hover span.pro-badge {
  background: #fff;
  color: #365CF5;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 11;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
}

@media only screen and (min-width: 1400px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .overlay {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .overlay.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

.main-wrapper {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin-left: 250px;
  min-height: 100vh;
  padding-bottom: 85px;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .main-wrapper {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .main-wrapper {
    padding-bottom: 110px;
  }
}

.main-wrapper.active {
  margin-left: 0;
}

.main-wrapper .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 767px) {
  .main-wrapper .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.main-wrapper .footer {
  padding: 20px 0;
  justify-items: flex-end;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.main-wrapper .footer .copyright p a {
  color: inherit;
}

.main-wrapper .footer .copyright p a:hover {
  color: #365CF5;
}

@media (max-width: 767px) {
  .main-wrapper .footer .terms {
    margin-bottom: 10px;
    text-align: center;
  }
}

.main-wrapper .footer .terms a {
  color: #5d657b;
}

.main-wrapper .footer .terms a:hover {
  color: #365CF5;
}

.promo-box {
  background: #F5F8FC;
  padding: 15px 18px;
  text-align: center;
  max-width: 210px;
  margin: 0 auto;
  margin-top: 200px;
  border-radius: 14px;
}

.promo-box .promo-icon {
  max-width: 82px;
  width: 100%;
  height: 82px;
  border-radius: 50%;
  margin: -58px auto 12px;
  border: 5px solid #fff;
}

.promo-box h3 {
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 7px;
}

.promo-box p {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 15px;
}

.promo-box .main-btn {
  border-radius: 43px;
  padding: 7px 12px;
  width: 100%;
  justify-content: center;
}

/* ====== Theme Change CSS ====== */
/* ====== Theme Change CSS ====== */
.darkTheme .sidebar-nav-wrapper {
  background: #14142D;
  box-shadow: 0px 0px 30px 0px rgba(6, 10, 24, 0.3);
}

.darkTheme .sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children>a {
  color: #fff;
}

.darkTheme .sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children>a::after {
  content: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.34306 7.76387L9.02356 3.8071C9.32923 3.47851 9.11273 2.91666 8.68048 2.91666L1.31947 2.91666C0.887218 2.91666 0.670743 3.47851 0.976393 3.8071L4.6569 7.76387C4.8464 7.96758 5.15356 7.96758 5.34306 7.76387Z' fill='%23FFFFFF'/%3E%3C/svg%3E%0A");
}

.darkTheme .sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children>a.collapsed {
  color: #838C9A;
}

.darkTheme .sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children>a.collapsed::after {
  content: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.34306 7.76387L9.02356 3.8071C9.32923 3.47851 9.11273 2.91666 8.68048 2.91666L1.31947 2.91666C0.887218 2.91666 0.670743 3.47851 0.976393 3.8071L4.6569 7.76387C4.8464 7.96758 5.15356 7.96758 5.34306 7.76387Z' fill='%23838C9A'/%3E%3C/svg%3E%0A");
}

.darkTheme .sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul li a.active,
.darkTheme .sidebar-nav-wrapper .sidebar-nav ul .nav-item.nav-item-has-children ul li a:hover {
  color: #fff;
}

.darkTheme .sidebar-nav-wrapper .sidebar-nav ul .nav-item a {
  color: #838C9A;
}

.darkTheme .sidebar-nav-wrapper .sidebar-nav ul .nav-item.active>a,
.darkTheme .sidebar-nav-wrapper .sidebar-nav ul .nav-item.active>a.collapsed,
.darkTheme .sidebar-nav-wrapper .sidebar-nav ul .nav-item:hover>a,
.darkTheme .sidebar-nav-wrapper .sidebar-nav ul .nav-item:hover>a.collapsed {
  color: #fff;
}

.darkTheme .sidebar-nav-wrapper.style-2 {
  background: #090e34;
}

.darkTheme .sidebar-nav-wrapper.style-2 .sidebar-nav ul .nav-item.nav-item-has-children>a {
  color: #fff;
}

.darkTheme .sidebar-nav-wrapper.style-2 .sidebar-nav ul .nav-item.nav-item-has-children>a.collapsed {
  color: #838C9A;
}

.darkTheme .sidebar-nav-wrapper.style-2 .sidebar-nav ul .nav-item.nav-item-has-children ul li a.active,
.darkTheme .sidebar-nav-wrapper.style-2 .sidebar-nav ul .nav-item.nav-item-has-children ul li a:hover {
  color: #fff;
  border-color: #365CF5;
  background: #365CF5;
}

.darkTheme .sidebar-nav-wrapper.style-2 .sidebar-nav ul .nav-item a {
  color: #838C9A;
}

.darkTheme .sidebar-nav-wrapper.style-2 .sidebar-nav ul .nav-item.active>a,
.darkTheme .sidebar-nav-wrapper.style-2 .sidebar-nav ul .nav-item.active>a.collapsed,
.darkTheme .sidebar-nav-wrapper.style-2 .sidebar-nav ul .nav-item:hover>a,
.darkTheme .sidebar-nav-wrapper.style-2 .sidebar-nav ul .nav-item:hover>a.collapsed {
  color: #fff;
}

.darkTheme .promo-box {
  background: rgba(255, 255, 255, 0.07);
}

.darkTheme .promo-box .promo-icon {
  border: 5px solid #14142D;
}

/* ========== Layout Change ============ */
/* ========== Layout Change ============ */
.rightSidebar .sidebar-nav-wrapper {
  left: auto;
  right: 0;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .rightSidebar .sidebar-nav-wrapper {
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    -ms-transform: translateX(260px);
    -o-transform: translateX(260px);
    transform: translateX(260px);
  }
}

.rightSidebar .sidebar-nav-wrapper.active {
  -webkit-transform: translateX(260px);
  -moz-transform: translateX(260px);
  -ms-transform: translateX(260px);
  -o-transform: translateX(260px);
  transform: translateX(260px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .rightSidebar .sidebar-nav-wrapper.active {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
}

.rightSidebar .overlay {
  left: auto;
  right: 0;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}

.rightSidebar .overlay.active {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.rightSidebar .main-wrapper {
  margin-left: auto;
  margin-right: 250px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .rightSidebar .main-wrapper {
    margin-right: 0;
  }
}

.rightSidebar .main-wrapper.active {
  margin-right: 0;
}

.rightSidebar .main-wrapper .header .row {
  flex-direction: row-reverse;
}

.rightSidebar .main-wrapper .header .header-left {
  flex-direction: row-reverse;
}

.rightSidebar .main-wrapper .header .header-left .menu-toggle-btn {
  margin-right: 0px;
  margin-left: 20px;
}

.rightSidebar .main-wrapper .header .header-right {
  flex-direction: row-reverse;
}

.rightSidebar .main-wrapper .header .header-right .profile-box .info {
  flex-direction: row-reverse;
}

.rightSidebar .main-wrapper .header .header-right .profile-box .info .image {
  margin-right: 16px;
  margin-left: 0;
}

/* sub heading css */
.db__subheading {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.darkTheme .pagination .page-link {
  background: #02021E;
  color: #fff;
}

.darkTheme .card-wrapper {
  background: #02021E;
  color: #fff;
}

.icon img {
  max-width: 30px;
}

.flag_countries {
  display: flex;
  align-items: center;
  gap: 15px;
}

.flag_countries img {
  max-width: 30px;
}

.cirlce_icon {
  position: absolute;
  right: 25px;
}

.browser_icon img {
  max-width: 30px;
}

.browser_icon {
  align-items: center;
  display: flex;
  gap: 10px;
}

.avatar {
  height: 35px;
  width: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #fff;
}

.actions button {
  padding: 6px 12px;
  margin-right: 8px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
}

.buy-btn {
  background-color: #365cf540;
  color: #365cf5;
}

.trade-btn {
  background-color: #e354db12;
  color: #e354db;
  border: 1px solid #e5e7eb;
}

.price-graph img {
  max-width: 45px;
}

/* product details css */
/* product details css */

.img-item img {
  width: 100%;
  display: block;
  border-radius: 7px;
}

.img-display {
  overflow: hidden;
}

.img-showcase {
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
}

.img-showcase img {
  width: 100%;
  border-radius: 7px;
}

.img-select {
  display: flex;
}

.img-item {
  margin: 0.3rem;
}

.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3) {
  margin-right: 0;
}

.img-item:hover {
  opacity: 0.8;
}

.product-content {
  padding: 2rem 1rem;
}

.product-link {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  background: #256eff;
  color: #fff;
  padding: 0 0.3rem;
  transition: all 0.5s ease;
}

.product-link:hover {
  opacity: 0.9;
}

.product-rating {
  color: #fe7a36;
}

.product-rating span {
  font-weight: 600;
  color: #252525;
}

.product-price {
  margin: 1rem 0;
  font-size: 1rem;
  font-weight: 700;
}

.product-price span {
  font-weight: 400;
}

.last-price span {
  color: #f64749;
  text-decoration: line-through;
}

.new-price span {
  color: #256eff;
}

.product-detail h2 {
  text-transform: capitalize;
  color: #12263a;
  padding-bottom: 0.6rem;
}

.product-detail ul {
  margin: 1rem 0;
  font-size: 0.9rem;
}

.product-detail ul li {
  margin: 0;
  list-style: none;
  margin: 10px 0px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.product-detail ul li i {
  font-size: 15px;
  color: #365cf5;
  margin-right: 10px;
}

.product-detail ul li span {
  font-weight: 400;
}

.purchase-info {
  margin: 1.5rem 0;
}

.purchase-info input,
.purchase-info .btn {
  border: 1.5px solid #ddd;
  border-radius: 25px;
  text-align: center;
  padding: 0.45rem 0.8rem;
  outline: 0;
  margin-right: 0.2rem;
  margin-bottom: 1rem;
}

.purchase-info input {
  width: 90px;
}

.purchase-info .btn {
  cursor: pointer;
  color: #fff;
}

.purchase-info .btn:first-of-type {
  background: #256eff;
}

.purchase-info .btn:last-of-type {
  background: #f64749;
}

.purchase-info .btn:hover {
  opacity: 0.9;
}

.social-links {
  display: flex;
  align-items: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #5d5a5a26;
  margin: 0 0.2rem;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.5s ease;
}

.social-links a:hover {
  background: #365cf5;
  border-color: transparent;
  color: #fff;
}

.discription {
  background: #fff;
  box-sizing: border-box;
  padding: 25px 25px;
  position: relative;
  border-radius: 7px;
}


@media screen and (min-width: 992px) {
  .product-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
  }

  .product-imgs {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .product-content {
    padding-top: 0;
  }
}

/* invoice-card  create css */
/* invoice-card  create css */

.invoice-card label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}


.invoice-card table {
  width: 100%;
  margin-top: 30px;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
}

.invoice-card th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.invoice-card td input {
  border: 1px solid #c0c3c778;
  border-radius: 5px;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  color: #5d657b;
  background: transparent;
}

.invoice-card .summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.invoice-card .actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.form-container form {
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
}

.form-container form.open .calendar-popup {
  opacity: 1;
}

.form-container form i {
  padding: 0 10px 0 15px;
  position: absolute;
  right: 15px;
  bottom: 14px;
}

.form-container form input {
  background-color: transparent;
  border: none;
  border: 1px solid #e5e5e5;
  padding: 10px 17px;
  border-radius: 5px;
}

.form-container .calendar-popup {
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  padding: 10px;
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  transition: all 0.1s linear;
  width: 350px;
}

.form-container .calendar-popup .month-and-year {
  align-items: center;
  display: flex;
  text-align: center;
  text-transform: uppercase;
}

.billing-box input {
  margin-bottom: 20px;
  padding: 10px;
  width: 100%;
  border-radius: 3px;
  border: none;
  border: 1px solid #6c757d6e;
  background: transparent;
}

.billing-box select {
  margin-bottom: 20px;
  padding: 10px 20px;
  width: 100%;
  border-radius: 3px;
  border: none;
  border: 1px solid #6c757d6e;
  background: transparent;
  color: #828b8b;
}

.legend {
  margin-top: 10px;
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 14px;
  color: #6c757d;
}

.legend div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.total-center {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: bold;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.chart-container {
  position: relative;
  height: 150px;
  margin-bottom: 20px;
}

.chart-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 600;
}

.table td i {
  margin-right: 5px;
}

#myChart1 {
  width: 120px;
}

#myChart2 {
  width: 120px;
}

#myChart3 {
  width: 120px;
}

#myChart4 {
  width: 120px;
}

#myChart5 {
  width: 120px;
}

/* Automation SEO — contenus : ligne dont l’article a une URL (transfert WP) */
.aseo-content-table tbody tr.aseo-row-transmitted td {
  background-color: #ebfbdc;
}
.aseo-content-table.table-hover > tbody > tr.aseo-row-transmitted:hover > td {
  background-color: #d8f0c8;
}