@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  padding: 0px;
  margin: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  padding: 0px;
  margin: 0px;
  font-family: "Poppins", sans-serif !important;
}

a {
  text-decoration: none !important;
  outline: none !important;
}

img {
  border: none;
}

:root {
  --primary-color: #030f23;
  --filter-btn: #101949;
}

/*LOGIN-SECTION*/
.login-wrap {
  width: 100%;
  height: 100vh;
  background: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.login-in {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--primary-color);
  overflow: hidden;
}

.login-logo {
  -webkit-box-flex: 50%;
  -ms-flex: 50%;
  flex: 50%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.logo {
  width: 100%;
  height: auto;
  text-align: center;
}

.logo img {
  width: 280px;
  height: 100%;
}

.login-logo h1 {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;

  small {
    font-size: 24px;
  }
}

.login-form {
  -webkit-box-flex: 50%;
  -ms-flex: 50%;
  flex: 50%;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(0, 0, 0, 0.24)),
      to(rgba(0, 0, 0, 0.24)));
  background: -o-linear-gradient(top,
      rgba(0, 0, 0, 0.24) 0%,
      rgba(0, 0, 0, 0.24) 100%);
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.24) 0%,
      rgba(0, 0, 0, 0.24) 100%);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0px 7rem;
}

.login-form form {
  width: 100%;
  height: auto;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.login-form form h1 {
  color: #000;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
}

.login-form form hr {
  width: 100%;
  height: 1px;
  background-color: #c4c4c4;
  border: none;
  opacity: 1;
  margin: 1.5rem 0 1.5rem 0;
}

.login-lbl {
  width: 100%;
  height: 45px;
  margin-bottom: 1.2rem;
  border-radius: 8px !important;
  border: none;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.login-lbl img {
  width: 20px;
  height: auto;
  position: absolute;
  left: 15px;
}

.login-txt {
  width: 100%;
  height: 100%;
  border: none;
  background: #f2f2f2;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  padding: 0px 45px 0px 50px;
  outline: none;
}

.login-txt::-webkit-input-placeholder {
  color: #7a7a7a;
}

.login-txt::-moz-placeholder {
  color: #7a7a7a;
}

.login-txt:-ms-input-placeholder {
  color: #7a7a7a;
}

.login-txt::-ms-input-placeholder {
  color: #7a7a7a;
}

.login-txt::placeholder {
  color: #7a7a7a;
}

.password-eye {
  position: absolute;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: auto;
  right: 15px;
  border: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.password-eye::-webkit-input-placeholder {
  color: var(--inputclr, #444);
}

.password-eye::-moz-placeholder {
  color: var(--inputclr, #444);
}

.password-eye:-ms-input-placeholder {
  color: var(--inputclr, #444);
}

.password-eye::-ms-input-placeholder {
  color: var(--inputclr, #444);
}

.password-eye::placeholder {
  color: var(--inputclr, #444);
}

.password-eye i {
  color: #c0c0c0;
  cursor: pointer;
}

.password-eye .fa-eye-slash:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/login-page/icons/eye-close.svg);
}

.password-eye .fa-eye:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/login-page/icons/eye-open.svg);
}

.rembr-me {
  font-family: var(--secondary-font);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding-right: 1rem;
}

.rembr-me input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  border: 1px solid #3182ce;
  accent-color: #3182ce;
  border-radius: 10px;
}

.login-btn {
  width: 100%;
  height: auto;
  color: #fff;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  background: #3182ce;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  padding: 0.8rem 5rem;
}

/*LOGIN-SECTION*/

/*LOGIN-SUCC-SECTION*/

#login-succ .modal-dialog {
  max-width: 380px;
  height: 100%;
  margin: 0rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#login-succ .modal-content {
  border-radius: 20px;
  background: #fff;
}

#login-succ .logout-in h1 {
  font-weight: 600;
  font-size: 24px;
  margin: 0px 0 25px 0;
  color: #000;
}

#login-succ .logout-in img {
  width: 80px;
  -webkit-box-shadow: 0px 0px 10px 0px #00000040;
  box-shadow: 0px 0px 10px 0px #00000040;
  border-radius: 50%;
}

#login-succ .logout-in p {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  text-align: center;
  margin: 20px 0;
}

#login-succ .logout-in-btn {
  border: none;
  padding: 0.6rem 6rem;
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  background: #3182ce;
}

#login-succ .modal-body {
  padding: 2rem 1rem;
}

#login-succ .modal-content button.close {
  width: 22px;
  height: 22px;
  opacity: 0.5;
  background: none;
  border: none;
  outline: none;
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 99;
}

#login-succ .modal-content button.close img {
  width: 100%;
  height: 100%;
}

/*LOGIN-SUCC-SECTION*/

/* TABLE-PAGES */

.influ-wrap {
  width: 100%;
  height: auto;
}

.influ-strip {
  background: -webkit-gradient(linear,
      right top,
      left top,
      from(rgba(172, 117, 47, 1)),
      color-stop(200%, rgba(253, 210, 155, 1)));
  background: -o-linear-gradient(right,
      rgba(172, 117, 47, 1) 0%,
      rgba(253, 210, 155, 1) 200%);
  background: linear-gradient(-90deg,
      rgba(172, 117, 47, 1) 0%,
      rgba(253, 210, 155, 1) 200%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.influ-logo {
  /*flex-basis: 17%;*/
  width: 229px;
  background: #000;
  padding: 10px 0px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.influ-logo img {
  width: 40px;
  margin-right: 8px;
}

.influ-logo a {
  font-size: 25px;
  color: #b07d3c;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.influ-strip form {
  width: auto;
}

.menu-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  margin-left: 15px;
}

.menu-btn:hover {
  color: #fff !important;
}

.influ-in {
  width: 100%;
  height: auto;
  background: #fff;
}

.journal-ledger-wrap {
  padding: 15px;
  height: 100%;
  -webkit-box-shadow: 0px 1px 3px 1px #00000029;
  box-shadow: 0px 1px 3px 1px #00000029;
  background: #fff;
  border-radius: 10px;
}

#content main.journal-ledger-page {
  height: calc(100vh - 60px);
}

.admin-heading {
  width: 100%;
  height: auto;
}

.admin-heading h1 {
  font-weight: 700;
  font-size: 28px;
  color: #171748;
  margin: 0px 0 20px 0;
}

.influ-strip-2 {
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 0px;
  margin-bottom: 10px;
}

.influ-strip-2 form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.influ-search {
  width: 300px;
}

.invite-user {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  text-align: right;
  margin-left: auto;
}

.invite-user a {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  padding: 8px 20px;
  border: 1px solid #fff;
  border-radius: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.invite-user i {
  font-size: 22px;
  margin-left: 10px;
}

.admin-icon {
  height: 100%;
  width: auto;
  margin-left: auto;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0px;
  text-transform: uppercase;
}

.admin-icon img {
  width: 35px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.admin-icon span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
}

.influ-search label {
  width: 100%;
  height: 40px;
  margin-bottom: 0 !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #fff;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-radius: 20px;
  border: 1px solid #4a43ec;
}

.influ-search label input {
  width: 100%;
  height: auto;
  position: relative;
  background: #ffffff;
  border: none;
  color: #000;
  padding: 0px 10px 0px 15px;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  border-radius: 30px;
}

.influ-search label input::-webkit-input-placeholder {
  color: #808080;
  line-height: 20px;
}

.influ-search label input::-moz-placeholder {
  color: #808080;
  line-height: 20px;
}

.influ-search label input:-ms-input-placeholder {
  color: #808080;
  line-height: 20px;
}

.influ-search label input::-ms-input-placeholder {
  color: #808080;
  line-height: 20px;
}

.influ-search label input::placeholder {
  color: #808080;
  line-height: 20px;
}

.influ-search label button {
  width: 40px;
  height: 100%;
  border: none;
  background: none;
  padding: 10px;
  color: #fff;
  outline: none;
  cursor: pointer;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.influ-search label button img {
  width: 100%;
}

.influ-btns {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.influ-btns ul {
  padding: 0;
  margin: 0;
  text-align: right;
}

.influ-btns ul li a {
  background: #fff;
  display: block;
  color: #000;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 14px;
}

.influ-btns ul li a i {
  color: #000;
  font-size: 14px;
}

.influ-btn {
  color: #fff !important;
  font-weight: 500;
  padding: 10px 20px;
  font-size: 14px;
  outline: none;
  border-radius: 30px;
  border: none;
  background-color: var(--filter-btn);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.influ-btn img {
  width: 22px;
  height: auto;
}

.influ-btn i {
  font-size: 15px;
  color: #fff;
  margin-right: 0;
  margin-left: 5px;
  width: auto;
  height: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.influ-btn i.far.fa-chevron-down.active {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.influ-btn input {
  width: 70px;
  min-width: 70px;
  border: none;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: #000;
  text-align: right;
  caret-color: transparent;
}

.influ-btn input::-webkit-input-placeholder {
  font-size: 13px;
  font-weight: 500;
  color: #000;
}

.influ-btn input::-moz-placeholder {
  font-size: 13px;
  font-weight: 500;
  color: #000;
}

.influ-btn input:-ms-input-placeholder {
  font-size: 13px;
  font-weight: 500;
  color: #000;
}

.influ-btn input::-ms-input-placeholder {
  font-size: 13px;
  font-weight: 500;
  color: #000;
}

.influ-btn input::placeholder {
  font-size: 13px;
  font-weight: 500;
  color: #000;
}

/*.influ-btn i {
font-size: 14px;
font-weight: 400;
margin-right: 10px;
}*/

/*.influ-btns form button i {
font-size: 15px;
color: #000;
margin-right: 0;
}
*/
.influ-btns form select {
  cursor: pointer;
  background: #fff;
  display: block;
  color: #000;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 13px;
  outline: none;
  border: none;
  margin-left: 10px;
  /*-webkit-appearance: none;
  -moz-appearance: none;
  position: relative;*/
}

/*.influ-btns form select:after {
 position: absolute;
content: '';
background-image: url(../images/dropdown.png);
width: 40px;
height: 30px;
top: 0;
right: 0;
background-repeat: no-repeat;
background-position: right;
background-size: contain;
z-index: 999999;
}*/
.quotes-list {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.influ-btns-label {
  position: relative;
  margin: 0;
  z-index: 1;
  margin-left: 0px;
  width: 100%;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*  text-transform: uppercase;*/
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.influ-btns form label input[type="checkbox"] {
  margin-right: 10px;
  accent-color: #171748;
}

.daterange-btn,
.daterange-btn-2 {
  width: auto;
  height: auto;
  background-color: var(--filter-btn);
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 15px;
  padding-right: 15px;
  /* Add this */
  max-width: 100%;
  overflow: hidden;
}

.daterange-btn img,
.daterange-btn-2 img {
  width: 15px;
  height: 21px;
}

.daterange-btn input[type="text"],
.daterange-btn-2 input[type="text"] {
  padding: 10px 0 10px 5px;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  color: #fff;
  border: none;
  border-radius: 20px;
  background-color: transparent;

  flex: 1;
  /* NEW: allow it to grow */
  min-width: 0;
  /* prevents overflow in flex */
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;

  &::placeholder {
    color: #fff;
  }
}

.influ-table {
  width: 100%;
  height: auto;
}

.influ-table table {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  height: auto;
  text-align: center;
}

.table-responsive {
  overflow-x: auto;
  padding-bottom: 0px;
}

.table-responsive::-webkit-scrollbar {
  height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
  background: #463fdf33;
}

.table-responsive::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 0px;
}

.influ-table table tr:nth-child(1) {
  background-color: var(--primary-color) !important;
}

.influ-table table tr:nth-child(odd) {
  background: #463fdf33;
}

.influ-table table tr th {
  font-size: 15px;
  font-weight: 500;
  padding: 15px 20px;
  color: #fff;
  border: 1px solid #000;
}

.influ-table table tr td {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  padding: 10px;
  vertical-align: middle;
  border: 1px solid #000;
}

.influ-table table tr td.profile-picture img {
  width: 55px;
  height: auto;
  border-radius: 50%;
}

.influ-table table tr td form {
  width: 100%;
  height: auto;
}

.influ-table-btn {
  padding: 8px 25px;
  background: #197e00;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  border: none;
}

.influ-table table tr td a {
  display: inline-block;
  margin: 0 5px;
}

.influ-table table tr td a img {
  width: 20px;
  height: 20px;
}

.status-btn {
  width: auto;
  height: auto;
}

.status-btn a {
  background: #008000;
  padding: 10px 30px;
  border-radius: 5px;
  color: #fff;
}

.status-btn.red-btn a {
  background: #e21919;
}

.respond-btn {
  border-radius: 8px;
  background: #032d62;
  text-align: center;
}

.respond-btn a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 10px;
}

.responded-btn {
  border-radius: 8px;
  background: #fdba31;
  text-align: center;
}

.responded-btn a {
  color: #032d62;
  font-size: 14px;
  font-weight: 400;
  padding: 10px;
}

.pdf-icn a img {
  width: 20px !important;
  margin: 0 5px;
}

.view-btn {
  width: auto;
  height: auto;
}

.view-btn a {
  font-size: 15px;
  font-weight: 500;
  background: -o-linear-gradient(286.46deg, #0064ca 2.2%, #0096ed 97.9%);
  background: linear-gradient(163.54deg, #0064ca 2.2%, #0096ed 97.9%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.influ-table p {
  font-size: 13px;
  color: #000;
  font-weight: 500;
  text-align: right;
  margin: 0;
  position: absolute;
  right: 20px;
  top: auto;
}

.influ-pagi {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 35px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.influ-pagi ul {
  padding: 0px;
  margin: 0;
  display: inline-block;
}

.influ-pagi ul li {
  list-style: none;
  display: inline-block;
  margin: 0 4px;
}

.influ-pagi ul li a {
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  color: #000;
  border: 1px solid #000;
  width: 35px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 6px;
}

.influ-pagi ul li:first-child a {
  background: #fff;
  border: 1px solid #000;
  color: #000;
}

.influ-pagi ul li:last-child a {
  background: #fff;
  border: 1px solid #000;
  color: #000;
}

.influ-pagi ul li:first-child a:hover {
  color: #000;
  background: #fff;
}

.influ-pagi ul li:last-child a:hover {
  color: #000;
  background: #fff;
}

.influ-pagi ul li.active a {
  color: #fff;
  background-color: var(--primary-color);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.influ-pagi ul li a:hover {
  color: #fff;
  background-color: var(--primary-color);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.influ-pagi form {
  position: absolute;
  right: 0;
}

.influ-pagi-in select {
  padding: 10px 15px;
  background: #d3d7ea33;
  border: none;
  outline: none;
  -webkit-box-shadow: 0px 0px 4px rgb(0 0 0 / 5%);
  box-shadow: 0px 0px 4px rgb(0 0 0 / 5%);
  cursor: pointer;
  font-size: 13px;
  color: #171748;
}

/* TABLE-PAGES */

/* PRIVACY-POLICY-PAGE */

.privacy-policy-wrap {
  width: 100%;
  height: auto;
}

.privacy-policy-wrap h1 {
  font-size: 30px;
  font-weight: 600;
  background: -o-linear-gradient(286.46deg, #0064ca 2.2%, #0096ed 97.9%);
  background: linear-gradient(163.54deg, #0064ca 2.2%, #0096ed 97.9%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  padding-left: 5px;
}

.privacy-policy-inner {
  width: 100%;
  height: auto;
  padding: 15px;
  border: 1px solid #0000001a;
  border-radius: 8px;
}

.privacy-policy-inner h2 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.privacy-policy-inner p {
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
}

.privacy-policy-inner p:last-child {
  margin-bottom: 0;
}

.privacy-policy-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.privacy-policy-btn button {
  border-radius: 30px;
  background: #000;
  padding: 10px 50px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.privacy-policy-btn button.active {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#0f87cd),
      color-stop(58.06%, #1a69b4),
      color-stop(105.56%, #264b9b));
  background: -o-linear-gradient(top,
      #0f87cd 0%,
      #1a69b4 58.06%,
      #264b9b 105.56%);
  background: linear-gradient(180deg,
      #0f87cd 0%,
      #1a69b4 58.06%,
      #264b9b 105.56%);
}

/* PRIVACY-POLICY-PAGE */

/* FAQ-PAGE */

.faq-wrap {
  width: 100%;
  height: auto;
  background: #ffffff;
  padding: 20px 0px;
}

.faq-wrap .accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.faq-wrap .accordion-item {
  width: 100%;
  border-radius: 5px;
  border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.faq-wrap .accordion-item h2 {
  font-weight: 600;
  font-size: 16px;
  color: #000;
  padding: 15px 100px 15px 20px;
  border-radius: 5px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.faq-wrap .accordion-button {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  position: relative;
  width: 26px;
  height: 26px;
  padding: 0;
}

.accordion-button-over {
  position: absolute;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  top: auto;
}

.accordion-button-over a {
  width: 26px;
  height: 26px;
  display: block;
}

.accordion-button-over a img {
  width: 100%;
  height: 100%;
}

.faq-wrap .accordion-button::after {
  background-image: url(../images/faq-plus.svg);
  background-size: 26px;
  width: 26px;
  height: 26px;
}

.faq-wrap .accordion-button:not(.collapsed)::after {
  background-image: url(../images/faq-minus.svg);
  background-size: 26px;
  width: 26px;
  height: 26px;
}

.faq-wrap .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #000;
}

.faq-wrap .accordion-body {
  font-weight: 500;
  font-size: 15px;
  color: #333;
  padding: 20px 20px;
  line-height: 28px;
  border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
  background-color: rgb(26 105 180 / 10%);
}

/* FAQ-PAGE */

/* TUTORIAL-MANAGEMENT-PAGE */

.tutorial-wrap {
  width: 100%;
  height: auto;
}

.tutorial-wrap form {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 1rem;
}

label.tutorial-in {
  width: 50%;
  height: auto;
  border: 1px dashed #8a8a8a;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  color: #444;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.tutorial-video {
  width: 50%;
  height: auto;
  position: relative;
  border-radius: 15px;
}

.tutorial-video video {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

span.video-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 22px;
  height: 22px;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
}

span.video-remove img {
  width: 100%;
  height: 100%;
}

span.play-btn {
  border-radius: 15px;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgb(0, 16, 39, 0.3);
  border-radius: 10px;
}

/* TUTORIAL-MANAGEMENT-PAGE */

/* USER-PROFILE-PAGE */

.user-profile-wrap {
  width: 100%;
  height: auto;
}

a.user-profile-back {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  border-radius: 30px;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(22.47%, #1a69b4),
      color-stop(105.56%, #264b9b));
  background: -o-linear-gradient(top, #1a69b4 22.47%, #264b9b 105.56%);
  background: linear-gradient(180deg, #1a69b4 22.47%, #264b9b 105.56%);
}

.user-profile-top {
  -webkit-box-shadow: 0px 0px 3px 0px #00000054;
  box-shadow: 0px 0px 3px 0px #00000054;
  background: #fff;
  margin-top: 1rem;
  width: 100%;
  height: auto;
  padding: 1rem;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 15px;
  position: relative;
}

.user-profile-image {
  width: 100px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #264b9b;
}

.user-profile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.user-profile-top ul {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 85%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.user-profile-top ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25%;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.user-profile-top ul li img {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 2px 0px #00000054;
  box-shadow: 0px 0px 2px 0px #00000054;
  padding: 6px;
  border-radius: 5px;
}

.user-profile-in {
  margin-top: 1rem;
  width: 100%;
  height: auto;
}

.influ-table-dropdown {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px 0 10px 0;
  margin-left: auto;
}

.influ-table-dropdown select {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 10px 35px 10px 15px;
  border-radius: 30px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #1a69b4;
  background-image: url(../images/dropdown.svg);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center right 10px;
  border: none;
  outline: none;
  cursor: pointer;
}

.influ-table-dropdown select option {
  background: #fff;
  color: #000;
}

/* USER-PROFILE-PAGE */

.journal-ledger-in {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  h2 {
    font-weight: 700;
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 5rem;
    text-align: center;
  }

  .edit-pop-form label {
    font-weight: 400;
    font-size: 17px;
    margin-bottom: 10px;
  }

  .edit-pop-form .edit-select {
    height: 45px;

    &:valid,
    &:focus {
      color: #000;
    }
  }

  .edit-pop-form .edit-field {
    height: 45px;
  }

  .edit-pop-form {
    gap: 20px 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .edit-pop-in {
    width: 48.5%;
  }

  .edit-pop-form .delete-pop-btn a {
    font-weight: 400;
    border-radius: 10px;
    padding: 10px 40px;
    background-color: #8a8a8a;
  }

  .primary-btn-cstm {
    font-weight: 400;
    border-radius: 10px;
    padding: 10px 40px;
    background-color: #8a8a8a;
    border: none;
    padding: 10px 50px;
    width: auto;
    color: #ffffff;
  }

  .primary-btn-cstm-icon {
    font-weight: 400;
    border-radius: 10px;
    padding: 10px 40px;
    border: none;
    padding: 10px 50px;
    width: auto;
    color: #ffffff;
  }

  .delete-pop-btn {
    margin-top: 6rem;
  }
}

.influ-in h3 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;

  a {
    display: block;
  }
}

.error {
  color: red;
  font-size: 12px;
}

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

body {
  background: #eeeeee;
}

h1,
.h1-title,
h2,
.h2-title {
  background: transparent;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  line-height: 1.2;
}

.sign-up-sec {
  min-height: 100vh;
  height: 100%;
}

.sign-up-left-inr {
  position: relative;
  min-height: 100vh;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 114px 30px 96px;
  z-index: 2;
}

.sign-up-left-inr::before {
  content: "";
  position: absolute;
  top: 0;
  left: -38px;
  width: calc(100% + 50px);
  height: 100%;
  background: var(--theme-dark);
  z-index: -1;
  pointer-events: none;
}

.sign-up-inr {
  position: relative;
  min-height: 100vh;
  height: 100%;
  background: var(--white);
}

/* .sign-up-inr::before{
  content: '';
  position: absolute;
  top: 0;
  right: calc((100% + 488px) / 2);
  width: 5000px;
  height: 100%;
  background: var(--theme-dark);
  z-index: -1;
  pointer-events: none;
} */
.sign-content-slider-wrp {
  width: 100%;
  text-align: left;
  padding-left: 35px;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sign-content-slider-wrp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: calc(100% - 51px);
  width: 11px;
  background: #00d1ff;
  border-radius: 10px;
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 36px;
}

.slick-dots li {
  list-style: none;
  margin-right: 5px;
}

.slick-dots li button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #001429;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 0;
  outline: 0;
  border: 0;
  padding: 0;
}

.slick-dots li.slick-active button,
.slick-dots li:hover button {
  background: #00d1ff;
}

.sign-sec-head {
  margin-bottom: 50px;
  text-align: center;
}

.sign-sec-head h1 {
  font-size: 50px;
  color: var(--white);
  background: transparent;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  margin-bottom: 0;
  font-weight: 700;
}

.sign-sec-head h1 span {
  font-size: 32px;
  display: block;
}

.sign-img {
  margin-bottom: 50px;
}

.sign-content-slider-item-inr p {
  font-size: 22px;
  font-weight: 500;
}

.sign-up-right-inr {
  max-width: 380px;
  margin: 0 auto;
  height: 100%;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.signup-form {
  width: 100%;
}

.signup-form-head {
  text-align: center;
  margin-bottom: 20px;
}

.signup-form-head h2 {
  color: #00042a;
  font-size: 28px;
  font-weight: 500;
  background: transparent;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  margin-bottom: 0;
}

.signup-form-head p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #00062c;
}

.input-grp {
  position: relative;
  margin-bottom: 16px;
}

.input-grp:last-child {
  margin-bottom: 0;
}

.input-grp input {
  border: 1px solid var(--text-gray);
  color: var(--text-gray);
  border-radius: 8px;
  height: 56px;
  padding-right: 40px;
}

.input-grp label {
  color: var(--text-gray);
  position: relative;
  bottom: -10px;
  left: 16px;
  padding: 0 5px;
  background: var(--white);
}

.input-grp input::-webkit-input-placeholder {
  color: var(--text-gray);
  opacity: 1;
}

.input-grp input::-moz-placeholder {
  color: var(--text-gray);
  opacity: 1;
}

.input-grp input:-ms-input-placeholder {
  color: var(--text-gray);
  opacity: 1;
}

.input-grp input::-ms-input-placeholder {
  color: var(--text-gray);
  opacity: 1;
}

.input-grp input::placeholder {
  color: var(--text-gray);
  opacity: 1;
}

.checkbox {
  margin-top: 37px;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-right: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.checkbox label {
  color: var(--black);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.signup-top-head {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 40px 12px 0 40px;
}

.signup-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-gray);
}

.signup-option a {
  display: inline-block;
  color: #00072c;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline !important;
  margin-left: 2px;
}

.signup-option a:hover {
  color: var(--theme-clr-1);
}

.sign-right-inr-wrp {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.help-link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 12px 40px 40px;
}

.help-link img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 10px;
}

.help-link a {
  font-size: 13px;
  color: var(--text-gray);
}

.help-link a:hover {
  text-decoration: underline !important;
  color: var(--theme-clr-1);
}

.form-fields {
  margin-bottom: 18px;
}

.signup-form input[type="submit"] {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  height: 54px;
  border-radius: 8px;
  background: #3182ce;
  border: 1px solid #3182ce;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.popup-wrp .signup-form input[type="submit"] {
  width: auto;
}

.signup-form input[type="submit"]:hover {
  background: var(--theme-dark);
  border-color: var(--theme-dark);
}

.forgot-pass {
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  text-align: right;
  display: block;
}

.popup-wrp {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.pop-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}

.sign-popup {
  max-width: 539px;
  width: 100%;
  padding: 40px 65px 50px;
  background: var(--white);
  border-radius: 22px;
  position: relative;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  pointer-events: all;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.close-btn {
  width: 25px;
  height: 25px;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  z-index: 99;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  background: #3182ce;
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.close-btns {
  width: 25px;
  height: 25px;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  z-index: 99;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  background: #3182ce;
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  color: #fff;
}

.close-btns i {
  font-size: 13px;
  color: var(--white);
}

.close-btn:hover {
  background: var(--theme-dark);
}

.close-btn i {
  font-size: 13px;
  color: var(--white);
}

.sign-pop-head h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0;
}

.sign-pop-head {
  margin-bottom: 30px;
  text-align: center;
}

.pop-info {
  color: #101010;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  opacity: 0.6;
  margin-bottom: 25px;
}

.sign-popup .form-fields {
  margin-bottom: 30px;
}

.otp-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.otp-container.input-grp input {
  width: 57px;
  height: 57px;
  border: 0;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding-right: 14px;
}

.otp-container.input-grp input {
  margin-right: 15px;
  text-align: center;
}

.otp-container.input-grp input:last-child {
  margin-right: 0;
}

.toggle-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  /* transform: translateY(-50%); */
  background: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.toggle-btn img {
  width: 18px;
}

.popup-wrp.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.over-hide {
  overflow: hidden;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.popup-wrp.active .sign-popup {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.pop-up-inr-wrp {
  height: 100%;
  overflow-y: auto;
  width: 100%;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 50px;
}

/* .cmn-pop-inr-wrp{
  height: 100%;
  width: 100%;
  overflow: auto;
  max-height: 100vh;
} */

/* Dashboard Begin */

.dsbrd-sidebar-wrp {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 339px;
  width: 100%;
  height: 100%;
  z-index: 999999999;
  /* background: var(--theme-dark); */
  padding-left: 0;
  padding-right: 0;
}

.dsbrd-sidebar {
  /* padding: 34px 0; */
  /* background: var(--theme-dark); */
  height: 100%;
}

.dsbrdside-header {
  width: 100%;
  background: var(--theme-dark);
  padding: 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.dsbrdside-header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  min-height: 70px;
  height: 100%;
  max-width: 222px;
  padding: 34px 12px 38px;
  /* border-bottom: 1px solid #002159; */
  -webkit-transition: all ease-in-out 0.3s 0.3s;
  -o-transition: all ease-in-out 0.3s 0.3s;
  transition: all ease-in-out 0.3s 0.3s;
}

.dsbrd-sidebar-wrp.active .dsbrdside-header .logo {
  width: 150px;
  height: 70px;
  padding: 12px;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.dsbrdside-header .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.dsbrd-sidebar-body {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 0 12px 100px;
  background: var(--theme-dark);
  position: relative;
  left: 0;
  top: 0;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.dsbrd-sidebar-body ul {
  padding-top: 30px;
  padding-bottom: 50px;
  border-top: 1px solid #002159;
}

.dsbrd-sidebar-body ul li {
  margin-bottom: 5px;
}

.dsbrd-sidebar-body ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  padding: 8px 15px;
  border-radius: 10px;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.dsbrd-sidebar-body ul li a img {
  width: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 15px;
}

.dsbrd-sidebar-body ul li a:hover,
.dsbrd-sidebar-body ul li.current-menu-item a {
  background: #59afff;
}

.dsbrdside-header .logo img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.dsbrd-sidebar-body::-webkit-scrollbar {
  width: 5px;
  background: #fff;
}

.dsbrd-sidebar-body::-webkit-scrollbar-thumb {
  background: #59afff;
  border-radius: 5px;
}

.dashboard-panel {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  margin-left: auto;
  height: 100%;
}

.ds-panel-header-inr-wrp {
  padding: 12px 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.dsbrd-sidebar-wrp.active .dsbrd-sidebar-body {
  left: -100%;
}

.dashboard-body-wrp,
.ds-panel-header {
  max-width: calc(100% - 339px);
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  margin-left: auto;
}

.dashboard-body-wrp.active {
  max-width: 100%;
}

.dsbrd-sidebar-wrp.active {
  position: absolute;
}

.ds-panel-header {
  /* padding: 26px 0 26px 27px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* justify-content: space-between; */
  background: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.ds-panel-header::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 5000px;
  left: calc(1464px - 1125px);
  background: var(--white);
  z-index: -1;
}

.dspnlhdrusr-drpdn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding: 10px 0;
}

.dspnlhdrusr-drpdn p {
  font-size: 20px;
  font-weight: 500;
  color: #000429;
  margin-right: 30px;
  margin-bottom: 0;
}

.dspnlhdrusr-drpdn i {
  display: block;
  font-size: 20px;
  color: #000429;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.notification {
  padding-right: 20px;
  margin-right: 15px;
  border-right: 2px solid #dedede;
}

.notification-btn {
  width: 18px;
}

.notification-btn img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.ds-panel-hdr-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}

.sidebar-toggler {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sidebar-toggler button {
  font-size: 0;
  border: 0;
  background: transparent;
  outline: 0;
  padding: 0;
}

.dashboard-sec {
  background: #eeeeee;
}

.ds-bdy-head h1 {
  font-size: 30px;
  font-weight: 900;
  color: var(--theme-clr-2);
  margin-bottom: 15px;
  text-align: center;
}

.ds-bdy-head strong {
  font-size: 22px;
  font-weight: 500;
  color: var(--theme-clr-2);
  margin-bottom: 15px;
  text-align: center;
  display: block;
}

.ds-bdy-head p {
  font-size: 18px;
  font-weight: 500;
  color: var(--theme-clr-2);
  margin-bottom: 0;
  text-align: center;
}

.ds-bdy-head {
  margin-bottom: 40px;
  text-align: center;
}

.dashboard-body-wrp {
  padding-left: 20px;
  padding-right: 12px;
  width: 100%;
  height: 100%;
  padding-bottom: 30px;
}

.dashboard-body,
.dashboard-body-wrp .plans-inr {
  width: 100%;
  height: 100%;
  border-radius: 13px;
  background: var(--white);
  padding: 50px 100px 100px 40px;
  position: relative;
}

.file-input {
  position: relative;
  width: 100%;
  height: 174px;
  background: var(--white);
}

.file-input input {
  width: 100%;
  height: 100%;
  border: 1px dashed var(--theme-clr-2);
  border-radius: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  position: absolute;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

.file-input .upload-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px dashed var(--theme-clr-2);
  border-radius: 8px;
}

.file-input .upload-placeholder img {
  width: 70px;
  margin-bottom: 20px;
}

.file-input .upload-placeholder p {
  color: #b9b9b9;
}

.dsbdy-content .input-grp label {
  position: relative;
  bottom: 0;
  margin-bottom: 23px;
  font-size: 18px;
  font-weight: 500;
  color: var(--theme-clr-2);
  left: 0;
  padding: 0;
  background: transparent;
}

.addon-info {
  font-weight: 500;
  color: var(--black);
  margin-top: 13px;
  margin-bottom: 0;
}

.dsbdy-content-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--theme-clr-2);
  text-align: left;
  margin-bottom: 20px;
}

.dsbdy-frm-btn-grp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 70px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

.dsbdy-frm-btn-grp input[type="submit"] {
  color: var(--white);
  background: var(--theme-clr-2);
  border-radius: 8px;
  height: 51px;
  min-width: 98px;
  padding: 7px 20px;
  font-size: 18px;
  font-weight: 400;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  margin-right: 12px;
  width: auto;
  border: 0;
}

.dsbdy-frm-btn-grp input[type="submit"]:last-child {
  margin-right: 0;
}

.dsbdy-frm-btn-grp input[type="submit"]:hover {
  background: #a3a3a3;
}

.input-grp {
  position: relative;
}

.input-grp.search {
  width: 450px;
}

.input-grp.search input[name="search"] {
  padding: 8px 42px 8px 14px;
  background: var(--white);
  background-size: 20px;
  border-color: #e9e9e9;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  width: 100%;
}

.input-grp input[name="search"]~button {
  position: absolute;
  right: 0;
  height: 100%;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 0;
  background: transparent;
  border: 0;
  outline: 0;
}

.search-bar-wrp {
  width: 100%;
  padding: 16px 13px 13px;
  border-radius: 13px;
  margin-bottom: 15px;
  background: var(--white);
}

input.date::-webkit-inner-spin-button,
input.date::-webkit-calendar-picker-indicator {
  /* opacity: 0; */
  width: 100%;
}

input.date {
  cursor: pointer;
}

.ds-filter-wrp .input-grp {
  position: relative;
}

.ds-filter-wrp .input-grp label {
  position: absolute;
  top: 50%;
  left: 14px;
  bottom: 0;
  line-height: 1.6;
  margin-bottom: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
  background: transparent;
  cursor: pointer;
}

.ds-filter-wrp .input-grp input:focus~label {
  opacity: 0;
}

.ds-filter-wrp .input-grp select,
.datefield-wrp input,
.dsbdy-content .input-grp select {
  color: var(--theme-clr-2);
  border-color: #e9e9e9;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  cursor: pointer;
}

.dsbdy-content .input-grp input {
  color: var(--theme-clr-2);
  border-color: #e9e9e9;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

.ds-filter-input-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* max-width: 380px; */
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ds-filter-input-wrp>* {
  width: auto;
  padding: 0 10px;
  margin: 0;
}

.ds-filter-input-wrp>* input,
.ds-filter-input-wrp>* select {
  height: 48px;
}

.ds-filter-input-wrp>*:last-child {
  padding-right: 0;
}

.ds-filter-input-wrp>*:first-child {
  padding-left: 0;
  min-width: 296px;
}

.ds-bdy-table-wrp {
  width: 100%;
  overflow: auto;
  padding-bottom: 17px;
}

.ds-bdy-table-wrp::-webkit-scrollbar {
  height: 10px;
  background: var(--white);
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  cursor: pointer;
}

.ds-bdy-table-wrp::-webkit-scrollbar-thumb {
  background: #3182ce;
  border-radius: 10px;
  cursor: pointer;
}

.ds-bdy-table-wrp table {
  min-width: 1920px;
  width: 100%;
  border-collapse: separate;
}

.ds-bdy-table-wrp table th:first-child {
  border-radius: 10px 0 0 0;
}

.ds-bdy-table-wrp table th,
.ds-bdy-table-wrp table td {
  background: #efefef;
  color: var(--theme-clr-2);
  padding: 10px 15px;
  text-align: center;
  font-weight: 400;
  border: 1px solid #f8f8f8;
}

.ds-bdy-table-wrp table td {
  font-size: 15px;
}

.ds-bdy-table-wrp table td label {
  font-size: 15px;
  font-weight: 700;
  color: #3182ce;
  position: relative;
  cursor: pointer;
  pointer-events: none;
  display: block;
}

.ds-bdy-table-wrp table td label input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  pointer-events: all;
}

.ds-bdy-table-wrp table th {
  font-size: 18px;
  color: var(--black);
}

.dsbrd-tbl-body.dashboard-body {
  padding: 15px 24px 100px;
}

.ds-filter-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

.dsfilter-rt-btns .cmn-btn {
  background: #3182ce;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  height: 51px;
  min-width: 105px;
  margin-right: 20px;
  border-radius: 10px;
}

.dsfilter-rt-btns .cmn-btn:last-child {
  margin-right: 0;
}

.dsfilter-rt-btns .cmn-btn img {
  width: 14px;
  margin-right: 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.dsfilter-rt-btns .cmn-btn::after,
.dsfilter-rt-btns .cmn-btn::before {
  display: none;
}

.dsfilter-rt-btns .cmn-btn:hover {
  background: var(--theme-clr-2);
  color: var(--white);
}

.select-item-count select {
  color: #666666;
  font-size: 16px;
  border-radius: 50px;
  border: 1px solid #d2d2d2;
  height: 38px;
  width: auto;
  cursor: pointer;
  font-weight: 500;
}

.select-item-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 34px;
}

.pop-bdy-content table td {
  color: var(--theme-clr-2);
  font-weight: 500;
  font-size: 18px;
  min-width: 100px;
  margin-right: 14px;
}

.pop-bdy-content table td:last-child {
  margin-right: 0;
}

.pop-bdy-content table tr {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pop-bdy-content table tr:last-child {
  margin-bottom: 0;
}

.pop-bdy-content table td:first-child {
  font-weight: 700;
  font-size: 20px;
}

.detail-transactions .pop-bdy-content table td:first-child {
  min-width: 110px;
}

.pop-bdy-content table .pop-inr-card-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.pop-bdy-content table .pop-price-cd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pop-bdy-content table .pop-price-cd span {
  font-weight: 500;
  font-size: 18px;
  margin-left: 5px;
}

.account-details .pop-bdy-content table tr:nth-child(3) td,
.detail-transactions .pop-bdy-content table tr:nth-child(4) td {
  width: 100%;
}

.account-details .pop-bdy-content table tr:nth-child(3) td p {
  font-weight: 500;
  font-size: 18px;
}

.pop-bdy-content table tr:last-child td {
  width: 50%;
  font-weight: 700;
  font-size: 20px;
  /* display: flex;
  justify-content: space-between; */
}

.pop-bdy-content table tr:last-child td:last-child {
  text-align: left;
}

.table-content .sign-popup {
  max-width: 452px;
  padding: 40px 52px 50px;
}

.table-content .sign-pop-head {
  margin-bottom: 50px;
}

.table-content .sign-pop-head h2 {
  font-size: 26px;
  font-weight: 500;
  color: var(--theme-clr-2);
}

.ds-client-info-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

.ds-client-info-form .input-grp {
  max-width: 338px;
  margin: 0;
}

.ds-client-info-form .input-grp label {
  width: 100%;
  position: static;
  margin-bottom: 6px;
  color: var(--theme-clr-2);
  font-size: 18px;
  font-weight: 500;
  padding-left: 0;
}

.client-pg .ds-filter-wrp>p.inr-panel-title {
  width: auto;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
}

.ds-client-info-form .input-grp input {
  height: 36px;
}

.ds-client-info-wrp h3 {
  color: var(--theme-clr-2);
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 500;
}

.ds-client-info-wrp {
  margin-bottom: 35px;
}

.ds-bdy-head.max {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 45px;
}

.client-pg .dsbdy-frm-btn-grp {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.client-pg .dsbdy-frm-btn-grp a {
  display: block;
  font-size: 22px;
  font-weight: 500;
  color: var(--theme-clr-2);
  margin-left: 125px;
  text-decoration: underline !important;
}

.client-pg .dsbdy-frm-btn-grp a:hover {
  color: var(--theme-clr-1);
}

.back-btn {
  margin-bottom: 37px;
  cursor: pointer;
  display: inline-block;
}

.inr-panel-title {
  font-size: 24px;
  font-weight: 500;
}

.ds-bdy-table-wrp table td input[type="checkbox"] {
  margin-right: 12px;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  cursor: pointer;
}

.secinr-dashboard-body-wrp .ds-bdy-table-wrp table {
  min-width: 100%;
}

.ds-filter-wrp .input-grp input::-webkit-input-placeholder {
  font-size: 18px;
  font-weight: 500;
}

.ds-filter-wrp .input-grp input::-moz-placeholder {
  font-size: 18px;
  font-weight: 500;
}

.ds-filter-wrp .input-grp input:-ms-input-placeholder {
  font-size: 18px;
  font-weight: 500;
}

.ds-filter-wrp .input-grp input::-ms-input-placeholder {
  font-size: 18px;
  font-weight: 500;
}

.ds-filter-wrp .input-grp select,
.ds-filter-wrp .input-grp input,
.ds-filter-wrp .input-grp input::placeholder {
  font-size: 18px;
  font-weight: 500;
}

.datefield-wrp input::-webkit-input-placeholder {
  color: var(--theme-clr-2);
  opacity: 1;
}

.datefield-wrp input::-moz-placeholder {
  color: var(--theme-clr-2);
  opacity: 1;
}

.datefield-wrp input:-ms-input-placeholder {
  color: var(--theme-clr-2);
  opacity: 1;
}

.datefield-wrp input::-ms-input-placeholder {
  color: var(--theme-clr-2);
  opacity: 1;
}

.datefield-wrp input::placeholder {
  color: var(--theme-clr-2);
  opacity: 1;
}

.dsbdy-content.max {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.search-ledger-body {
  padding: 15px 16px;
  background: var(--white);
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.client-list {
  max-height: 220px;
  height: 100%;
  overflow: auto;
}

.client-list::-webkit-scrollbar {
  background: var(--white);
  width: 6px;
}

.client-list::-webkit-scrollbar-thumb {
  background: #3182ce;
  border-radius: 20px;
}

.dashboard-panel {
  color: var(--theme-clr-2);
}

.search-ledger.input-grp.search {
  width: 100%;
  margin-bottom: 20px;
}

.client-list ul li {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 3px;
  padding: 5px 13px;
  border-radius: 4px;
  -webkit-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
}

.client-list ul li:hover {
  background: #efefef;
}

.client-list ul li:last-child {
  margin-bottom: 0;
}

.loading-state,
.error-state {
  display: none;
}

.client-list ul {
  list-style: none;
  padding: 0;
}

.client-list li {
  padding: 8px;
  cursor: pointer;
}

.client-list li[aria-selected="true"] {
  background-color: #eee;
}

.search-ledger-head #search-client {
  padding: 8px 42px 8px 14px;
  background: url(../images/sort-down.svg) no-repeat calc(100% - 14px) center rgba(255, 255, 255, 1);
  background-size: 14px;
  background-size: 20px;
  border-color: #e9e9e9;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  width: 100%;
  color: var(--theme-clr-2);
  font-size: 20px;
}

.search-ledger-head #search-client::-webkit-input-placeholder {
  color: var(--theme-clr-2);
  opacity: 1;
  font-size: 20px;
}

.search-ledger-head #search-client::-moz-placeholder {
  color: var(--theme-clr-2);
  opacity: 1;
  font-size: 20px;
}

.search-ledger-head #search-client:-ms-input-placeholder {
  color: var(--theme-clr-2);
  opacity: 1;
  font-size: 20px;
}

.search-ledger-head #search-client::-ms-input-placeholder {
  color: var(--theme-clr-2);
  opacity: 1;
  font-size: 20px;
}

.search-ledger-head #search-client::placeholder {
  color: var(--theme-clr-2);
  opacity: 1;
  font-size: 20px;
}

.search-ledger-head {
  margin-bottom: 8px;
}

.get-ledger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.get-ledger button {
  background: #3182ce;
  padding: 10px 15px;
  height: 51px;
  color: var(--white);
  font-size: 18px;
  border: 0;
  outline: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  margin-top: 10px;
}

.get-ledger img {
  margin-right: 10px;
  width: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.ds-filter-wrp>p {
  text-align: center;
  margin-bottom: 15px;
  display: block;
  width: 100%;
}

.dsbrd-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.dsbrd-pagination ul li {
  width: 47px;
  height: 47px;
  border: 1px solid #3182ce;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--white);
  margin-right: 18px;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  cursor: pointer;
}

.dsbrd-pagination ul li.active,
.dsbrd-pagination ul li:hover {
  background: #3182ce;
  color: var(--white);
}

.dsbrd-pagination ul li:last-child {
  margin-right: 0;
}

.dsbrd-pagination .prev img {
  color: #3182ce;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.dsbrd-pagination .next img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.dsbrd-pagination ul li:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.dsbrd-client-info-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 10px 0;
  border-bottom: 1px solid #d3d3d3;
  margin-bottom: 13px;
}

.dsbrd-client-info-wrp>* {
  width: 50%;
}

.dsbrd-client-info-wrp>* strong {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 7px;
  display: block;
}

.dsbrd-client-info-wrp>* p {
  font-size: 18px;
  font-weight: 500;
  margin: 7px;
}

.dsbrd-client-info-wrp>* p:last-child {
  margin-bottom: 0;
}

.dsbrd-client-info-right {
  text-align: right;
}

.dsbdy-frm-btn-grp button,
.cmn-btn-2 {
  background: var(--theme-clr-2);
  border-radius: 10px;
  height: 51px;
  min-width: 98px;
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  border: 0;
  outline: 0;
  padding: 7px 25px;
  margin-right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.dsbdy-frm-btn-grp button:last-child,
.cmn-btn-2:last-child {
  margin-right: 0;
}

.dsbdy-frm-btn-grp button:hover {
  background: #3182ce;
}

.add-entry-btn.cmn-btn-2 {
  background: #3182ce;
}

.add-entry-btn.cmn-btn-2:hover,
button.cmn-btn-2:hover {
  background: #000429;
}

.dsbdy-frm-btn-grp button.btn-disable {
  background: #a3a3a3;
  /* pointer-events: none; */
}

.account-journal-form .input-grp input,
.account-journal-form .input-grp select {
  height: 49px;
  width: 100%;
}

.account-journal-form .input-grp label {
  margin-bottom: 15px;
}

.account-journal-form {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}

.search-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 0;
}

.status-icon-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ds-bdy-table-wrp.tbl-large table {
  min-width: 2470px;
}

.status-icon-wrp .status-icon {
  margin-right: 20px;
}

.status-icon-wrp .status-icon:last-child {
  margin-right: 0;
}

.cmn-btn-2.blue-bg {
  background: #3182ce;
}

.pop-form .input-grp label {
  position: static;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--theme-clr-2);
}

.pop-form .input-grp input {
  height: 36px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 12px;
  border: 1px solid #d4d4d4;
  font-weight: 500;
  color: var(--theme-clr-2);
}

.pop-form .input-grp select {
  height: 36px;
  border-radius: 12px;
  color: var(--theme-clr-2);
  border: 1px solid #d4d4d4;
  font-weight: 500;
  color: var(--theme-clr-2);
}

.pop-form .sign-popup {
  max-width: 949px;
}

.pop-form .sign-popup form .pop-form-inr-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -16px -25px;
}

.pop-form .sign-popup form .input-grp {
  width: 33.3333%;
  padding: 16px 25px;
}

.checks-wrp {
  width: 100%;
  margin: 30px 0;
}

.checks-wrp,
.check-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.radio-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #121639;
}

.radio-container input[type="radio"] {
  display: none;
}

.radio-container label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-right: 28px;
}

.radio-container label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid #121639;
  border-radius: 2px;
  background: transparent;
}

.radio-container input[type="radio"]:checked+label::after {
  background: url(../images/tick-icon.png) no-repeat center center #3a7afe;
  background-size: 12px;
  border-color: #3a7afe;
}

.check-wrp:first-child {
  width: 45%;
  padding-right: 26px;
}

.check-wrp:last-child {
  width: 55%;
  padding-left: 50px;
}

.check-wrp label {
  color: var(--theme-clr-2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
}

.check-wrp label input {
  margin-left: 20px;
  border-radius: 0;
}

.check-wrp p {
  font-weight: 500;
  color: var(--theme-clr-2);
  margin: 0 10px 0 0;
}

.dsbdy-frm-btn-grp button img {
  margin-right: 12px;
}

.ds-filter-upr-wrp-new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #d3d3d3;
  margin-bottom: 32px;
  width: 100%;
}

.ds-filter-upr-wrp-new h3 {
  color: var(--theme-clr-2);
  font-size: 26px;
  font-weight: 500;
}

.ds-filter-upr-wrp-new p {
  text-align: left;
  min-width: 244px;
}

.dsfilter-deep {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px 0;
  width: 100%;
}

.dsfilterdp-left .input-grp {
  min-width: 122px;
}

.black-text {
  color: var(--theme-clr-2);
}

.add-client .form-fields {
  margin-bottom: 0;
}

.add-client .input-grp {
  margin-bottom: 4px;
}

.add-matter .input-grp select {
  border: 1px solid var(--text-gray);
  color: var(--text-gray);
  border-radius: 8px;
  height: 56px;
  padding-right: 40px;
}

.form-fields .input-grp {
  width: 100%;
  margin-bottom: 4px;
}

.form-fields .input-grp.w-50:nth-child(2n-1) {
  padding-right: 6px;
}

.form-fields .input-grp.w-50:nth-child(2n) {
  padding-left: 6px;
}

.add-matter .dsbdy-frm-btn-grp {
  margin-top: 21px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.add-matter .dsbdy-frm-btn-grp button {
  margin-right: 0;
  margin-bottom: 7px;
  width: 100%;
}

.add-matter .dsbdy-frm-btn-grp button:last-child {
  margin-bottom: 0;
}

.ds-bdy-head.max {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.ds-bdy-head.max p {
  font-size: 16px;
  font-weight: 400;
}

.ds-bdy-head.max h1 {
  font-weight: 900;
}

.reconciliation-pg .account-journal-form {
  --bs-gutter-x: 31px;
}

.multifiled-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 8px 0 0;
}

.multifiled-wrp .input-grp {
  width: 25%;
  padding: 0 21px;
  margin-bottom: 0;
}

.multifiled-wrp .input-grp:last-child {
  padding-right: 0;
}

.multifiled-wrp .input-grp:first-child {
  padding-left: 0;
}

.multifiled-wrp .input-grp input::-webkit-input-placeholder {
  color: #393939;
}

.multifiled-wrp .input-grp input::-moz-placeholder {
  color: #393939;
}

.multifiled-wrp .input-grp input:-ms-input-placeholder {
  color: #393939;
}

.multifiled-wrp .input-grp input::-ms-input-placeholder {
  color: #393939;
}

.multifiled-wrp .input-grp input::placeholder,
.multifiled-wrp .input-grp select {
  color: #393939;
}

.dashboard-body-wrp .plan-item-inr {
  background: #76c6ff;
  padding: 20px 18px;
  border-radius: 25px;
}

.dashboard-body-wrp .plan-item-inr:nth-child(2n) {
  background: #3182ce;
}

.dashboard-body-wrp .plan-item {
  width: 50%;
}

.dashboard-body-wrp .plans-inr-wrp {
  max-width: 560px;
  margin: 0 auto;
}

.dashboard-body-wrp .plans-wrp {
  --bs-gutter-x: 55px;
}

.plan-item.using .blue-btn {
  background: #56b8ff;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.dashboard-body-wrp .plan-item-content ul li {
  font-size: 15px;
  font-weight: 700;
  color: #e7f5ff;
}

.dashboard-body-wrp .plan-item-content {
  min-height: 180px;
}

.dashboard-body-wrp .plan-item-head h3 {
  font-size: 32px;
}

.dashboard-body-wrp .plan-item-head h3 span {
  font-size: 22px;
}

.dashboard-body-wrp .plan-item-head p {
  font-size: 19px;
  margin-bottom: 7px;
}

.dashboard-body-wrp .plan-item-head {
  margin-bottom: 20px;
}

.dashboard-body-wrp .popularity {
  font-size: 19px;
  padding: 15px 20px 30px;
  border-radius: 35px 35px 0 0;
  height: 77px;
}

.dashboard-body-wrp .blue-btn {
  font-size: 19px;
  height: 40px;
  border-radius: 10px;
  background: #000429;
}

.dashboard-body-wrp .blue-btn::after {
  background: #59afff;
}

/* .dashboard-body-wrp .blue-btn:hover::after{
  background: #59AFFF;
} */
.profile-conrol-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  width: 100%;
  padding: 15px 0;
  background: var(--white);
  border-radius: 10px;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.profile-conrol-menu ul li {
  margin-bottom: 5px;
}

.profile-conrol-menu ul li:last-child {
  margin-bottom: 0;
}

.profile-conrol-menu ul li a {
  padding: 5px 20px;
  color: var(--theme-clr-2);
  font-size: 18px;
  font-weight: 500;
  z-index: 999;
  display: block;
}

.profile-conrol-menu ul li a:hover {
  color: var(--theme-clr-1);
}

.dspnlhdrusr-drpdn:hover .profile-conrol-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.preparer-docs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.preparer-docs .input-grp {
  padding: 0 10px;
  width: 25%;
  margin-bottom: 0;
}

.input-grp-inr {
  position: relative;
  width: 100%;
  height: 100%;
}

.preparer-docs .input-grp input {
  width: 100%;
  background: var(--white);
  border-color: #ddd;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  text-align: center;
  font-size: 20px;
  padding-right: 14px;
  font-weight: 500;
  color: var(--theme-clr-2);
}

.preparer-docs .input-grp input::-webkit-input-placeholder {
  color: var(--theme-clr-2);
  font-size: 20px;
  font-weight: 500;
}

.preparer-docs .input-grp input::-moz-placeholder {
  color: var(--theme-clr-2);
  font-size: 20px;
  font-weight: 500;
}

.preparer-docs .input-grp input:-ms-input-placeholder {
  color: var(--theme-clr-2);
  font-size: 20px;
  font-weight: 500;
}

.preparer-docs .input-grp input::-ms-input-placeholder {
  color: var(--theme-clr-2);
  font-size: 20px;
  font-weight: 500;
}

.preparer-docs .input-grp input::placeholder {
  color: var(--theme-clr-2);
  font-size: 20px;
  font-weight: 500;
}

.input-grp-inr input[type="file"] {
  opacity: 0;
}

.input-grp-inr input {
  width: 100%;
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.input-grp-inr span {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  padding: 8px 14px;
  background-color: var(--white);
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  text-align: center;
  color: var(--theme-clr-2);
  font-size: 20px;
  font-weight: 500;
}

.input-grp-inr span.upload {
  background: url(../images/upload-black.svg) no-repeat calc(100% - 14px) center var(--white);
  background-size: 15px;
}

.preparer-docs .input-grp label {
  font-size: 20px;
  font-weight: 500;
  margin-left: auto;
  padding: 0;
  margin-bottom: 0;
  margin-top: 10px;
  margin-right: auto;
  bottom: 0;
  width: 100%;
  left: 0;
  position: static;
  text-align: center;
  color: var(--black);
}

.firm-records-heading h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--theme-clr-2);
  text-align: center;
}

.firm-records-heading .firmhdng-txt {
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  text-align: center;
  margin-bottom: 20px;
}

#ui-datepicker-div {
  font-size: 16px;
}

#ui-datepicker-div select,
#ui-datepicker-div input {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  background: var(--white);
  padding: unset;
  color: unset;
  height: auto;
  border-radius: 2px;
  border-color: var(--theme-clr-2);
  color: var(--theme-clr-2);
}

.bankchrgldgr-dtl-pg .dsfilterdp-left .input-grp {
  margin-bottom: 0;
}

/* ==================== DK CSS 06-03-2025 ===================== */

.bank-charges-form-in {
  display: flex;
  justify-content: center;
  gap: 0px;
  flex-direction: column;
  align-items: center;

  h3 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    margin-bottom: 4px;
  }

  label {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #333;
    font-size: 16px;
    position: relative;
    margin-bottom: 20px;
    font-weight: 400;
  }

  input[type="text"] {
    width: 100%;
    height: 45px;
    padding: 7px 9px;
    text-align: left;
    color: #444444;
    position: relative;
    font-size: 16px;
    outline: none;
    font-weight: 500;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    box-shadow: 0px 1px 4px 0px #00000040;
  }

  input::placeholder {
    color: #393939;
    font-size: 16px;
  }

  select {
    width: 100%;
    height: 45px;
    padding: 7px 9px;
    /* border-radius: 18px; */
    text-align: left;
    color: #393939;
    position: relative;
    /* padding-right: 84px; */
    font-size: 16px;
    outline: none;
    font-weight: 500;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    appearance: none;
    background: url(../images/sort-down.svg);
    background-position: center right 10px;
    background-size: auto;
    background-repeat: no-repeat;
    background-color: #fff;
    box-shadow: 0px 1px 4px 0px #00000040;

    ::placeholder {
      color: #393939;
    }
  }

  .bank-charges-btns {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    gap: 35px;

    a {
      border-radius: 13px;
      color: #fff;
      text-align: center;
      padding: 13px 15px;
      background-color: #3182ce;
      font-size: 16px;
      width: auto;
      font-weight: 400;
      display: flex;
      align-items: center;
      gap: 8px;
    }
  }
}

.dsfilter-wrp-text:nth-child(1) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dsfilter-wrp-text:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

span.required-text {
  font-weight: 500;
  margin-bottom: 31px;
  margin-left: auto;
  margin-right: auto;
}

.bank-charges-inr-btn-wrp .cmn-btn {
  background: #3182ce;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  height: 51px;
  min-width: 105px;
  font-size: 16px;
  color: #fff;
  display: flex;
  gap: 12px;
  margin-right: 20px;
  width: max-content;
  border-radius: 10px;
  text-transform: initial;
}

.bank-charges-inr-btn-wrp.rtat a img {
  transform: rotate(180deg);
}

.ds-filter-input-wrp2 {
  display: flex;
  align-items: center;
  max-width: 600px;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 14px;
}

/* =============== CLIENT LEADEGER SUMMARY PAGE CSS =========== */

.client-leader-form-in {
  display: flex;
  justify-content: center;
  gap: 0px;
  flex-direction: column;
  align-items: center;

  h3 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    margin-bottom: 4px;
  }

  label {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #333;
    font-size: 16px;
    position: relative;
    margin-bottom: 20px;
    font-weight: 400;
  }

  input[type="text"] {
    width: 100%;
    height: 45px;
    padding: 7px 9px;
    text-align: left;
    color: #444444;
    position: relative;
    font-size: 16px;
    outline: none;
    font-weight: 500;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    box-shadow: 0px 1px 4px 0px #00000040;
  }

  input::placeholder {
    color: #393939;
    font-size: 16px;
  }

  select {
    width: 100%;
    height: 45px;
    padding: 7px 9px;
    /* border-radius: 18px; */
    text-align: left;
    color: #393939;
    position: relative;
    /* padding-right: 84px; */
    font-size: 16px;
    outline: none;
    font-weight: 500;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    appearance: none;
    background: url(../images/sort-down.svg);
    background-position: center right 10px;
    background-size: auto;
    background-repeat: no-repeat;
    background-color: #fff;
    box-shadow: 0px 1px 4px 0px #00000040;

    ::placeholder {
      color: #393939;
    }
  }

  .bank-charges-btns {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    gap: 35px;

    a {
      border-radius: 13px;
      color: #fff;
      text-align: center;
      padding: 15px 24px;
      background-color: #3182ce;
      font-size: 16px;
      width: auto;
      font-weight: 400;
      display: flex;
      align-items: center;
      gap: 8px;
    }
  }
}

.ds-bdy-table-wrp table.leader-summry-table {
  min-width: 0;
  width: 100%;
}

.back-btn-summary-client {
  padding: 9px 4px;
  width: fit-content;
  margin-bottom: 19px;
}

.total-amount-wrap {
  display: flex;
  gap: 100px;
  padding-top: 16px;
  position: absolute;
  right: 147px;
  flex-wrap: wrap;
}

.resolve-anchor a {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline !important;
}

.my-profile-form-in {
  display: flex;
  justify-content: center;
  gap: 0px;
  flex-direction: column;
  align-items: center;

  h3 {
    color: #000429;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    text-align: left;
    margin-bottom: 4px;
  }

  .first-section {
    padding-top: 20px;
    padding-bottom: 20px;

    h4 {
      color: #000429;
      font-weight: 600;
      font-size: 24px;
      margin-bottom: 30px;
    }
  }

  .second-section {
    padding-top: 20px;
    padding-bottom: 20px;

    h4 {
      color: #000429;
      font-weight: 600;
      font-size: 24px;
      margin-bottom: 30px;
    }
  }

  .third-section {
    padding-top: 20px;
    padding-bottom: 20px;

    h4 {
      color: #000429;
      font-weight: 600;
      font-size: 24px;
      margin-bottom: 30px;
    }
  }

  label {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #333;
    font-size: 16px;
    position: relative;
    margin-bottom: 20px;
    font-weight: 400;
  }

  input[type="text"] {
    width: 100%;
    height: 45px;
    padding: 7px 9px;
    text-align: left;
    color: #444444;
    position: relative;
    font-size: 16px;
    outline: none;
    font-weight: 500;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    box-shadow: 0px 1px 4px 0px #00000040;
  }

  input::placeholder {
    color: #393939;
    font-size: 16px;
  }

  .bank-charges-btns {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    gap: 35px;

    a {
      border-radius: 13px;
      color: #fff;
      text-align: center;
      padding: 15px 24px;
      background-color: #3182ce;
      font-size: 16px;
      width: auto;
      font-weight: 400;
      display: flex;
      align-items: center;
      gap: 8px;
    }
  }
}

.delete-acount-wrap {
  position: absolute;
  right: 27px;
  bottom: 60px;

  a {
    color: #000429;
    font-size: 17px;
    font-weight: 600;
  }
}

/* =============== CLIENT LEADEGER SUMMARY PAGE CSS =========== */

/* ===================  FIRM RECORDS SUMMARY PAGE CSS ============= */

.back-btn-firm-records {
  padding: 9px 4px;
  width: 100%;
  margin-bottom: 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.firm-records-heading {
  h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--theme-clr-2);
    margin-bottom: 40px;
    text-align: center;
  }
}

.question-ans-main-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  padding-left: 30px;
}

.question-head-wrap h4 {
  font-size: 20px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
  text-transform: uppercase;
  position: relative;
}

.question-head-wrap h5 {
  font-size: 18px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
  position: relative;
}

.answer-para-wrap p {
  color: #484848;
  font-weight: 700;
  font-size: 16px;
  text-align: left;
  margin-bottom: 20px;
}

.yes-and-no-wrap {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 15px;

  button:nth-child(1) {
    border-radius: 8px;
    color: #000000;
    text-align: center;
    padding: 9px 31px;
    background-color: #d4d4d4;
    font-size: 16px;
    width: auto;
    font-weight: 600;
    display: flex;
    align-items: center;
    border: none;
    gap: 8px;
  }

  button:nth-child(2) {
    border-radius: 8px;
    color: #fff;
    text-align: center;
    padding: 9px 31px;
    background-color: #000429;
    font-size: 16px;
    width: auto;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
  }
}

.amount-sec-wrap span {
  color: #000429;
  font-weight: 600;
  font-size: 18px;
  border: 2px solid #d8d8d8;
  padding: 11px 8px;
  border-radius: 5px;
  display: block;
  min-width: 116px;
  text-align: center;
}

.quiz-sec {
  max-width: calc(100% - 116px);
  padding-right: 12px;
}

.amount-sec {
  flex-shrink: 0;
}

.counterquiz {
  position: absolute;
  left: -30px;
  top: 0;
}

/* ===================  FIRM RECORDS SUMMARY PAGE CSS ============= */

/* ==================== DK CSS 06-03-2025 ===================== */

/* End Of Dashboard */

.detail-transactions .pop-bdy-content table tr:nth-child(4) td {
  min-width: auto;
  width: auto;
}

.dsbdy-content .input-grp input[type="file"] {
  padding-right: 0;
}

.dsbrd-sidebar-wrp.active {
  pointer-events: none;
}

.dsbrdside-header {
  pointer-events: all;
}

.dsfilter-inr-btn-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

.taj-pg .dsbrd-client-info-wrp>* p {
  margin-left: 0;
}

.dsfilter-rt-btns.ds-filter-upr-wrp-new.flex-wrap {
  padding-bottom: 34px;
}

.popup-wrp.add-notes .input-grp label {
  position: static;
  margin-bottom: 5px;
  opacity: 1;
  color: var(--theme-clr-2);
  font-size: 16px;
  font-weight: 500;
}

.popup-wrp.add-notes .input-grp input {
  height: 36px;
}

.my-profile .my-profile-form-in input {
  max-width: 338px;
}

.subscription-plan .sec-head h2 {
  font-weight: 900;
}

.subscription-plan.dashboard-body-wrp .blue-btn {
  min-width: 170px;
}

/* Responsive */

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1280px) {
  .multifiled-wrp .input-grp {
    padding: 0 12px;
  }

  .multifiled-wrp .input-grp label {
    font-size: 16px;
  }

  .ds-filter-upr-wrp-new h3 {
    font-size: 21px;
  }
}

@media only screen and (max-width: 1199px) {

  .dashboard-body,
  .dashboard-body-wrp .plans-inr {
    border-radius: 10px;
    padding: 50px 40px;
  }

  .dsbdy-frm-btn-grp {
    margin-top: 50px;
  }

  .ds-filter-input-wrp>* {
    padding: 0 6px;
  }

  .container {
    max-width: 100%;
  }

  .client-pg .dsbdy-frm-btn-grp a {
    font-size: 18px;
  }

  .input-grp.search {
    width: 400px;
  }

  .ds-filter-upr-wrp-new h3 {
    font-size: 21px;
  }

  .dsfilter-rt-btns.dbllrg-btn .cmn-btn {
    margin-right: 0;
  }

  .dsfilter-wrp-text:nth-child(1) {
    text-align: left;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .multifiled-wrp .input-grp {
    width: 50%;
    padding: 12px;
  }

  .multifiled-wrp .input-grp:nth-child(2n - 1) {
    padding-left: 0;
  }

  .multifiled-wrp .input-grp:nth-child(2n) {
    padding-right: 0;
  }

  .firm-records-heading h1 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .question-head-wrap h4 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .question-ans-main-wrap {
    margin-bottom: 30px;
  }

  .preparer-docs .input-grp {
    padding: 0 6px;
  }

  .preparer-docs .input-grp label {
    font-size: 18px;
    margin-top: 8px;
  }

  .firm-records-heading h2 {
    font-size: 26px;
  }

  .firm-records-heading .firmhdng-txt {
    font-size: 18px;
  }

  .bank-charges-inr-btn-wrp .cmn-btn:last-child,
  .bank-charges-inr-btn-wrp .cmn-btn-2:last-child {
    margin-right: 0;
  }

  .sign-sec-head h1 {
    font-size: 40px;
  }

  .sign-content-slider-wrp {
    padding-left: 25px;
  }

  .sign-content-slider-item-inr p {
    font-size: 20px;
  }

  .ds-filter-upr-wrp-new p {
    min-width: auto;
  }
}

@media only screen and (max-width: 991px) {
  .dsbrd-sidebar-wrp {
    max-width: 270px;
  }

  .dashboard-body-wrp,
  .ds-panel-header {
    max-width: calc(100% - 270px);
  }

  .dsbrd-sidebar-body ul li a {
    font-size: 16px;
    padding: 7px 12px;
    border-radius: 6px;
  }

  .dsbrd-sidebar-body ul li a img {
    width: 25px;
    margin-right: 12px;
  }

  .dsbrdside-header .logo {
    max-width: 170px;
    padding: 20px 12px;
  }

  .dashboard-body,
  .dashboard-body-wrp .plans-inr {
    padding: 30px 25px;
  }

  .file-input {
    height: 140px;
  }

  .input-grp {
    margin-bottom: 12px;
  }

  .dsbdy-frm-btn-grp {
    margin-top: 30px;
  }

  .ds-bdy-head strong,
  .dsbdy-content-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .ds-bdy-head p,
  .dsbdy-content .input-grp label {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .ds-bdy-head h1 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .ds-bdy-head {
    margin-bottom: 30px;
  }

  .file-input .upload-placeholder img {
    width: 50px;
    margin-bottom: 15px;
  }

  .file-input .upload-placeholder {
    padding: 12px;
    text-align: center;
  }

  .dsbdy-frm-btn-grp button,
  .cmn-btn-2 {
    border-radius: 8px;
    height: 45px;
    min-width: 90px;
    font-size: 16px;
    padding: 7px 20px;
    margin-right: 8px;
  }

  .dspnlhdrusr-drpdn p {
    font-size: 18px;
    margin-right: 15px;
  }

  .dspnlhdrusr-drpdn i {
    font-size: 16px;
  }

  .ds-filter-input-wrp>* {
    margin-bottom: 0;
  }

  .dsfilter-rt-btns .cmn-btn {
    font-size: 16px;
    height: 45px;
    min-width: 90px;
    margin-right: 8px;
    border-radius: 8px;
    padding: 8px 20px;
  }

  .dsfilter-rt-btns .cmn-btn img {
    width: 12px;
    margin-right: 10px;
  }

  .dsfilter-rt-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px 0;
  }

  .search-bar-wrp {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 12px;
  }

  .search-bar form,
  .input-grp.search {
    width: 100%;
  }

  .ds-bdy-table-wrp table {
    min-width: 1500px;
  }

  .ds-bdy-table-wrp table th {
    font-size: 16px;
  }

  .ds-bdy-table-wrp table td {
    font-size: 14px;
  }

  .table-content .sign-pop-head {
    margin-bottom: 30px;
  }

  .pop-bdy-content table tr {
    margin-bottom: 10px;
  }

  .table-content .sign-popup,
  .sign-popup {
    padding: 30px;
  }

  .pop-bdy-content table td:first-child,
  .pop-bdy-content table tr:last-child td {
    font-size: 18px;
  }

  .pop-bdy-content table td,
  .account-details .pop-bdy-content table tr:nth-child(3) td p {
    font-size: 16px;
  }

  .ds-bdy-table-wrp table td input[type="checkbox"] {
    margin-right: 8px;
  }

  .dsbrd-pagination ul li {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    padding: 5px;
  }

  .dsbrd-client-info-wrp>* p {
    font-size: 16px;
    margin: 7px 0 0;
  }

  .dsbrd-client-info-wrp>* strong {
    font-size: 18px;
    margin-bottom: 7px;
  }

  .dsbrd-pagination ul {
    margin-top: 20px;
  }

  .dsbrd-client-info-wrp {
    gap: 12px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .dsbrd-client-info-wrp>* {
    width: 100%;
  }

  .dsbrd-client-info-right {
    text-align: left;
  }

  .search-bar {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .pop-form .sign-popup form .input-grp {
    padding: 12px;
  }

  .pop-form .sign-popup form .pop-form-inr-wrp {
    margin: -12px;
  }

  .reconciliation-pg .account-journal-form {
    --bs-gutter-x: 24px;
  }

  .multifiled-wrp .input-grp label {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .dsbrd-sidebar-wrp.active .dsbrdside-header .logo {
    min-height: 67px;
    height: 100%;
  }

  .firm-records-heading h1 {
    font-size: 24px;
  }

  .answer-para-wrap p {
    font-size: 14px;
  }

  .amount-sec-wrap span {
    font-size: 16px;
    padding: 10px 6px;
    min-width: 90px;
  }

  .quiz-sec {
    max-width: calc(100% - 110px);
  }

  .question-head-wrap h4 {
    font-size: 16px;
  }

  .question-ans-main-wrap {
    margin-bottom: 20px;
  }

  .question-head-wrap h5 {
    font-size: 16px;
  }

  .yes-and-no-wrap button:nth-child(1),
  .yes-and-no-wrap button:nth-child(2) {
    border-radius: 6px;
    padding: 6px 20px;
  }

  .preparer-docs .input-grp {
    padding: 10px 6px;
    width: 50%;
  }

  .firm-records-heading h2 {
    font-size: 21px;
  }

  .firm-records-heading {
    margin-top: 20px !important;
  }

  .firm-records-heading .firmhdng-txt {
    font-size: 16px;
  }

  .preparer-docs .input-grp input {
    font-size: 16px;
    height: 45px;
    border-radius: 8px;
  }

  .bank-charges-inr-btn-wrp .cmn-btn {
    height: 45px;
    min-width: 90px;
    font-size: 16px;
    gap: 8px;
    margin-right: 20px;
    border-radius: 6px;
  }

  .ds-filter-input-wrp2 {
    max-width: 50%;
  }

  .ds-filter-input-wrp2 input {
    height: 45px;
  }

  h4,
  .h4-title {
    font-size: 21px;
    line-height: 1.2;
  }

  .delete-acount-wrap {
    position: static;
    text-align: right;
    margin-top: 10px;
  }

  .my-profile-form-in .bank-charges-btns {
    padding-top: 0;
  }

  .my-profile-form-in .first-section h4 {
    font-size: 21px;
    margin-bottom: 20px;
  }

  .my-profile-form-in .first-section {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .sign-up-inr .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .sign-sec-head h1 {
    font-size: 30px;
  }

  .sign-pop-head h2 {
    font-size: 28px;
  }

  .total-amount-wrap {
    position: static;
    max-width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .total-amount-wrap h4 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .ds-filter-wrp .input-grp input::-webkit-input-placeholder {
    font-size: 16px;
  }

  .ds-filter-wrp .input-grp input::-moz-placeholder {
    font-size: 16px;
  }

  .ds-filter-wrp .input-grp input:-ms-input-placeholder {
    font-size: 16px;
  }

  .ds-filter-wrp .input-grp input::-ms-input-placeholder {
    font-size: 16px;
  }

  .ds-filter-wrp .input-grp select,
  .ds-filter-wrp .input-grp input,
  .ds-filter-wrp .input-grp input::placeholder {
    font-size: 16px;
  }

  .dsbrd-tbl-body.dashboard-body {
    padding: 12px 12px 50px;
  }

  .ds-filter-input-wrp>*:first-child {
    min-width: 150px;
  }

  .dsbrd-sidebar-body {
    padding: 0 10px 100px;
  }

  .dsbrd-sidebar-body ul {
    padding: 20px 0 20px;
  }

  .dsbrd-sidebar-body ul li a {
    font-size: 15px;
    padding: 6px 8px;
  }

  .dsbrd-sidebar-body ul li a img {
    width: 20px;
    margin-right: 8px;
  }

  .dsbrd-sidebar-wrp {
    max-width: 230px;
  }

  .dashboard-body-wrp,
  .ds-panel-header {
    max-width: calc(100% - 230px);
  }

  .ds-filter-input-wrp {
    gap: 8px 0;
  }

  .dsfilter-rt-btns {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .ds-filter-wrp {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .input-grp.search input[name="search"] {
    padding: 8px 38px 8px 12px;
    background-size: 15px;
    border-radius: 8px;
    height: 45px;
  }

  .ds-panel-header {
    margin-bottom: 20px;
  }

  .ds-bdy-table-wrp table th,
  .ds-bdy-table-wrp table td {
    padding: 8px 12px;
  }

  .ds-bdy-table-wrp table {
    min-width: 1500px;
  }

  .table-content .sign-pop-head h2 {
    font-size: 23px;
  }

  .pop-bdy-content table td:first-child,
  .pop-bdy-content table tr:last-child td {
    font-size: 16px;
  }

  .pop-bdy-content table td,
  .account-details .pop-bdy-content table tr:nth-child(3) td p {
    font-size: 15px;
  }

  .table-content .sign-popup {
    padding: 25px;
    border-radius: 12px;
    max-width: 350px;
  }

  .ds-panel-header-inr-wrp {
    padding: 8px 20px;
  }

  .dsbrd-sidebar-wrp.active .dsbrdside-header .logo {
    min-height: 60px;
    height: 100%;
    width: 150px;
  }

  .dsbrd-sidebar-wrp .dsbrdside-header .logo {
    width: 150px;
  }

  .ds-filter-input-wrp {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .client-pg .dsbdy-frm-btn-grp a {
    font-size: 16px;
    margin-left: auto;
  }

  .search-ledger-body {
    padding: 12px;
  }

  .dsbrd-client-info-wrp>* strong {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .dsbrd-pagination ul li {
    margin-right: 0;
  }

  .dsbrd-pagination ul {
    gap: 8px;
  }

  .table-content.add-entry .sign-popup {
    padding: 20px;
    border-radius: 10px;
    max-width: 100%;
  }

  .pop-up-inr-wrp {
    padding: 40px;
  }

  .pop-form .sign-popup form .input-grp {
    padding: 6px;
  }

  .pop-form .sign-popup form .pop-form-inr-wrp {
    margin: -6px;
  }

  .pop-form .input-grp input {
    border-radius: 6px;
  }

  .check-wrp label input {
    margin-left: 5px;
  }

  .check-wrp:last-child {
    width: 100%;
    padding-left: 0;
  }

  .check-wrp:first-child {
    width: 100%;
    padding-right: 15px;
  }

  .checks-wrp {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px 0;
  }

  .pop-form .sign-popup form .input-grp {
    width: 50%;
    margin-bottom: 0;
  }

  .dsfilter-inr-btn-wrp.dbllrg-btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .dsfilter-inr-btn-wrp.dbllrg-btn .cmn-btn,
  .dsbdy-frm-btn-grp.dbllrg-btn .cmn-btn-2 {
    margin-right: 0;
  }

  .dsfilter-deep>*,
  .dsfilter-deep>* .input-grp {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .bank-charges-form-in label {
    width: 100%;
  }

  .ds-bdy-head h1 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .dashboard-body,
  .dashboard-body-wrp .plans-inr {
    padding: 30px 20px;
  }

  .ds-bdy-head.max p {
    font-size: 15px;
    font-weight: 400;
  }

  .reconciliation-pg .account-journal-form>* {
    width: 100% !important;
  }

  .ds-bdy-head p,
  .dsbdy-content .input-grp label {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .input-grp {
    margin-bottom: 6px;
  }

  .multifiled-wrp .input-grp {
    width: 100%;
    padding: 6px 0;
  }

  .firm-records-heading h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .quiz-sec {
    max-width: 100%;
    padding-right: 0;
  }

  .counterquiz {
    left: -20px;
  }

  .question-ans-main-wrap {
    padding-left: 20px;
  }

  .amount-sec-wrap span {
    padding: 6px;
  }

  .total-amount-wrap {
    position: static;
    gap: 12px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  /* .total-amount-wrap h4{
      width: 100%;
  } */
  .ds-bdy-table-wrp table.leader-summry-table {
    min-width: 700px;
  }

  .ds-filter-upr-wrp-new h3 {
    font-size: 18px;
  }

  .dsfilter-deep .ds-filter-input-wrp {
    margin-left: 0;
  }

  .dsfilter-rt-btns.ds-filter-upr-wrp-new.flex-wrap {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .ds-filter-input-wrp2,
  .dsfilter-deep .ds-filter-input-wrp {
    max-width: 100%;
  }

  .dsfilter-deep .ds-filter-input-wrp>*:first-child {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .sign-up-left-inr {
    padding: 80px 0;
  }

  .ds-filter-input-wrp>* {
    width: 100%;
    padding: 0;
  }

  #ui-datepicker-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    left: 50% !important;
    top: 50% !important;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80% !important;
  }

  #ui-datepicker-div>* {
    width: 50% !important;
  }

  .subscription-plan.dashboard-body-wrp .blue-btn {
    min-width: auto;
  }
}

@media only screen and (max-width: 575px) {
  .notification {
    padding-right: 10px;
    margin-right: 8px;
  }

  .dspnlhdrusr-drpdn p {
    font-size: 16px;
    margin-right: 8px;
  }

  .ds-filter-wrp .input-grp {
    width: 100%;
    padding: 0;
  }

  .dsbrd-sidebar-wrp.active .dsbrdside-header .logo {
    min-height: 57px;
    height: 57px;
  }

  .dashboard-panel {
    padding-right: 0;
  }

  .dashboard-body-wrp {
    padding-left: 20px;
    padding-right: 22px;
  }

  .dashboard-body,
  .dashboard-body-wrp .plans-inr {
    padding: 30px 16px;
  }

  .pop-form .sign-popup form .input-grp {
    width: 100%;
  }

  .pop-up-inr-wrp {
    padding: 25px;
  }

  .dsfilter-wrp-text:nth-child(1) {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    text-align: left;
    width: 100%;
  }

  .dsfilter-wrp-text:nth-child(2) {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
  }

  .ds-filter-upr-wrp-new h3 {
    font-size: 18px;
  }

  .ds-filter-input-wrp2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .secinr-dashboard-body-wrp .ds-bdy-table-wrp table {
    min-width: 600px;
  }

  .bank-charges-inr-btn-wrp .cmn-btn {
    height: 40px;
    min-width: 80px;
    font-size: 15px;
    padding: 5px 12px;
  }

  .preparer-docs .input-grp {
    padding: 6px;
    width: 100%;
  }

  .preparer-docs .input-grp label {
    font-size: 16px;
    margin-top: 6px;
  }

  h4,
  .h4-title {
    font-size: 18px;
  }

  .ds-filter-upr-wrp-new h3 {
    font-size: 16px;
  }

  .sign-content-slider-item-inr p {
    font-size: 18px;
  }

  .signup-form-head h2 {
    font-size: 24px;
  }

  .signup-form input[type="submit"] {
    height: 44px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .sign-up-left-inr {
    padding: 60px 0;
  }

  #ui-datepicker-div {
    width: 60% !important;
    top: 100px !important;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  #ui-datepicker-div>* {
    width: 100% !important;
  }

  .dsbrd-sidebar-wrp .dsbrdside-header .logo {
    height: 57px;
  }

  .delete-acount-wrap a {
    font-size: 18px;
  }
}

@media only screen and (max-width: 479px) {
  .dsbrd-sidebar-body ul li a {
    font-size: 14px;
    padding: 6px;
  }

  .dashboard-body-wrp,
  .ds-panel-header {
    max-width: 100%;
    -webkit-transition-delay: none;
    -o-transition-delay: none;
    transition-delay: none;
  }

  .sidebar-toggler {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-left: auto;
  }

  .dsbrdside-header .logo {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }

  .dsbrd-sidebar-wrp.active {
    left: -100%;
    position: fixed;
  }

  .ds-panel-hdr-right {
    margin-left: 0;
  }

  .dsbrd-sidebar-wrp {
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }

  .dsbrd-sidebar-wrp.active .dsbrdside-header .logo {
    min-height: 70px;
    -webkit-transition-delay: 0;
    -o-transition-delay: 0;
    transition-delay: 0;
  }

  .dsbrd-sidebar-wrp.active .dsbrd-sidebar {
    left: 0;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-transition-delay: 0;
    -o-transition-delay: 0;
    transition-delay: 0;
  }

  .dsbrd-sidebar-wrp .dsbrd-sidebar {
    left: 0;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-transition-delay: 0;
    -o-transition-delay: 0;
    transition-delay: 0;
  }

  .profile-conrol-menu {
    right: auto;
    left: 0;
  }

  .dsbrd-pagination ul li {
    width: 35px;
    height: 35px;
  }

  .table-content.add-entry .sign-popup {
    padding: 15px;
    border-radius: 8px;
  }

  .check-wrp:first-child {
    padding-right: 0;
  }

  .ds-bdy-head h1 {
    font-size: 20px;
  }

  .sign-sec-head h1 {
    font-size: 26px;
  }

  .sign-sec-head h1 span {
    font-size: 22px;
  }

  .sign-content-slider-item-inr p {
    font-size: 16px;
  }

  .sign-up-left-inr {
    padding: 50px 0;
  }

  .sign-popup {
    padding: 40px 20px 20px;
  }

  .sign-pop-head h2 {
    font-size: 24px;
  }

  .sign-pop-head {
    margin-bottom: 15px;
  }

  .pop-info {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .signup-form .input-grp input {
    padding-right: 14px;
    height: 45px;
  }

  .sign-popup .form-fields {
    margin-bottom: 20px;
  }

  .otp-container.input-grp input {
    width: 40px;
    height: 40px;
    border-radius: 5px;
  }

  .account-journal-form .input-grp {
    width: 100% !important;
  }

  #ui-datepicker-div {
    width: 90% !important;
    top: 10% !important;
    position: absolute;
  }

  .ds-filter-input-wrp {
    width: 100% !important;
  }
}

.rs-picker-default {
  background-color: #101949 !important;
  border-radius: 28px !important;
}

.rs-picker-input-group {
  background-color: #101949 !important;
  border-radius: 28px !important;
}

.rs-btn-close,
.rs-input-group-addon {
  /* display: none !important; */
  color: #ffffff !important;
}

.rs-btn-close:focus,
.rs-btn-close:hover {
  color: #ffffff !important;
}

.rs-date-range-input {
  background-color: #101949 !important;
  border-radius: 28px !important;
  color: #ffffff !important;
  height: 40px !important;
  padding: 10px 20px !important;
}

/* Placeholder text color */
.rs-date-range-input::placeholder {
  color: #ffffff !important;
  opacity: 1;
  /* Ensures full opacity for cross-browser consistency */
  padding: 10px 20px !important;
}

.react-datepicker-wrapper {
  width: 100% !important;
}

/* NOTIFICATION CSS */

.notification-wrap {
  padding: 24px 5px;
  background: transparent;

  h1 {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    margin-bottom: 0;
    border: 1px solid #dad9d9;
    padding: 14px;
    border-radius: 14px;
    background: #fff;
  }

  & .notification-inner {
    border: 1px solid #dad9d9;
    background: #fff;
    padding: 14px 14px;
    border-radius: 11px;
    margin-top: 15px;
    box-shadow: 0px 0px 3px 0px #00000040;

    h3 {
      font-size: 18px;
      font-weight: 500;
      color: #000;
      margin-bottom: 12px;
    }

    p {
      font-size: 16px;
      font-weight: 400;
      color: #000;
      margin-bottom: 12px;
    }

    span {
      font-size: 14px;
      font-weight: 400;
      color: #b7b2b2;
    }
  }
}

.notification-in {
  width: auto;
  height: auto;
  position: absolute;
  right: 81px;
}

.notification-list {
  display: none;
  position: absolute;
  right: 0;
  width: max-content;
  top: 100%;
  margin-top: 10px;
  z-index: 9999;
}

.notification-in button {
  background: none;
  border: none;
  outline: none;
}

/* ---------- NOTIFIACTION RADION BTN ---------------- */

.notification-heading .switch {
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 23px;
  right: 11px;
}

.notification-heading .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.notification-heading .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.notification-heading .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 15px;
  left: 0px;
  bottom: 0px;
  color: #fff;
  font-weight: 600;
  background: #101949;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.notification-heading input:checked+.slider {
  background-color: #fff;
}

.notification-heading input:focus+.slider {
  box-shadow: 0 0 1px #fff;
}

.notification-heading input:checked+.slider:before {
  webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
  content: "off";
  font-size: 11px;
  width: 25px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-heading .slider.round {
  border-radius: 34px;
}

.notification-heading .slider.round:before {
  border-radius: 50%;
  content: "on";
  font-size: 11px;
  width: 25px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- NOTIFIACTION RADION BTN ---------------- */

.notification-heading {
  display: flex;
  align-items: center;
}

.notification-in button img {
  width: 42px;
  height: auto;
}

.notification-list h1 {
  width: 100%;
  height: auto;
  padding: 12px 10px;
  margin: 0;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  border-radius: 10px 10px 0 0;
  background: #090814;
}

.notification-list-inner {
  width: 100%;
  height: auto;
  max-height: 434px;
  overflow-y: auto;
  padding: 10px;
  background: #030f23;
  box-shadow: 0px 2px 8px -5px #000;
}

.notification-list-inner::-webkit-scrollbar {
  width: 8px;
  height: 150px;
}

.notification-list-inner::-webkit-scrollbar-track {
  background: #eee;
}

.notification-list-inner::-webkit-scrollbar-thumb {
  background: #101949;
  border: none;
  border-radius: 0px;
}

.notification-list-item {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border-radius: 12px;
}

.notification-list-item:nth-child(even) {
  background: #101949;
}

.notification-list-item-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.notification-list-item-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: none;
  background: #ffc932;
}

.notification-list-item-text {
  width: auto;
  height: auto;
}

.notification-list-item-text p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.notification-list-item-text span {
  font-size: 11px;
  font-weight: 600;
  color: #828282;
}

.forgot-pass-eye {
  /* position: absolute; */
  /* width: 20px;
  height: 20px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: auto;
  /* right: 15px; */
  border: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.forgot-pass-eye::-webkit-input-placeholder {
  color: var(--inputclr, #444);
}

.forgot-pass-eye::-moz-placeholder {
  color: var(--inputclr, #444);
}

.forgot-pass-eye:-ms-input-placeholder {
  color: var(--inputclr, #444);
}

.forgot-pass-eye::-ms-input-placeholder {
  color: var(--inputclr, #444);
}

.forgot-pass-eye::placeholder {
  color: var(--inputclr, #444);
}

.forgot-pass-eye i {
  color: #c0c0c0;
  cursor: pointer;
}

.forgot-pass-eye .fa-eye-slash:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/login-page/icons/eye-close.svg);
}

.forgot-pass-eye .fa-eye:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/login-page/icons/eye-open.svg);
}

.user-password-eye {
  position: absolute;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 38px;
  right: 15px;
  border: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.user-password-eye::-webkit-input-placeholder {
  color: var(--inputclr, #444);
}

.user-password-eye::-moz-placeholder {
  color: var(--inputclr, #444);
}

.user-password-eye:-ms-input-placeholder {
  color: var(--inputclr, #444);
}

.user-password-eye::-ms-input-placeholder {
  color: var(--inputclr, #444);
}

.user-password-eye::placeholder {
  color: var(--inputclr, #444);
}

.user-password-eye i {
  color: #c0c0c0;
  cursor: pointer;
}

.user-password-eye .fa-eye-slash:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/login-page/icons/eye-close.svg);
}

.user-password-eye .fa-eye:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/login-page/icons/eye-open.svg);
}