* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-padding-top: 85px;
  -moz-box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #9BADBA #f0f0f0;
}
:root{
  color-scheme: light dark;
  --background-clr: #F6F9FB;
  --green: #2A996F;
  --dark-green: #009688;
  --orange: #FF9900;
  --dark-orange: #EE8F00;
  --red: #f32c37;
  --dark-red: #e41d28;
  --blue: #011f66;
  --blue-2: #496E7C;
  --dark-blue: #1576d8;
  --grey-1: #444;
  --text-clr: #202020;
  --text-clr-2: #333;
  --text-clr-3: #555;
  --purple: #b24bf3;
  --dark-clr: #273B42;
  --card-bg: #fff;
  --textarea-bg: #fff;
  --btn-bg: #eff4f8;
  --card-border: #e6e6e6;
  --hover-bg: #def6ff;
  --divider-color: #777;
  --input-bg: #fff;
  --input-border: #c1c1c1;
  --card-bg-2: #F0F6F8;
  --card-bg-3: rgba(214, 221, 255, 0.35);
  --modal-header-bg: #F3FCFF;
  --placeholder-text: #bbb;
  --light-sky-clr: #DEF6FF;
  --shadow: rgba(0, 0, 0, 0.05);
  --sidebar-clr: #1A4578;
  --body-wrapper-bg: #f5f5f5;
  --table-headers-bg: #F5F7FA;
}
.dark-mode{
  --background-clr: #171717;
  --text-clr: #fff;
  --dark-clr: #fff;
  --card-bg: #212121;
  --card-border: #484848;
  --input-border: #484848;
  --text-clr-2: #fff;
  --btn-bg: #555;
  --hover-bg: #484848;
  --divider-color: #484848;
  --input-bg: #212121;
  --card-bg-2: #333;
  --card-bg-3: #333;
  --textarea-bg: #282828;
  --modal-header-bg: #2b2b2b;
  --placeholder-text: #707070;
  --sidebar-clr: #090c12;
  --shadow: rgba(255, 255, 255, 0.05);
  --body-wrapper-bg: var(--blue);
  --table-headers-bg: #151515;
}
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-thumb {
  background-color: #9BADBA;
}
::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}
@supports (scrollbar-width: thin) {
  /* Firefox specific CSS */
  * {
      scrollbar-width: thin;
      scrollbar-color: #9BADBA #f0f0f0;
  }
}
/* Remove autofill background color in Firefox */
input:-moz-autofill,
textarea:-moz-autofill,
select:-moz-autofill {
box-shadow: 0 0 0 1000px white inset !important;
-moz-box-shadow: 0 0 0 1000px white inset !important;
}
/* Remove autofill background color in WebKit browsers (Chrome, Safari) */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: black !important;
}
.dark-mode:not(:has(.auth-modal-main-div)) {
  /* Change background color of autofilled input fields */
  input:-webkit-autofill {
    background-color: #212121 !important;  /* or any color matching your dark theme */
    color: #fff !important;  /* Ensure text color is visible */
  }
  input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  input:-webkit-autofill:active {
    box-shadow: 0 0 0 30px #212121 inset !important;  /* match the background color */
    -webkit-text-fill-color: #fff !important;  /* Ensure text color is visible */
  }
}
body {
  position: relative;
  min-height: 100vh;
  scrollbar-width: thin;
  color: var(--text-clr);
  background-color: var(--background-clr);
}
.body-wrapper{
  padding-block: 75px;
  background-color: var(--body-wrapper-bg);
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.auth-container{
  max-width: 400px;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.dark-green-text{
  color: var(--dark-green);
}
.orange-text{
  color: var(--orange);
}
.text-clr{
  color: var(--text-clr);
}
.text-clr-3{
  color: var(--text-clr-3);
}
.blue-text{
  color: var(--blue);
}
.grey-text-1{
  color: var(--grey-1);
}
.red-text{
  color: var(--red);
}
body::-webkit-scrollbar{
  appearance: none;
  width: 0px;
  background: transparent;
}
.sticky-one{
  position: sticky;
  top: 70px;
  overflow-x: auto;
  z-index: 5;
  scrollbar-width: none;
}
table .btn .spinner-border{
  border: .25em solid #777;
  border-right-color: transparent;
}
.dropdown-menu{
  background-color: var(--card-bg);
  border-color: var(--card-border);

  .dropdown-item{
    color: var(--text-clr);

    &:hover{
      background-color: var(--background-clr);
      color: var(--text-clr);
    }
  }
}
.column-select-dropdown .dropdown-item.active{
  color: #fff;
  &:hover{
    background-color: var(--dark-blue);
  }
}
.dropdown-divider{
  border-color: var(--divider-color);
}
input[type="number"] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pos-plus-2 {
  position: relative;
  top: 2px;
}
.pos-2 {
  position: relative;
  top: -2px;
}
.flex-1 {
  flex: 1;
}
.ms-6 {
  margin-left: 6px;
}
.max-width-75{
  max-width: 75px;
}
.btn:active, .btn:focus, .form-control:active, .form-control:focus, .accordion-button:focus {
  box-shadow: none;
}
.form-select{
  background-color: var(--card-bg);
  border-color: var(--card-border);
  color: var(--text-clr);
}
.form-control::placeholder{
  color: var(--placeholder-text);
}
.form-control:active, .form-control:focus{
  background-color: var(--card-bg);
  color: var(--text-clr);
}
.cursor-pointer {
  cursor: pointer;
}
.absolute-icon {
  position: absolute;
  right: 0.5rem;
  pointer-events: none;
  top: 50%;
  transform: translateY(calc(-50% - 3px));
}
.fs-8 {
  font-size: 0.5rem !important;
}
.fs-10 {
  font-size: 0.625rem !important;
}
.fs-12 {
  font-size: 0.75rem !important;
}
.fs-14 {
  font-size: 0.875rem !important;
}
.fs-15 {
  font-size: 0.9375rem !important;
}
.fs-18 {
  font-size: 1.125rem !important;
}
.fs-20 {
  font-size: 1.25rem !important;
}
.fs-24 {
  font-size: 1.5rem !important;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
.w-20ch {
  width: 20ch;
}
.w-18ch {
  width: 18ch;
}
.red-color {
  color: var(--red);
}
.common-btn-blue {
  border-radius: 5px;
  background: var(--dark-blue);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.75rem 1.25rem;
  text-decoration: none;

  &:hover {
    color: #fff;
    background-color: var(--blue);
  }
}
.common-btn-red {
  border-radius: 5px;
  background: var(--red);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.75rem 1.25rem;
  text-decoration: none;

  &:hover {
    color: #fff;
    background-color: var(--dark-red);
  }
}
.common-btn-orange {
  border-radius: 5px;
  background: var(--orange);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.75rem 1.25rem;
  text-decoration: none;

  &:hover {
    color: #fff;
    background-color: var(--dark-orange);
  }
}
.common-btn-green {
  border-radius: 5px;
  background: var(--green);
  color: #fff !important;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.75rem 1.25rem;
  text-decoration: none;

  &:hover {
    color: #fff;
    background-color: var(--dark-green);
  }
}
.common-btn-outline {
  border-radius: 5px;
  background: #fff;
  color: #202020;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  border: 1px solid #202020;

  &:hover {
    color: #000;
    background-color: #f5f5f5;
  }
}
.br-0 {
  border-radius: 0;
}
.br-4 {
  border-radius: 4px;
}
.common-heading-div {
  margin-top: 15px;
  position: relative;
}
.common-heading-div p.heading-para {
  position: absolute;
  color: var(--purple);
  font-size: 1rem;
  font-weight: 500;
  margin-left: 115px;
  top: -25px;
  left: 0;
}
.common-heading-div p.heading-para::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 5px;
  border-radius: 0px 50px 50px 0px;
  background: var(--purple);
  left: -115px;
  top: 50%;
  transform: translateY(-50%);
}
.common-heading-div h2.heading {
  color: #202020;
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
}
.common-heading-div h2.heading span {
  color: var(--blue);
}
.common-heading-div h2.heading.centered-heading {
  text-align: center;
}
.common-sub-heading-para {
  color: #202020;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 0;
}
.common-sub-heading-para.centered-para {
  text-align: center;
}
.back-btn {
  color: var(--text-clr);
  font-size: 1.125rem;
  font-weight: 400;
  border: none;
  background-color: transparent;
  box-shadow: none;
  margin: 25px 0 0 15px;
}
.navbar-main {
  position: fixed;
  width: 100%;
  padding-block: 14px;
  background: transparent;
  z-index: 999;
  animation-name: navAni1;
  animation-duration: 0.5s;
}
@keyframes navAni1 {
  from {
    top: 2rem;
  }
  to {
    top: 0;
  }
}
.navbar-main .navbar-nav {
  margin-bottom: 0;
}
.navbar-main .navbar-nav .nav-item {
  margin-left: 45px;
}
.navbar-main .navbar-nav .nav-item .nav-link {
  position: relative;
  color: #202020;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  padding-inline: 0;
}
.navbar-main .navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: '';
  width: 0px;
  height: 2px;
  border-radius: 5px;
  background: var(--text-clr);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.25s ease-in-out;
}
.navbar-main .navbar-nav .nav-item .nav-link.active {
  color: var(--blue);
  font-weight: 700;
}
.navbar-main .navbar-nav .nav-item .nav-link:hover {
  color: var(--blue);
}
.navbar-main .navbar-nav .nav-item .nav-link.active::before {
  width: 100%;
  background-color: var(--blue);
}
.navbar-main .navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
  background-color: var(--blue);
}
.navbar-main .navbar-nav .nav-item .login-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  height: 50px;
  padding-inline: 24px;
}
.navbar-main .navbar-nav .nav-item .login-btn::before {
  content: none;
}
.navbar-main .navbar-nav .nav-item .login-btn:hover svg path {
  fill: var(--blue);
}
.navbar-main .navbar-nav .nav-item .login-btn:hover {
  border: 1px solid var(--blue);
  background: transparent;
  color: var(--blue);
}
.navbar-main .navbar-nav .nav-item:last-child .nav-link {
  font-weight: 500;
}
.navbar-main.nav-main-section2 {
  background: #fff;
  box-shadow: 0px 1px 10px #ccc;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  animation-name: navAni2;
  animation-duration: 0.25s;
}
.navbar-main.nav-main-section2 .navbar-nav .nav-item .nav-link {
  color: #202020;
}
.navbar-main.nav-main-section2 .navbar-nav .nav-item .nav-link.active {
  color: var(--blue);
  font-weight: 700;
}
.navbar-main.nav-main-section2 .navbar-nav .nav-item .nav-link:hover {
  color: var(--blue);
}
.navbar-main.nav-main-section2 .navbar-nav .nav-item .nav-link.active::before {
  width: 100%;
  background-color: var(--blue);
}
.navbar-main.nav-main-section2 .navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
  background-color: var(--blue);
}
.navbar-main.nav-main-section2 .navbar-nav .nav-item .login-btn {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
}
.navbar-main.nav-main-section2 .navbar-nav .nav-item .login-btn:hover svg path {
  fill: var(--blue);
}
.navbar-main.nav-main-section2 .navbar-nav .nav-item .login-btn:hover {
  border: 1px solid var(--blue);
  background: transparent;
  color: var(--blue);
}
.navbar-main.nav-main-section2 .navbar-nav .nav-item:last-child .nav-link {
  font-weight: 500;
}
@keyframes navAni2 {
  from {
    top: -2rem;
  }
  to {
    top: 0;
  }
}
/* Mobile nav */
.mob-bar-and-pro-img-div {
  display: flex;
  align-items: center;
}
.mob-bar-and-pro-img-div .mob-nav-bar-btn {
  box-shadow: none;
  outline: none;
  border: none;
  z-index: 1;
}
.mob-navbar {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 350px;
  width: 100%;
  background-color: var(--blue);
  padding: 0 0 5rem 0;
  height: 100%;
  left: -100%;
  transition: all 0.3s ease-in;
  z-index: 1000;
  overflow-y: auto;
}
.mob-navbar .mob-navbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 0.5rem 1rem;
}
.mob-navbar .navbar-close-icon {
  display: inline-block;
  line-height: 1;
  padding: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}
.mob-navbar .mob-navbar-ul {
  padding: 1.5rem 1rem;
}
.mob-navbar .mob-navbar-ul li {
  margin-bottom: 0.5rem;
}
.mob-navbar .mob-navbar-ul li li:last-child {
  margin-bottom: 0;
}
.mob-navbar .mob-navbar-ul li > a {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 1rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mob-navbar .mob-navbar-ul li > a:hover {
  background-color: #fff;
  color: var(--blue);
}
.mob-navbar .mob-nav-btns {
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mob-navbar .mob-nav-btns .mob-login-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid #fff;
  background: #fff;
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 500;
  height: 40px;
  width: 100%;
  padding-inline: 15px;
}
.mob-navbar .mob-nav-btns .mob-login-btn:hover svg path {
  fill: #fff;
}
.mob-navbar .mob-nav-btns .mob-login-btn:hover {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}
.mob-navbar .mob-nav-btns .mob-trial-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  height: 40px;
  width: 100%;
  padding-inline: 15px;
  margin-top: 10px;
}
.mob-navbar .mob-nav-btns .mob-trial-btn:hover svg path {
  fill: var(--text-clr);
}
.mob-navbar .mob-nav-btns .mob-trial-btn:hover {
  border: 1px solid #fff;
  background: #fff;
  color: var(--text-clr);
}
.mob-navbar.show-navbar {
  left: 0;
}
.main-hero-section {
  position: relative;
  background: #ebf9ff;
  overflow: hidden;
}
.main-hero-section .design1 {
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
}
.main-hero-section .design2 {
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
}
.main-hero-section .container {
  position: relative;
  z-index: 1;
}
.main-hero-section .heading {
  color: #496e7c;
  text-align: center;
  font-size: 3.5rem;
  line-height: 1.125;
  font-weight: 800;
  max-width: 1018px;
  width: 100%;
  padding-top: 180px;
  margin-inline: auto;
}
.main-hero-section .para {
  color: #202020;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  max-width: 792px;
  width: 100%;
  margin-block: 25px;
  margin-inline: auto;
}
.main-hero-section .trial-schedule-btn-div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.main-hero-section .trial-schedule-btn-div .trial-btn {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: 1px solid var(--blue);
  background: var(--blue);
  height: 56px;
  padding-inline: 30px;
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
}
.main-hero-section .trial-schedule-btn-div .trial-btn:hover {
  background: #fff;
  color: var(--blue);
}
.main-hero-section .trial-schedule-btn-div .schedule-btn {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #5b8899;
  background: #fff;
  height: 56px;
  padding-inline: 30px;
  color: #202020;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
}
.main-hero-section .trial-schedule-btn-div .schedule-btn:hover {
  background: #5b8899;
  color: #fff;
}
.main-hero-section .img-div {
  margin-top: 20px;
}
.main-hero-section .img-div img {
  display: block;
  margin-inline: auto;
}
.main-hero-section.about-hero {
  background: #fff8d6;
  padding-bottom: 75px;
  margin-bottom: 0px;
}
.main-hero-section.tools-hero {
  background: #faf2ff;
  padding-bottom: 75px;
  margin-bottom: 0px;
}
.main-hero-section.testimonials-hero {
  background: #eeffe9;
  padding-bottom: 75px;
  margin-bottom: 0px;
}

.our-solution-main-section {
  padding-block: 125px 75px;
}
.our-solution-main-section .each-solution-card-div {
  display: flex;
  gap: 25px;
  height: 100%;
}
.our-solution-main-section .each-solution-card-div .left-part div {
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.our-solution-main-section .each-solution-card-div .left-part .bg-1 {
  background-color: #f5e4ff;
}
.our-solution-main-section .each-solution-card-div .left-part .bg-2 {
  background-color: #fdf3be;
}
.our-solution-main-section .each-solution-card-div .left-part .bg-3 {
  background-color: #d4fac7;
}
.our-solution-main-section .each-solution-card-div .left-part .bg-4 {
  background-color: #d1e5ec;
}
.our-solution-main-section .each-solution-card-div .right-part h3 {
  color: #202020;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.our-solution-main-section .each-solution-card-div .right-part p {
  color: var(--grey-1);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}
.analytic-data-main-section {
  padding-block: 75px;
}
.analytic-data-main-section .each-analyzing-points-div {
  display: flex;
  gap: 15px;
  margin-top: 18px;
}
.analytic-data-main-section .each-analyzing-points-div .left-part div {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: 3px;
}
.analytic-data-main-section .each-analyzing-points-div .left-part .bg-1 {
  background-color: #e4f8ff;
}
.analytic-data-main-section .each-analyzing-points-div .left-part .bg-2 {
  background-color: #e0edf1;
}
.analytic-data-main-section .each-analyzing-points-div .left-part .bg-3 {
  background-color: #d4fac7;
}
.analytic-data-main-section .each-analyzing-points-div .right-part h3 {
  color: #202020;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.analytic-data-main-section .each-analyzing-points-div .right-part p {
  color: var(--grey-1);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 500;
  margin: 0;
}
.our-features-main-section {
  padding-block: 75px;
}
.our-features-main-section .each-features-card-div {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
}
.our-features-main-section .each-features-card-div .left-part div {
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.our-features-main-section .each-features-card-div .left-part .bg-1 {
  background-color: #d4fac7;
}
.our-features-main-section .each-features-card-div .left-part .bg-2 {
  background-color: #ede7e7;
}
.our-features-main-section .each-features-card-div .left-part .bg-3 {
  background-color: #fdf3be;
}
.our-features-main-section .each-features-card-div .left-part .bg-4 {
  background-color: #f5e4ff;
}
.our-features-main-section .each-features-card-div .left-part .bg-5 {
  background-color: #d1e5ec;
}
.our-features-main-section .each-features-card-div .left-part .bg-6 {
  background-color: #e4f8ff;
}
.our-features-main-section .each-features-card-div .right-part h3 {
  color: var(--text-clr);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.our-features-main-section .each-features-card-div .right-part p {
  color: var(--grey-1);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}
.testimonial-main-section {
  padding-block: 0 75px;
  text-align: center;
}
.testimonial-main-section .testimonial-head-div {
  padding: 100px 15px;
  background: linear-gradient(135deg, #1998e7 0%, #c555b9 100%);
}
.testimonial-main-section .testimonial-head-div h2 {
  color: #fff;
  text-align: center;
  font-size: 3.75rem;
  font-weight: 800;
  margin-bottom: 10px;
  margin: 0;
}
.testimonial-main-section .testimonial-head-div p {
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
}
.testimonial-main-section .slider {
  position: relative;
  margin-top: -60px;
}
.testimonial-main-section .slider .owl-nav {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.testimonial-main-section .slider .owl-nav .owl-prev {
  position: relative;
  width: 35px;
  height: 35px;
  background-color: #ede7e7;
  border-radius: 50%;
  padding: 0;
}
.testimonial-main-section .slider .owl-nav .owl-prev span {
  display: none;
}
.testimonial-main-section .slider .owl-nav .owl-prev::before {
  content: url('../images/icons/carausel-arrow.svg');
  position: absolute;
  top: 21px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.testimonial-main-section .slider .owl-nav .owl-prev:hover {
  background-color: #ecb6b6;
}
.testimonial-main-section .slider .owl-nav .owl-next {
  position: relative;
  width: 35px;
  height: 35px;
  background-color: #ede7e7;
  border-radius: 50%;
  padding: 0;
}
.testimonial-main-section .slider .owl-nav .owl-next span {
  display: none;
}
.testimonial-main-section .slider .owl-nav .owl-next::before {
  content: url('../images/icons/carausel-arrow.svg');
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-180deg);
}
.testimonial-main-section .slider .owl-nav .owl-next:hover {
  background-color: #ecb6b6;
}
.testimonial-owl .owl-stage{
  margin: 0 auto;
}
.testimonial-main-section .each-testimonial-card {
  border-radius: 10px; 
  background: #fff; 
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  min-width: 33.333%;
  margin: 0.8rem;
  text-align: left;
  padding: 30px 20px;
}
 .each-testimonial-card .cout-img {
  width: 35px;
  height: 25px;
}
.testimonial-main-section .each-testimonial-card .comment-para {
  color: #202020;
  font-size: 1rem;
  font-weight: 500;
  margin: 10px 0 20px 0;
}
.testimonial-main-section .each-testimonial-card .testimonial-details {
  display: flex;
  gap: 10px;
}
.testimonial-main-section .each-testimonial-card .img-div {
  width: 50px;
  height: 50px;
  overflow: hidden;
}
.testimonial-main-section .each-testimonial-card .img-div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.testimonial-main-section .each-testimonial-card .detail-div h6 {
  color: #202020;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}
.testimonial-main-section .each-testimonial-card .detail-div p {
  color: #202020;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
}
.best-plan-main-section {
  padding-block: 50px 75px;
}
.checkbox-div {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.checkbox-div .rangeSliderHeading {
  color: rgb(6, 2, 114);
  text-align: center;
}
.checkbox-div .paymentSwitch {
  position: relative;
  display: inline-block;
  width: 75px;
  height: 35px;
}
.checkbox-div .paymentSwitch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox-div .paymentSlider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #ccc;
  background-color: transparent;
  transition: 0.4s cubic-bezier(0, 1, 0.5, 1);
  border-radius: 50px;
}
.checkbox-div .paymentSlider:before {
  position: absolute;
  content: '';
  height: 25px;
  width: 25px;
  left: 5px;
  bottom: 3px;
  background-color: var(--dark-blue);
  transition: 0.4s cubic-bezier(0, 1, 0.5, 1);
  border-radius: 50%;
}
  .checkbox-div
  .paymentSwitch
  input:not(:checked)
  + .paymentSlider:before {
  background-color: #ccc;
}
  .checkbox-div
  .paymentSwitch
  input:checked
  + .paymentSlider {
  border: 2px solid var(--dark-blue);
  background-color: transparent;
}
  .checkbox-div
  .paymentSwitch
  :checked
  + .paymentSlider:before {
  transform: translateX(37px);
}
.checkbox-div .monthly-para,
.checkbox-div .anually-para {
  color: #b0b0b0;
  font-size: 1.125rem;
  font-weight: 600;
  white-space: nowrap;
}
.checkbox-div .monthly-para {
  position: absolute;
  width: 120px;
  left: -130px;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
}
.checkbox-div .anually-para {
  position: absolute;
  width: 120px;
  right: -130px;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
}
  .checkbox-div
  .paymentSwitch
  input:not(:checked)
  ~ .monthly-para {
  color: var(--dark-blue);
}
  .checkbox-div
  .paymentSwitch
  input:checked
  ~ .anually-para {
  color: var(--dark-blue);
}
.best-plan-main-section .discout-div {
  border-radius: 50px;
  border: 1px solid var(--purple);
  background: #f9f0ff;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 5px 30px;
  color: #c576f6;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 18px;
}
.best-plan-main-section .plan-each-card {
  border-radius: 15px;
  padding: 30px 23px;
  margin-top: 30px;
  color: #202020;
}
.best-plan-main-section .plan-each-card.card1 {
  background: #d4fac7;
}
.best-plan-main-section .plan-each-card.card2 {
  background: #f5e4ff;
}
.best-plan-main-section .plan-each-card.card3 {
  background: #daf5ff;
}
.best-plan-main-section .plan-each-card .price-para {
  color: #202020;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.best-plan-main-section .plan-each-card .price-para span {
  color: #202020;
  font-size: 1.125rem;
  font-weight: 600;
}
.best-plan-main-section .plan-each-card .plan-name {
  color: #202020;
  font-size: 1.25rem;
  font-weight: 600;
}
.best-plan-main-section .plan-each-card .plan-description {
  color: var(--grey-1);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid #c1c1c1;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.best-plan-main-section .plan-each-card .plan-list {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}
.best-plan-main-section .plan-each-card .plan-list li {
  position: relative;
  color: #202020;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 10px;
  padding-left: 30px;
}
.best-plan-main-section .plan-each-card .plan-list li::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 17 17" fill="none"><path d="M15.3041 8.41113H1.30408M15.3041 8.41113L8.30408 1.41113M15.3041 8.41113L8.30408 15.4111" stroke="black" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  position: absolute;
  left: 0;
  top: 2.8px;
}
.best-plan-main-section .plan-each-card a.btn {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.best-plan-main-section .plan-each-card a.btn:hover {
  box-shadow: none;
}
.cta-main-section {
  position: relative;
  background: var(--blue);
  padding-block: 100px;
  text-align: center;
}
.cta-main-section .cta-design1 {
  position: absolute;
  left: 12px;
  top: 12px;
}
.cta-main-section .cta-design2 {
  position: absolute;
  right: 12px;
  bottom: 12px;
}
.cta-main-section .cta-heading {
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
}
.cta-main-section p.cta-para {
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  margin-block: 23px 20px;
}
.cta-main-section .cta-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  padding-inline: 24px;
  margin-inline: auto;
  overflow: hidden;
}
.cta-main-section .cta-btn::before {
  position: absolute;
  content: '';
  left: -35px;
  width: 20px;
  height: 80px;
  top: -10px;
  background-color: rgba(255, 255, 255, 0.1921568627);
  transform: rotate(30deg);
  transition: all 0.5s ease-in-out;
}
.cta-main-section .cta-btn:hover::before {
  left: calc(100% + 30px);
}
.cta-main-section.tools-cta {
  background: linear-gradient(135deg, #1998e7 0%, #c555b9 100%);
}
footer {
  padding-top: 45px;
}
footer .footer-large-para {
  color: #6b6b6b;
  font-size: 1rem;
  font-weight: 500;
  max-width: 440px;
  margin-block: 15px;
}
footer .social-div ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
footer .social-div ul li a {
  text-decoration: none;
  background-color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .social-div ul li a:hover {
  filter: grayscale(100%);
}
footer .social-div ul li.fb a {
  background-color: #3b5998;
}
footer .social-div ul li.twitter a {
  background-color: var(--blue);
}
footer .social-div ul li.likedin a {
  background-color: var(--dark-blue);
}
footer .social-div ul li.insta a {
  background-color: #c32aa3;
}
footer .each-link-div p {
  color: #202020;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 28px;
}
footer .each-link-div ul {
  padding: 0;
  list-style: none;
}
footer .each-link-div ul li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #202020;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 24px;
}
footer .each-link-div ul li a:hover {
  color: var(--blue);
}
footer .each-link-div ul li:first-child {
  margin-top: 0;
}
footer .footer-bottom-para {
  color: var(--grey-1);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 75px 0 0 0;
  padding: 10px;
  border-top: 1px solid #d1e5ec;
}
.auth-modal-main-div .modal-content {
  background-color: #fff;
  border: none;
  border-radius: 10px;
  margin-top: 50px;
}
.auth-modal-main-div .modal-close-btn {
  position: absolute;
  box-shadow: none;
  outline: none;
  padding: 10px;
  right: 0;
  top: -50px;
  transition: all 0.25s ease-in-out;
}
.auth-modal-main-div .modal-close-btn:hover {
  transform: rotate(90deg);
}
.auth-modal-main-div .main-row {
  display: flex;
}
.auth-modal-main-div .main-row .col1 {
  background: var(--blue);
  width: 45%;
  padding: 65px 30px;
  border-radius: 10px 0 0 10px;
}
.auth-modal-main-div .main-row .col1 h3.auth-heading {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.auth-modal-main-div .main-row .col1 p.auth-para {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 50px;
}
.auth-modal-main-div .main-row .col1 img {
  display: block;
  margin-inline: auto;
}
.auth-modal-main-div .main-row .col2 {
  background: #fff;
  width: 55%;
  max-width: 400px;
  margin-inline: auto;
  padding-block: 65px;
  border-radius: 0 10px 10px 0;
}
.auth-modal-main-div .main-row .each-auth-input-div {
  margin-bottom: 22px;
}
.auth-modal-main-div .signup-agreement-para {
  color: var(--text-clr);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0;
}
.auth-modal-main-div .signup-agreement-para a {
  color: #5b8899;
}
.auth-modal-main-div .signup-agreement-para a:hover {
  color: #04475f;
}
.auth-modal-main-div .login-forget-btn-div {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}
.auth-modal-main-div .login-forget-btn-div .login-btn {
  border-radius: 5px;
  border: 1px solid var(--blue);
  background: var(--blue);
  width: 100%;
  height: 50px;
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  box-shadow: none;
}
.auth-modal-main-div .login-forget-btn-div .login-btn:hover {
  background: transparent;
  color: var(--blue);
}
.auth-modal-main-div .login-forget-btn-div .forgot-btn {
  text-decoration: underline;
  border-radius: 5px;
  background: transparent;
  height: 50px;
  text-align: center;
  color: #5b8899;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0;
  box-shadow: none;
}
.auth-modal-main-div .or-login-with-para {
  margin: 15px 0 18px 0;
  text-align: center;
  color: var(--text-clr);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}
.auth-modal-main-div .google-auth-btn {
  margin: 0 auto;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  border: 1px solid #1976d2;
  background: #f1fbff;
  box-shadow: none;
}
.auth-modal-main-div .text-para {
  color: #0c4160;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  margin: 100px 0 12px 0;
}
.auth-modal-main-div .create-login-auth-btn {
  border-radius: 5px;
  border: 1px solid #5b8899;
  background: #fff;
  width: 100%;
  color: var(--dark-clr);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
}
.auth-modal-main-div .create-login-auth-btn:hover {
  background-color: #5b8899;
  color: #fff;
}
.auth-modal-main-div .forgot-password-body {
  padding: 50px 0;
}
.auth-modal-main-div .forgot-password-body h3 {
  color: var(--dark-clr);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
.auth-modal-main-div .forgot-password-body p {
  color: var(--dark-clr);
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  margin: 10px 0 30px;
}
.auth-modal-main-div .forgot-password-body .forgot-pass-form-div {
  max-width: 450px;
  width: 100%;
  margin-inline: auto;
}
.auth-modal-main-div .forgot-password-body .forgot-pass-form-div .forgot-btn {
  border-radius: 5px;
  border: 1px solid var(--blue);
  background: var(--blue);
  width: 100%;
  height: 50px;
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  box-shadow: none;
  margin-top: 35px;
}
.auth-modal-main-div .forgot-password-body .forgot-pass-form-div .forgot-btn:hover { 
  background: transparent;
  color: var(--blue);
}
.auth-modal-main-div .forgot-password-body .forgot-pass-form-div .forgot-para {
  color: #0c4160;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  margin: 70px 0 12px 0;
}
.auth-modal-main-div .forgot-password-body .forgot-pass-form-div .auth-back-btn {
  border-radius: 5px;
  border: 1px solid #5b8899;
  background: #fff;
  width: 100%;
  height: 50px;
  color: var(--dark-clr);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
}
.auth-modal-main-div .forgot-password-body .forgot-pass-form-div .auth-back-btn:hover {
  background-color: #5b8899;
  color: #fff;
}
.each-auth-input-div {
  position: relative;
}
.each-auth-input-div label {
  position: absolute;
  left: 0;
  top: 8px;
  transition: all 0.25s ease-in-out;
  cursor: text;
  color: #999;
  pointer-events: none;
  font-size: 0.875rem;
}
.each-auth-input-div label.active {
  top: -15px;
  color: #999;
  font-size: 0.875rem;
  font-weight: 400;
}
.each-auth-input-div input {
  border: none;
  border-bottom: 1px solid var(--input-border);
  box-shadow: none;
  outline: none;
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 400;
  padding-block: 8px;
  width: 100%;
  background-color: var(--card-bg);
}
.each-auth-input-div input:focus ~ label {
  top: -8px;
  color: #555;
  font-size: 0.75rem;
  font-weight: 400;
}
.show-hide-para {
  position: absolute;
  right: 0;
  top: 2px;
  color: #6b6b6b;
  font-size: 0.75rem;
  font-weight: 400;
  cursor: pointer;
  margin: 0;
}
.reset-password-main-section {
  padding: 25px 0 50px;
  margin-left: 250px;
}
.reset-password-main-section.extra {
  padding-top: 50px;
  min-height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  background-color: #f2fbff;
}
.reset-password-main-section h3 {
  color: var(--dark-clr);
  text-align: center;
  font-size: 2.25rem;
  line-height: 1.125;
  font-weight: 700;
}
.reset-password-main-section p {
  color: var(--dark-clr);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  margin: 10px 0 15px;
  
  &.auth-para{
    font-size: 1rem;
  }
}
.reset-password-main-section .reset-pass-form-div {
  max-width: 450px;
  width: 100%;
  margin-inline: auto;
}
.reset-password-main-section .reset-pass-form-div .reset-btn {
  border-radius: 5px;
  border: 1px solid var(--blue);
  background: var(--blue);
  width: 100%;
  height: 50px;
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  box-shadow: none;
  margin-top: 35px;
}
.reset-password-main-section .reset-pass-form-div .reset-btn:hover {
  background: transparent;
  color: var(--blue);
}
.reset-password-main-section .reset-pass-form-div .reset-para {
  color: #0c4160;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  margin: 70px 0 12px 0;
}
.reset-password-main-section .reset-pass-form-div .auth-back-btn {
  border-radius: 5px;
  border: 1px solid #5b8899;
  background: #fff;
  width: 100%;
  height: 50px;
  color: var(--dark-clr);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
}
.reset-password-main-section .reset-pass-form-div .auth-back-btn:hover {
  background-color: #5b8899;
  color: #fff;
}
.reset-password-main-section .reset-pass-form-div .each-auth-input-div {
  margin-bottom: 30px;
}
.aboutus-desc-main-section {
  padding: 75px;
  background-color: var(--card-bg);
}
.aboutus-desc-main-section p.aboutus-para {
  color: var(--grey-1);
  font-size: 1.125rem;
  font-weight: 500;
  margin: 21px 0 0 0;
}
.counter-main-section {
  padding-block: 75px;
  background-color: #fff;
}
.counter-main-section .each-counter-div {
  display: flex;
  align-items: center;
  gap: 25px;
}
.counter-main-section .each-counter-div .left-div div {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.counter-main-section .each-counter-div .left-div div.count1 {
  background: #d4fac7;
}
.counter-main-section .each-counter-div .left-div div.count2 {
  background: #f5e4ff;
}
.counter-main-section .each-counter-div .left-div div.count3 {
  background: #d1e5ec;
}
.counter-main-section .each-counter-div .right-div .para1 {
  color: #202020;
  font-size: 4rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
.counter-main-section .each-counter-div .right-div .para2 {
  color: var(--grey-1);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}
.cta2-main-section {
  position: relative;
  padding-block: 100px;
  background-color: var(--card-bg-2);
}
.cta2-main-section .cta-design1 {
  position: absolute;
  left: 12px;
  top: 12px;
}
.cta2-main-section .cta-design2 {
  position: absolute;
  right: 12px;
  bottom: 12px;
}
.cta2-main-section p.left-para-1 {
  color: var(--text-clr);
  font-size: 3rem;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 10px;
}
.cta2-main-section p.left-para-2 {
  color: var(--text-clr);
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
}
.cta2-main-section .live-free-trial-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta2-main-section .live-free-trial-btns .free-trial-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding-inline: 30px;
  border-radius: 5px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  white-space: nowrap;
}
.cta2-main-section .live-free-trial-btns .free-trial-btn:hover {
  background-color: transparent;
  color: var(--blue);
}
.cta2-main-section .live-free-trial-btns .live-demo-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding-inline: 30px;
  border-radius: 5px;
  border: 1px solid #5b8899;
  background: var(--card-bg);
  color: var(--dark-clr);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  white-space: nowrap;
}
.cta2-main-section .live-free-trial-btns .live-demo-btn:hover {
  background-color: #5b8899;
  color: #fff;
}
.cta2-main-section.testimonial-cta {
  background-color: #f2f2f2;
}
.seperated-line {
  background: #d0cde1;
  border: none;
  width: 100%;
  height: 1px;
}
.tool-points-main-section {
  padding-block: 0 75px;
}
.tool-points-main-section .each-solution-card-div {
  display: flex;
  gap: 25px;
  height: 100%;
}
.tool-points-main-section .each-solution-card-div .left-part div {
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.tool-points-main-section .each-solution-card-div .left-part .bg-1 {
  background-color: #e0edf1;
}
.tool-points-main-section .each-solution-card-div .left-part .bg-2 {
  background-color: #e4f8ff;
}
.tool-points-main-section .each-solution-card-div .right-part h3 {
  color: var(--text-clr);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.tool-points-main-section .each-solution-card-div .right-part p {
  color: var(--grey-1);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.pricing-hero-section {
  background-color: #ebf9ff;
  height: 600px;
}

.pricing-section {
  margin-top: -520px;
}
.pricing-section .common-heading-div h2 {
  color: #496e7c;
  font-size: 3.75rem;
  line-height: 1.125;
  font-weight: 800;
  max-width: 1018px;
  width: 100%;
  margin-inline: auto;
}
.pricing-section .common-heading-div h2 span {
  color: #496e7c;
}
.pricing-section .common-sub-heading-para {
  max-width: 1018px;
  width: 100%;
  margin-inline: auto;
}
.faq-main-section {
  padding-block: 75px;
}
.faq-main-section .middle-accordation-div {
  max-width: 853px;
  margin: 30px auto 0 auto;
}
.faq-main-section .main-lable {
  display: block;
  border-bottom: 1px solid #e6e6e6;
  border-radius: 5px;
  margin-top: 12px;
  padding-block: 20px;
}
.faq-main-section .question-text {
  position: relative;
  display: flex;
  align-items: center;
  color: #202020;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  padding-right: 50px;
}
.faq-main-section .answer-div {
  padding-top: 8px;
  color: #202020;
  font-size: 1rem;
  font-weight: 400;
  display: none;
  transition: all 0.25s;
  padding-right: 50px;
}
.faq-main-section .main-lable input:checked ~ .question-text ~ .answer-div {
  display: block;
  transition: all 0.25s;
}
.faq-main-section .main-lable .question-text .collapse-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  width: 35px;
  height: 35px;
  border: 2px solid var(--text-clr);
  border-radius: 50%;
}
.faq-main-section .main-lable input:not(:checked) ~ .question-text .collapse-btn::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 15 15" fill="none"><path d="M7.70911 0.649902C7.95376 0.649902 8.1884 0.747092 8.3614 0.920092C8.5344 1.09309 8.63159 1.32773 8.63159 1.57239V6.7998H13.859C14.1037 6.7998 14.3383 6.89699 14.5113 7.06999C14.6843 7.24299 14.7815 7.47763 14.7815 7.72229C14.7815 7.96695 14.6843 8.20159 14.5113 8.37459C14.3383 8.54759 14.1037 8.64478 13.859 8.64478H8.63159V13.8722C8.63159 14.1169 8.5344 14.3515 8.3614 14.5245C8.1884 14.6975 7.95376 14.7947 7.70911 14.7947C7.46445 14.7947 7.22981 14.6975 7.05681 14.5245C6.88381 14.3515 6.78662 14.1169 6.78662 13.8722V8.64478H1.5592C1.31455 8.64478 1.07991 8.54759 0.906908 8.37459C0.733909 8.20159 0.636719 7.96695 0.636719 7.72229C0.636719 7.47763 0.733909 7.24299 0.906908 7.06999C1.07991 6.89699 1.31455 6.7998 1.5592 6.7998H6.78662V1.57239C6.78662 1.32773 6.88381 1.09309 7.05681 0.920092C7.22981 0.747092 7.46445 0.649902 7.70911 0.649902Z" fill="black"/></svg>');
  position: absolute;
  transition: all 0.25s;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 0;
}
.faq-main-section .main-lable input:checked ~ .question-text .collapse-btn::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="3" viewBox="0 0 15 3" fill="none"><path d="M14.709 2.04834H0.708984V0.0483398H14.709V2.04834Z" fill="black"/></svg>');
  transition: all 0.25s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% - 1px));
  line-height: 0;
}
.testimonial-page-mai-section {
  padding-block: 75px;
  text-align: center;
  background-color: #fff;
}
.testimonial-page-mai-section .slider {
  position: relative;
}
.testimonial-page-mai-section .slider .owl-nav {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.testimonial-page-mai-section .slider .owl-nav .owl-prev {
  position: relative;
  width: 35px;
  height: 35px;
  background-color: #ede7e7;
  border-radius: 50%;
  padding: 0;
  left: -70px;
}
.testimonial-page-mai-section .slider .owl-nav .owl-prev span {
  display: none;
}
.testimonial-page-mai-section .slider .owl-nav .owl-prev::before {
  content: url('../images/icons/carausel-arrow.svg');
  position: absolute;
  top: 21px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.testimonial-page-mai-section .slider .owl-nav .owl-prev:hover {
  background-color: #ecb6b6;
}
.testimonial-page-mai-section .slider .owl-nav .owl-next {
  position: relative;
  width: 35px;
  height: 35px;
  background-color: #ede7e7;
  border-radius: 50%;
  padding: 0;
  right: -70px;
}
.testimonial-page-mai-section .slider .owl-nav .owl-next span {
  display: none;
}
.testimonial-page-mai-section .slider .owl-nav .owl-next::before {
  content: url('../images/icons/carausel-arrow.svg');
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-180deg);
}
.testimonial-page-mai-section .slider .owl-nav .owl-next:hover {
  background-color: #ecb6b6;
}
.testimonial-page-mai-section .each-testimonial-card {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  min-width: 33.333%;
  margin: 0.8rem;
  text-align: left;
  padding: 30px 20px;
}
.testimonial-page-mai-section .each-testimonial-card .cout-img {
  width: 35px;
  height: 25px;
}
.testimonial-page-mai-section .each-testimonial-card .comment-para {
  color: #202020;
  font-size: 1rem;
  font-weight: 500;
  margin: 10px 0 35px 0;
}
.testimonial-page-mai-section .each-testimonial-card .testimonial-details {
  display: flex;
  gap: 10px;
}
.testimonial-page-mai-section .each-testimonial-card .img-div {
  width: 50px;
  height: 50px;
  overflow: hidden;
}
.testimonial-page-mai-section .each-testimonial-card .img-div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.testimonial-page-mai-section .each-testimonial-card .detail-div h6 {
  color: #202020;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}
.testimonial-page-mai-section .each-testimonial-card .detail-div p {
  color: #202020;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}
.love-product-main-section {
  padding-block: 75px;
}
.love-product-main-section .love-product-each-card {
  border-radius: 15px;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
  padding: 25px 22px;
}
.love-product-main-section .top-user-and-social-icon {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
}
.love-product-main-section .user-details {
  display: flex;
  align-items: center;
  gap: 12px;
}
.love-product-main-section .user-img-div {
  width: 40px;
  height: 40px;
  overflow: hidden;
}
.love-product-main-section .user-img-div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.love-product-main-section .name {
  color: #202020;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0;
}
.love-product-main-section .date-time {
  color: #999;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
}
.love-product-main-section .social-icon-div {
  width: 35px;
  height: 35px;
  background-color: #ededed;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.love-product-main-section .text-para {
  color: #202020;
  font-size: 1rem;
  font-weight: 500;
  margin: 20px 0 0 0;
}
.love-product-main-section .see-more-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 5px;
  border: 1px solid var(--blue);
  background: var(--blue);
  height: 56px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0 auto;
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  padding-inline: 18px;
}
.love-product-main-section .see-more-btn:hover {
  background: transparent;
  color: var(--blue);
}
.love-product-main-section .see-more-btn:hover svg path {
  fill: var(--blue);
}
.dashboard-navbar-main {
  border-bottom: 1px solid var(--card-border);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
  padding-inline: 30px;
  position: sticky;
  top: 0;
  z-index: 3;
  background-color: var(--card-bg);
}
.dashboard-navbar-main .mobile-nav-icons-and-bars {
  align-items: center;
  gap: 35px;
}
.dashboard-navbar-main .mobile-nav-icons-and-bars .mobile-nav-icons {
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dashboard-navbar-main .mobile-nav-icons-and-bars .mobile-nav-icons .nav-item {
  margin-left: 0;
}
.dashboard-navbar-main .nav-item {
  margin-left: 30px;
}
.dashboard-navbar-main .nav-item .nav-link {
  position: relative;
  transition: all 0.2s ease-in-out;
  padding-inline: 0;
}
.dashboard-navbar-main .nav-item .nav-link:hover {
  opacity: 0.6;
}
.dashboard-navbar-main .nav-item .naming {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid var(--card-border);
  color: var(--dark-clr);
  font-size: 1rem;
  font-weight: 500;
  min-width: 150px;
  height: 40px;
  padding-inline: 10px;
  opacity: 1;
}
.dashboard-navbar-main .nav-item .naming::after {
  display: none;
}
.dashboard-navbar-main .nav-item .naming:hover {
  opacity: 1;
}
.dashboard-navbar-main .nav-item .nav-user-icon {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}
.dashboard-navbar-main .nav-item .nav-user-icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  left: 0;
  top: 0;
}
.dashboard-navbar-main .nav-item:nth-child(1) {
  margin-left: 0;
}
.dashboard-left-main-section {
  position: fixed;
  top: -1px;
  width: 250px;
  height: 100vh;
  max-height: 100vh;
  background-color: transparent;
  border-right: 1px solid var(--input-border);
  transition: all 0.2s ease-in-out;
  z-index: 9;
}
.sidebar-logo-holder{
  padding: 5px;
  background-color: var(--card-bg);
  min-height: 64px;
}
.dashboard-left-main-section .collapse-btn {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #07349f;
  display: flex;
  justify-content: center;
  align-items: center;
  right: -16px;
  top: 19px;
  box-shadow: none;
  transition: all 0.2s ease-in-out;
  z-index: 5;
}
.dashboard-left-main-section .collapse-btn:hover {
  background-color: #1a4578;
}
@media screen and (min-width: 992px){
  .dashboard-left-main-section.hide {
    transition: all 0.2s ease-in-out;
    width: 65px;

    &.stretch{
      width: 250px;
    }
  }
  .dashboard-left-main-section.hide .sidebar-links-wrapper .each-link-div span{
    display: none;
  }
  .dashboard-left-main-section.hide.stretch .sidebar-links-wrapper .each-link-div span{
    display: inline;
  }
  .dashboard-left-main-section.hide .collapse-btn {
    transition: all 0.2s ease-in-out;
    transform: rotate(180deg);
    right: -35px;
  }
  .dashboard-left-main-section.hide.stretch .collapse-btn {
    right: -15px;
  }
}
.dashboard-left-main-section.show .collapse-btn {
  transform: rotate(0deg);
  right: -16px;
}
.dashboard-left-main-section.hide ~ .dashboard-right-main-section {
  transition: all 0.2s ease-in-out;

  @media screen and (width > 992px){
    margin-left: 65px;
  }
}
/* .dashboard-left-main-section.hide ~ .dashboard-right-main-section {
  transition: all 0.2s ease-in-out;
  margin-left: 0;
} */
.dashboard-left-main-section .dashboard-sidebar-all-links-div {
  background-color: var(--sidebar-clr);
}
.dashboard-left-main-section .sidebar-links-wrapper{
  height: calc(100vh - 60px);
  padding-inline: 10px;
  overflow-y: auto;
  padding-block: 15px 25px;
  overscroll-behavior-y: contain; 
}
.dashboard-left-main-section .dashboard-sidebar-all-links-div .links-bundles {
  transition: all 0.25s ease-in-out;
}
.dashboard-left-main-section .dashboard-sidebar-all-links-div .links-bundles.collapse {
  transition: all 0.25s ease-in-out;
}
.dashboard-left-main-section .dashboard-sidebar-all-links-div .each-link-div {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 5px;
  background: transparent;
  margin-top: 10px;
}
.dashboard-left-main-section .dashboard-sidebar-all-links-div .each-link-div.active,
.dashboard-left-main-section .dashboard-sidebar-all-links-div .each-link-div.active:hover {
  background: #3270B9;
}
.dashboard-left-main-section .dashboard-sidebar-all-links-div .each-link-div svg{
  flex-shrink: 0;
}
.dashboard-left-main-section .dashboard-sidebar-all-links-div .each-link-div:hover {
  background: rgba(255,255,255,0.075);
}
.dashboard-left-main-section .dashboard-sidebar-all-links-div .links-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-block: 30px 0;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.dashboard-left-main-section .dashboard-sidebar-all-links-div .links-heading.collapsed img {
  transform: rotate(-90deg);
  transition: all 0.25s ease-in-out;
}
.dashboard-right-main-section {
  transition: all 0.2s ease-in-out;
  margin-left: 250px;
  padding: 25px 30px 0;
  background-color: var(--background-clr);
  min-height: calc(100vh - 68px);
}
.dashboard-right-main-section.no-bg {
  background-color: var(--card-bg);
}
.dashboard-right-main-section.h-auto {
  min-height: auto;
}
.dashboard-right-main-section .dashboad-right-common-head-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding-block: 25px 15px;
  padding-inline: 10px 20px;
}
.dashboard-right-main-section .dashboad-right-common-head-div .left-div {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 1rem;
}
.dashboard-right-main-section .dashboad-right-common-head-div .left-div p.heading-para {
  color: var(--text-clr);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dashboard-right-main-section .dashboad-right-common-head-div .left-div p.heading-para.profit-table-head-para {
  font-size: 1rem;
  font-weight: 600;
}
.dashboard-right-main-section .dashboad-right-common-head-div .left-div p.heading-para span.status {
  border-radius: 19.091px;
  background: rgba(198, 207, 250, 0.35);
  padding: 4px 14px;
  border-radius: 50px;
  color: #3f3d56;
  font-size: 0.875rem;
  font-weight: 400;
}
.header-search-div {
  position: relative;
  max-width: 290px;
  width: 100%;
}
.header-search-div svg {
  position: absolute;
  left: 14px;
  top: 10px;
}
.header-search-div input {
  border-radius: 10px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  height: 40px;
  width: 100%;
  padding-inline: 45px 14px;
  box-shadow: none;
  outline: none;
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 500;
}
.header-search-div input::-moz-placeholder {
  color: #ccc;
  font-size: 1rem;
  font-weight: 500;
}
.header-search-div input::placeholder {
  color: var(--placeholder-text);
  font-size: 1rem;
  font-weight: 500;
}
.header-select-div select {
  border-radius: 5px;
  border: 1px solid var(--card-border);
  background-color: var(--card-bg);
  height: 35px;
  padding-inline: 10px 45px;
  color: var(--text-clr);
  font-size: 0.9375rem;
  font-weight: 400;
  box-shadow: none;
  outline: none;
  margin-left: auto;
}
.custom-form-select {
  border-radius: 0;
}
.custom-form-select:active,
.custom-form-select:focus {
  outline: none;
  box-shadow: none;
}
.dashboard-right-main-section .dashboad-right-common-head-div .left-div .date-input-div {
  position: relative;
}
.dashboard-right-main-section .dashboad-right-common-head-div .left-div .date-input-div input[type='date']::-webkit-calendar-picker-indicator {
  color: transparent;
  background: none;
}
.dashboard-right-main-section .dashboad-right-common-head-div .left-div .date-input-div .calender-label {
  position: absolute;
  right: 15px;
  top: 5px;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.dashboard-right-main-section .dashboad-right-common-head-div .left-div .date-input-div .calender-label img {
  width: 100%;
  height: 100%;
}
.dashboard-right-main-section .dashboad-right-common-head-div .left-div .date-input-div input {
  border-radius: 5px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  min-width: 250px;
  width: 100%;
  height: 36px;
  padding-inline: 10px;
  box-shadow: none;
  outline: none;
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 400;
}
.dashboard-right-main-section .dashboad-right-common-head-div .left-div .date-input-div input::-moz-placeholder {
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 500;
}
.dashboard-right-main-section .dashboad-right-common-head-div .left-div .date-input-div input::placeholder {
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 500;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-left: auto;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .right-label-text {
  color: var(--dark-clr);
  font-size: 1rem;
  font-weight: 500;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .date-input-div {
  position: relative;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .date-input-div input[type='date']::-webkit-calendar-picker-indicator {
  color: transparent;
  background: none;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .date-input-div .calender-label {
  position: absolute;
  right: 15px;
  top: 5px;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .date-input-div .calender-label img {
  width: 100%;
  height: 100%;
}
.dark-mode .dashboard-right-main-section .dashboad-right-common-head-div .right-div .date-input-div .calender-label img{
  filter: brightness(100);
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .date-input-div input {
  border-radius: 10px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  min-width: 245px;
  width: 100%;
  height: 36px;
  padding-inline: 10px;
  box-shadow: none;
  outline: none;
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 400;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .date-input-div input::-moz-placeholder {
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 500;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .date-input-div input::placeholder {
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 500;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-back-btn {
  position: relative;
  background-color: var(--btn-bg);
  box-shadow: none;
  outline: none;
  border: none;
  padding: 0.375rem 0.5rem;
  padding-inline: 12px;
  border-radius: 5px;
  transition: all 5s ease-in-out;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-back-btn:hover {
  position: relative;
  left: -5px;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-select-period-input {
  max-width: 192px;
  width: 100%;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-select-period-input .dropdown button {
  border-radius: 5px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 400;
  box-shadow: none;
  outline: none;
  height: 35px;
  padding-inline: 10px;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-select-period-input .dropdown button::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="10" viewBox="0 0 15 10" fill="none"><path d="M7.78617 9.08935L0.768621 1.76783L1.75108 0.742814L7.78617 7.03933L13.8213 0.742815L14.8037 1.76783L7.78617 9.08935Z" fill="%2var(--text-clr)"/></svg>');
  border: none;
  vertical-align: middle;
  margin-left: 35px;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-select-period-input .dropdown .dropdown-menu {
  width: 100%;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-select-period-input .dropdown .dropdown-menu .checkbox-label {
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-select-period-input .dropdown .dropdown-menu .checkbox-label label {
  width: 15px;
  height: 15px;
  border-radius: 1px;
  border: 1px solid #999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-select-period-input .dropdown .dropdown-menu .checkbox-label input:checked ~ label {
  background-color: #999;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-select-period-input .dropdown .dropdown-menu li {
  padding: 5px 10px;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-select-period-input select {
  border-radius: 5px;
  border: 1px solid var(--card-border);
  background-color: var(--card-bg);
  height: 35px;
  width: 100%;
  padding-inline: 10px 30px;
  color: var(--text-clr);
  font-size: 0.9375rem;
  font-weight: 400;
  box-shadow: none;
  outline: none;
  margin-left: auto;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-select-period-input .graph-type {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .graph-type select {
  min-width: 108px;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-delete-btn {
  background-color: #ffcdd3;
  width: 35px;
  height: 35px;
  box-shadow: none;
  outline: none;
  border: none;
  border-radius: 5px;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-delete-btn:hover {
  background-color: rgb(255, 150, 194);
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-pdf-btn {
  background-color: #f5e4ff;
  width: 35px;
  height: 35px;
  box-shadow: none;
  outline: none;
  border: none;
  border-radius: 5px;
}
.negative-btn.disabled:hover{
  background-color: #eee;
}
.negative-btn.disabled img{
  filter: grayscale(1);
  opacity: 0.30;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-pdf-btn:hover {
  background-color: #e5bdfc;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-download-btn {
  background-color: #d4fac7;
  width: 35px;
  height: 35px;
  box-shadow: none;
  outline: none;
  border: none;
  border-radius: 5px;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-download-btn:hover {
  background-color: #bdfda8;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-print-btn {
  background-color: #def6ff;
  width: 35px;
  height: 35px;
  box-shadow: none;
  outline: none;
  border: none;
  border-radius: 5px;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .head-print-btn:hover {
  background-color: #d4d4d4;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .ad-new-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 0.5rem 1rem;
  box-shadow: none;
  outline: none;
  border-radius: 5px;
  color: var(--dark-clr);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .ad-new-btn:hover {
  background-color: var(--background-clr);
}
.dark-mode .ad-new-btn svg path{
  fill: #fff;
}
.dashboard-right-main-section .dashboad-right-common-head-div.profit-loss-head {
  padding: 20px;
  border-bottom: 1px solid var(--card-border);
}
.dashboard-right-main-section .dashboad-right-common-head-div.profit-loss-head .right-div .header-select-div select {
  border-radius: 5px;
  border: 1px solid var(--card-border);
  background-color: var(--card-bg);
  height: 35px;
  padding-inline: 10px 45px;
  color: var(--text-clr);
  font-size: 0.9375rem;
  font-weight: 400;
  box-shadow: none;
  outline: none;
  margin-left: auto;
}
.dashboard-right-main-section .dashboad-right-common-head-div .right-div .step-numbering {
  color: var(--dark-clr);
  text-align: right;
  font-size: 1.125rem;
  font-weight: 500;
}
.dashboard-right-main-section .common-each-colored-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  border-radius: 10px;
  height: 100%;
}
.dashboard-right-main-section .common-each-colored-card.card1 {
  background: #8C58B2;
  box-shadow: 0px 2px 4px 0 rgba(40, 90, 185, 0.045);
}
.dashboard-right-main-section .common-each-colored-card.card1 .icon-div {
  background-color: #FAF4FF;
}
.dashboard-right-main-section .common-each-colored-card.card2 {
  background: #4090D4;
  box-shadow: 0px 2px 4px 0 rgba(168, 142, 1, 0.045);
}
.dashboard-right-main-section .common-each-colored-card.card2 .icon-div {
  background-color: #EAF8FF;
}
.dashboard-right-main-section .common-each-colored-card.card3 {
  background: var(--green);
  box-shadow: 0px 2px 4px 0 rgba(145, 69, 193, 0.035);
}
.dashboard-right-main-section .common-each-colored-card.card3 .icon-div {
  background-color: #EBFFEB;
}
.dashboard-right-main-section .common-each-colored-card.card4 {
  background: #CC7900;
  box-shadow: 0px 2px 4px 0 rgba(167, 211, 154, 0.075);
}
.dashboard-right-main-section .common-each-colored-card.card4 .icon-div {
  background-color: #FFF7E0;
}
.percentage-label {
  padding: 0.275rem 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 10px;
  background-color: #fff;
  color: var(--green);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.percentage-label::before {
  content: '+';
}
.percentage-label.minus {
  color: var(--red);
}
.percentage-label.minus::before {
    content: '-';
}
.dashboard-right-main-section .common-each-colored-card .left-part p.count-para {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.dashboard-right-main-section .common-each-colored-card .left-part p.for-para {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  line-height: 1;
}
.dashboard-right-main-section .common-each-colored-card .right-part .icon-div {
  position: relative;
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 5px;
}
.dashboard-right-main-section .common-each-colored-card .right-part .icon-div img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.dashboard-right-main-section .process-count-each-div {
  border-radius: 5px;
  border: 1px solid var(--card-border);
  padding: 10px 15px;
  background: var(--card-bg);
  height: 100%;
  box-shadow: 0px 2px 6px 5px rgba(40, 90, 185, 0.045);
}
.dashboard-right-main-section .process-count-each-div p.head {
  color: var(--text-clr);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.25;
}
.dashboard-right-main-section .process-count-each-div p.count {
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 500;
  margin-left: 0;
  margin: 0;
}
.each-graph-alert-tip-div {
  border-radius: 10px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  height: 100%;
  box-shadow: 0px 2px 6px 5px rgba(40, 90, 185, 0.045);
}
.each-graph-alert-tip-div .head-area-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 8px 20px;
  border-bottom: 1px solid var(--card-border);
}
.dashboard-right-main-section .each-graph-alert-tip-div .head-area-div p {
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.dashboard-right-main-section .each-graph-alert-tip-div .head-area-div .multi-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-left: auto;
}
.dashboard-right-main-section .each-graph-alert-tip-div .head-area-div select {
  border-radius: 5px;
  border: 1px solid var(--card-border);
  background-color: var(--card-bg);
  height: 35px;
  padding-inline: 10px 45px;
  color: var(--text-clr);
  font-size: 0.9375rem;
  font-weight: 400;
  box-shadow: none;
  outline: none;
  margin-left: auto;
  width: auto;
}
.dashboard-right-main-section .each-graph-alert-tip-div .head-area-div .view-all-btn {
  position: relative;
  text-decoration: none;
  color: #53a9f1;
  font-size: 0.875rem;
  font-weight: 500;
}
.dashboard-right-main-section .each-graph-alert-tip-div .head-area-div .view-all-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.25s ease-in-out;
}
.dashboard-right-main-section .each-graph-alert-tip-div .head-area-div .view-all-btn:hover::before {
  content: '';
  width: 0;
}
.dashboard-right-main-section .each-graph-alert-tip-div .head-area-div .compare-record-main-div {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.dashboard-right-main-section .each-graph-alert-tip-div .head-area-div .compare-record-main-div .compare-div-date-input {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.dashboard-right-main-section .each-graph-alert-tip-div .head-area-div .compare-record-main-div .compare-div-date-input.sales-compare-date-div {
  display: none;
}
.dashboard-right-main-section .each-graph-alert-tip-div .head-area-div .compare-record-main-div .compare-div-date-input.sales-compare-date-div.show {
  display: flex;
}
.dashboard-right-main-section .each-graph-alert-tip-div .head-area-div .compare-record-main-div .compare-div-date-input.sales-compare-date-div.show
  ~ .sales-compare-date-div2 {
  display: none;
}
.dashboard-right-main-section .each-graph-alert-tip-div .head-area-div .compare-record-main-div .compare-div-date-input.sales-compare-date-div ~ .sales-compare-date-div2 {
  display: flex;
}
.sales-compare-date-div2 .dashboard-right-main-section .each-graph-alert-tip-div .head-area-div .compare-record-main-div .compare-div-date-input .right-label-text {
  color: var(--dark-clr);
  font-size: 1rem;
  font-weight: 500;
}
.date-input-div {
  position: relative;
}
.date-input-div
  input[type='date']::-webkit-calendar-picker-indicator {
  color: transparent;
  background: none;
}
.date-input-div .calender-label {
  position: absolute;
  right: 15px;
  top: 5px;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.dashboard-right-main-section .each-graph-alert-tip-div .head-area-div .compare-record-main-div .compare-div-date-input .date-input-div .calender-label img {
  width: 100%;
  height: 100%;
}
.dashboard-right-main-section .each-graph-alert-tip-div .head-area-div .compare-record-main-div .compare-div-date-input .date-input-div input {
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #fff;
  min-width: 245px;
  width: 100%;
  height: 36px;
  padding-inline: 10px;
  box-shadow: none;
  outline: none;
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 400;
}
.dashboard-right-main-section .each-graph-alert-tip-div .head-area-div .compare-record-main-div .compare-div-date-input .date-input-div input::-moz-placeholder {
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 500;
}
.dashboard-right-main-section .each-graph-alert-tip-div .head-area-div .compare-record-main-div .compare-div-date-input .date-input-div input::placeholder {
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 500;
}
.dashboard-right-main-section .each-graph-alert-tip-div .ppc-graph-head-area-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 15px;
  row-gap: 25px;
  flex-wrap: wrap;
  padding: 20px;
  border-bottom: 1px solid #dcdfe8;
}
.dashboard-right-main-section .each-graph-alert-tip-div .ppc-graph-head-area-div p {
  position: relative;
  color: var(--text-clr);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}
.dashboard-right-main-section .each-graph-alert-tip-div .ppc-graph-head-area-div p span {
  font-size: 1.25rem;
  font-weight: 600;
}
.dashboard-right-main-section .each-graph-alert-tip-div .ppc-graph-head-area-div p::before {
  content: '';
  position: absolute;
  width: 35px;
  height: 5px;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.dashboard-right-main-section .each-graph-alert-tip-div .ppc-graph-head-area-div.with-underline p.customerEngage1:before {
  background: #53a9f1;
}
.dashboard-right-main-section .each-graph-alert-tip-div .ppc-graph-head-area-div.with-underline p.customerEngage2:before {
  background: var(--green);
}
.dashboard-right-main-section .each-graph-alert-tip-div .ppc-graph-head-area-div.with-underline p.customerEngage3:before {
  background: #1660a4;
}
.dashboard-right-main-section .each-graph-alert-tip-div .ppc-graph-head-area-div.with-underline p.customerEngage4:before {
  background: var(--purple);
}
.dashboard-right-main-section .each-graph-alert-tip-div .ppc-graph-head-area-div.with-underline p.customerEngage5:before {
  background: #e635c4;
}
.dashboard-right-main-section .each-graph-alert-tip-div .ppc-graph-head-area-div.with-underline .ppc-graph-heading {
  display: block;
  width: 100%;
  color: var(--text-clr);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.dashboard-right-main-section .each-graph-alert-tip-div .alert-tip-inner-div {
  padding: 20px;
  overflow-y: auto;
}
.dashboard-right-main-section .each-graph-alert-tip-div .alert-tip-inner-div::-webkit-scrollbar {
  width: 5px;
}
.dashboard-right-main-section .each-graph-alert-tip-div .alert-tip-inner-div::-webkit-scrollbar-thumb {
  background: #dcdfe8;
  border-radius: 50px;
}
.dashboard-right-main-section .each-graph-alert-tip-div .alert-tip-inner-div::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}
.dashboard-right-main-section .each-graph-alert-tip-div .alert-tip-inner-div .each-inner-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 20px;
  border-bottom: 1px solid var(--card-border);
}
.dashboard-right-main-section .each-graph-alert-tip-div .alert-tip-inner-div .each-inner-content .left-side div {
  width: 50px;
  height: 50px;
  background-color: var(--green);
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.dashboard-right-main-section .each-graph-alert-tip-div .alert-tip-inner-div .each-inner-content .right-side {
  color: var(--text-clr-2);
  font-size: 0.9375rem;
  font-weight: 400;
  margin: 0;
}
.dashboard-right-main-section .each-graph-alert-tip-div .alert-tip-inner-div .each-inner-content.tips .left-side div {
  background-color: #fcaf21;
}
.dashboard-right-main-section .each-graph-alert-tip-div .alert-tip-inner-div .each-inner-content:first-child {
  padding-top: 0;
}
.dashboard-right-main-section .each-graph-alert-tip-div .alert-tip-inner-div .each-inner-content:last-child {
  padding-bottom: 0;
  border: none;
}
.dashboard-right-main-section .each-graph-alert-tip-div .sales-graph-div {
  padding: 20px;
}
.dashboard-right-main-section .each-graph-alert-tip-div .sales-graph-div .selected-chips-main-div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.dashboard-right-main-section .each-graph-alert-tip-div .sales-graph-div .selected-chips-main-div .each-chips {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #2f2e41;
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 7.5px 14px;
  border-radius: 5px;
}
.dashboard-right-main-section .each-graph-alert-tip-div .sales-graph-div .selected-chips-main-div .each-chips img {
  cursor: pointer;
}
.dashboard-right-main-section .each-graph-alert-tip-div .sales-graph-div .selected-chips-main-div .each-chips img:hover {
  opacity: 0.5;
}
.dashboard-right-main-section .container-padding-20 {
  padding: 20px;
}
.dashboard-right-main-section .container-padding-20 .graph-inner-div span.head {
  display: block;
  color: var(--text-clr);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.dashboard-right-main-section .container-padding-20 .graph-inner-div.border-right {
  border-right: 1px solid #dcdfe8;
}
.dashboard-right-main-section .chart-main-area {
  padding: 15px;
  height: auto;
  height: 375px;
}
.dashboard-right-main-section .table-main-div {
  margin-top: 5px;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  padding: 20px;
  box-shadow: 0px 2px 6px 5px rgba(40, 90, 185, 0.045);
}
.dashboard-right-main-section .table-main-div.no-shadow {
  border: 0;
  box-shadow: none;
}
.dashboard-right-main-section .table-main-div .table-responsive {
  min-height: 250px;
  overflow-y: auto;
  padding: 0 0 20px 15px;
  min-width: 100%;
}
.dashboard-right-main-section .table-main-div .table-responsive.profit-loss-table {
  padding: 0 0 20px 15px;
  min-height: 250px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.dashboard-right-main-section .table-main-div .table-responsive.profit-loss-table.h-auto {
    height: auto;
  }
.dashboard-right-main-section .table-main-div table.table-area {
  width: 100%;
  min-width: 100%;
  border-spacing: 0;
  border-radius: 5px;
}
.dashboard-right-main-section .table-main-div .table-responsive.profit-loss-table thead th {
  padding-left: 12px;
  font-weight: 500;
  font-size: 0.875rem;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: var(--card-bg);
}
.dashboard-right-main-section .table-main-div table.table-area thead {
  visibility: visible;
  position: relative;
}
.dashboard-right-main-section .table-main-div .table-head-with-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.dashboard-right-main-section .table-main-div .table-head-with-arrow span {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
}
.dashboard-right-main-section .table-main-div table.table-area thead tr {
  border: none;
  border-bottom: none;
}
.dashboard-right-main-section .table-main-div table.table-area thead tr th {
  text-align: left;
  background-color: var(--table-headers-bg);
  border: none;
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 14px 12px 14px;
  line-height: 1.125;

  &:first-child{
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
  }
  &:last-child{
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
  }
}
.dashboard-right-main-section .table-main-div table.table-area tr {
  display: table-row;
  border: none;
  border-radius: 0;
  text-align: left;
  border: none;
  border-bottom: none;
}
.table-area thead tr th:first-child, .table-area tr td:first-child {
  padding-left: 30px !important;
}
.dashboard-right-main-section .table-main-div table.table-area tr:hover {
  background-color: #f2f9fc;
}
.dark-mode .dashboard-right-main-section .table-main-div table.table-area tr:hover {
  background-color: #292929;
}
.dashboard-right-main-section .table-main-div table.table-area tr:hover .short-edit-btn {
  visibility: visible;
  pointer-events: all;
}
.dashboard-right-main-section .table-main-div table.table-area tr td {
  display: table-cell;
  border: none;
  padding: 6px 12px;
  color: var(--text-clr-2);
  font-size: 0.75rem;
  font-weight: 400;
  border-bottom: 1px solid var(--card-border);
}
.dashboard-right-main-section .table-main-div table.table-area tr td .text-overflow-hidden {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 200px;
  white-space: nowrap;
}
.dashboard-right-main-section .table-main-div table.table-area tr.total-tr {
  border: 0;
}
.dashboard-right-main-section .table-main-div table.table-area tr.total-tr td {
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 600;
  padding-bottom: 0;
}
.dashboard-right-main-section .table-main-div .td-with-img-and-asin {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dashboard-right-main-section .table-main-div .td-with-img-and-asin .img-div {
  width: 25px;
  height: auto;
  text-align: center;
  display: grid;
  place-items: center;
}
.dashboard-right-main-section .table-main-div .td-with-img-and-asin .img-div img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  margin-inline: auto;
}
.table-checkbox {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.table-checkbox label {
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 1px;
  border: 1px solid #999;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.table-checkbox input ~ label > img{
  display: none;
}
.table-checkbox input:checked ~ label {
  background-color: var(--blue);
  border-color: var(--blue);
}
.table-checkbox input:checked ~ label > img{
  display: block;
}
.dashboard-right-main-section .table-main-div .view-edit-btn-div, .products-list-nav .view-edit-btn-div {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
} 
.view-edit-btn-div .arrow-btn {
  text-decoration: none;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  outline: none;

  &:hover{
    background-color: #eee;
  }
}
.table-main-div .view-edit-btn-div button, .table-main-div .view-edit-btn-div a.btn, .products-list-nav .view-edit-btn-div button, .products-list-nav .view-edit-btn-div a.btn {
  text-decoration: none;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  outline: none;
}
.table-main-div .view-edit-btn-div button.view-btn:hover, .table-main-div .view-edit-btn-div a.view-btn:hover {
  background-color: #bdd9ff;
}
.table-main-div .view-edit-btn-div button.strategy-btn:hover, .table-main-div .view-edit-btn-div a.strategy-btn:hover {
  background-color: #fce6e9;
}
.table-main-div .view-edit-btn-div button.edit-btn:hover, .table-main-div .view-edit-btn-div a.edit-btn:hover, .products-list-nav .view-edit-btn-div button.edit-btn:hover, .products-list-nav .view-edit-btn-div a.edit-btn:hover {
  background-color: #9efef4;
}
.table-main-div .view-edit-btn-div button.delete-btn:hover, .table-main-div .view-edit-btn-div a.delete-btn:hover, .products-list-nav .view-edit-btn-div button.delete-btn:hover, .products-list-nav .view-edit-btn-div a.delete-btn:hover {
  background-color: #ffebec;
}
.dashboard-right-main-section .strategy-table table.table-area thead tr th:nth-child(2), .dashboard-right-main-section .strategy-table table.table-area tbody tr td:nth-child(2){
  position: sticky;
  left: 0;
  z-index: 2;
}
.dashboard-right-main-section .table-main-div .view-edit-btn-div button.play-pause-btn:hover,
.dashboard-right-main-section .table-main-div .view-edit-btn-div a.play-pause-btn:hover {
  background-color: #8de8ff;
}
.dashboard-right-main-section .table-main-div .table-bottom-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  gap: 10px;
  flex-wrap: wrap;
  padding-inline: 12px;
}
.dashboard-right-main-section .table-main-div .table-bottom-div p.left-part {
  color: var(--text-clr);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  margin: 0;
}
.dashboard-right-main-section .table-main-div .table-bottom-div .right-part {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}
.dashboard-right-main-section .table-main-div .table-bottom-div .right-part select {
  border-radius: 5px;
  padding: 10px 35px 10px 10px;
  height: 45px;
  border: 1px solid var(--card-border);
  background-color: var(--card-bg);
  box-shadow: none;
  outline: none;
  color: var(--text-clr);
}
.dashboard-right-main-section .table-main-div.single-product-with-img-table .table-area thead th {
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 500;
}
.dashboard-right-main-section .table-main-div.single-product-with-img-table .table-area tbody tr {
  border: none;
}
.dashboard-right-main-section .table-main-div.single-product-with-img-table .table-area tbody tr td {
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 400;
}
.dashboard-right-main-section .table-main-div.single-product-with-img-table .product-name-price {
  display: flex;
  align-items: center;
  gap: 5px;
}
.dashboard-right-main-section .table-main-div.single-product-with-img-table .product-name-price .img-div {
  width: 50px;
  height: 50px;
  margin-top: 5px;
}
.dashboard-right-main-section .table-main-div.single-product-with-img-table .product-name-price .img-div img {
  width: auto;
  height: 50px;
}
.dashboard-right-main-section .table-main-div.single-product-with-img-table .product-name-price .details-div .name-para {
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
}
.dashboard-right-main-section .table-main-div.single-product-with-img-table .product-name-price .details-div .price-para {
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 400;
  margin-block: 8px 0;
}
.dashboard-right-main-section .table-main-div.single-product-with-img-table .table-area tbody tr.total-count-row {
  border-top: 1px solid #a8a8a8;
}
.dashboard-right-main-section .product-details-left {
  position: sticky;
  top: 80px;
}
.dashboard-right-main-section .product-details-left .product-slider-div {
  border-radius: 5px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  padding: 25px;
  width: 100%;
}
.dashboard-right-main-section .product-details-left .product-slider-div .image-div {
  width: 100%;
  height: auto;
}
.dashboard-right-main-section .product-details-left .product-slider-div .image-div img {
  display: block;
  margin-inline: auto;
}
.dashboard-right-main-section .product-details-left .product-slider-div .image-div-thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  border: 1px solid #c4c4c4;
  background: #fff;
  padding: 8px;
  margin: 4px 4px 4px 4px;
  height: 65px;
  cursor: pointer;
}
.dashboard-right-main-section .product-details-left .product-slider-div .image-div-thumbnail img {
  max-width: 100%;
  max-height: 100%;
}
.dashboard-right-main-section .product-details-left .product-slider-div .slider-main-div {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.dashboard-right-main-section .product-details-left .product-slider-div .slider-main-div .slider-for button {
  display: none !important;
}
.dashboard-right-main-section .product-details-left .product-slider-div .slider-main-div .slick-prev {
  left: -22px;
  background: rgba(255,255,255,0.35);
}
.dashboard-right-main-section .product-details-left .product-slider-div .slider-main-div .slick-next {
  right: -22px;
  background: rgba(255,255,255,0.35);
}
.dashboard-right-main-section .product-details-left .product-slider-div .slider-main-div .slick-next::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="19" viewBox="0 0 18 19" fill="none"><g clip-path="url(%23clip0_274_3111)"><path d="M8.99997 18.2299C13.6155 18.2299 17.3571 14.4883 17.3571 9.87277C17.3571 5.25725 13.6155 1.51562 8.99997 1.51562C4.38444 1.51562 0.642822 5.25725 0.642822 9.87277C0.642822 14.4883 4.38444 18.2299 8.99997 18.2299Z" stroke="black" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.3373 9.9648L6.82861 6.45613C6.69949 6.32245 6.62805 6.1434 6.62966 5.95754C6.63128 5.77169 6.70582 5.59391 6.83724 5.46249C6.96866 5.33107 7.14645 5.25652 7.3323 5.25491C7.51815 5.25329 7.6972 5.32474 7.83088 5.45386L11.8407 9.46366C11.9736 9.59658 12.0482 9.77684 12.0482 9.9648C12.0482 10.1528 11.9736 10.333 11.8407 10.4659L7.83088 14.4757C7.6972 14.6049 7.51815 14.6763 7.3323 14.6747C7.14644 14.6731 6.96866 14.5985 6.83724 14.4671C6.70582 14.3357 6.63128 14.1579 6.62966 13.972C6.62805 13.7862 6.69949 13.6071 6.82861 13.4735L10.3373 9.9648Z" fill="black"/></g><defs><clipPath id="clip0_274_3111"><rect width="18" height="18" fill="white" transform="translate(0 0.873047)"/></clipPath></defs></svg>');
  max-width: 100%;
}
.dashboard-right-main-section .product-details-left .product-slider-div .slider-main-div .slick-prev::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="19" viewBox="0 0 18 19" fill="none"><g clip-path="url(%23clip0_274_3119)"><path d="M9.00003 18.2299C4.38451 18.2299 0.642891 14.4883 0.642891 9.87277C0.642891 5.25725 4.38451 1.51562 9.00003 1.51562C13.6156 1.51562 17.3572 5.25725 17.3572 9.87277C17.3572 14.4883 13.6156 18.2299 9.00003 18.2299Z" stroke="black" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.66273 9.9648L11.1714 6.45613C11.3005 6.32245 11.372 6.1434 11.3703 5.95754C11.3687 5.77169 11.2942 5.59391 11.1628 5.46249C11.0313 5.33107 10.8536 5.25652 10.6677 5.25491C10.4819 5.25329 10.3028 5.32474 10.1691 5.45386L6.15932 9.46366C6.02643 9.59658 5.95178 9.77684 5.95178 9.9648C5.95178 10.1528 6.02643 10.333 6.15932 10.4659L10.1691 14.4757C10.3028 14.6049 10.4819 14.6763 10.6677 14.6747C10.8536 14.6731 11.0313 14.5985 11.1628 14.4671C11.2942 14.3357 11.3687 14.1579 11.3703 13.972C11.372 13.7862 11.3005 13.6071 11.1714 13.4735L7.66273 9.9648Z" fill="black"/></g><defs><clipPath id="clip0_274_3119"><rect width="18" height="18" fill="white" transform="matrix(-1 0 0 1 18 0.873047)"/></clipPath></defs></svg>');
  max-width: 100%;
}
.dashboard-right-main-section .product-details-left .edit-delete-btn-div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}
.dashboard-right-main-section .product-details-left .edit-delete-btn-div a.edit-btn {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 45px;
  border-radius: 5px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
.dashboard-right-main-section .product-details-left .edit-delete-btn-div a.edit-btn:hover {
  background-color: transparent;
  color: var(--blue);
}
.dashboard-right-main-section .product-details-left .edit-delete-btn-div a.edit-btn:hover svg path {
  fill: var(--blue);
}
.dashboard-right-main-section .product-details-left .edit-delete-btn-div a.delete-btn {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 45px;
  border-radius: 5px;
  border: 1px solid #5b8899;
  background: #fff;
  color: var(--dark-clr);
  font-size: 1rem;
  font-weight: 500;
}
.dashboard-right-main-section .product-details-left .edit-delete-btn-div a.delete-btn:hover {
  background-color: #5b8899;
  color: #fff;
}
.dashboard-right-main-section .product-details-left .edit-delete-btn-div a.delete-btn:hover svg path {
  fill: #fff;
}
.dashboard-right-main-section .product-details-right {
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  padding: 25px;
}
.dashboard-right-main-section .product-details-right .product-details-para {
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}
.dashboard-right-main-section .product-details-right .all-product-details-div {
  padding: 0;
}
.dashboard-right-main-section .product-details-right .all-product-details-div .title-head {
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 400;
}
.dashboard-right-main-section .product-details-right .all-product-details-div .title-text {
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 500;
}
.dashboard-right-main-section .product-details-right .nav-tab-ul {
  border-bottom: 1px solid #a8a8a8;
  margin-top: 30px;
}
.dashboard-right-main-section .product-details-right .nav-tab-ul .nav-item {
  cursor: pointer;
}
.dashboard-right-main-section .product-details-right .nav-tab-ul .nav-item div {
  padding: 8px 25px;
  color: #999;
  font-size: 0.875rem;
  font-weight: 500;
}
.dashboard-right-main-section .product-details-right .nav-tab-ul .nav-item div.active {
  background: rgba(198, 207, 250, 0.35);
  color: var(--dark-blue);
  font-size: 0.875rem;
  font-weight: 600;
}
.dark-mode .dashboard-right-main-section .product-details-right .nav-tab-ul .nav-item div.active {
  color: #fff;
}
.dashboard-right-main-section .shipment-details-para {
  max-width: 705px;
  width: 100%;
  white-space: nowrap;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-block: 4px 1rem;
  color: var(--text-clr-2);
  font-size: 1rem;
  font-weight: 500;
}
.dashboard-right-main-section .shipment-details-para span.company-name {
  font-weight: 600;
}
.price-div{
  color: var(--text-clr);
  font-size: 1rem;
  margin-bottom: 0;
}
.price-div.paid td
 {
  color: var(--dark-blue) !important;
  font-weight: 700 !important;
}
.price-div.balance td
 {
  color: #009688 !important;
  font-weight: 700 !important;
}
.dashboard-right-main-section .payment-details-and-address-div .seperator {
  height: 1px solid #979797;
  margin-block: 0 10px;
  padding: 0;
}
.dashboard-right-main-section .new-purchase-order-main-div {
  border-radius: 5px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  padding: 25px 30px;
}
.dashboard-right-main-section .new-purchase-order-main-div .new-purchase-order-form label {
  color: var(--text-clr-2);
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 5px;
}
.dashboard-right-main-section .new-purchase-order-main-div .new-purchase-order-form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--card-border);
  background-color: var(--input-bg);
  box-shadow: none;
  outline: none;
  padding: 0;
  margin-bottom: 25px;
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 400;
}
.dashboard-right-main-section .new-purchase-order-main-div .new-purchase-order-form select {
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--card-border);
  box-shadow: none;
  outline: none;
  margin-bottom: 25px;
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 400;
  background-color: var(--card-bg);
}
.dashboard-right-main-section .new-purchase-order-main-div .new-purchase-order-form .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 40px;
  border-radius: 5px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: none;
}
.dashboard-right-main-section .new-purchase-order-main-div .new-purchase-order-form .submit-btn:hover {
  background: #fff;
  color: var(--blue);
}
.dashboard-right-main-section .new-purchase-order-main-div .new-purchase-order-form .submit-btn:hover svg path {
  fill: var(--blue);
}
.dashboard-right-main-section .new-purchase-order-main-div .select-a-product {
  color: var(--text-clr);
  font-size: 1.25rem;
  font-weight: 600;
}
.dashboard-right-main-section .new-purchase-order-main-div .product-all-price-div {
  border-radius: 5px;
  background: var(--card-bg-3);
  max-width: 455px;
  width: 100%;
  padding: 15px 25px;
  margin: 25px auto 0 auto;
}
.dashboard-right-main-section .new-purchase-order-main-div .product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.dashboard-right-main-section .new-purchase-order-main-div .product-price p {
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}
.dashboard-right-main-section .new-purchase-order-main-div .product-price.paid p{
  color: var(--dark-blue) !important;
  font-weight: 700 !important;
}
.dashboard-right-main-section .new-purchase-order-main-div .product-price.balance p{
  color: #009688 !important;
  font-weight: 700 !important;
}
.dashboard-right-main-section .new-purchase-order-main-div .seperator {
  height: 1px solid #979797;
  margin-block: 0 10px;
  padding: 0;
}
.dashboard-right-main-section .new-purchase-order-main-div .add-submit-btn-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.dashboard-right-main-section .new-purchase-order-main-div .add-submit-btn-div a.add-btn {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  border: 1px solid var(--blue);
  background: #fff;
  height: 45px;
  padding-inline: 30px;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 500;
}
.dashboard-right-main-section .new-purchase-order-main-div .add-submit-btn-div a.add-btn:hover {
  background: var(--blue);
  color: #fff;
}
.dashboard-right-main-section .new-purchase-order-main-div .add-submit-btn-div a.add-btn:hover svg path {
  fill: #fff;
}
.add-submit-btn-div .done-submit-btn {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 5px;
  border: 1px solid #5b8899;
  background: var(--card-bg);
  padding: 12px 45px;
  color: var(--dark-clr);
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
}
.add-submit-btn-div .done-submit-btn:hover {
  background: #5b8899;
  color: #fff;
}
.add-submit-btn-div .done-submit-btn:disabled, .add-submit-btn-div .done-submit-btn.disabled {
  background: #f4f4f4;
  border-color: #ccc;
  color: #bbb;
  pointer-events: none;
}
.dashboard-right-main-section .shipping-address-div {
  border-radius: 5px;
  border: 1px solid #dcdfe8;
  background: #fff;
  padding: 20px 15px;
}
.dashboard-right-main-section .shipping-address-div .head {
  color: var(--text-clr);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.dashboard-right-main-section .shipping-address-div label {
  color: #999;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 2px;
}
.dashboard-right-main-section .shipping-address-div .change-address {
  display: block;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 500;
  text-decoration-line: underline;
  margin-bottom: 1rem;
}
.dashboard-right-main-section .shipping-address-div p {
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 15px;
}
.dashboard-right-main-section .shipping-address-div .date-input-div {
  position: relative;
}
.dashboard-right-main-section
  .shipping-address-div
  .date-input-div
  input[type='date']::-webkit-calendar-picker-indicator {
  color: transparent;
  background: none;
}
.dashboard-right-main-section .shipping-address-div .date-input-div .calender-label {
  position: absolute;
  right: 15px;
  top: 2px;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.dashboard-right-main-section .shipping-address-div .date-input-div .calender-label img {
  width: 100%;
  height: 100%;
}
.dashboard-right-main-section .shipping-address-div .date-input-div input {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  width: 100%;
  padding-bottom: 8px;
  padding-inline: 0 35px;
  box-shadow: none;
  outline: none;
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 400;
}
.dashboard-right-main-section .shipping-address-div .date-input-div input::-moz-placeholder {
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 400;
}
.dashboard-right-main-section .shipping-address-div .date-input-div input::placeholder {
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 400;
}
.dashboard-right-main-section .shipping-address-div .seperator {
  height: 1px solid #979797;
  margin-block: 0 10px;
  padding: 0;
}
.dashboard-right-main-section .added-product-div {
  position: relative;
  border-radius: 10px;
  background: #f5f5f5;
  padding: 15px 65px 15px 20px;
  margin-bottom: 30px;
}
.dashboard-right-main-section .added-product-div .delete-btn {
  position: absolute;
  border-radius: 5px;
  background: #e6e6e6;
  width: 35px;
  height: 35px;
  border: none;
  box-shadow: none;
  right: 12px;
  top: 12px;
}
.dashboard-right-main-section .added-product-div .delete-btn:hover {
  background: #e0cfcf;
}
.dashboard-right-main-section .added-product-div .details {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.dashboard-right-main-section .added-product-div .details label {
  margin: 0;
}
.dashboard-right-main-section .added-product-div .details p {
  margin: 0;
}
.chartToolTip {
  position: relative;
  padding: 8px;
  border-radius: 5px;
  background: #000;
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 9999;
}
.chartToolTip .pie-tool-inner-main {
  display: flex;
  align-items: center;
  gap: 4px;
}
.chartToolTip .pie-tool-inner-main span {
  width: 12px;
  height: 12px;
  display: block;
}
.chartToolTip::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="13" viewBox="0 0 9 13" fill="none"><path d="M0.75 6.62965L9.00562 0.317383L9.00562 12.9419L0.75 6.62965Z" fill="%2var(--text-clr)"/></svg>');
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
}
.change-address-modal .modal-header {
  padding: 15px 30px;
}
.change-address-modal .modal-header h2 {
  color: var(--dark-clr);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
.change-address-modal .modal-header .modal-close-btn {
  position: absolute;
  right: 0;
  top: -50px;
  color: #fff;
  box-shadow: none;
  transition: all 0.25s ease-in-out;
}
.change-address-modal .modal-header .modal-close-btn:hover {
  transform: rotate(90deg);
}
.change-address-modal .modal-body {
  max-width: 482px;
  width: 100%;
  padding: 15px 30px;
}
.change-address-modal .modal-body h3 {
  color: var(--dark-clr);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}
.modal-body .each-selection-div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-clr);
  font-size: 1rem;
  font-weight: 400;
  padding: 16px 0 8px 0;
  border-bottom: 1px solid #eeeeee;
}
.modal-body .each-selection-div label{
  font-size: 1rem;
}
.modal-body .each-selection-div label.checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid #999999;
  border-radius: 50%;
  cursor: pointer;
}
.modal-body .each-selection-div input:checked ~ label.checkbox {
  border: 6px solid var(--blue);
}
.modal-body.create-portpolio-body {
  max-width: 100%;
}
.change-address-modal .modal-body.create-portpolio-body .heading-para {
  color: var(--dark-clr);
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 25px;
}
.change-address-modal .modal-body.create-portpolio-body .modal-select-div {
  max-width: 450px;
  width: 100%;
  margin-inline: auto;
}
.change-address-modal .modal-body.create-portpolio-body .modal-select-div label.inputLabel {
  color: #999;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 5px;
}
.change-address-modal .modal-body.create-portpolio-body .modal-select-div select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--input-border);
  padding-block: 0 10px;
  padding-right: 25px;
  box-shadow: none;
  outline: none;
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 400;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="10" viewBox="0 0 17 10" fill="none"><path d="M8.20682 9.11914L0.312087 1.2244L1.41735 0.119139L8.20682 6.90861L14.9963 0.119141L16.1016 1.2244L8.20682 9.11914Z" fill="black"/></svg>');
  background-position: 100% 8px;
  background-repeat: no-repeat;
}
.change-address-modal .done-and-cancel-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-block: 70px 35px;
}
.change-address-modal .done-and-cancel-btn .done-btn {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 5px;
  border: 1px solid var(--blue);
  background: var(--blue);
  height: 45px;
  padding-inline: 38px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
.change-address-modal .done-and-cancel-btn .done-btn:hover {
  background-color: #fff;
  color: var(--blue);
}
.change-address-modal .done-and-cancel-btn .done-btn:hover svg path {
  fill: var(--blue);
}
.change-address-modal .done-and-cancel-btn .cancel-btn {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 5px;
  border: 1px solid #5b8899;
  background: #fff;
  height: 45px;
  padding-inline: 38px;
  color: var(--dark-clr);
  font-size: 1rem;
  font-weight: 500;
}
.change-address-modal .done-and-cancel-btn .cancel-btn:hover {
  background-color: #5b8899;
  color: #fff;
}
.change-address-modal .done-and-cancel-btn .cancel-btn:hover svg path {
  fill: #fff;
}
.commmon-gradient-box {
  width: 100%;
  height: 100px;
  margin-top: 15px;
  border-radius: 5px;
}
.commmon-gradient-box.box-1 {
  background: linear-gradient(135deg, #1994c7 0%, #4c3ea4 100%);
}
.commmon-gradient-box.box-2 {
  background: linear-gradient(90deg, #1a2980 0%, #26d0ce 100%);
}
.commmon-gradient-box.box-3 {
  background: linear-gradient(90deg, #26d0ce 0%, #1a2980 100%);
}
.commmon-gradient-box.box-4 {
  background: linear-gradient(135deg, #1994c7 0%, #4c3ea4 100%);
}
.common-small-main-section {
  position: relative;
  margin-top: -60px;
}
.common-small-main-section .middle-div {
  border-radius: 5px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  padding: 25px 30px;
}
.common-small-main-section .middle-div button.form-back-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px auto 0 auto;
  transition: all 0.25s ease-in-out;
  background-color: var(--card-bg);
  color: var(--text-clr);
  border: 1px solid var(--card-border);
  padding: .75rem 1.5rem;
}
.dark-mode .common-small-main-section .middle-div button.form-back-btn svg path{
  fill: #fff;
}
.common-small-main-section .middle-div button.form-back-btn:hover svg {
  position: relative;
  left: -5px;
}
.less-width-form-div .lesswidth-width-form-head {
  color: var(--dark-blue);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.less-width-form-div.extra {
  max-width: 400px;
  margin-inline: auto;
}
.less-width-form-div .all-tabs {
  display: none;
}
.less-width-form-div .all-tabs.active {
  display: block;
}
.less-width-form-div label {
  color: var(--text-clr-2);
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 5px;
}
.less-width-form-div .choose-heading {
  color: var(--dark-blue);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.less-width-form-div .multi-input-div {
  display: flex;
  align-items: center;
  gap: 15px;
}
.extra-para-form {
  color: var(--text-clr-2);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}
.aggrement-label-box {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-block: 16px 20px;
}
.aggrement-label-box label {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #999;
  margin: 0;
  cursor: pointer;
}
.aggrement-label-box label svg{
  opacity: 0;
}
.aggrement-label-box input:checked ~ label {
  background-color: #999;
}
.aggrement-label-box input:checked ~ label svg{
  opacity: 1;
}
.less-width-form-div .multi-input-div span {
  font-size: 1rem;
  color: var(--grey-1);
  font-weight: 400;
}
.less-width-form-div .choose-heading span {
  color: var(--dark-blue);
  font-size: 0.875rem;
  font-weight: 400;
}
.less-width-form-div .heading-select-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 15px;
}
.less-width-form-div .heading-select-div select {
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #fff;
  height: 35px;
  max-width: 145px;
  width: 100%;
  padding-inline: 10px 30px;
  color: var(--text-clr);
  font-size: 0.9375rem;
  font-weight: 400;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="9" viewBox="0 0 16 9" fill="none"><path d="M7.99828 8.5L0.980734 1.48245L1.96319 0.499999L7.99828 6.53509L14.0334 0.5L15.0158 1.48246L7.99828 8.5Z" fill="%2var(--text-clr)"/></svg>');
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  box-shadow: none;
  outline: none;
  margin-left: auto;
  padding-block: 0;
}
.less-width-form-div .create-portpolio-btn {
  display: block;
  color: #53a9f1;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration-line: underline;
  margin-top: 10px;
}
.less-width-form-div .create-portpolio-btn:hover {
  text-decoration: none;
}
.less-width-form-div .para-with-star {
  display: flex;
  align-items: start;
  gap: 8px;
  margin-top: 6px;
}
.less-width-form-div .para-with-star img {
  position: relative;
  top: 5px;
}
.less-width-form-div .para-with-star p {
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
}
.less-width-form-div .seperator {
  border-top: 2px solid #e6e6e6;
  padding: 0;
  width: 100%;
  height: 1px;
}
.less-width-form-div .search-product-svg {
  position: absolute;
  right: 0.8rem;
  top: 28px;
}
.less-width-form-div .date-input {
  position: relative;
}
.less-width-form-div .date-input label {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  cursor: pointer;
}
.less-width-form-div .date-input.disabled input {
  background-color: #efefef;
}
.less-width-form-div .date-input.disabled {
  pointer-events: none;
  user-select: none;
}
.less-width-form-div input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--input-border);
  padding-block: 0 10px;
  box-shadow: none;
  outline: none;
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 400;
  background-color: var(--input-bg);
}
.less-width-form-div input::-moz-placeholder {
  color: var(--placeholder-text);
}
.less-width-form-div input::placeholder {
  color: var(--placeholder-text);
}
.less-width-form-div select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--input-border);
  padding-block: 0 10px;
  padding-right: 25px;
  box-shadow: none;
  outline: none;
  background-color: var(--input-bg);
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 400;
  background-position: 100% 8px;
  background-repeat: no-repeat;
}
.less-width-form-div select:focus, .less-width-form-div select:active {
  background-color: var(--textarea-bg);
}
.less-width-form-div button.submit-btn {
  width: 100%;
  padding: 0.65rem 1.5rem;
  border-radius: 5px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 32px;
  box-shadow: none;
}
.less-width-form-div button.submit-btn:hover {
  border: 1px solid var(--blue);
  background: #1497e7;
  color: #fff;
}
button.fee-and-payment-btn{
  padding: 0.65rem 1.5rem;
  border-radius: 5px;
  border: 1px solid #009688;
  background: #009688;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  box-shadow: none;
}
button.fee-and-payment-btn:hover{
  background: #007268;
  color: #fff;
}
.blue-btn {
  width: 100%;
  padding: 0.65rem 1.5rem;
  border-radius: 5px;
  border: 0;
  background: #00be53;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  box-shadow: none;
}
.blue-btn:hover {
  background: #00a046;
  color: #fff;
}
.edit-save-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  border: 0;
  background: var(--dark-blue);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  box-shadow: none;
}
.edit-save-btn:hover {
  background: var(--blue);
  color: #fff;
}
.modal-cancel-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  border: 0;
  background: var(--btn-bg);
  color: var(--text-clr);
  font-size: 1.125rem;
  font-weight: 500;
  box-shadow: none;
}
.modal-cancel-btn:hover {
  background: #eee;
}
.less-width-form-div .all-product-div {
  padding: 15px 12px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  margin-top: 5px;
  max-height: 300px;
  overflow-y: auto;
  color: var(--text-clr);
}
.less-width-form-div .search-area-div {
  position: relative;
}
.less-width-form-div .all-product-div.product-list-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  display: none;
}
.less-width-form-div .all-product-div.product-list-dropdown.active {
  display: block;
}
.less-width-form-div .all-product-div::-webkit-scrollbar {
  width: 5px;
}
.less-width-form-div .all-product-div::-webkit-scrollbar-thumb {
  background: #dcdfe8;
  border-radius: 50px;
}
.less-width-form-div .all-product-div::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}
.less-width-form-div .all-product-div .each-product-add-div {
  border-bottom: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 8px;
}
.less-width-form-div .all-product-div .each-product-add-div .left-part {
  display: flex;
  gap: 10px;
}
.less-width-form-div .all-product-div .each-product-add-div .left-part .img-div { 
  width: 25px; height: auto;
}
.less-width-form-div .all-product-div .each-product-add-div .left-part .text-para p.product {
  color: var(--text-clr);
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 2px;
}
.less-width-form-div .all-product-div .each-product-add-div .left-part .text-para .asin-price-para {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 5px;
  flex-wrap: wrap;
}
.less-width-form-div .all-product-div .each-product-add-div .left-part .text-para p.asin {
  color: var(--text-clr);
  font-size: 0.75rem;
  font-weight: 400;
  margin: 0;
}
.less-width-form-div .all-product-div .each-product-add-div .left-part .text-para p.asin span {
  font-weight: 500;
}
.less-width-form-div .all-product-div .each-product-add-div .left-part .text-para p.price {
  color: #3f3d56;
  font-size: 0.75rem;
  font-weight: 400;
  margin: 0;
}
.less-width-form-div .all-product-div .each-product-add-div .right-part {
  color: #3f3d56;
  font-size: 0.75rem;
  font-weight: 400;
}
.less-width-form-div .all-product-div .each-product-add-div .right-part button {
  border: 1px solid #2f2e41;
  color: var(--dark-clr);
  font-size: 1rem;
  font-weight: 500;
  height: 35px;
  padding-inline: 15px;
  box-shadow: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.less-width-form-div .all-product-div .each-product-add-div .right-part button:hover {
  background-color: var(--dark-clr);
  color: #fff;
}
.less-width-form-div .all-product-div .each-product-add-div .right-part button:hover svg path {
  fill: #fff;
}
.dark-mode .less-width-form-div .all-product-div .each-product-add-div .right-part button svg path {
  fill: #fff;
}
.dark-mode .less-width-form-div .all-product-div .each-product-add-div .right-part button:hover {
  background-color: #111;
}
.less-width-form-div .each-product-add-div .right-part button svg {
  transition: all 0.25s ease-in-out;
}
.less-width-form-div .each-product-add-div[aria-expanded='true'] .right-part button svg {
  transform: rotate(180deg);
}
.print-sku-label-btn {
  display: block;
  color: #53a9f1;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration-line: underline;
  margin-block: 40px 0;
}
.box-information {
  color: var(--dark-clr);
  font-size: 1rem;
  font-weight: 500;
  text-decoration-line: underline;
  margin-top: 20px;
}
.add-box-info-btn {
  color: #53a9f1;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration-line: underline;
  box-shadow: none;
  border: none;
  background-color: transparent;
  margin-top: 20px;
  padding: 0;
  text-align: left;
}
.less-width-form-div .all-product-div .keyword-heading {
  color: var(--dark-clr);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.less-width-form-div .all-product-div .each-keyword-add-div {
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px;
}
.less-width-form-div .all-product-div .each-keyword-add-div .left-part .product {
  color: #3f3d56;
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
}
.less-width-form-div .all-product-div .each-keyword-add-div .right-part {
  display: flex;
  align-items: center;
  gap: 15px;
}
.less-width-form-div .all-product-div .each-keyword-add-div .right-part .details {
  color: #3f3d56;
  font-size: 0.75rem;
  font-weight: 400;
  margin: 0;
}
.less-width-form-div .all-product-div .each-keyword-add-div .right-part button {
  border: 1px solid #2f2e41;
  color: var(--dark-clr);
  font-size: 0.75rem;
  font-weight: 500;
  height: 25px;
  padding-inline: 8px;
  box-shadow: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
}
.less-width-form-div .all-product-div .each-keyword-add-div .right-part button:hover {
  background-color: var(--dark-clr);
  color: #fff;
}
.less-width-form-div .all-product-div .each-keyword-add-div .right-part button:hover svg path {
  fill: #fff;
}
.less-width-form-div .all-add-product-div .each-product-add-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 8px;
  border: 1px solid #53a9f1;
  padding: 10px 12px;
  border-radius: 5px;
  margin-top: 10px;
}
.less-width-form-div .all-add-product-div .each-product-add-div .left-part {
  display: flex;
  gap: 10px;
}
.less-width-form-div .all-add-product-div .each-product-add-div .left-part .img-div {
  width: 25px;
  height: auto;
}
.less-width-form-div .all-add-product-div .each-product-add-div .left-part .text-para p.product {
  color: var(--text-clr);
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 2px;
  margin-right: 5px;
}
.less-width-form-div .all-add-product-div .each-product-add-div .left-part .text-para .asin-price-para {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 5px;
  flex-wrap: wrap;
}
.less-width-form-div .all-add-product-div .each-product-add-div .left-part .text-para p.asin {
  color: var(--text-clr);
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.less-width-form-div .all-add-product-div .each-product-add-div .left-part .text-para p.asin span {
  font-weight: 600;
}
.less-width-form-div .all-add-product-div .each-product-add-div .left-part .text-para p.price {
  color: #3f3d56;
  font-size: 0.75rem;
  font-weight: 400;
  margin: 0;
}
.less-width-form-div .all-add-product-div .each-product-add-div .right-part {
  color: #3f3d56;
  font-size: 0.75rem;
  font-weight: 400;
}
.less-width-form-div .all-add-product-div .each-product-add-div .right-part button {
  border: 1px solid #2f2e41;
  height: 35px;
  width: 35px;
  padding: 0;
  box-shadow: none;
  display: grid;
  place-items: center;
}
.less-width-form-div .all-add-product-div .each-product-add-div .right-part button svg path {
  display: block;
}
.less-width-form-div .all-add-product-div .each-product-add-div .right-part button:hover {
  background-color: var(--dark-clr);
}
.less-width-form-div .all-add-product-div .each-product-add-div .right-part button:hover svg path {
  fill: #fff;
}
.dark-mode .less-width-form-div .all-add-product-div .each-product-add-div .right-part button svg path {
  fill: #fff;
}
.dark-mode .less-width-form-div .all-add-product-div .each-product-add-div .right-part button:hover {
  background-color: #111;
}
.less-width-form-div textarea {
  border-radius: 8px;
  border: 1px solid #ccc;
  background: var(--textarea-bg);
  padding: 10px 15px;
  width: 100%;
  height: 150px;
  resize: none;
  box-shadow: none;
  outline: none;
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 400;
}
.less-width-form-div textarea::placeholder, .less-width-form-div .custom-textarea::placeholder {
  color: #ccc;
}
.less-width-form-div .custom-textarea {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
}
.less-width-form-div .custom-textarea:active, .less-width-form-div .custom-textarea:focus {
  outline: none;
  box-shadow: none;
}
.less-width-form-div .file-upload-btn {
  display: block;
  border-radius: 5px;
  border: 1px solid #2f2e41;
  background: #fff;
  text-align: center;
  width: 100%;
  padding: 17px 15px;
  color: var(--dark-clr);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.less-width-form-div .radio-btn-div {
  display: flex;
  align-items: center;
  -moz-column-gap: 60px;
  column-gap: 60px;
  row-gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.less-width-form-div .radio-btn-div div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-clr);
  font-size: 1rem;
  font-weight: 400;
}
.less-width-form-div .radio-btn-div div label.checkbox {
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid #999999;
  border-radius: 50%;
}
.less-width-form-div .radio-btn-div div label.checkbox label {
  color: var(--dark-clr);
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}
.less-width-form-div .radio-btn-div div input:checked ~ label.checkbox {
  border: 9px solid var(--blue);
}
.less-width-form-div .radio-btn-div label {
  color: var(--dark-clr);
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}
.sponsored-product-brand-div h3 {
  color: #3f3d56;
  font-size: 1.25rem;
  font-weight: 700;
}
.sponsored-product-brand-div .asin-para {
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.sponsored-product-brand-div label {
  color: #999;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 5px;

  &.fs-16{
    font-size: 16px;
  }
}
.sponsored-product-brand-div p {
  color: var(--text-clr);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 14px;
}
.sponsored-product-brand-div .edit-delete-btn-div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.sponsored-product-brand-div .edit-delete-btn-div a.edit-btn {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  border: 1px solid var(--blue);
  background: var(--blue);
  height: 45px;
  padding-inline: 32px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
.sponsored-product-brand-div .edit-delete-btn-div a.edit-btn:hover {
  background: transparent;
  color: var(--blue);
}
.sponsored-product-brand-div .edit-delete-btn-div a.edit-btn:hover svg path {
  fill: var(--blue);
}
.sponsored-product-brand-div .edit-delete-btn-div a.delete-btn {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  border: 0;
  background: var(--blue-2);
  height: 45px;
  padding-inline: 32px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
.sponsored-product-brand-div .edit-delete-btn-div a.delete-btn:hover {
  background: var(--blue);
  color: #fff;
}
.sponsored-product-brand-div .edit-delete-btn-div a.delete-btn:hover svg path {
  fill: #fff;
}
.choose-area-div .choose-heading {
  color: var(--dark-blue);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 30px;
}
.choose-area-div .choose-option {
  border-radius: 5px;
  background: #ebf9ff;
  padding: 15px 12px;
  display: flex;
  gap: 15px;
  margin-top: 12px;
}
.choose-area-div .choose-option .radio-btn-div label {
  display: block;
  border-radius: 5px;
  background: #e7eced;
  width: 50px;
  height: 45px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.choose-area-div .choose-option .radio-btn-div input:checked ~ label {
  background-color: var(--blue);
}
.choose-area-div .choose-option .radio-btn-div input:checked ~ label svg path {
  fill: #fff;
}
.choose-area-div .choose-option .text-div p.para1 {
  color: var(--text-clr);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2px;
}
.choose-area-div .choose-option .text-div p.para2 {
  color: #999;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.choose-area-div.shiping-choose-div .text-div p.para2 {
  font-size: 1.25rem;
}
.choose-area-div .choose-option .text-div a {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 400;
  text-decoration-line: underline;
}
.choose-area-div button.submit-btn {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 25px;
  box-shadow: none;
}
.choose-area-div button.submit-btn:hover {
  background-color: transparent;
  color: var(--blue);
}
/*.tooltip {
  opacity: 1 !important;
}
.tooltip .tooltip-inner {
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  background: #fff;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.15);
  padding: 6px 12px;
}
.tooltip .tooltip-arrow::before {
  border-color: #fff !important;
  border-width: 6px;
  transform: rotate(45deg);
  left: -8px;
}
.tooltip .tooltipTitle {
  text-align: left;
  background-color: #fff;
}
.tooltip .tooltipTitle .para {
  color: var(--text-clr);
  font-size: 10px;
  font-weight: 400;
  margin: 0;
}
.tooltip .tooltipTitle .head {
  color: var(--text-clr);
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0;
}*/
.auth-modal-main-div.seperate-login .main-row {
  min-height: 100vh;
  overflow-y: auto;
}
.auth-modal-main-div.seperate-login .main-row .col1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 0;
  padding-inline: 5%;
  padding-block: 100px;
}
.auth-modal-main-div.seperate-login .main-row .col2 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 0;
  padding-block: 35px;
  max-width: 400px;
  margin-inline: auto;
}
.auth-modal-main-div.seperate-login .main-row .col1 img {
  margin: 0;
}
.each-auth-input-div input:not(:placeholder-shown) ~ label {
  top: -15px;
  color: #777;
  font-size: 0.75rem;
  font-weight: 400;
}
.sponsored-product-brand-div.profile-middle-div a.pro-change-pw-link {
  display: block;
  text-decoration: none;
  color: #0c4160;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  margin: 35px 0 0 0;
}
.sponsored-product-brand-div.profile-middle-div .name-heading {
  gap: 8px;
  color: var(--dark-clr);
}
.sponsored-product-brand-div.profile-middle-div .name-heading svg {
  cursor: pointer;
}
.sponsored-product-brand-div.profile-middle-div .input-div-area {
  position: relative;
  max-width: 300px;
  margin-block: 25px 10px;
  margin-inline: auto;
  display: none;
}
.sponsored-product-brand-div.profile-middle-div .input-div-area .save-input {
  position: absolute;
  right: 0;
  bottom: 10px;
  cursor: pointer;
}
.sponsored-product-brand-div .profile-img-div {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.sponsored-product-brand-div .profile-img-div div {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
}
.sponsored-product-brand-div .profile-img-div div img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.sponsored-product-brand-div .profile-img-div .upload-pro-btn {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 50%;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.profile-img-div.advanced{
  bottom: -40px;
}
.profile-img-div.advanced div{
  border: 1px solid #D0CDE1;
  padding: 2px;
}
.sponsored-product-brand-div .upload-file-label{
  color: var(--text-clr);
  font-size: 16px;
  text-decoration: underline;
}
.statistics-chart .head {
  color: var(--text-clr);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}
.statistics-chart #staticsPiechart {
  width: 500px !important;
  height: auto !important;
}
.statistics-chart {
  padding-inline: 25px;
}
.statistics-chart #staticLineBarChart {
  width: 100% !important;
  height: 250px !important;
}
.ncx-top-details {
  padding-inline: 25px;
}
.ncx-top-details .each-details p:first-child {
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 5px;
}
.ncx-top-details .each-details p:last-child {
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 600;
}
.ncx-top-details .each-details p.good {
  color: var(--green);
}
.ncx-top-details .each-details p.fair {
  color: #f9d100;
}
.ncx-top-details .each-details p.bad {
  color: #ff0036;
}
.ncx-table-main-div .ncx-table-heading {
  color: var(--text-clr);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.ncx-table-main-div {
  padding-inline: 5%;
}
.custom-pagination .page-item .page-link {
  color: #999;
  background-color: var(--card-bg);
  border-color: var(--card-border);
}
.custom-pagination .page-item {
  cursor: pointer;
}
.custom-pagination .page-item.disabled {
  user-select: none;
  cursor: not-allowed;
}
.custom-pagination .page-item.disabled svg {
  opacity: 0.5;
}
.custom-pagination .page-item.active .page-link {
  color: #fff;
  background-color: var(--dark-blue);
}
.ppc-graph-head-area-div.with-underline .checkbox-label {
  margin-inline: auto;
}
.ppc-graph-head-area-div.with-underline .checkbox-label label {
  width: 15px;
  height: 15px;
  border-radius: 1px;
  border: 1px solid #999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.ppc-graph-head-area-div.with-underline .checkbox-label input:checked ~ label {
  background-color: #999;
}
.table-switch-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
  border-bottom: 1px solid var(--input-border);
}
.table-switch-btn .table-select-btn {
  display: flex;
  align-items: center;
}
.table-switch-btn .table-select-btn label {
  display: block;
  position: relative;
  background-color: #fff;
}
/* .table-switch-btn .table-select-btn input:checked ~ label {
  border: 1px solid var(--dark-blue);
} */
.table-switch-btn .table-select-btn span {
  color: #999;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.table-switch-btn .table-select-btn input:checked ~ span {
  color: #fff;  
  background-color: var(--dark-blue);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
/* Nav drop down start */
.nav-dropdown-menu .dropdown-icon {
  height: 13px;
  vertical-align: baseline;
  margin-bottom: -0.1em;
}
.nav-dropdown-menu {
  width: 100%;
  @media screen and (min-width: 1200px){
    min-width: 400px;
  }
}
.nav-dropdown-menu .dropdown-item {
  padding-inline: 10px;
}
.nav-dropdown-menu .dropdown-item:active,
.nav-dropdown-menu .dropdown-item:hover {
  background-color: var(--hover-bg);
  color: var(--dark-clr);
}
.nav-dropdown-menu .dropdown-item a {
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.play-pause-switch {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 20px;
}
.play-pause-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.play-pause-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #c1c1c1;
  -webkit-transition: 0.4s;
  transition: 0.4s cubic-bezier(0, 1, 0.5, 1);
  border-radius: 50px;
}
.play-pause-slider:before {
  position: absolute;
  content: '';
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s cubic-bezier(0, 1, 0.5, 1);
  border-radius: 50%;
}
.play-pause-switch input:checked + .play-pause-slider {
  background-color: var(--dark-blue);
}
.play-pause-switch :checked + .play-pause-slider:before {
  -webkit-transform: translateX(12px);
  -ms-transform: translateX(12px);
  transform: translateX(12px);
}
/* Sponser Products vide modal start */
.campaign-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark-clr);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 15px 45px;
  border-bottom: 1px solid #a8a8a8;
}
.campaign-modal-header span, .campaign-status {
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 1px 10px;
  background-color: #B3FFEB;
  border: 1px solid #3B9906;
  color: #3B9906;
}
.campaign-modal-header span.paused, .campaign-status.paused {
  background-color: #FBCEB1;
  border: 1px solid var(--red);
  color: var(--red);
}
.campaign-modal-header span.archived, .campaign-status.archived {
  background-color: #FEEEBB;
  border: 1px solid #9F8629;
  color: #9F8629;
}
.campaign-modal-body {
  padding: 30px 45px;
}
.campaign-modal-ghaph-head-area {
  display: flex;
  justify-content: center;
  align-items: center;
  row-gap: 25px;
  flex-wrap: wrap;
  padding: 10px 20px;
  padding-bottom: 0;
}
.campaign-modal-ghaph-head-area p.heading-para {
  color: var(--text-clr-2);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.modal-close-btn-footer {
  border-radius: 5px;
  border: 1px solid #5b8899;
  background: #fff;
  color: var(--dark-clr);
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-inline: auto;
  margin-top: 30px;
}
/* Sponser Products vide modal end */
.dashboard-right-main-section
  .each-graph-alert-tip-div
  .head-area-div
  select.select-period {
  background-image: none;
}
.custom-datepicker-dropdown {
  position: relative;
  display: inline-block;
}
.select-period-type label{
  color: var(--text-clr);
}
.custom-datepicker-button {
  min-width: 220px;
  border: 1px solid var(--card-border);
  background-color: var(--card-bg);
  text-align: left;
  padding-inline: 10px;
  color: var(--text-clr);
  font-size: 0.875rem;
  font-weight: 400;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  box-shadow: none !important;
  outline: none;
}
.custom-datepicker-button:hover {
  color: var(--text-clr)
}
.custom-datepicker-button:after {
  display: none;
}
.custom-datepicker-button.min-wid-300 {
  min-width: 300px;
}
.custom-date-dropdown-menu {
  min-width: 200px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border: 1px solid var(--input-border);
  border-radius: 0.25rem;
  color: var(--text-clr);
}
.custom-date-dropdown-menu .dropdown-item {
  color: var(--text-clr-2);
  font-size: 0.75rem;
  padding: 8px 12px;
  cursor: pointer;
}
.custom-date-dropdown-menu .dropdown-item.active,
.custom-date-dropdown-menu .dropdown-item:active {
  background-color: #08c;
  color: white;
}
.brand-graph-modal-head {
  max-width: 700px;
}
.chart-main-area.review-small-chart {
  height: 320px !important;
}
.chart-main-area.review-small-chart canvas {
  height: 250px !important;
}
.review-small-graph-head {
  color: var(--text-clr);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.review-small-graph-para {
  color: var(--text-clr);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
}
.border-radius-right-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.border-radius-left-0 {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.short-product-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
.short-sku-name {
  width: 20ch;
  overflow: hidden;
  text-overflow: ellipsis;
}
.occupation-label {
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
.color-1 {
  background-color: var(--green);
}
.color-2 {
  background-color: #c576f6;
}
.color-3 {
  background-color: #1976d2;
}
.color-4 {
  background-color: #ff931e;
}
.color-5 {
  background-color: #01776c;
}
.color-6 {
  background-color: #a0616a;
}
.color-7 {
  background-color: #715aeb;
}
.color-8 {
  background-color: #ff3d00;
}
.color-9 {
  background-color: #01776c;
}
.color-10 {
  background-color: #4da1bc;
}
.color-11 {
  background-color: #999;
}
/* Authorize API Starts */
.authorize-cards {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
}
.authorize-cards .single-card {
  flex: 1;
  border-radius: 15px;
  border: 1px solid #e6e6e6;
  background: #fff;
  padding: 25px 30px;
  text-align: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
}
.authorize-cards .authorize-btn {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #dcdfe8;
  background: #e4f8ff;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 10px;
  box-shadow: none;
  padding: 0.65rem 1rem;
  color: var(--dark-clr);
  font-weight: 500;
}
.authorize-cards p {
  color: var(--text-clr);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
}
.authorize-cards .authorize-btn:hover {
  background: #daf3fc;
}
.authorize-proceed-btn {
  border-radius: 5px;
  background: var(--blue);
  color: #fff;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 10px;
  box-shadow: none;
  padding: 0.6rem 1rem;
  max-width: 450px;
  margin-inline: auto;
}
.authorize-proceed-btn.disabled {
  background: #d1e5ec;
}
.authorize-proceed-btn:hover {
  background-color: #4f5cd3;
  color: #fff;
}
.single-card.authorized {
  border-color: #94d13d;
}
.single-card.authorized p {
  color: var(--green);
}
.single-card.authorized .btn {
  background-color: #94d13d;
  color: #fff;
  opacity: 1;
  border-color: #94d13d;
}
/* Authorize API Ends */
.coloum-select-dropdown .dropdown-toggle {
  color: var(--text-clr);
  border: 1px solid var(--card-border);
  border-radius: 5px;
  background-color: var(--card-bg);
}
.coloum-select-dropdown .dropdown-menu{
  max-height: 300px;
  overflow-y: auto;
}
.coloum-select-dropdown .dropdown-menu .dropdown-item {
  padding: 0;
}
.coloum-select-dropdown .dropdown-menu .dropdown-item:active {
  background-color: #e9ecef;
  color: currentColor;
}
.coloum-select-dropdown .dropdown-menu .dropdown-item .form-check {
  padding: 0.3rem 1rem;
  padding-left: 2.5rem;
  display: flex;
  align-items: center;
}
.coloum-select-dropdown .dropdown-menu .dropdown-item .form-check label {
  flex: 1;
  cursor: pointer;
  font-size: 0.9rem;
  position: relative;
  top: 1px;
  color: var(--text-clr);
}
.coloum-select-dropdown .dropdown-menu .form-check-input {
  margin-right: 0.75rem;
  box-shadow: none;
  margin-top: 0;
  border: 1px solid #999;
  border-radius: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.coloum-select-dropdown .dropdown-menu .form-check-input:checked {
  background-color: #1da1f2;
  border-color: #1da1f2;
}
.occupation-dropdown {
  border-bottom: 1px solid var(--input-border);
  min-height: 40px;
}
.occupation-dropdown .dropdown-toggle {
  text-align: left;
  padding-inline: 0;
  border-radius: 0;
}
.occupation-dropdown .dropdown-toggle:after {
  float: right;
  position: relative;
  top: 12px;
}
.occupation-dropdown .dropdown-menu {
  padding: 0.5rem 0;
  transform: translate(0, 45px) !important;
  color: var(--text-clr);
}
.occupation-dropdown .occupation-input {
  border: 0;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  outline: 0;
}
.occupation-dropdown .add-occupation-btn {
  padding: 0.125rem 0.5rem;
  background-color: #f2f2f2;
}
.occupation-dropdown .add-occupation-btn:hover {
  color: #222;
  background-color: #eee;
}
.occupation-dropdown .dropdown-menu .occupation-ul {
  display: flex;
  gap: 0.5rem;
  padding: 0;
  flex-wrap: wrap;
  max-height: 250px;
  overflow-y: auto;
}
.occupation-dropdown .dropdown-menu .dropdown-item {
  cursor: pointer;
  padding: 0;
  position: relative;
}
.occupation-dropdown .dropdown-item.active,
.occupation-dropdown .dropdown-item:active,
.occupation-dropdown .dropdown-item:hover {
  background-color: transparent;
  color: currentColor;
}
.occupation-dropdown .dropdown-item .occupation-ul-inner {
  color: #fff;
  display: flex;
  align-items: center;
  border-radius: 5px;
  position: relative;
}
.occupation-dropdown .dropdown-item .occupation-ul-inner.active::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  left: 0.65rem;
  top: 1.125rem;
}
.occupation-dropdown .dropdown-item.editing .occupation-ul-inner::before {
  display: none;
}
.occupation-dropdown .dropdown-item span {
  display: block;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
}
.occupation-dropdown .dropdown-item .btn {
  padding: 0 0.275rem;
  opacity: 0.75;
  line-height: 1;
}
.occupation-dropdown .dropdown-item .btn:hover {
  opacity: 1;
}
.occupation-dropdown .dropdown-item.editing {
  padding: 0.5rem;
  border: 1px solid #ccc;
}
.color-label-div .color-box {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background-color: attr(data-color);
  cursor: pointer;
}
.hover-red:hover {
  color: var(--red);
}
.color-label-div .color-box img {
  opacity: 0;
}
.color-label-div input[type='radio']:checked ~ .color-box img {
  opacity: 1;
}
.occupation-dropdown .current-occupation-label {
  border-radius: 5px;
  color: #fff;
  padding: 0.25rem 0.5rem 0.25rem 0.75rem;
  margin-bottom: 0.5rem;
}
.occupation-dropdown .current-occupation-label .btn {
  padding: 0 0.125rem;
  color: #fff;
  margin-left: 0.5rem;
  opacity: 0.75;
}
.occupation-dropdown .current-occupation-label .btn:hover {
  opacity: 1;
}
.occupation-dropdown.advanced{
  @media screen and (min-width: 1200px){
    min-width: 400px;
  }
}
.occupation-dropdown.advanced .occupation-ul{
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.occupation-dropdown.advanced .dropdown-item{
  padding: 0;
  margin-bottom: 0.5rem;
}
.occupation-dropdown.advanced .dropdown-item.editing{
  padding: 0.75rem;
}
.common-dropdown .dropdown-toggle {
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid var(--card-border);
  color: var(--dark-clr);
  font-size: 0.9375rem;
  font-weight: 500;
  min-width: 150px;
  background-color: var(--card-bg);
  padding: .525rem .75rem;
}
.common-dropdown .dropdown-item:active {
  background-color: #e9ecef;
  color: currentColor;
}
.common-dropdown .dropdown-toggle:hover {
  background-color: #f2f9ff;
}
.dark-mode .common-dropdown .dropdown-toggle:hover {
  background-color: var(--background-clr);
}
.lh-2 {
  line-height: 1.35;
}
.h-65px {
  height: 65px;
}
.light-hr {
  background-color: #bbb;
  margin: 0;
}
.span-or-text {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  background-color: #fff;
  padding-inline: 1.5rem;
}
td.fixed-column, th.fixed-column {
  position: sticky;
  position: -webkit-sticky;
  right: 0;
  top: 1px;
  background-color: var(--card-bg);
}
td.fixed-column {
  box-shadow: 0 1px 1px 1px var(--card-border);
}
.short-edit-btn {
  visibility: hidden;
  pointer-events: none;
}
.list-dropdown .dropdown-toggle {
  background-color: var(--dark-blue);
  border: 0;
  color: #fff;
  padding-inline: 0.65rem;
}
.list-dropdown .dropdown-toggle:hover {
  background-color: #6c63ff;
}
.list-dropdown .dropdown-toggle::before {
  transform: rotate(-90deg);
  margin-inline: 0.255em;
}
.list-dropdown .dropdown-toggle.show::before {
  transform: rotate(90deg);
}
.list-dropdown .dropdown-menu {
  top: 34px !important;
  min-width: 22rem;
}
.list-dropdown .dropdown-menu .list-container-div {
  max-height: 250px;
  overflow-y: auto;
}
.list-dropdown .dropdown-menu .dropdown-item {
  padding-block: 0.5rem;
}
.list-dropdown .dropdown-menu .dropdown-item:active, .list-dropdown .dropdown-menu .dropdown-item:focus {
  background-color: #dfe3e8;
  color: currentColor;
}
.normal-dropdown .dropdown-toggle{
  border-bottom: 1px solid var(--input-border);
  color: var(--text-clr);
}
.normal-dropdown .dropdown-menu{
  color: var(--text-clr);
}
.normal-dropdown .dropdown-toggle::after{
  float: right;
  position: absolute;
  top: 17px;
  right: 3px;
}
.normal-dropdown .dropdown-toggle span{
  display: block;
  max-width: calc(100% - 25px);
  text-overflow: ellipsis;
  overflow: hidden;
}
/* Alerts related css starts */
.alert-icon-circle {
  width: 50px;
  height: 50px;
  background-color: var(--green);
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: all 250ms ease-in;
}
.alert-icon-circle.check-box, .archived .alert-icon-circle.check-box{
  width: 32px;
  height: 32px;
  background-color: #fff !important;
  border-radius: 10px;
  border: 2px solid #ccc;
  cursor: pointer;
  position: relative;
}
.check-box::after{
  content: '';
  width: 10px;
  height: 20px;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: translate(-50%, -50%) rotate(45deg);
  position: absolute;
  top: calc(50% - 2px);
  left: 50%;
  opacity: 0;
  transition: all 250ms ease-in;
}
.check-box.active{
  border-color: var(--blue);
}
.check-box.active::after{
  opacity: 1;
}
.bulk-switch-wrapper{
  padding: 5px 10px;
  border: 1px solid #aaa;
  border-radius: 8px;

  &.active{
    border-color: var(--blue);
  }
}
.single-alert-div {
  border-radius: 5px;
  background: var(--card-bg);
  border-color: var(--card-border);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  padding: 14px 18px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  transition: border 350ms ease-in;
}
.single-alert-div.active{
  border-color: var(--blue);
}
.single-alert-div.archived{
  background: aliceblue;
  
  .alert-icon-circle{
    background: #d4d4d4;    
  }

  h5, p{
    color: #aaa;
  }
}
.postponed-label{
  border: 1px solid #f90;
  display: inline-flex !important;
  padding: 0.25rem 1rem;
  border-radius: 5px;
  background: #f90;
  color: #fff !important;

  img{
    filter: brightness(100);
  }
}
.blue-view-btn {
  border-radius: 5px;
  background: var(--blue);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.75rem 1.25rem;
  text-decoration: none;

  &:hover {
    color: #fff;
    background-color: var(--dark-blue);
  }
}
.alert-dismiss-btn {
  border-radius: 5px;
  background: var(--red);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.75rem 1.25rem;
  text-decoration: none;

  &:hover {
    color: #fff;
    background-color: var(--dark-red);
  }
}
.alert-postpone-btn {
  border-radius: 5px;
  background: #f90;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.75rem 1.25rem;
  text-decoration: none;

  &:hover {
    color: #fff;
    background-color: #f39200;
  }
}
.alert-time {
  color: #8d8d8d;
}
.dark-mode .alert-time img{
  filter: brightness(100);
}
.alert-text-div .para {
  line-height: 1.25;
}
.alert-text-div .para a {
  color: #53a9f1;
  text-decoration: none;

  &:hover {
    color: var(--blue);
  }
}
.alert-text-div .para .positive {
  color: var(--green);
}
.alert-text-div .para .negative {
  color: #ff4b55;
}
/* Alerts related css ends  */
/* Tips related css starts */
.tip-icon-circle {
  width: 50px;
  height: 50px;
  background-color: #FCAF21;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.tips-apply-btn {
  border-radius: 5px;
  background: var(--green);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.75rem 1.25rem;
  text-decoration: none;

  &:hover {
    color: #fff;
    background-color: var(--dark-green);
  }
}
.production-order-edit-btn:hover{
  background-color: #9efef4;
}
.products-list-nav li{
  background-color: var(--card-bg-2);
  border: 1px solid var(--card-border);
  padding: 10px 20px;
  border-radius: 5px;
}
.products-list-nav li label{
  color: #999;
}
.products-list-nav li label span{
  color: var(--text-clr);
}
.shipping-method-label{
  border-radius: 5px;
  color: #fff;
  padding: 0.25rem 0.675rem 0.25rem 0.675rem;
  font-weight: 600;
  white-space: nowrap;
}
.shipping-status{
  padding: 0.125rem 0.5rem;
  white-space: nowrap;
  border-radius: 4px;
  font-size: 0.75rem;
}
.ready{
  background-color: #CDF3FF;
  border: 1px solid #299AD7;
  color: #299AD7;
}
.shipped, .completed, .shipping-status.paid{
  background-color: #B3FFEB;
  border: 1px solid #3B9906;
  color: #3B9906;
}
.cancelled, .failed{
  background-color: #FFE5D5;
  border: 1px solid var(--red);
  color: var(--red);
}
.ongoing{
  background-color: #FFE5B4;
  border: 1px solid #E18C00;
  color: #E18C00;
}
.receiving, .onqueue{
  background-color: #FEEEBB;
  border: 1px solid #9F8629;
  color: #9F8629;
}
.closed{
  background-color: #F1E4FF;
  border: 1px solid #9957D5;
  color: #9957D5;
}
.page-item.disabled .page-link{
  background-color: var(--card-bg);
  border-color: var(--card-border);
}
/* Tips related css ends */
table tr {
  position: relative;
}
.resizer {
  cursor: ew-resize;
  position: relative;
}
.resizer::before{
  position: absolute;
  content: '';
  height: 75%;
  width: 2px;
  background-color: #9ECAEE;
  opacity: 0.5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.resizer img{
  z-index: 1;
  flex-shrink: 0;
}
.modal-backdrop ~ .modal-backdrop{
  z-index: 1061;
}
.negative-modal{
  z-index: 1062;
}
.text-overflow-ellipsis{
  text-overflow: ellipsis;
}
/* Checkboxes for Levels */
.all-five-levels .level-label {
  --level0-clr: #A270C9;
  --level1-clr: #53A9F1;
  --level2-clr: var(--green);
  --level3-clr: #FF9900;
  --level4-clr: #DAB904;
  position: relative;
  padding-left: 22px;
  cursor: pointer;
  user-select: none;
  line-height: 1;
}
.level-label.level0{
  color: var(--level0-clr);
}
.level-label.level1{
  color: var(--level1-clr);
}
.level-label.level2{
  color: var(--level2-clr);
}
.level-label.level3{
  color: var(--level3-clr);
}
.level-label.level4{
  color: var(--level4-clr);
}
.all-five-levels .level-label:before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 17px;
  height: 16px;
}
.all-five-levels .level-label.level0:before {
  border: 2px solid var(--level0-clr);
  background-color: var(--level0-clr);
}
.all-five-levels .level-label.level1:before {
  border: 2px solid var(--level1-clr);
  background-color: var(--level1-clr);
}
.all-five-levels .level-label.level2:before {
  border: 2px solid var(--level2-clr);
  background-color: var(--level2-clr);
}
.all-five-levels .level-label.level3:before {
  border: 2px solid var(--level3-clr);
  background-color: var(--level3-clr);
}
.all-five-levels .level-label.level4:before {
  border: 2px solid var(--level4-clr);
  background-color: var(--level4-clr);
}
.all-five-levels .level-label:after {
  content: '';
  position: absolute; 
  left: 6px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  opacity: 1;
  transition: all 150ms ease-in;
}

/* Checkmark on checked */
.all-five-levels input[type="checkbox"]:checked + .level-label.level0:before {
  background-color: #fff;
}
.all-five-levels input[type="checkbox"]:checked + .level-label.level1:before {
  background-color: #fff;
}
.all-five-levels input[type="checkbox"]:checked + .level-label.level2:before {
  background-color: #fff;
}
.all-five-levels input[type="checkbox"]:checked + .level-label.level3:before {
  background-color: #fff;
}
.all-five-levels input[type="checkbox"]:checked + .level-label.level4:before {
  background-color: #fff;
}
.all-five-levels input[type="checkbox"]:checked + .level-label:after {
  opacity: 0;
}
.common-ul li{
  list-style: none;
  position: relative;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  padding-left: 1.25rem;
  width: 90%;
}
.common-ul li::before{
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--blue);
  display: block;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(calc(-50% - 2px));
}
.less-width-form-div .production-order-balance{
  padding: 0.55rem 2rem;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 8px;
  font-size: 1.25rem;
}
.production-order-add-product-link.blue-text{
  color: var(--blue);
  cursor: pointer;
}
.production-order-add-product-link.blue-text:hover{
  color: var(--dark-blue);
}
.delete-btn.with-border{
  padding: 0 0.25rem;
  border: 1px solid #fd3040;

  &:hover{
    background-color: #ffebec;
  }
}
/* Futuristic Table */
.future-td .percent-span{
    background-color: var(--green);
    padding: 0.15rem 0.25rem;
    display: inline-block;
    color: #fff;
    font-size: 0.75rem;
    border-radius: 3px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}
.future-td .percent-span.red{
   background-color: #FF4B55;
}
.future-td .stock-span{
  color: var(--green);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
}
.future-td .stock-span.red{
  color: #FF4B55;
  font-weight: 700;
}
.future-td .stock-span.upcoming{
  color: #BF84ED;
  font-weight: 700;
}
.mw-150{
  min-width: 150px;
}
.parameter-card, .spikes-card{
  border: 1px solid var(--card-border);
  border-radius: 5px;
  padding: .75rem 1.25rem;
  background-color: var(--card-bg);
  color: var(--text-clr);
}
.parameter-card input.form-control{
  background-color: var(--input-bg);
  border-color: var(--card-border);
  color: var(--text-clr);
}
.spikes-card table{
  color: var(--text-clr);
}
.icon-holder{
  width: 45px;
  height: 45px;
  margin-inline: auto;
  border-radius: 50%;
  background-color: #FFE8E8;
  display: grid;
  place-items: center;
}
.table > :not(caption) > * > *{
  vertical-align: middle;
}
.normal-product-dropdown .dropdown-toggle{
  border: 1px solid #ccc;
  flex-shrink: 0;
  min-width: 300px;
  border-radius: 5px;
  padding-left: 1rem;
  color: var(--text-clr);
}
.normal-product-dropdown .dropdown-menu input{
  border: 0;
  border-bottom: 1px solid #ccc;
}
.show-futuristic-product{
  background-color: #E1F7FF;
  padding: 0.45rem 1rem;
  color: #202020;
}
.sell-through-box{
  background-color: #E1F7FF;
  padding: 0.45rem 0.95rem;
  color: #202020;
  border-radius: 4px;
}
.order-status-dropdown .dropdown-toggle::after{
  display: none;
}
.order-status-dropdown .dropdown-toggle label::after{
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.details-3pl{
  border: 1px solid var(--card-border);
  border-radius: 10px;
  color: var(--text-clr);
}
.edit-inp.form-control{
  border-radius: 0;
  padding: 0.25rem;
  text-align: center;
  font-size: 0.75rem;
}
select.edit-inp.form-control{
  min-width: 120px;
  text-align: left;
}
.edit-inp.calendar{
  min-width: 75px;  
}

/* Settings Style */
.settings-sidebar{
    border-right: 2px solid #D0CDE1;
    background: #F3FCFF;
    max-width: 175px;
    min-height: 100%;
}
.dark-mode .settings-sidebar{
  border-right: 2px solid transparent;
  background: #212121;
  max-width: 175px;
}
.settings-sidebar .nav-link{
  color: #999;
}
.settings-sidebar .nav-link.active{
  background-color: #DEF6FF;
  color: var(--blue);
}
.dark-mode .settings-sidebar .nav-link.active{
  background-color: #151515;  
}
.settings-sidebar .nav-link.active:has(.fill) svg path{
  fill: var(--blue);
  stroke: unset;
}
.settings-sidebar .nav-link.active svg path{
  stroke: var(--blue);
}
.settings-right-div{
  padding: 40px 0px 0px 40px;
}
.general-div{
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.10);
  border: 1px solid var(--card-border);
  background-color: var(--card-bg);

  &.primary{
    border-color: var(--blue);
  }
}
.custom-radio .form-check-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1.25em;
  height: 1.25em;
  border: 2px solid #6c757d; /* Grey border for inactive state */
  border-radius: 50%;
  background-color: #f8f9fa; /* Grey background for inactive state */
  display: inline-block;
  position: relative;
  margin-right: 0.5em;
  }
  .custom-radio .form-check-input:checked {
  border-color: var(--dark-blue); /* Blue border for active state */
  background-color: #fff; /* White background for active state */
  }
  .custom-radio .form-check-input:checked::before {
  content: '';
  display: block;
  width: 0.75em;
  height: 0.75em;
  background-color: var(--dark-blue); /* Blue inner circle for active state */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  }
  .custom-radio .form-check-input:focus {
  outline: none;
  box-shadow: none;
  }
  .custom-radio .form-check-label {
  color: #6c757d; /* Grey color for inactive state */
  position: relative;
  top: 3px;
  }
  .custom-radio .form-check-input:checked + .form-check-label {
  color: var(--dark-blue); /* Blue color for active state */
  }
  .theme-circle{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;

    span{
      position: absolute;
      width: 20px;
      height: 20px;
    }

    span:nth-child(2){
      right: 0;
    }
    span:nth-child(3){
      bottom: 0;
    }
    span:nth-child(4){
      right: 0;
      bottom: 0;
    }
  }
  .table-checkbox input[type=radio] ~ .radio-label{
    width: 18px;
    height: 18px;
    border-radius: 3px;
    border: 2px solid #aaa;
  }
  .table-checkbox input[type=radio] ~ .radio-label img{
    display: none;
  }
  .table-checkbox input[type=radio]:checked ~ .radio-label{
    border: 2px solid var(--dark-blue);
    background-color: var(--dark-blue);
  }
  .table-checkbox input[type=radio]:checked ~ .radio-label img{
    display: block;
    position: relative;
    top: 1px;
  }
  .account-initial-box{
    width: 65px;
    height: 65px;
    border-radius: 5px;
    background-color: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    font-weight: 700;
  }
  .account-authorize-card{
    border-radius: 8px;
    border: 1px solid #B6C2E2;
    background: var(--card-bg);
    padding: 16px 20px;

    .btn{
      border-radius: 5px;
      border: 1px solid #DCDFE8;
      background: #E4F8FF;
      width: 75%;
    }
  }
.marketplace-accordion{
  .accordion-item{
    border-radius: 10px;
    border: 1px solid #B6C2E2;
    overflow: hidden;
    background-color: var(--card-bg);
  }
  
  .accordion-button:not(.collapsed){
    background-color: var(--card-bg);
  }

  .accordion-button{
    padding: 0.75rem 1.25rem;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);

    &.collapsed{
      box-shadow: none;
    } 
    
    .icon-span{
      border-radius: 6px;
      background: #E6EEFF;
      padding: 6px;
      width: 35px;
      height: 35px;
      display: grid;
      place-items: center;
    }
  }

  .accordion-body-inner{
    background-color: var(--card-bg-2);
    padding: 1rem 2rem;

    ul li{
      max-width: 225px;
    }
  }
}
.current-subscription-nav{
  li p{
    font-weight: 500;
    margin-top: 5px;

    span.plan-name{
      color: var(--dark-green);
    }
    span.plan-price{
      font-size: 0.875rem;
    }
  }
}
.modal-heading-label{
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #F4EBFF;
}
.payment-method-label{
  border: 1px solid var(--grey-1);
  color: var(--grey-1);
  padding: 0.55rem 1rem;
  border-radius: 8px;

  span{
    font-size: 1rem;
  }

  &.active{
    border-color: var(--dark-blue);
    color: var(--dark-blue);

    svg path{
      fill: var(--dark-blue);
    }
  }
}
.card-types-span{
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
}
.modal.advanced{   
  .modal-header, .modal-footer{
    background-color: var(--modal-header-bg);
  }
}
.modal.updated{
  .modal-footer{
    background-color: var(--modal-header-bg);
  }
}
.modal-content{
  background-color: var(--card-bg);
}
/* Help page */
.help-main{
  .help-hero-section{
    padding: 50px;
    background: #EEFFE9;
  }
  h1{
    color: var(--blue-2);
  }
}
.dark-mode .help-main{
  background: #212121;
}
.dark-mode .help-main .help-hero-section{
  background: #060c00;  
}
.help-search-input-div{
  max-width: 600px;
  margin-inline: auto;

  .form-control{
    min-height: 50px;
    padding-left: 3rem;
  }

  .search-icon-span{
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(calc(-50% - 2px));
  }
}
.help-sidebar{
  position: sticky;
  top: 50px;
}
.accordion-item{
  background-color: var(--card-bg);
}
.help-main .accordion-item{
  border: 0;
  border-bottom: 1px solid var(--input-border);

  .accordion-header{
     button{
          background-color: var(--card-bg);
          color: var(--dark-blue);
          font-size: 1.25rem;
          font-style: normal;
          font-weight: 700;
          box-shadow: none;
      }
      button.collapsed{
          color: var(--text-clr);
      }
      button::after{
          display: none;
      }
  }
}
.help-main .accordion-body{
  padding-block: 0;
  background-color: var(--card-bg);

  ul{
    li{
      .btn{
        text-align: start;
        font-weight: 600;
        line-height: 1.35;
        color: var(--text-clr-2);
      }
    }
  }
}
.help-content{
  padding-top: 2rem;
  padding-bottom: 2rem;

  h2{
    color: var(--dark-blue);
    font-size: 2rem;
    font-weight: 800;
  }
  h3{
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 0.75rem;
  }
  h4{
    font-size: 1.125rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
  }
  ul li{
    margin-bottom: 1rem;
  }
  p, ul li, ol li{
    font-size: 1.125rem;
  }
}
/* Help page ends */
.dashboard-right-main-section .new-purchase-order-main-div .new-purchase-order-form .disabled{
  label{
    color: #aaa;
  }
  input{
    pointer-events: none;
    background-color: var(--placeholder-text);
    color: var(--placeholder-text);
  }
}
.dark-mode .daterangepicker, .dark-mode .daterangepicker .calendar-table{
  background-color: var(--card-bg);
  border-color: var(--card-border);
}
.dark-mode .calendar-table .table-condensed thead tr:nth-child(1){
  background-color: var(--card-bg);
}
.dark-mode .daterangepicker .ranges li:hover{
  background-color: var(--card-border);
}
.dark-mode .daterangepicker .calendar-table td, .dark-mode .daterangepicker .calendar-table th, .dark-mode .daterangepicker .drp-buttons{
  border-color: var(--card-border);
}
.dark-mode .daterangepicker.show-ranges.ltr .drp-calendar.left{
  border-color: var(--card-border);
}
.dark-mode .daterangepicker td.available:hover, .dark-mode .daterangepicker th.available:hover{
  background-color: #555;  
}
.dark-mode .daterangepicker .calendar-table .next span, .dark-mode .daterangepicker .calendar-table .prev span{ 
border-color: #f5f5f5;
}
.dark-mode .daterangepicker td.in-range{
  background-color: #999;
}
.dark-mode .daterangepicker td.active, .dark-mode .daterangepicker td.active:hover{
  background-color: #3d8eec;
}
.dark-mode .daterangepicker::before {
  border-bottom-color: #999;
  z-index: 1;
}
.dark-mode .calendar-table .table-condensed thead tr th, .dark-mode .calendar-table .table-condensed thead tr:nth-child(2) th{
  color: #8fc3ff;
}
.dark-mode .modal-header .btn-close{
  background: url(data:image/svg+xml,%3Csvg%20width%3D%2225%22%20height%3D%2224%22%20viewBox%3D%220%200%2025%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M6.68847%203.6322L12.8645%209.80819L19.0085%203.6642C19.1442%203.51974%2019.3077%203.40419%2019.4891%203.32445C19.6706%203.24472%2019.8663%203.20246%2020.0645%203.2002C20.4888%203.2002%2020.8958%203.36877%2021.1958%203.66882C21.4959%203.96888%2021.6645%204.37585%2021.6645%204.8002C21.6682%204.99636%2021.6318%205.19121%2021.5575%205.37281C21.4832%205.5544%2021.3726%205.71889%2021.2325%205.8562L15.0085%2012.0002L21.2325%2018.2242C21.4962%2018.4822%2021.6508%2018.8315%2021.6645%2019.2002C21.6645%2019.6245%2021.4959%2020.0315%2021.1958%2020.3316C20.8958%2020.6316%2020.4888%2020.8002%2020.0645%2020.8002C19.8606%2020.8087%2019.6571%2020.7746%2019.4671%2020.7002C19.277%2020.6259%2019.1045%2020.5128%2018.9605%2020.3682L12.8645%2014.1922L6.70447%2020.3522C6.56928%2020.4918%206.40777%2020.6033%206.22927%2020.6802C6.05077%2020.7571%205.85881%2020.7979%205.66447%2020.8002C5.24012%2020.8002%204.83316%2020.6316%204.5331%2020.3316C4.23304%2020.0315%204.06447%2019.6245%204.06447%2019.2002C4.06074%2019.004%204.09713%2018.8092%204.17142%2018.6276C4.24571%2018.446%204.35632%2018.2815%204.49647%2018.1442L10.7205%2012.0002L4.49647%205.77619C4.23277%205.51821%204.07813%205.16885%204.06447%204.8002C4.06447%204.37585%204.23304%203.96888%204.5331%203.66882C4.83316%203.36877%205.24012%203.2002%205.66447%203.2002C6.04847%203.205%206.41647%203.3602%206.68847%203.6322Z%22%20fill%3D%22%23C1C1C1%22%2F%3E%3C%2Fsvg%3E);
  background-repeat: no-repeat;
  background-position: center;
}
.dark-mode .less-width-form-div .date-input.disabled input {
  background-color: #4c4c4c;
}
@media (prefers-color-scheme: dark) {
  .dark-mode{
    --background-clr: #121212;
    --text-clr: #fff;
  }
}
.modal-backdrop.show{
  opacity: 0.75;
}
.select-strategy-dropdown{
  .dropdown-toggle::after{
    display: none;
  }

  .dropdown-menu{
    min-width: 325px;
  } 
}
.select-strategy-nav{
  color: var(--text-clr);
  max-height: 300px;
  overflow-y: auto;

  li{
    border-bottom: 1px solid var(--card-border);

    &:hover{
      background-color: var(--hover-bg);
    }
  }
  li:last-child{
    border-bottom: 0;
  }
}
.select-strategy-nav li label{
  opacity: 0;
  visibility: hidden;
}
.select-strategy-nav li:hover label{
  color: var(--text-clr);
  opacity: 1;
  visibility: visible;
}
.select-strategy-nav p{
  line-height: 1.25;
}
.select-strategy-nav .active p{
  color: var(--dark-green);
  font-weight: 600;
}
.select-strategy-nav li label{
  border: 1px solid #999;
  border-radius: 5px;
  padding: 0.25rem 0.85rem;
  width: 110px;
  color: var(--text-clr);
}
.select-strategy-nav li.active label{
  border-color: var(--dark-green);
  background-color: var(--dark-green);
  color: #fff;
  opacity: 1;
  visibility: visible;
}
/* History */
.history-card{
  border-radius: 5px;
  background: var(--card-bg);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.10);
  padding: 25px;
}
.history-time-ul{
  position: relative;
  list-style-type: none;
  --circle-width: 14px;

  &::before{
    content: '';
    position: absolute;
    display: block;
    width: var(--circle-width);
    height: var(--circle-width);
    border-radius: 50%;
    background-color: #FCAF21;
    left: 0;
    top: 5px;
  }
  
  &::after{
    content: '';
    position: absolute;
    height: calc(100% + 18px);
    width: 1px;
    left: calc(var(--circle-width) / 2);
    top: 5px;
    background-color: #FCAF21;
  }
  .history-time{
    display: block;
    overflow: hidden;
    margin-bottom: 0.75rem;
    position: relative;
    
    .history-time-span{
      font-size: 0.875rem;
      background-color: var(--card-bg);
      color: var(--dark-blue);
      display: inline-block;
      padding-right: 0.675rem;
    }

    &::after{
      content: '';
      position: absolute;
      width: 100%;
      top: 50%;
      transform: translateY(-50%);
      height: 1px;
      background-color: var(--dark-blue);
    }
  }
  .history-detail{
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--input-border);

    &:last-of-type{
      border-bottom: 0;
    }
  }
  }
  .logo-upload-area {
    border-radius: 5px;
    border: 1px solid #2BC39F;
    background: #F8FFF5;
    padding: 0.75rem;

    &:hover{
      background-color: #F3FFEF;
    }
  }
  .dark-mode .logo-upload-area {
    background-color: var(--card-bg);
  }
  .img-preview{
    padding: 1rem;
    background-color: #fff;
    border-radius: 5px;
    min-height: 125px;
    max-height: 150px;
  }
  .history-para{
    span{
      color: var(--dark-green);
    }
  }
  .history-footer{
    display: flex; 
    align-items: center; 
    gap: 12px;
  }
  .label-preview-table{
    td, tbody, tr{
      color: var(--text-clr);
      border-color: #999;
    }
}
.filter-dropdown-menu .filter-btn{
  img{
    opacity: 0;
  }
}
.filter-dropdown-menu .filter-btn:focus{
  background-color: var(--light-sky-clr);
  color: var(--dark-blue);
}
.filter-dropdown-menu .filter-btn.active{
  background-color: var(--light-sky-clr);
  color: var(--dark-blue);
  
  img{
    opacity: 1;
  }
}
.filter-dropdown-menu .option-btn .circle-span{
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #1DA1F2;
  outline: 1px solid #1DA1F2;
  outline-offset: 2px;
  opacity: 0;
}
.filter-dropdown-menu .option-btn.active, .filter-dropdown-menu .option-btn:active{
  background-color: #f5f5f5;
  color: #1DA1F2;
}
.filter-dropdown-menu .option-btn.active .circle-span{
  opacity: 1;
}
.no-data-box{
  border-radius: 5px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  padding: 50px 35px;
  color: var(--text-clr);
}
.card-primary-label{
  border-radius: 30px;
  padding: 2px 15px;
  background-color: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.set-primary-btn{
 padding: 0.225rem 1rem;
 border: 1px solid var(--blue);
 color: var(--blue);
 font-size: 14px;
 font-weight: 500;
 
 &:hover{
   background-color: var(--light-sky-clr);
   color: var(--blue);
 }
}
.less-width-form-div .client-active-label{
  display: inline-block;
  padding: 0.375rem 1.5rem;
  border-radius: 50px;
  font-size: 16px;
  color: #fff;

  &.active{
    background-color: #6C63FF;
  }
}
.btn-with-icon{
  display: grid;
  grid-template-columns: 20px auto;
  align-items: center;
  gap: 0.5rem;
}
.gradient-div{
  border-radius: 5px;
  background: linear-gradient(135deg, #1998E7 0%, #C555B9 100%);
  min-height: 75px;
}
.delete-red-btn{
  color: #FF6347;

  &:hover{
    background-color: #ffe6e6;
    color: #FF6347;
  }
}
.color-box-wrapper{
  display: flex;
  gap: 10px;

  .color-box{
    border-radius: 4px;
    width: 35px;
    height: 30px;
    display: grid;
    place-items: center;
    padding: 4px;

    img{
      opacity: 0;
      transition: 350ms ease-in-out;
    }

    &.active img{
      opacity: 1;
    }

    &.green1{
      background-color: #24BE9A;
    }
    &.green2{
      background-color: #01776C;
    }
    &.purple{
      background-color: #C576F6;
    }
    &.blue{
      background-color: #1976D2;
    }
    &.orange{
      background-color: #FF931E;
    }
    &.pizza{
      background-color: #A0616A;
    }
    &.fizz{
      background-color: #715AEB;
    }
    &.brig{
      background-color: #4da1bc;
    }
  }
}
.label-checkbox-wrapper{
  .checkbox-circle{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #aaa;
    flex-shrink: 0;
    margin-bottom: 0;
    display: block;
  }

  input[type=checkbox]:checked ~ .checkbox-circle{
    border: 5px solid #1DA1F2;
  }

  input[type=checkbox]:checked ~ label{
    color: #1DA1F2;
  }
}
.settings-tabs{
  &.nav-tabs{
    border-bottom: 1px solid var(--card-border);
  }
  .nav-link{
    padding-inline: 1.5rem;
    color: #888;
    margin-right: 5px;

    &:hover{
      background-color: #fff;
      color: #202020;
    }
  }

  .nav-link.active{
    background-color: #0A66C2;
    border-color: #0A66C2;
    color: #fff;
  }
}
.apply-coupon-div{
  background-color: var(--background-clr);
  border: 1px solid var(--input-border);
  border-radius: 5px;
  padding: 15px 20px;
}
.note-editor .dropdown-toggle::after{
  display: none;
}
.note-modal-content{
  background-color: var(--card-bg);

  .note-modal-title{
    font-weight: 700;
    color: var(--text-clr);
  }

  .close .note-icon-close{
    color: var(--text-clr);
    font-weight: 700;
  }

  .note-modal-header{
    border: 0;
    border-bottom: 1px solid var(--input-border);
  }
}
.note-modal-body {
  input{
      border-radius: 0;
  }
  .checkbox label{
    display: flex;

    input{
      width: auto;
      margin-right: 0.5rem;
    }
  }
}
.note-modal-footer{
  height: auto;
  padding: 0px 30px 20px;

  .note-btn{
    float: none;
    display: block;
    padding-block: 10px;
  }
}
.note-editor.note-airframe, .note-editor.note-frame {
  border: 1px solid var(--card-border);
  background-color: #f5f5f5;
}
.dark-mode .form-control:disabled, .dark-mode .form-control[readonly] {
  background-color: #414141;
  opacity: 1;
}
.upper-navbar {
  padding-block: 10px;
  box-shadow: 0 10px 20px var(--shadow);
}
/* Plans and Pricing Page Styles */
.plans-hero {
  border-radius: 16px;
  padding: 22px 24px;
  background: linear-gradient(110deg, #052b5f 0%, #0d4da5 45%, #1ea8cf 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(6, 53, 113, 0.25);
}
.plans-hero .hero-count {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.plan-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: 0 8px 24px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: fadeUp 0.35s ease;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px var(--shadow);
}
.plan-card-head {
  padding: 16px 18px;
  color: #fff;
}
.plan-card-body {
  padding: 16px 18px 18px 18px;
  background: var(--card-bg); /* Fallback */
}
.metric-chip {
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-clr);
}
.billing-box {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 14px;
  background: var(--card-bg);
  height: 100%;
}
.billing-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 4px;
}
.dark-mode .billing-label {
  color: #94a3b8;
}
.billing-price {
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 8px 0;
  color: var(--text-clr);
}
.meta-wrap {
  border: 1px dashed var(--card-border);
  border-radius: 12px;
  padding: 12px;
  background: var(--card-bg);
}
.status-chip {
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-chip.active {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}
.dark-mode .status-chip.active {
  background: rgba(22, 163, 74, 0.2);
  color: #4ade80;
  border-color: #166534;
}
.status-chip.inactive {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.dark-mode .status-chip.inactive {
  background: rgba(220, 38, 38, 0.2);
  color: #f87171;
  border-color: #991b1b;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Plan Themes */
.theme-starter { background: #f0fdfa; }
.theme-growth { background: #eff6ff; }
.theme-scale { background: #f5f3ff; }
.theme-enterprise { background: #f8fafc; }

.dark-mode .theme-starter { background: rgba(20, 184, 166, 0.1); }
.dark-mode .theme-growth { background: rgba(37, 99, 235, 0.1); }
.dark-mode .theme-scale { background: rgba(124, 58, 237, 0.1); }
.dark-mode .theme-enterprise { background: rgba(15, 23, 42, 0.5); }

/* Modal Overrides for Plans & Pricing Page */
.modal-content {
  background-color: var(--card-bg);
  color: var(--text-clr);
  border: 1px solid var(--card-border);
}
.modal-header, .modal-footer {
  border-color: var(--card-border);
}
.dark-mode .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* Plan Card Head Gradients */
.head-starter { background: linear-gradient(135deg, #14b8a6 0%, #0891b2 100%); }
.head-growth { background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%); }
.head-scale { background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%); }
.head-enterprise { background: linear-gradient(135deg, #0f172a 0%, #334155 100%); }

/* Dark Mode Input and Form Overrides */
.dark-mode .form-control,
.dark-mode .form-select,
.dark-mode .common-input {
  background-color: var(--input-bg) !important;
  color: var(--text-clr) !important;
  border-color: var(--input-border) !important;
}

.dark-mode .form-control::placeholder {
  color: var(--placeholder-text) !important;
}

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

/* Fix SVG icons in dark mode buttons */
.dark-mode .head-back-btn svg path,
.dark-mode .form-back-btn svg path {
  fill: var(--text-clr) !important;
}

/* Fix alert-info in dark mode */
.dark-mode .alert-info {
  background-color: rgba(13, 202, 240, 0.1);
  border-color: rgba(13, 202, 240, 0.2);
  color: #0dcaf0;
}

/* Safety rule for labels in dark mode */
.dark-mode label,
.dark-mode .form-label {
  color: var(--text-clr) !important;
}
