/*--------------------------------------------------------------
# Skin Css
--------------------------------------------------------------*/

:root {
  --primary: #ed701b;
  --secondary: #709fba;
  --primary-hover: #e32c32;
  --primary-dark: #e32c32;
  --rgba-primary-1: rgba(237, 112, 27, 0.1);
  --rgba-primary-2: rgba(237, 112, 27, 0.2);
  --rgba-primary-3: rgba(237, 112, 27, 0.3);
  --rgba-primary-4: rgba(237, 112, 27, 0.4);
  --rgba-primary-5: rgba(237, 112, 27, 0.5);
  --rgba-primary-6: rgba(237, 112, 27, 0.6);
  --rgba-primary-7: rgba(237, 112, 27, 0.7);
  --rgba-primary-8: rgba(237, 112, 27, 0.8);
  --rgba-primary-9: rgba(237, 112, 27, 0.9);
  --primary-gradient: linear-gradient(90deg, rgba(239, 123, 25, 1) 0%, rgba(228, 38, 35, 1) 100%);
  --primary-light-gradient: linear-gradient(90deg, rgb(255, 237, 222) 0%, rgb(255, 221, 220) 100%);
  --bs-secondary-rgb: 112, 159, 186;
  --bs-info-rgb: 180, 141, 211;
  --bs-success-rgb: 15, 102, 13;
  --bs-warning-rgb: 255, 167, 85;
  --bs-danger-rgb: 247, 43, 80;
  --bs-light-rgb: 200, 200, 200;
  --bs-dark-rgb: 110, 110, 110;
  --bs-white-rgb: 255, 255, 255;
  --font-family-base: "Poppins", sans-serif;
  --font-family-title: "Roboto", sans-serif;
  --title: #000;
  --text: #777;
  --bs-body-color: #9ca096;
  --bs-body-bg: #ffe9dd;
}

ul{
  padding: 0;
}
li{
  list-style: none;
}
.text-primary {
  color: var(--primary) !important;
}

::selection {
  background-color: var(--primary);
  color: #fff;
}

.card-title {
  margin-bottom: 0;
}

/* Btn Design */

.btn.btn-success,
.btn.btn-secondary,
.btn.btn-warning,
.btn.btn-primary,
.btn.btn-danger,
.btn.btn-info {
  color: #fff;
}


.btn-transparent {
  background-color: transparent;
}

.btn.btn-outline-secondary:hover,
.btn.btn-outline-success:hover,
.btn.btn-outline-danger:hover,
.btn.btn-outline-info:hover {
  color: #fff;
}

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

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
  border-color: var(--primary-hover);
  background-color: var(--primary-hover);
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem var(--rgba-primary-5);
}

.btn-primary:disabled,
.btn-primary.disabled {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-link {
  color: var(--primary);
  text-decoration: none;
}

.btn-link:hover {
  color: var(--primary-hover);
}

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

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

.sharp {
  min-width: 40px;
  padding: 7px;
  height: 40px;
  min-height: 40px;
}

.sharp.btn-xs {
  padding: 3px;
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
}

.btn-block {
  display: block;
  width: 100%;
}

.light.tp-btn {
  background-color: transparent;
}

.light.btn-default {
  background: #ADB6C7;
}

.light.btn-success {
  background-color: #e7fbe6;
  border-color: #e7fbe6;
  color: #68e365;
}

.light.btn-success g [fill] {
  fill: #68e365;
}

[data-theme-version="dark"] .light.btn-success {
  background-color: rgba(104, 227, 101, 0.1);
  border-color: transparent;
}

.light.btn-success:hover {
  background-color: #68e365;
  border-color: #68e365;
  color: #fff;
}

.light.btn-success:hover g [fill] {
  fill: #fff;
}

.light.btn-info {
  background-color: #f1e9f7;
  border-color: #f1e9f7;
  color: #b48dd3;
}

.light.btn-info g [fill] {
  fill: #b48dd3;
}

[data-theme-version="dark"] .light.btn-info {
  background-color: rgba(180, 141, 211, 0.1);
  border-color: transparent;
}

.light.btn-info:hover {
  background-color: #b48dd3;
  border-color: #b48dd3;
  color: #fff;
}

.light.btn-info:hover g [fill] {
  fill: #fff;
}

.light.btn-primary {
  background-color: var(--rgba-primary-1);
  border-color: var(--rgba-primary-1);
  color: var(--primary);
}

.light.btn-primary g [fill] {
  fill: var(--primary);
}

[data-theme-version="dark"] .light.btn-primary {
  background-color: var(--rgba-primary-1);
  border-color: transparent;
  color: #fff;
}

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

.light.btn-primary:hover g [fill] {
  fill: #fff;
}

.light.btn-secondary {
  background-color: #dee9ef;
  border-color: #dee9ef;
  color: #709fba;
}

.light.btn-secondary g [fill] {
  fill: #709fba;
}

[data-theme-version="dark"] .light.btn-secondary {
  background-color: rgba(112, 159, 186, 0.5);
  border-color: transparent;
  color: #fff;
}

.light.btn-secondary:hover {
  background-color: #709fba;
  border-color: #709fba;
  color: #fff;
}

.light.btn-secondary:hover g [fill] {
  fill: #fff;
}

.light.btn-warning {
  background-color: #fff6ee;
  border-color: #fff6ee;
  color: #ffa755;
}

.light.btn-warning g [fill] {
  fill: #ffa755;
}

[data-theme-version="dark"] .light.btn-warning {
  background-color: rgba(255, 167, 85, 0.1);
  border-color: transparent;
}

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

.light.btn-warning:hover g [fill] {
  fill: #fff;
}

.light.btn-danger {
  background-color: #fee6ea;
  border-color: #fee6ea;
  color: #f72b50;
}

.light.btn-danger g [fill] {
  fill: #f72b50;
}

[data-theme-version="dark"] .light.btn-danger {
  background-color: rgba(247, 43, 80, 0.15);
  border-color: transparent;
}

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

.light.btn-danger:hover g [fill] {
  fill: #fff;
}

.light.btn-dark {
  background-color: #eeeeee;
  border-color: #eeeeee;
  color: #6e6e6e;
}

.light.btn-dark g [fill] {
  fill: #6e6e6e;
}

[data-theme-version="dark"] .light.btn-dark {
  background-color: rgba(110, 110, 110, 0.35);
  border-color: transparent;
  color: #fff;
}

.light.btn-dark:hover {
  background-color: #6e6e6e;
  border-color: #6e6e6e;
  color: #fff;
}

.light.btn-dark:hover g [fill] {
  fill: #fff;
}

.btn.tp-btn {
  background-color: transparent;
  border-color: transparent;
}

.btn.tp-btn.btn-default {
  background: #ADB6C7;
}

.btn.tp-btn.btn-success {
  color: #68e365;
}

.btn.tp-btn.btn-success g [fill] {
  fill: #68e365;
}

.btn.tp-btn.btn-success:hover {
  background-color: #68e365;
  border-color: #68e365;
  color: #fff;
}

.btn.tp-btn.btn-success:hover g [fill] {
  fill: #fff;
}

.btn.tp-btn.btn-info {
  color: #b48dd3;
}

.btn.tp-btn.btn-info g [fill] {
  fill: #b48dd3;
}

.btn.tp-btn.btn-info:hover {
  background-color: #b48dd3;
  border-color: #b48dd3;
  color: #fff;
}

.btn.tp-btn.btn-info:hover g [fill] {
  fill: #fff;
}

.btn.tp-btn.btn-primary {
  color: var(--primary);
}

.btn.tp-btn.btn-primary g [fill] {
  fill: var(--primary);
}

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

.btn.tp-btn.btn-primary:hover g [fill] {
  fill: #fff;
}

.btn.tp-btn.btn-secondary {
  color: #709fba;
}

.btn.tp-btn.btn-secondary g [fill] {
  fill: #709fba;
}

.btn.tp-btn.btn-secondary:hover {
  background-color: #709fba;
  border-color: #709fba;
  color: #fff;
}

.btn.tp-btn.btn-secondary:hover g [fill] {
  fill: #fff;
}

.btn.tp-btn.btn-warning {
  color: #ffa755;
}

.btn.tp-btn.btn-warning g [fill] {
  fill: #ffa755;
}

.btn.tp-btn.btn-warning:hover {
  background-color: #ffa755;
  border-color: #ffa755;
  color: #fff;
}

.btn.tp-btn.btn-warning:hover g [fill] {
  fill: #fff;
}

.btn.tp-btn.btn-danger {
  color: #f72b50;
}

.btn.tp-btn.btn-danger g [fill] {
  fill: #f72b50;
}

.btn.tp-btn.btn-danger:hover {
  background-color: #f72b50;
  border-color: #f72b50;
  color: #fff;
}

.btn.tp-btn.btn-danger:hover g [fill] {
  fill: #fff;
}

.btn.tp-btn.btn-light {
  color: #6e6e6e;
}

.btn.tp-btn.btn-light g [fill] {
  fill: #6e6e6e;
}

.btn.tp-btn.btn-light:hover {
  background-color: #c8c8c8;
  border-color: #c8c8c8;
  color: #6e6e6e;
}

.btn.tp-btn.btn-light:hover g [fill] {
  fill: #fff;
}

.btn.tp-btn.btn-dark {
  color: #6e6e6e;
}

.btn.tp-btn.btn-dark g [fill] {
  fill: #6e6e6e;
}

.btn.tp-btn.btn-dark:hover {
  background-color: #6e6e6e;
  border-color: #6e6e6e;
  color: #fff;
}

.btn.tp-btn.btn-dark:hover g [fill] {
  fill: #fff;
}

.btn.tp-btn-light {
  background-color: transparent;
  border-color: transparent;
}

.btn.tp-btn-light.btn-success {
  color: #68e365;
}

.btn.tp-btn-light.btn-success g [fill] {
  fill: #68e365;
}

.btn.tp-btn-light.btn-success:hover {
  background-color: #e7fbe6;
  border-color: #e7fbe6;
  color: #68e365;
}

.btn.tp-btn-light.btn-success:hover g [fill] {
  fill: #68e365;
}

.btn.tp-btn-light.btn-info {
  color: #b48dd3;
}

.btn.tp-btn-light.btn-info g [fill] {
  fill: #b48dd3;
}

.btn.tp-btn-light.btn-info:hover {
  background-color: #f1e9f7;
  border-color: #f1e9f7;
  color: #b48dd3;
}

.btn.tp-btn-light.btn-info:hover g [fill] {
  fill: #b48dd3;
}

.btn.tp-btn-light.btn-light {
  color: #c8c8c8;
}

.btn.tp-btn-light.btn-light:hover {
  background-color: #c8c8c8;
  border-color: #c8c8c8;
  color: #545353;
}

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

.btn.tp-btn-light.btn-primary g [fill] {
  fill: var(--primary);
}

.btn.tp-btn-light.btn-primary:hover {
  background-color: var(--rgba-primary-1);
  border-color: var(--rgba-primary-1);
  color: var(--primary);
}

.btn.tp-btn-light.btn-primary:hover g [fill] {
  fill: var(--primary);
}

.btn.tp-btn-light.btn-secondary {
  color: #709fba;
}

.btn.tp-btn-light.btn-secondary g [fill] {
  fill: #709fba;
}

.btn.tp-btn-light.btn-secondary:hover {
  background-color: #dee9ef;
  border-color: #dee9ef;
  color: #709fba;
}

.btn.tp-btn-light.btn-secondary:hover g [fill] {
  fill: #709fba;
}

.btn.tp-btn-light.btn-warning {
  color: #ffa755;
}

.btn.tp-btn-light.btn-warning g [fill] {
  fill: #ffa755;
}

.btn.tp-btn-light.btn-warning:hover {
  background-color: #fff6ee;
  border-color: #fff6ee;
  color: #ffa755;
}

.btn.tp-btn-light.btn-warning:hover g [fill] {
  fill: #ffa755;
}

.btn.tp-btn-light.btn-danger {
  color: #f72b50;
}

.btn.tp-btn-light.btn-danger g [fill] {
  fill: #f72b50;
}

.btn.tp-btn-light.btn-danger:hover {
  background-color: #fee6ea;
  border-color: #fee6ea;
  color: #f72b50;
}

.btn.tp-btn-light.btn-danger:hover g [fill] {
  fill: #fff;
}

.btn.tp-btn-light.btn-dark {
  color: #6e6e6e;
}

.btn.tp-btn-light.btn-dark g [fill] {
  fill: #6e6e6e;
}

.btn.tp-btn-light.btn-dark:hover {
  background-color: #eeeeee;
  border-color: #eeeeee;
  color: #6e6e6e;
}

.btn.tp-btn-light.btn-dark:hover g [fill] {
  fill: #fff;
}

.shadow.btn-primary {
  -webkit-box-shadow: 0 5px 15px 0 var(--rgba-primary-2) !important;
  box-shadow: 0 5px 15px 0 var(--rgba-primary-2) !important;
}

.shadow.btn-secondary {
  -webkit-box-shadow: 0 5px 15px 0 rgba(112, 159, 186, 0.2) !important;
  box-shadow: 0 5px 15px 0 rgba(112, 159, 186, 0.2) !important;
}

.shadow.btn-warning {
  -webkit-box-shadow: 0 5px 15px 0 rgba(255, 167, 85, 0.2) !important;
  box-shadow: 0 5px 15px 0 rgba(255, 167, 85, 0.2) !important;
}

.shadow.btn-danger {
  -webkit-box-shadow: 0 5px 15px 0 rgba(247, 43, 80, 0.2) !important;
  box-shadow: 0 5px 15px 0 rgba(247, 43, 80, 0.2) !important;
}

.shadow.btn-info {
  -webkit-box-shadow: 0 5px 15px 0 rgba(180, 141, 211, 0.2) !important;
  box-shadow: 0 5px 15px 0 rgba(180, 141, 211, 0.2) !important;
}

.shadow.btn-success {
  -webkit-box-shadow: 0 5px 15px 0 rgba(104, 227, 101, 0.2) !important;
  box-shadow: 0 5px 15px 0 rgba(104, 227, 101, 0.2) !important;
}

.btn-xxs {
  padding: 6px 15px;
  font-size: 11px;
  line-height: 1.3;
}

.btn-xs {
  font-size: 0.75rem;
  padding: 0.438rem 1rem;
  font-weight: 600;
}

.btn-sm,
.btn-group-sm>.btn {
  font-size: 0.713rem !important;
  padding: 0.625rem 1rem;
  border-radius: 10px;
}

.btn-md {
  font-size: 0.875rem !important;
  padding: 0.875rem 1.25rem;
}

.btn-lg,
.btn-group-lg>.btn {
  padding: 1rem 2rem;
  font-size: 1.125rem !important;
}

@media only screen and (max-width: 575px) {

  .btn-lg,
  .btn-group-lg>.btn {
    padding: 0.75rem 1.25rem;
  }
}

.btn-xl {
  padding: 0.6rem 1rem;
}

.btn-xl.btn-default {
  font-weight: 600;
}

.btn-square {
  border-radius: 0;
}

.btn-rounded {
  border-radius: 10px !important;
}

.btn-icon-end {
  border-left: 1px solid #eee;
  display: inline-block;
  margin: -.8rem 0 -.8rem 1rem;
  padding: 0.4375rem 0 0.4375rem 1rem;
  margin: -1rem -0.25rem -1rem 1rem;
  padding: 1rem 0 1rem 1.25rem;
}

@media only screen and (max-width: 1400px) {
  .btn-icon-end {
    padding: 0.7rem 0 0.7rem 1.25rem;
  }
}

.btn-icon-start {
  background: #fff;
  border-radius: 10rem;
  display: inline-block;
  margin: -0.5rem 0.75rem -0.5rem -1.188rem;
  padding: 0.5rem 0.80rem 0.5rem;
  float: left;
}

@media only screen and (max-width: 1400px) {
  .btn-icon-start {
    margin: -0.5rem 0.75rem -0.5rem -0.880rem;
  }
}

[direction="rtl"] .btn-icon-start {
  margin: -.5rem 0.5rem -0.5rem -1rem;
}

@media only screen and (max-width: 1400px) {
  [direction="rtl"] .btn-icon-start {
    margin: -0.5rem 0.75rem -0.5rem -0.880rem;
  }
}

[direction="rtl"] .btn-icon-end {
  border-left: 0px solid white;
  display: inline-block;
  margin: -.8rem 1rem -.8rem 0;
  padding: 0.4375rem 1rem 0.4375rem 0;
  border-right: 1px solid white;
}

.toggle-dropdown::after {
  margin-left: 0.755em;
}

.social-btn-icon .btn {
  min-width: 7.5rem;
  margin-bottom: 1.5rem;
}

.social-icon .btn {
  padding: .7rem 1.4rem;
}

.btn-circle {
  height: 5rem;
  width: 5rem;
  border-radius: 50% !important;
}

.btn-circle-sm {
  width: 4.5rem;
  height: 4.5rem;
  font-size: 1.8rem;
}

.btn-circle-md {
  width: 6rem;
  height: 6rem;
  font-size: 2.5rem;
}

.btn-circle-md i {
  font-size: 2.4rem;
}

.btn-circle-lg {
  width: 8rem;
  height: 8rem;
  font-size: 3.2rem;
}

.btn-circle-lg i {
  font-size: 3.1rem;
}

.btn-page .btn {
  min-width: 110px;
  margin-right: 4px;
  margin-bottom: 8px;
}


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

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.btn.btn-sm {
  font-size: 12px;
  padding: 5px 6px;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  background: var(--primary-light-gradient);
  color: #444444;
  position: relative;
  overflow-x: hidden;
  margin: 10px;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-title);
  color: var(--title);
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 80px;
  padding: 0;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  #main {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: 22px;
  font-weight: 700;
}

.pagetitle h1 span {
  font-size: 26px;
  font-weight: 700;
  color: #ffff;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
  background: #fff;
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--bs-body-bg);
  color: var(--primary);
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card {
  margin-bottom: 1.875rem;
  background-color: #fff;
  transition: all .5s ease-in-out;
  position: relative;
  border: 0px solid transparent;
  border-radius: 1rem !important;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  height: auto;
  overflow: hidden;
  transition: all 0.5s;
}

.card:hover {
  box-shadow: 0px 0 10px 0px rgba(82, 63, 105, 0.2);
  transition: all 0.5s;
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

/* .card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #012970;
  font-family: "Poppins", sans-serif;
} */

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

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

.accordion-button:not(.collapsed) {
  color: #012970;
  background-color: var(--bs-body-color);
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

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

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  color: #899bbd;
  font-weight: 600;
}

.breadcrumb a {
  color: #899bbd;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
  color: #fff;
}

.breadcrumb .active {
  color: #51678f;
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: var(--primary);
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}

@media (min-width: 1200px) {
  .logo {
    width: 280px;
  }
}

.logo img {
  max-height: 50px;
  margin-right: 6px;
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  font-family: "Nunito", sans-serif;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
  background: #fff;
  padding-left: 20px;
  /* Toggle Sidebar Button */
  /* Search Bar */
  width: calc(100% - (17rem + 20px));
  margin-left: auto;
  right: 10px;
  top: 10px;
  border-radius: 20px 20px 0px 0px;
}

.header .toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 10px;
  cursor: pointer;
  color: #012970;
}

.header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}

@media (max-width: 1199px) {
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
}

.header .search-form {
  width: 100%;
}

.header .search-form input {
  border: 0;
  font-size: 14px;
  color: #012970;
  border: 1px solid rgba(1, 41, 112, 0.2);
  padding: 7px 38px 7px 8px;
  border-radius: 3px;
  transition: 0.3s;
  width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.header .search-form button i {
  color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  color: var(--title);
  margin-right: 25px;
  position: relative;
  transition: all 0.5s;
}

.header-nav .nav-icon:hover {
  color: var(--primary);
  transition: all 0.5s;
}


.header-nav .nav-profile {
  color: #012970;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: -5px -10px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: var(--bs-body-bg);
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: var(--bs-body-bg);
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: var(--rgba-primary-1);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 10px;
  left: 10px;
  bottom: 0;
  width: 17rem;
  height: calc(100% - 20px) !important;
  z-index: 998;
  transition: all 0.3s;
  padding: 20px 0 !important;
  overflow-y: auto;
  scrollbar-width: none;
  scrollbar-color: var(--primary) transparent;
  background: var(--bs-body-bg);
}

@media (max-width: 1199px) {
  .sidebar {
    /* left: -300px; */
  }
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

@media (min-width: 120px) {

  #main,
  #footer {
    margin-left: 17rem;
  }
}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    /* left: 0; */
  }
}

.main .section.dashboard {
  padding: 20px;
}

/* @media (min-width: 1200px) {

  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }
} */

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 70px;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item .nav-link {
  margin-bottom: 5px;
  position: relative;
}

.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--primary);
  transition: all 0.5s;
  background: var(--rgba-primary-1);
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 30px 0 0 30px;
  margin-left: 10px;
}

.sidebar-nav .nav-link i {
  /* color: var(--primary); */
  font-size: 1.3rem;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 0;
  height: auto;
  width: auto;
  text-align: center;
  margin-right: 15px;
  line-height: 1;
  border-radius: 0;
}

.sidebar-nav .nav-link {
  color: var(--bs-body-color);
  background: transparent;
}

.sidebar-nav .nav-link i {
  /* color: #899bbd; */
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
  color: var(--primary);
  background: #fff;
}

.sidebar-nav .nav-link:hover i,
.sidebar-nav .nav-link.active i {
  color: var(--primary);
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #012970;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: var(--primary);
}

.sidebar-nav .nav-content a.active i {
  background-color: var(--primary);
}

.sidebar-nav .sidemenu-title {
  margin: 20px 0 10px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--rgba-primary-2);
}

.side-toggle.toggle-sidebar .sidebar-nav .sidemenu-title {
  display: none;
}

.sidebar-nav .sidemenu-title .title {
  font-size: 12px;
  margin: 0;
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}

.dashboard .filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: var(--primary);
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  padding-bottom: 10px;
}

.dashboard .info-card h6 {
  font-size: 28px;
  color: #012970;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .sales-card .card-icon {
  color: var(--primary);
  background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}

/* Activity */
.dashboard .activity {
  font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item+.post-item {
  margin-top: 15px;
}

.dashboard .news img {
  width: 80px;
  float: left;
  border-radius: 5px;
}

.dashboard .news h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 5px;
}

.dashboard .news h4 a {
  color: #012970;
  transition: 0.3s;
}

.dashboard .news h4 a:hover {
  color: var(--primary);
}

.dashboard .news p {
  font-size: 14px;
  color: #777777;
  margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
  font-size: 14px;
}

.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
  font-size: 14px;
}

.dashboard .top-selling .table thead {
  background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
  border: 0;
}

.dashboard .top-selling .table tbody td {
  vertical-align: middle;
}

.dashboard .top-selling img {
  border-radius: 5px;
  max-width: 60px;
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 15px;
}

.iconslist .icon {
  background-color: #fff;
  border-radius: 0.25rem;
  text-align: center;
  color: #012970;
  padding: 15px 0;
}

.iconslist i {
  margin: 0.25rem;
  font-size: 2.5rem;
}

.iconslist .label {
  font-family: var(--bs-font-monospace);
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 0.25rem;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}

.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 18px;
}

.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #012970;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .card-title {
  color: #012970;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.faq .basic p {
  color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  padding: 28px 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: var(--primary);
}

.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--primary);
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: var(--primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5969f3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}

.footer .copyright {
  text-align: center;
  color: #012970;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

.sidebar {
  /* position: relative; */
  padding-top: 60px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.sidebar .logo {
  position: fixed;
  top: 0;
  height: 60px;
}

.sidebar .logo {
  position: fixed;
  top: 10px;
  background-color: var(--bs-body-bg);
  /* left: 20px; */
  width: 17rem;
  height: 70px;
  padding-left: 15px;
  padding-right: 20px;
  border-radius: 0;
  z-index: 99;
}


.nav-profile-box .nav-profile {
  border: 1px solid #fff;
  padding: 3px;
  border-radius: 50%;
  margin: 0;
  margin-right: 10px;
  transition: all 0.5s;
}

.nav-profile-box:hover .nav-profile {
  border: 1px solid var(--primary);
  transition: all 0.5s;
}

.nav-profile-box .nav-profile .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  min-height: 45px;
}

.nav-profile-box .nav-profile .header-info {
  color: #000;
}

.nav-profile-box .nav-profile .header-info small {
  display: block;
  font-size: 12px;
  color: #89879f;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 5px;
}

.badge.badge-number {
  height: 22px;
  width: 22px;
  border-width: 2px;
  line-height: 10px;
  font-size: 11px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.card-title {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-transform: capitalize;
}

.card-header {
  border-color: #e6e6e6;
  position: relative;
  background: transparent;
  padding: 1.5rem 1.875rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  white-space: nowrap;
  background-color: #fff;
}

.table thead th {
  border-bottom: 1px solid var(--rgba-primary-1);
  text-transform: capitalize;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #000;
  border-color: #e6e6e6 !important;
  padding: 15px 10px;
  background-color: #fff;
}

.table tbody tr td {
  vertical-align: middle;
  border-color: #ffffff;
  font-size: 0.875rem;
  color: var(--bs-body-color);
  padding: 15px 10px;
  background-color: #fff;
}


.nav-profile-box .dropdown-menu {
  padding: 15px 0;
  width: 100%;
  font-size: inherit;
  border: 0;
  z-index: 2;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15);
  margin-top: 0;
  background-color: #fff;
}

.sidebar .logo-box .logo-sm img {
  max-height: 40px;
  margin-right: 6px;
}

.sidebar .logo-box .logo-sm {
  display: none;
}

/* Toggle Css */

.toggle-sidebar .sidebar,
.toggle-sidebar .sidebar .logo {
  width: 6.5rem;
  padding-left: 5px;
  padding-right: 5px;
  overflow: visible;
  /* left: 0; */
}

.toggle-sidebar .sidebar-nav {
  padding-left: 0;
  padding-right: 0;
}

.toggle-sidebar .header {
  width: calc(100% - (6rem + 27px));
}

.toggle-sidebar #main,
.toggle-sidebar #footer {
  margin-left: 6.5rem;
}

.toggle-sidebar .sidebar .logo-box .logo-sm {
  display: block;
  width: 100%;
  text-align: center;
}

.toggle-sidebar .sidebar .logo-box .logo-lg {
  display: none;
}

.toggle-sidebar .nav-profile-box {
  display: flex;
  justify-content: center;
}

/* .toggle-sidebar .nav-profile-box .header-info {
  display: none;
} */

.toggle-sidebar .nav-profile-box .nav-profile {
  padding: 5px !important;
  border-radius: 50%;
}

.toggle-sidebar .sidebar-nav .nav-item .nav-link {
  padding: 20px 18px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.toggle-sidebar .sidebar-nav .nav-link i {
  margin-right: 0;
}

.toggle-sidebar .sidebar-nav .nav-link .down-icon {
  display: none;
}

.toggle-sidebar .sidebar-nav .nav-item .nav-link span {
  display: none;
}








.nav-control {
  cursor: pointer;
  position: fixed;
  left: 14rem;
  text-align: center;
  top: 20px;
  z-index: 9999;
  font-size: 1.4rem;
  padding: 2px 0.5rem 0;
  border-radius: 2px;
}

.toggle-sidebar .hamburger {
  left: -110px !important;
}

.hamburger {
  display: inline-block;
  left: 0px;
  position: relative;
  top: 10px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  width: 26px;
  z-index: 999;
}

.hamburger .line {
  background: #000;
  display: block;
  height: 2px;
  border-radius: 3px;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger .line:nth-child(1) {
  width: 20px;
}

.hamburger .line:nth-child(2) {
  width: 25px;
}

.hamburger .line:nth-child(3) {
  width: 20px;
}

.hamburger:hover {
  cursor: pointer;
}

.hamburger:hover .line {
  width: 26px;
}

.toggle-sidebar .hamburger .line:nth-child(1),
.toggle-sidebar.hamburger .line:nth-child(3) {
  width: 14px;
  height: 2px;
}

.toggle-sidebar .hamburger .line:nth-child(2) {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  width: 22px;
  height: 2px;
}

.toggle-sidebar .hamburger .line:nth-child(1) {
  -webkit-transform: translateY(4px) translateX(12px) rotate(45deg);
  transform: translateY(3px) translateX(12px) rotate(45deg);
}

.toggle-sidebar .hamburger .line:nth-child(3) {
  -webkit-transform: translateY(-4px) translateX(12px) rotate(-45deg);
  transform: translateY(-3px) translateX(12px) rotate(-45deg);
}

.toggle-sidebar .pagetitle h1 {
  margin-left: 80px !important;
}

.toggle-sidebar .hamburger {
  /* left: 80px !important; */
  transition: all 0.5s;
}

.toggle-sidebar .hamburger .line {
  background-color: var(--primary);
}

.toggle-sidebar .hamburger:hover .line {
  width: 15px;
}

.toggle-sidebar .hamburger .line {
  width: 14px;
}

@media only screen and (max-width: 767px) {
  .header {
    width: calc(100% - 7rem);
  }

  #main,
  #footer {
    margin-left: 7rem;
  }
}

/* Design Side Bar menu in responsive */
/* .sidebar-nav .nav-item{
  position: relative;
}
.toggle-sidebar .sidebar .collapse:not(.show) {
    display: block!important;
}
.toggle-sidebar .sidebar .nav-item .nav-content{
  padding: 10px 30px;
    position: absolute;
    left: 5.45rem;
    top: 30px;
    width: 11.875rem;
    z-index: 1001;
    display: none!important;
    padding-left: 1px;
    box-shadow: 0px 0px 40px 0px rgba(82, 63, 105, 0.1);
    height: auto !important;
    border-radius: .75rem;
    background: #fff;
}

.toggle-sidebar .sidebar .nav-item:hover .nav-content{
  display: block!important;
  top: 0;
  transition: all .5s;
} */


/* Set relative positioning on nav items */
.sidebar-nav .nav-item {
  position: relative;
}

/* Ensure collapsed sidebar still shows essential layout */
.toggle-sidebar .sidebar .collapse:not(.show) {
  display: block !important;
}

/* Submenu (initially hidden) */
.toggle-sidebar .sidebar .nav-item .nav-content {
  position: absolute;
  left: 5rem;
  top: 0;
  width: 11.875rem;
  z-index: 1001;
  padding: 10px 30px 10px 1px;
  box-shadow: 0 0 40px rgba(82, 63, 105, 0.1);
  border-radius: 0.75rem;
  background: #fff;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show submenu when either parent or submenu is hovered */
.toggle-sidebar .sidebar .nav-item:hover .nav-content,
.toggle-sidebar .sidebar .nav-item .nav-content:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}







.brand-logo .logo-sm img,
.brand-logo .logo-full img {
  width: 100%;
  height: 100%;
  max-height: 50px;
}

.brand-logo .logo-sm img {
  display: none;
}

.brand-logo .logo-full img {
  display: block;
}

.show.menu-toggle .brand-logo .logo-sm img {
  display: block;
}

.show.menu-toggle .brand-logo .logo-full img {
  display: none;
}

.c-logo {
  width: 100%;
  height: 40px;
  margin-left: 10px;
}

.c-logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.ta-media {
  width: 80px;
  height: auto;
}

.ta-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-body,
.card-header {
  padding: 20px 
}
.card-header {
  border-color: #e6e6e6;
  position: relative;
  background: transparent;
  padding: 1.5rem 1.875rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-control {
  background: #fff;
  border: 0.0625rem solid #e6e6e6;
  padding: 0.3125rem 1.25rem;
  color: #6e6e6e;
  height: 3rem;
  border-radius: 1rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #969ba0;
  background-color: #f6f6f6;
  background-clip: padding-box;
  border: 1px solid #e6e6e6;
  appearance: none;
  border-radius: 0.75rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.select.form-control option {
  transition: all 0.5s;
}


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

.form-control:focus {
  border-color: var(--primary);
  outline: 0;
}

.form-control:hover,
.form-control:focus,
.form-control.active {
  box-shadow: none;
  background-color: #fff;
  color: #6e6e6e;
}

.default-select {
  position: relative;
}



.arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  pointer-events: none;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  border-right: 2px solid var(--bs-body-color);
  border-bottom: 2px solid var(--bs-body-color);
  transform: translateY(-50%) rotate(45deg);
}

.default-select.d-open .arrow {
  transform: translateY(-20%) rotate(-135deg);
}



.acc-box.style-1 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
}

.acc-box img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.acc-box.style-2 {
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
  transition: all 0.5s;
  /* background-color: rgba(255, 128, 34, 0.1); */
}

.acc-box.style-2:hover {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}

.modal-header.header-style-1 {
  background-color: #ff8022 !important;
}

.modal-header.header-style-1 .modal-title {
  color: #fff;
  width: 100%;
  text-align: center;
  font-weight: 700;
}

.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-box {
  display: none;
  width: 100%;
  position: absolute;
  height: auto;
  overflow-Y: scroll;
  top: 100%;
  right: 0;
  z-index: 999;
  background: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  width: 300px;
  white-space: normal;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

.tooltip-container:hover .tooltip-box {
  display: block;
}

.page-link {
  color: var(--primary);
  transition: all 0.5s;
}

.page-link:hover {
  color: #fff;
  background-color: var(--primary);
  transition: all 0.5s;
}

.d-title {
  color: var(--title);
}

.btn-close {
  background-size: 45%;
}


/* Tabs Design */
.nav-tabs {
  border-bottom: 2px solid #ddd;
}

.nav-tabs .nav-link {
  border: none;
  border-radius: 0;
  font-weight: 500;
  color: #555;
  padding: 10px 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-tabs .nav-link.active {
  color: var(--primary);
  background-color: #f8f9fa;
  border-bottom: 2px solid var(--primary);
}

.nav-tabs .nav-link:hover {
  background-color: #f0f0f0;
  color: var(--primary);
}

/* Tab Panel Background */
.tab-pane {
  border-top: none;
  padding: 20px;
}

/* Labels & Inputs */
.form-label {
  font-weight: 600;
  color: #333;
}

input.form-control,
select.form-control {
  border-radius: 6px;
  border: 1px solid #ced4da;
  box-shadow: none;
  transition: border-color 0.3s ease;
}

input.form-control:focus,
select.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  /* Optional: Match var(--primary) if RGBA is defined */
}

/* Button Styling */
.btn {
  padding: 10px 25px;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  /* if SCSS, otherwise use a close hex color */
  border-color: var(--primary-hover);
}



.nav-profile-box .header-info {
  padding: 0 20px 15px;
  text-align: center;
  border-bottom: 1px solid var(--rgba-primary-4);
  margin-bottom: 15px;
}

.nav-profile-box .header-info .user-name {
  margin-bottom: 0;
  color: var(--title);
  font-weight: 700;
}


.page-titles {
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  position: relative;
  z-index: 1;
  flex-flow: wrap;
  padding: 10px 20px;
  background: var(--primary-gradient);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.page-titles .card-title {
  margin: 0;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-titles .breadcrumb {
  font-size: 13px;
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  align-items: center;
}

.page-titles .breadcrumb li {
  margin-top: 0;
  margin-bottom: 0;
}

.page-titles .breadcrumb li a {
  color: #828690;
  font-size: 15px;
  font-weight: 500;
}

.page-titles .breadcrumb .breadcrumb-item a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.page-titles .breadcrumb .breadcrumb-item.active a {
  color: #fff;
  font-weight: 700;
}

.am-box {
  margin: 10px 0;
}

.am-box .am-balance,
.am-box .am-price {
  color: #fff;
  font-weight: 500;
}

.am-box .am-balance {
  font-size: 12px;
}

.am-box .am-price {
  font-size: 16px;
  margin-bottom: 0;
}


.card-amount .card-top {
  margin-bottom: 20px;
}

.card-amount .card-top .a-sub-title {
  font-size: 12px;
  color: var(--text);
}

.card-amount .card-top .a-title {
  font-size: 18px;
  color: var(--title);
}

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

.card-amount .card-bottom .btn {
  margin-right: 3px;
  margin-bottom: 5px;
}

.amount-head-box {
  position: relative;
  z-index: 1;
}

.amount-head-box:after {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 18px);
  height: 60%;
  background: var(--primary-gradient);
  z-index: -1;
}

.top-dash-box {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: 100%;
  height: auto;
  display: inline-grid;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.5s;
}

.top-dash-box:hover {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  transition: all 0.5s;
}

.top-dash-box .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin: auto;
  margin-bottom: 20px;
  font-size: 25px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--primary);
  transition: all 0.5s;
}

.top-dash-box:hover .icon-box {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transition: all 0.5s;
}

.top-dash-box .content .name {
  margin-bottom: 0;
}

.form-control {
  margin-bottom: 20px;
}

.card .card-header .title {
  font-size: 18px;
}



.card-footer {
  text-align: end;
}

.modal .modal-header {
  background-color: var(--primary) !important;
  color: #fff !important;
}

.modal .modal-content {
  background-color: #fff;
}

.modal .modal-content .modal-title {
  color: #fff;
}

.modal .btn-close {
  filter: invert(1);
  opacity: 1;
}



code {
  background-color: #f8f9fa;
  padding: 0.2rem 0.4rem;
  border-radius: 5px;
}

pre code {
  display: block;
  white-space: pre-wrap;
  background: #f1f1f1;
  padding: 1rem;
  border-radius: 5px;
}

.modal-back-icon {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  width: 170px;
  height: auto;
  opacity: 0.2;
}

.modal-back-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



.modal-tick-icon {
  margin-bottom: 30px;
}

.modal-tick-icon svg {
  display: block;
  height: 100px;
  width: 100px;
  margin: auto;
  color: var(--primary);
  /* SVG path use currentColor to inherit this */
}

.modal-tick-icon .circle {
  stroke-dasharray: 76;
  stroke-dashoffset: 76;
  -webkit-animation: draw 1s forwards;
  animation: draw 1s forwards;
}

.modal-tick-icon .tick {
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  -webkit-animation: draw 1s forwards 1s;
  animation: draw 1s forwards 1s;
}

@-webkit-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}


.step {
  display: none;
}

.step.active {
  display: block;
}

.progress {
  height: 8px;
}

.upload-box {
  border: 2px dashed #ced4da;
  /* light purple border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.upload-box img {
  max-width: 100%;
  max-height: 180px;
  border-radius: 8px;
  margin-top: 10px;
  display: none;
}

.upload-box:hover {
  background: var(--bs-body-bg);
  border-color: var(--primary);
  color: var(--primary);
}




.otp-box {
  border-radius: 20px;
  padding: 20px;
}

.otp-logo {
  height: 45px;
}

.amount-box {
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.amount-invoice {
  border: 1px solid var(--primary);
  border-radius: 20px;
  background-color: var(--rgba-primary-1);
  margin-bottom: 30px;
}

.amount-invoice .box-top {
  /* padding: 20px; */
}

.amount-invoice .box-top .box-content,
.amount-invoice .box-bottom .box-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.amount-invoice .box-bottom {
  border-top: 1px solid var(--primary);
  padding: 20px;
}

.amount-invoice .box-top .box-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.radio-card {
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.radio-card input[type="radio"] {
  display: none;
}

.radio-card:has(input[type="radio"]:checked) {
  border-color: var(--primary);
  box-shadow: 0 0px 10px 0 var(--rgba-primary-4);
}

.form-check-input:checked {
  background-color: orange;
  border-color: orange;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 165, 0, 0.25);
  /* optional glow */
}

#main {
  height: calc(100vh - 90px);
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  overflow-y: scroll;
}

/* Balance Box */
.balance-box {
  box-shadow: none;
  background-position: center, left;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  margin-bottom: 30px;
}

.balance-box .amt-box {
  display: flex;
}

.balance-box:hover {
  box-shadow: none;
}

.balance-box .ac-box {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.balance-box .ac-box .title {
  color: #fff;
}

.balance-box .ac-box .amount {
  color: #fff;
}

.balance-box .more-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.balance-box .more-box .btn {
  margin: 0 10px 10px 0;
}

.balance-box .card-holder {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 3px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.balance-box .card-holder .c-title,
.balance-box .card-holder .c-name {
  color: #fff;
  margin-bottom: 0;
}

/* 
.balance-box .amt-box{
  margin-left: 10px;
} */

/* banner css */


.banner-box .banner-dash-media {
  margin-bottom: 30px;
}

.banner-box .banner-dash-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  overflow: hidden;
}

#toggleEye i {
  color: #fff !important;
}

.lbox {
  position: relative;
  border-radius: 0 !important;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  /* overflow: visible; */
  box-shadow: none;
  background-color: #fff;
  border-radius: 20px !important;
  border: 2px solid rgba(0, 0, 0, 0.3);
  transition: all 0.9s;
}

.lbox:hover {
  border-radius: 0 !important;
  border: none;
  transform: translateY(-3px);
  transition: all 0.9s;
  background-color: var(--bs-body-bg);
}

/* Top border */
.lbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease-in-out;
}

/* Right border */
.lbox::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 0;
  background: var(--primary);
  transition: height 0.25s ease-in-out;
}

/* Extra span for bottom + left */
.lbox span::before,
.lbox span::after {
  content: "";
  position: absolute;
  background: var(--primary);
}

/* Bottom border */
.lbox span::before {
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  transition: width 0.25s ease-in-out;
}

/* Left border */
.lbox span::after {
  bottom: 0;
  left: 0;
  width: 2px;
  height: 0;
  transition: height 0.25s ease-in-out;
}

/* Hover states - draw clockwise */
.lbox:hover::before {
  width: 100%;
  transition-delay: 0s;
}

.lbox:hover::after {
  height: 100%;
  transition-delay: 0.25s;
}

.lbox:hover span::before {
  width: 100%;
  transition-delay: 0.5s;
}

.lbox:hover span::after {
  height: 100%;
  transition-delay: 0.75s;
}

/* Reverse - erase counter-clockwise */
.lbox:not(:hover)::before {
  transition-delay: 0.75s;
}

.lbox:not(:hover)::after {
  transition-delay: 0.5s;
}

.lbox:not(:hover) span::before {
  transition-delay: 0.25s;
}

.lbox:not(:hover) span::after {
  transition-delay: 0s;
}

.lbox .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: relative;
  margin: auto auto 20px auto;
  z-index: 1;
}

.lbox .icon-box:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 90px;
  border-radius: 50%;
  background-color: #ffffff;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.5s;
}

.lbox:hover .icon-box:after {
  width: 90px;
  transition: all 0.5s;
}

.lbox .icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* loan box end */

.bill-box {
  border: 1px solid var(--primary);
  background-color: var(--bs-body-bg);
  border-radius: 10px;
}

.bill-box .bill-box-upper {
  padding: 20px;
}

.bill-box .bill-box-bottom {
  border-top: 1px solid var(--primary);
  padding: 20px;
}

.bill-box .bill-box-inner {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bill-box .bill-box-inner:last-child {
  margin-bottom: 0;
}


/* Wrapper styling */
.range-wrapper {
  margin-bottom: 20px;
}

/* Range slider base */
.range-slider__range {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(to right, var(--primary) 0%, var(--primary) 0%, #e0e0e0 0%, #e0e0e0 100%);
  outline: none;
  transition: background 0.3s ease;
  cursor: pointer;
}

/* Webkit thumb (Chrome, Safari, Edge) */
.range-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.range-slider__range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Firefox thumb */
.range-slider__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.range-slider__range::-moz-range-thumb:hover {
  transform: scale(1.2);
}

/* Firefox track */
.range-slider__range::-moz-range-track {
  height: 10px;
  border-radius: 5px;
  background: transparent;
  /* gradient comes from JS */
}

.main-account {
  text-align: center;
  border: 2px solid var(--rgba-primary-4);
  box-shadow: none;
  background: var(--primary-gradient);
  transition: all 0.5s;
}

.main-account:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 5px 0 var(--rgba-primary-7);
  transition: all 0.5s;
}

.main-account .sub-title {
  color: #fff;
  margin-bottom: 20px;
}

.main-account .title {
  color: #fff;
  margin-bottom: 0;
}

.text-area-box {
  border-radius: 6px;
  border: 2px dashed #ced4da;
  box-shadow: none;
  transition: border-color 0.3s ease;
  display: block;
  width: 100%;
  padding: 14px 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #969ba0;
  background-color: #f6f6f6;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.text-area-box:hover {
  background-color: #fff;
}


/* Modal Success Start */

.msucess-box .m-content {
  text-align: center;
}

.modal-tick-icon {
  margin-bottom: 30px;
}

.modal-tick-icon svg {
  display: block;
  height: 100px;
  width: 100px;
  margin: auto;
  color: #019500;
  /* SVG path use currentColor to inherit this */
}

.modal-tick-icon .circle {
  stroke-dasharray: 76;
  stroke-dashoffset: 76;
  -webkit-animation: draw 1s forwards;
  animation: draw 1s forwards;
}

.modal-tick-icon .tick {
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  -webkit-animation: draw 1s forwards 1s;
  animation: draw 1s forwards 1s;
}

@-webkit-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* Modal Success End */

.support-accordian .accordion-item {
  margin-bottom: 20px;
  border: 2px solid var(--rgba-primary-2);
  border-radius: 10px !important;
  transition: all 0.5s;
  background-color: #fff;
  overflow: hidden;
}

.support-accordian .accordion-item:hover {
  border: 2px solid var(--primary);
  transition: all 0.5s;
}

.support-accordian .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--primary);
}

.support-accordian .accordion-header {
  border-radius: 10px !important;
}

.support-accordian button.accordion-button.collapsed {
  border-radius: 10px !important;
  background-color: #fff;
}

.support-accordian .accordion-button:not(.collapsed)::after {
  filter: invert(1);
  opacity: 1;
}


/* tabs */



.history-tabs {
  width: 100%;
  background: var(--bs-body-bg);
  border: none;
  border-radius: 10px;
  overflow: hidden;
  padding: 5px;
}

.history-tabs .nav-item {
  width: 50%;
}

.history-tabs .nav-link {
  width: 100%;
  border-radius: 10px;
  padding: 8px;
}

.nav-tabs.history-tabs .nav-link:hover,
.nav-tabs.history-tabs .nav-link.active {
  background-color: #fff;
  color: var(--title);
  border: none;
}


.pay-box .his-logo {
  margin: 0;
  border-radius: 50%;
  display: block;
  width: 55px;
  height: 55px;
  line-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-box .logo-title {
  margin-bottom: 0;
  color: #fff;
}

.pay-box .his-name {
  margin-bottom: 5px;
}

.pay-box .meta {
  color: var(--text);
  margin-bottom: 0;
}

.pay-box tr td {
  border-bottom: 1px solid #e6e6e6 !important;
}

.profile-img {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid var(--primary);
  background-color: var(--bs-body-bg);
  transition: all 0.5s;
}

.profile-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 5px 0 var(--rgba-primary-5);
  transition: all 0.5s;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Massage Box start */

.massage-box {
  width: 300px;
  height: 400px;
  overflow-y: scroll;
}

/* Massage Box end */


.chatbox {
  width: 21.25rem;
  height: 100vh;
  position: fixed;
  right: -31.25rem;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0rem 0rem 1.875rem 0rem rgba(82, 63, 105, 0.15);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}

.chatbox .chatbox-close {
  position: absolute;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  width: 0;
  height: 100%;
  right: 21.25rem;
  background: #000;
  z-index: 9;
  opacity: 0.1;
  cursor: pointer;
}

.chatbox .card-fotter {
  padding: 0.75rem 1rem;
}

.chatbox .card-body {
  padding: 1rem;
}

.chatbox.active {
  right: 0;
}

.chatbox.active .chatbox-close {
  width: 100vw;
}

.chatbox .type_msg {
  padding-top: 0.625rem;
}

.chatbox .nav {
  padding: 1rem 1rem 0 1rem;
  background: var(--rgba-primary-1);
  border: 0;
  justify-content: space-between;
}

.chatbox .nav .nav-link {
  color: var(--primary);
  opacity: 0.7;
  text-transform: uppercase;
}

.chatbox .nav .nav-link:hover,
.chatbox .nav .nav-link.active {
  background: transparent;
  color: var(--primary);
  opacity: 1;
  border-color: var(--primary);
}

.chatbox .img_cont {
  width: 2.5rem;
  border-radius: 2.5rem;
  margin-right: 0.625rem;
  position: relative;
  height: 2.5rem;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
}

.chatbox .img_cont .icon {
  color: #fff;
}
.chatbox .img_cont img {
  width: 100%;
}

.chatbox .img_cont .online_icon {
  background: #2adb7b;
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 0.9375rem;
  right: -0.0625rem;
  bottom: 0rem;
  border: 0.125rem solid #fff;
}

.chatbox .img_cont .online_icon.offline {
  background: #f72b50;
}

.chatbox .card {
  box-shadow: none;
}

.chatbox .user_info span {
  font-size: 0.9375rem;
  color: #000;
  display: block;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.3125rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  max-width: 10.625rem;
}
.chatbox .user_info p {
  font-size: 0.8125rem;
  margin-bottom: 0;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  max-width: 10.625rem;
}

.chatbox .contacts li {
  padding: 0.4375rem 1rem;
  border-bottom: 0.0625rem solid #eee;
  cursor: pointer;
}

.chatbox .contacts li:hover {
  background: #f4f7ff;
}

.chatbox .contacts .name-first-letter {
  background: #f5f5f5;
  padding: 0.25rem 1rem;
  font-weight: 700;
  color: #000;
  position: sticky;
  top: 0;
  z-index: 1;
}

.chatbox .contacts_body {
  height: calc(100vh - 120px);
  overflow-y: scroll;
}

.chatbox .card-header {
  background: #f4f7ff;
  padding: 0.9375rem 1.25rem;
  justify-content: center;
}

.chatbox .card-header h6,
.chatbox .card-header .h6 {
  font-size: 0.9375rem;
}

.chatbox .card-header p {
  line-height: 1.2;
  font-size: 0.75rem;
  color: #888888;
}

.chatbox .chat-list-header {
  justify-content: space-between;
  background: #fff;
}

.chatbox .chat-list-header a {
  text-align: center;
  width: 1.875rem;
  height: 1.875rem;
  background: #f5f5f5;
  border-radius: 0.375rem;
  line-height: 1.875rem;
  display: block;
}

.chatbox .img_cont_msg {
  width: 1.875rem;
  height: 1.875rem;
  display: block;
  max-width: 1.875rem;
  min-width: 1.875rem;
}

.chatbox .img_cont_msg img {
  width: 100%;
}

.chatbox .msg_cotainer {
  background: var(--primary);
  margin-left: 0.625rem;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  padding: 0.625rem 0.9375rem;
  color: #fff;
  position: relative;
}

.chatbox .msg_cotainer .msg_time {
  display: block;
  font-size: 0.6875rem;
  color: #fff;
  margin-top: 0.3125rem;
  opacity: 0.5;
}

.chatbox .msg_cotainer:after {
  content: "";
  position: absolute;
  left: -0.625rem;
  border-right: 0.625rem solid var(--primary);
  border-bottom: 0.625rem solid transparent;
  border-top: 0rem solid;
  top: 0;
}

.chatbox .msg_cotainer_send {
  background: #f5f5f5;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.375rem 0rem 0.375rem 0.375rem;
  margin-right: 0.625rem;
  color: #222;
  position: relative;
  text-align: right;
}


.chatbox .msg_cotainer_send .msg_time_send {
  display: block;
  font-size: 0.6875rem;
  text-align: right;
  margin-top: 0.3125rem;
  opacity: 0.6;
}

.chatbox .msg_cotainer_send:after {
  content: "";
  position: absolute;
  right: -0.625rem;
  border-left: 0.625rem solid #f5f5f5;
  border-bottom: 0.625rem solid transparent;
  border-top: 0rem solid;
  top: 0;
}
.chatbox .type_msg .form-control {
  padding: 0.625rem 0.5rem;
  height: 3.125rem;
  line-height: 1.8rem;
  border: 0;
  resize: none;
}

.chatbox .type_msg .form-control:focus {
  z-index: 0;
}

.chatbox .type_msg .btn {
  font-size: 1.125rem;
  border-radius: 2.375rem !important;
  width: 2.375rem;
  height: 2.375rem;
  padding: 0;
  margin-top: 0.375rem;
}

.chatbox .video_cam {
  margin-left: 0.9375rem;
}

.chatbox .video_cam span {
  width: 2.1875rem;
  height: 2.1875rem;
  background: #10ca93;
  text-align: center;
  line-height: 2.1875rem;
  border-radius: 2.1875rem;
  color: #fff;
  margin-right: 0.3125rem;
  align-self: center;
  font-size: 1rem;
  padding: 0 0.1875rem;
  display: inline-block;
}

.chatbox .note_card .contacts li {
  padding: 0.75rem 1rem;
}

@media only screen and (max-width: 36rem) {
  .chatbox {
    width: 17.5rem;
  }

  .chatbox .chatbox-close {
    right: 17.5rem;
  }
}

.kort-scroll{
  overflow-y: scroll;
}
.notifications-box{
  width: 300px;
  height: 400px;
  overflow-y: scroll;
}
.noti-modal .text-icon{
  font-size: 50px;
 }
.noti-modal .text-icon{
  font-size: 50px;
}
.noti-modal .n-box{
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

    
.banner-box .banner-dash-media {
  margin-bottom: 30px;
}

.banner-box .banner-dash-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  overflow: hidden;
}

.progress-bar{
  background-color: var(--primary);
}